From a8ebc82f9e61b1afbaf1b176f25dc9e33d06d7ad Mon Sep 17 00:00:00 2001 From: Rowan Winsemius Date: Fri, 18 Jun 2021 15:29:36 +1000 Subject: [PATCH 1/9] Use non-haversine distance calc --- packages/turf-rectangle-grid/index.ts | 16 +- .../test/in/global-grid.json | 6 + .../test/in/victoria-20x100-km.json | 2 +- .../test/out/10x10-1degree.geojson | 990 +- .../test/out/australia-mask.geojson | 4216 +- .../test/out/big-bbox-500x100-miles.geojson | 44036 +++++++++++++++- .../test/out/fiji-10x5-miles.geojson | 450 +- .../test/out/global-grid.geojson | 10394 ++++ .../test/out/victoria-20x100-km.geojson | 2780 +- 9 files changed, 57980 insertions(+), 4910 deletions(-) create mode 100644 packages/turf-rectangle-grid/test/in/global-grid.json create mode 100644 packages/turf-rectangle-grid/test/out/global-grid.geojson diff --git a/packages/turf-rectangle-grid/index.ts b/packages/turf-rectangle-grid/index.ts index ae4a1654f1..412d3e9041 100644 --- a/packages/turf-rectangle-grid/index.ts +++ b/packages/turf-rectangle-grid/index.ts @@ -2,6 +2,7 @@ import intersect from "@turf/boolean-intersects"; import distance from "@turf/distance"; import { BBox, + convertLength, Feature, featureCollection, FeatureCollection, @@ -54,17 +55,14 @@ function rectangleGrid

( const east = bbox[2]; const north = bbox[3]; - const xFraction = cellWidth / distance([west, south], [east, south], options); - const cellWidthDeg = xFraction * (east - west); - const yFraction = - cellHeight / distance([west, south], [west, north], options); - const cellHeightDeg = yFraction * (north - south); - - // rows & columns const bboxWidth = east - west; + const cellWidthDeg = convertLength(cellWidth, options.units, "degrees"); + const bboxHeight = north - south; - const columns = Math.floor(bboxWidth / cellWidthDeg); - const rows = Math.floor(bboxHeight / cellHeightDeg); + const cellHeightDeg = convertLength(cellHeight, options.units, "degrees"); + + const columns = Math.floor(Math.abs(bboxWidth) / cellWidthDeg); + const rows = Math.floor(Math.abs(bboxHeight) / cellHeightDeg); // if the grid does not fill the bbox perfectly, center it. const deltaX = (bboxWidth - columns * cellWidthDeg) / 2; diff --git a/packages/turf-rectangle-grid/test/in/global-grid.json b/packages/turf-rectangle-grid/test/in/global-grid.json new file mode 100644 index 0000000000..682c6230ba --- /dev/null +++ b/packages/turf-rectangle-grid/test/in/global-grid.json @@ -0,0 +1,6 @@ +{ + "bbox": [-180, -90, 180, 90], + "cellWidth": 10, + "cellHeight": 10, + "units": "degrees" +} diff --git a/packages/turf-rectangle-grid/test/in/victoria-20x100-km.json b/packages/turf-rectangle-grid/test/in/victoria-20x100-km.json index 2514537b79..17c0a947b9 100644 --- a/packages/turf-rectangle-grid/test/in/victoria-20x100-km.json +++ b/packages/turf-rectangle-grid/test/in/victoria-20x100-km.json @@ -1,5 +1,5 @@ { - "bbox": [141, -34, 150, -39], + "bbox": [141, -39, 150, -34], "cellWidth": 20, "cellHeight": 100, "units": "kilometers" diff --git a/packages/turf-rectangle-grid/test/out/10x10-1degree.geojson b/packages/turf-rectangle-grid/test/out/10x10-1degree.geojson index 0c4f15e014..37ad31b774 100644 --- a/packages/turf-rectangle-grid/test/out/10x10-1degree.geojson +++ b/packages/turf-rectangle-grid/test/out/10x10-1degree.geojson @@ -8,11 +8,11 @@ "type": "Polygon", "coordinates": [ [ - [-5.025791, -5.005842], - [-5.025791, -4.004674], - [-4.020633, -4.004674], - [-4.020633, -5.005842], - [-5.025791, -5.005842] + [-5, -5], + [-5, -4], + [-4, -4], + [-4, -5], + [-5, -5] ] ] } @@ -24,11 +24,11 @@ "type": "Polygon", "coordinates": [ [ - [-5.025791, -4.004674], - [-5.025791, -3.003505], - [-4.020633, -3.003505], - [-4.020633, -4.004674], - [-5.025791, -4.004674] + [-5, -4], + [-5, -3], + [-4, -3], + [-4, -4], + [-5, -4] ] ] } @@ -40,11 +40,11 @@ "type": "Polygon", "coordinates": [ [ - [-5.025791, -3.003505], - [-5.025791, -2.002337], - [-4.020633, -2.002337], - [-4.020633, -3.003505], - [-5.025791, -3.003505] + [-5, -3], + [-5, -2], + [-4, -2], + [-4, -3], + [-5, -3] ] ] } @@ -56,11 +56,11 @@ "type": "Polygon", "coordinates": [ [ - [-5.025791, -2.002337], - [-5.025791, -1.001168], - [-4.020633, -1.001168], - [-4.020633, -2.002337], - [-5.025791, -2.002337] + [-5, -2], + [-5, -1], + [-4, -1], + [-4, -2], + [-5, -2] ] ] } @@ -72,11 +72,11 @@ "type": "Polygon", "coordinates": [ [ - [-5.025791, -1.001168], - [-5.025791, 0], - [-4.020633, 0], - [-4.020633, -1.001168], - [-5.025791, -1.001168] + [-5, -1], + [-5, 0], + [-4, 0], + [-4, -1], + [-5, -1] ] ] } @@ -88,11 +88,11 @@ "type": "Polygon", "coordinates": [ [ - [-5.025791, 0], - [-5.025791, 1.001168], - [-4.020633, 1.001168], - [-4.020633, 0], - [-5.025791, 0] + [-5, 0], + [-5, 1], + [-4, 1], + [-4, 0], + [-5, 0] ] ] } @@ -104,11 +104,11 @@ "type": "Polygon", "coordinates": [ [ - [-5.025791, 1.001168], - [-5.025791, 2.002337], - [-4.020633, 2.002337], - [-4.020633, 1.001168], - [-5.025791, 1.001168] + [-5, 1], + [-5, 2], + [-4, 2], + [-4, 1], + [-5, 1] ] ] } @@ -120,11 +120,11 @@ "type": "Polygon", "coordinates": [ [ - [-5.025791, 2.002337], - [-5.025791, 3.003505], - [-4.020633, 3.003505], - [-4.020633, 2.002337], - [-5.025791, 2.002337] + [-5, 2], + [-5, 3], + [-4, 3], + [-4, 2], + [-5, 2] ] ] } @@ -136,11 +136,11 @@ "type": "Polygon", "coordinates": [ [ - [-5.025791, 3.003505], - [-5.025791, 4.004674], - [-4.020633, 4.004674], - [-4.020633, 3.003505], - [-5.025791, 3.003505] + [-5, 3], + [-5, 4], + [-4, 4], + [-4, 3], + [-5, 3] ] ] } @@ -152,11 +152,11 @@ "type": "Polygon", "coordinates": [ [ - [-5.025791, 4.004674], - [-5.025791, 5.005842], - [-4.020633, 5.005842], - [-4.020633, 4.004674], - [-5.025791, 4.004674] + [-5, 4], + [-5, 5], + [-4, 5], + [-4, 4], + [-5, 4] ] ] } @@ -168,11 +168,11 @@ "type": "Polygon", "coordinates": [ [ - [-4.020633, -5.005842], - [-4.020633, -4.004674], - [-3.015475, -4.004674], - [-3.015475, -5.005842], - [-4.020633, -5.005842] + [-4, -5], + [-4, -4], + [-3, -4], + [-3, -5], + [-4, -5] ] ] } @@ -184,11 +184,11 @@ "type": "Polygon", "coordinates": [ [ - [-4.020633, -4.004674], - [-4.020633, -3.003505], - [-3.015475, -3.003505], - [-3.015475, -4.004674], - [-4.020633, -4.004674] + [-4, -4], + [-4, -3], + [-3, -3], + [-3, -4], + [-4, -4] ] ] } @@ -200,11 +200,11 @@ "type": "Polygon", "coordinates": [ [ - [-4.020633, -3.003505], - [-4.020633, -2.002337], - [-3.015475, -2.002337], - [-3.015475, -3.003505], - [-4.020633, -3.003505] + [-4, -3], + [-4, -2], + [-3, -2], + [-3, -3], + [-4, -3] ] ] } @@ -216,11 +216,11 @@ "type": "Polygon", "coordinates": [ [ - [-4.020633, -2.002337], - [-4.020633, -1.001168], - [-3.015475, -1.001168], - [-3.015475, -2.002337], - [-4.020633, -2.002337] + [-4, -2], + [-4, -1], + [-3, -1], + [-3, -2], + [-4, -2] ] ] } @@ -232,11 +232,11 @@ "type": "Polygon", "coordinates": [ [ - [-4.020633, -1.001168], - [-4.020633, 0], - [-3.015475, 0], - [-3.015475, -1.001168], - [-4.020633, -1.001168] + [-4, -1], + [-4, 0], + [-3, 0], + [-3, -1], + [-4, -1] ] ] } @@ -248,11 +248,11 @@ "type": "Polygon", "coordinates": [ [ - [-4.020633, 0], - [-4.020633, 1.001168], - [-3.015475, 1.001168], - [-3.015475, 0], - [-4.020633, 0] + [-4, 0], + [-4, 1], + [-3, 1], + [-3, 0], + [-4, 0] ] ] } @@ -264,11 +264,11 @@ "type": "Polygon", "coordinates": [ [ - [-4.020633, 1.001168], - [-4.020633, 2.002337], - [-3.015475, 2.002337], - [-3.015475, 1.001168], - [-4.020633, 1.001168] + [-4, 1], + [-4, 2], + [-3, 2], + [-3, 1], + [-4, 1] ] ] } @@ -280,11 +280,11 @@ "type": "Polygon", "coordinates": [ [ - [-4.020633, 2.002337], - [-4.020633, 3.003505], - [-3.015475, 3.003505], - [-3.015475, 2.002337], - [-4.020633, 2.002337] + [-4, 2], + [-4, 3], + [-3, 3], + [-3, 2], + [-4, 2] ] ] } @@ -296,11 +296,11 @@ "type": "Polygon", "coordinates": [ [ - [-4.020633, 3.003505], - [-4.020633, 4.004674], - [-3.015475, 4.004674], - [-3.015475, 3.003505], - [-4.020633, 3.003505] + [-4, 3], + [-4, 4], + [-3, 4], + [-3, 3], + [-4, 3] ] ] } @@ -312,11 +312,11 @@ "type": "Polygon", "coordinates": [ [ - [-4.020633, 4.004674], - [-4.020633, 5.005842], - [-3.015475, 5.005842], - [-3.015475, 4.004674], - [-4.020633, 4.004674] + [-4, 4], + [-4, 5], + [-3, 5], + [-3, 4], + [-4, 4] ] ] } @@ -328,11 +328,11 @@ "type": "Polygon", "coordinates": [ [ - [-3.015475, -5.005842], - [-3.015475, -4.004674], - [-2.010316, -4.004674], - [-2.010316, -5.005842], - [-3.015475, -5.005842] + [-3, -5], + [-3, -4], + [-2, -4], + [-2, -5], + [-3, -5] ] ] } @@ -344,11 +344,11 @@ "type": "Polygon", "coordinates": [ [ - [-3.015475, -4.004674], - [-3.015475, -3.003505], - [-2.010316, -3.003505], - [-2.010316, -4.004674], - [-3.015475, -4.004674] + [-3, -4], + [-3, -3], + [-2, -3], + [-2, -4], + [-3, -4] ] ] } @@ -360,11 +360,11 @@ "type": "Polygon", "coordinates": [ [ - [-3.015475, -3.003505], - [-3.015475, -2.002337], - [-2.010316, -2.002337], - [-2.010316, -3.003505], - [-3.015475, -3.003505] + [-3, -3], + [-3, -2], + [-2, -2], + [-2, -3], + [-3, -3] ] ] } @@ -376,11 +376,11 @@ "type": "Polygon", "coordinates": [ [ - [-3.015475, -2.002337], - [-3.015475, -1.001168], - [-2.010316, -1.001168], - [-2.010316, -2.002337], - [-3.015475, -2.002337] + [-3, -2], + [-3, -1], + [-2, -1], + [-2, -2], + [-3, -2] ] ] } @@ -392,11 +392,11 @@ "type": "Polygon", "coordinates": [ [ - [-3.015475, -1.001168], - [-3.015475, 0], - [-2.010316, 0], - [-2.010316, -1.001168], - [-3.015475, -1.001168] + [-3, -1], + [-3, 0], + [-2, 0], + [-2, -1], + [-3, -1] ] ] } @@ -408,11 +408,11 @@ "type": "Polygon", "coordinates": [ [ - [-3.015475, 0], - [-3.015475, 1.001168], - [-2.010316, 1.001168], - [-2.010316, 0], - [-3.015475, 0] + [-3, 0], + [-3, 1], + [-2, 1], + [-2, 0], + [-3, 0] ] ] } @@ -424,11 +424,11 @@ "type": "Polygon", "coordinates": [ [ - [-3.015475, 1.001168], - [-3.015475, 2.002337], - [-2.010316, 2.002337], - [-2.010316, 1.001168], - [-3.015475, 1.001168] + [-3, 1], + [-3, 2], + [-2, 2], + [-2, 1], + [-3, 1] ] ] } @@ -440,11 +440,11 @@ "type": "Polygon", "coordinates": [ [ - [-3.015475, 2.002337], - [-3.015475, 3.003505], - [-2.010316, 3.003505], - [-2.010316, 2.002337], - [-3.015475, 2.002337] + [-3, 2], + [-3, 3], + [-2, 3], + [-2, 2], + [-3, 2] ] ] } @@ -456,11 +456,11 @@ "type": "Polygon", "coordinates": [ [ - [-3.015475, 3.003505], - [-3.015475, 4.004674], - [-2.010316, 4.004674], - [-2.010316, 3.003505], - [-3.015475, 3.003505] + [-3, 3], + [-3, 4], + [-2, 4], + [-2, 3], + [-3, 3] ] ] } @@ -472,11 +472,11 @@ "type": "Polygon", "coordinates": [ [ - [-3.015475, 4.004674], - [-3.015475, 5.005842], - [-2.010316, 5.005842], - [-2.010316, 4.004674], - [-3.015475, 4.004674] + [-3, 4], + [-3, 5], + [-2, 5], + [-2, 4], + [-3, 4] ] ] } @@ -488,11 +488,11 @@ "type": "Polygon", "coordinates": [ [ - [-2.010316, -5.005842], - [-2.010316, -4.004674], - [-1.005158, -4.004674], - [-1.005158, -5.005842], - [-2.010316, -5.005842] + [-2, -5], + [-2, -4], + [-1, -4], + [-1, -5], + [-2, -5] ] ] } @@ -504,11 +504,11 @@ "type": "Polygon", "coordinates": [ [ - [-2.010316, -4.004674], - [-2.010316, -3.003505], - [-1.005158, -3.003505], - [-1.005158, -4.004674], - [-2.010316, -4.004674] + [-2, -4], + [-2, -3], + [-1, -3], + [-1, -4], + [-2, -4] ] ] } @@ -520,11 +520,11 @@ "type": "Polygon", "coordinates": [ [ - [-2.010316, -3.003505], - [-2.010316, -2.002337], - [-1.005158, -2.002337], - [-1.005158, -3.003505], - [-2.010316, -3.003505] + [-2, -3], + [-2, -2], + [-1, -2], + [-1, -3], + [-2, -3] ] ] } @@ -536,11 +536,11 @@ "type": "Polygon", "coordinates": [ [ - [-2.010316, -2.002337], - [-2.010316, -1.001168], - [-1.005158, -1.001168], - [-1.005158, -2.002337], - [-2.010316, -2.002337] + [-2, -2], + [-2, -1], + [-1, -1], + [-1, -2], + [-2, -2] ] ] } @@ -552,11 +552,11 @@ "type": "Polygon", "coordinates": [ [ - [-2.010316, -1.001168], - [-2.010316, 0], - [-1.005158, 0], - [-1.005158, -1.001168], - [-2.010316, -1.001168] + [-2, -1], + [-2, 0], + [-1, 0], + [-1, -1], + [-2, -1] ] ] } @@ -568,11 +568,11 @@ "type": "Polygon", "coordinates": [ [ - [-2.010316, 0], - [-2.010316, 1.001168], - [-1.005158, 1.001168], - [-1.005158, 0], - [-2.010316, 0] + [-2, 0], + [-2, 1], + [-1, 1], + [-1, 0], + [-2, 0] ] ] } @@ -584,11 +584,11 @@ "type": "Polygon", "coordinates": [ [ - [-2.010316, 1.001168], - [-2.010316, 2.002337], - [-1.005158, 2.002337], - [-1.005158, 1.001168], - [-2.010316, 1.001168] + [-2, 1], + [-2, 2], + [-1, 2], + [-1, 1], + [-2, 1] ] ] } @@ -600,11 +600,11 @@ "type": "Polygon", "coordinates": [ [ - [-2.010316, 2.002337], - [-2.010316, 3.003505], - [-1.005158, 3.003505], - [-1.005158, 2.002337], - [-2.010316, 2.002337] + [-2, 2], + [-2, 3], + [-1, 3], + [-1, 2], + [-2, 2] ] ] } @@ -616,11 +616,11 @@ "type": "Polygon", "coordinates": [ [ - [-2.010316, 3.003505], - [-2.010316, 4.004674], - [-1.005158, 4.004674], - [-1.005158, 3.003505], - [-2.010316, 3.003505] + [-2, 3], + [-2, 4], + [-1, 4], + [-1, 3], + [-2, 3] ] ] } @@ -632,11 +632,11 @@ "type": "Polygon", "coordinates": [ [ - [-2.010316, 4.004674], - [-2.010316, 5.005842], - [-1.005158, 5.005842], - [-1.005158, 4.004674], - [-2.010316, 4.004674] + [-2, 4], + [-2, 5], + [-1, 5], + [-1, 4], + [-2, 4] ] ] } @@ -648,11 +648,11 @@ "type": "Polygon", "coordinates": [ [ - [-1.005158, -5.005842], - [-1.005158, -4.004674], - [0, -4.004674], - [0, -5.005842], - [-1.005158, -5.005842] + [-1, -5], + [-1, -4], + [0, -4], + [0, -5], + [-1, -5] ] ] } @@ -664,11 +664,11 @@ "type": "Polygon", "coordinates": [ [ - [-1.005158, -4.004674], - [-1.005158, -3.003505], - [0, -3.003505], - [0, -4.004674], - [-1.005158, -4.004674] + [-1, -4], + [-1, -3], + [0, -3], + [0, -4], + [-1, -4] ] ] } @@ -680,11 +680,11 @@ "type": "Polygon", "coordinates": [ [ - [-1.005158, -3.003505], - [-1.005158, -2.002337], - [0, -2.002337], - [0, -3.003505], - [-1.005158, -3.003505] + [-1, -3], + [-1, -2], + [0, -2], + [0, -3], + [-1, -3] ] ] } @@ -696,11 +696,11 @@ "type": "Polygon", "coordinates": [ [ - [-1.005158, -2.002337], - [-1.005158, -1.001168], - [0, -1.001168], - [0, -2.002337], - [-1.005158, -2.002337] + [-1, -2], + [-1, -1], + [0, -1], + [0, -2], + [-1, -2] ] ] } @@ -712,11 +712,11 @@ "type": "Polygon", "coordinates": [ [ - [-1.005158, -1.001168], - [-1.005158, 0], + [-1, -1], + [-1, 0], [0, 0], - [0, -1.001168], - [-1.005158, -1.001168] + [0, -1], + [-1, -1] ] ] } @@ -728,11 +728,11 @@ "type": "Polygon", "coordinates": [ [ - [-1.005158, 0], - [-1.005158, 1.001168], - [0, 1.001168], + [-1, 0], + [-1, 1], + [0, 1], [0, 0], - [-1.005158, 0] + [-1, 0] ] ] } @@ -744,11 +744,11 @@ "type": "Polygon", "coordinates": [ [ - [-1.005158, 1.001168], - [-1.005158, 2.002337], - [0, 2.002337], - [0, 1.001168], - [-1.005158, 1.001168] + [-1, 1], + [-1, 2], + [0, 2], + [0, 1], + [-1, 1] ] ] } @@ -760,11 +760,11 @@ "type": "Polygon", "coordinates": [ [ - [-1.005158, 2.002337], - [-1.005158, 3.003505], - [0, 3.003505], - [0, 2.002337], - [-1.005158, 2.002337] + [-1, 2], + [-1, 3], + [0, 3], + [0, 2], + [-1, 2] ] ] } @@ -776,11 +776,11 @@ "type": "Polygon", "coordinates": [ [ - [-1.005158, 3.003505], - [-1.005158, 4.004674], - [0, 4.004674], - [0, 3.003505], - [-1.005158, 3.003505] + [-1, 3], + [-1, 4], + [0, 4], + [0, 3], + [-1, 3] ] ] } @@ -792,11 +792,11 @@ "type": "Polygon", "coordinates": [ [ - [-1.005158, 4.004674], - [-1.005158, 5.005842], - [0, 5.005842], - [0, 4.004674], - [-1.005158, 4.004674] + [-1, 4], + [-1, 5], + [0, 5], + [0, 4], + [-1, 4] ] ] } @@ -808,11 +808,11 @@ "type": "Polygon", "coordinates": [ [ - [0, -5.005842], - [0, -4.004674], - [1.005158, -4.004674], - [1.005158, -5.005842], - [0, -5.005842] + [0, -5], + [0, -4], + [1, -4], + [1, -5], + [0, -5] ] ] } @@ -824,11 +824,11 @@ "type": "Polygon", "coordinates": [ [ - [0, -4.004674], - [0, -3.003505], - [1.005158, -3.003505], - [1.005158, -4.004674], - [0, -4.004674] + [0, -4], + [0, -3], + [1, -3], + [1, -4], + [0, -4] ] ] } @@ -840,11 +840,11 @@ "type": "Polygon", "coordinates": [ [ - [0, -3.003505], - [0, -2.002337], - [1.005158, -2.002337], - [1.005158, -3.003505], - [0, -3.003505] + [0, -3], + [0, -2], + [1, -2], + [1, -3], + [0, -3] ] ] } @@ -856,11 +856,11 @@ "type": "Polygon", "coordinates": [ [ - [0, -2.002337], - [0, -1.001168], - [1.005158, -1.001168], - [1.005158, -2.002337], - [0, -2.002337] + [0, -2], + [0, -1], + [1, -1], + [1, -2], + [0, -2] ] ] } @@ -872,11 +872,11 @@ "type": "Polygon", "coordinates": [ [ - [0, -1.001168], + [0, -1], [0, 0], - [1.005158, 0], - [1.005158, -1.001168], - [0, -1.001168] + [1, 0], + [1, -1], + [0, -1] ] ] } @@ -889,9 +889,9 @@ "coordinates": [ [ [0, 0], - [0, 1.001168], - [1.005158, 1.001168], - [1.005158, 0], + [0, 1], + [1, 1], + [1, 0], [0, 0] ] ] @@ -904,11 +904,11 @@ "type": "Polygon", "coordinates": [ [ - [0, 1.001168], - [0, 2.002337], - [1.005158, 2.002337], - [1.005158, 1.001168], - [0, 1.001168] + [0, 1], + [0, 2], + [1, 2], + [1, 1], + [0, 1] ] ] } @@ -920,11 +920,11 @@ "type": "Polygon", "coordinates": [ [ - [0, 2.002337], - [0, 3.003505], - [1.005158, 3.003505], - [1.005158, 2.002337], - [0, 2.002337] + [0, 2], + [0, 3], + [1, 3], + [1, 2], + [0, 2] ] ] } @@ -936,11 +936,11 @@ "type": "Polygon", "coordinates": [ [ - [0, 3.003505], - [0, 4.004674], - [1.005158, 4.004674], - [1.005158, 3.003505], - [0, 3.003505] + [0, 3], + [0, 4], + [1, 4], + [1, 3], + [0, 3] ] ] } @@ -952,11 +952,11 @@ "type": "Polygon", "coordinates": [ [ - [0, 4.004674], - [0, 5.005842], - [1.005158, 5.005842], - [1.005158, 4.004674], - [0, 4.004674] + [0, 4], + [0, 5], + [1, 5], + [1, 4], + [0, 4] ] ] } @@ -968,11 +968,11 @@ "type": "Polygon", "coordinates": [ [ - [1.005158, -5.005842], - [1.005158, -4.004674], - [2.010316, -4.004674], - [2.010316, -5.005842], - [1.005158, -5.005842] + [1, -5], + [1, -4], + [2, -4], + [2, -5], + [1, -5] ] ] } @@ -984,11 +984,11 @@ "type": "Polygon", "coordinates": [ [ - [1.005158, -4.004674], - [1.005158, -3.003505], - [2.010316, -3.003505], - [2.010316, -4.004674], - [1.005158, -4.004674] + [1, -4], + [1, -3], + [2, -3], + [2, -4], + [1, -4] ] ] } @@ -1000,11 +1000,11 @@ "type": "Polygon", "coordinates": [ [ - [1.005158, -3.003505], - [1.005158, -2.002337], - [2.010316, -2.002337], - [2.010316, -3.003505], - [1.005158, -3.003505] + [1, -3], + [1, -2], + [2, -2], + [2, -3], + [1, -3] ] ] } @@ -1016,11 +1016,11 @@ "type": "Polygon", "coordinates": [ [ - [1.005158, -2.002337], - [1.005158, -1.001168], - [2.010316, -1.001168], - [2.010316, -2.002337], - [1.005158, -2.002337] + [1, -2], + [1, -1], + [2, -1], + [2, -2], + [1, -2] ] ] } @@ -1032,11 +1032,11 @@ "type": "Polygon", "coordinates": [ [ - [1.005158, -1.001168], - [1.005158, 0], - [2.010316, 0], - [2.010316, -1.001168], - [1.005158, -1.001168] + [1, -1], + [1, 0], + [2, 0], + [2, -1], + [1, -1] ] ] } @@ -1048,11 +1048,11 @@ "type": "Polygon", "coordinates": [ [ - [1.005158, 0], - [1.005158, 1.001168], - [2.010316, 1.001168], - [2.010316, 0], - [1.005158, 0] + [1, 0], + [1, 1], + [2, 1], + [2, 0], + [1, 0] ] ] } @@ -1064,11 +1064,11 @@ "type": "Polygon", "coordinates": [ [ - [1.005158, 1.001168], - [1.005158, 2.002337], - [2.010316, 2.002337], - [2.010316, 1.001168], - [1.005158, 1.001168] + [1, 1], + [1, 2], + [2, 2], + [2, 1], + [1, 1] ] ] } @@ -1080,11 +1080,11 @@ "type": "Polygon", "coordinates": [ [ - [1.005158, 2.002337], - [1.005158, 3.003505], - [2.010316, 3.003505], - [2.010316, 2.002337], - [1.005158, 2.002337] + [1, 2], + [1, 3], + [2, 3], + [2, 2], + [1, 2] ] ] } @@ -1096,11 +1096,11 @@ "type": "Polygon", "coordinates": [ [ - [1.005158, 3.003505], - [1.005158, 4.004674], - [2.010316, 4.004674], - [2.010316, 3.003505], - [1.005158, 3.003505] + [1, 3], + [1, 4], + [2, 4], + [2, 3], + [1, 3] ] ] } @@ -1112,11 +1112,11 @@ "type": "Polygon", "coordinates": [ [ - [1.005158, 4.004674], - [1.005158, 5.005842], - [2.010316, 5.005842], - [2.010316, 4.004674], - [1.005158, 4.004674] + [1, 4], + [1, 5], + [2, 5], + [2, 4], + [1, 4] ] ] } @@ -1128,11 +1128,11 @@ "type": "Polygon", "coordinates": [ [ - [2.010316, -5.005842], - [2.010316, -4.004674], - [3.015475, -4.004674], - [3.015475, -5.005842], - [2.010316, -5.005842] + [2, -5], + [2, -4], + [3, -4], + [3, -5], + [2, -5] ] ] } @@ -1144,11 +1144,11 @@ "type": "Polygon", "coordinates": [ [ - [2.010316, -4.004674], - [2.010316, -3.003505], - [3.015475, -3.003505], - [3.015475, -4.004674], - [2.010316, -4.004674] + [2, -4], + [2, -3], + [3, -3], + [3, -4], + [2, -4] ] ] } @@ -1160,11 +1160,11 @@ "type": "Polygon", "coordinates": [ [ - [2.010316, -3.003505], - [2.010316, -2.002337], - [3.015475, -2.002337], - [3.015475, -3.003505], - [2.010316, -3.003505] + [2, -3], + [2, -2], + [3, -2], + [3, -3], + [2, -3] ] ] } @@ -1176,11 +1176,11 @@ "type": "Polygon", "coordinates": [ [ - [2.010316, -2.002337], - [2.010316, -1.001168], - [3.015475, -1.001168], - [3.015475, -2.002337], - [2.010316, -2.002337] + [2, -2], + [2, -1], + [3, -1], + [3, -2], + [2, -2] ] ] } @@ -1192,11 +1192,11 @@ "type": "Polygon", "coordinates": [ [ - [2.010316, -1.001168], - [2.010316, 0], - [3.015475, 0], - [3.015475, -1.001168], - [2.010316, -1.001168] + [2, -1], + [2, 0], + [3, 0], + [3, -1], + [2, -1] ] ] } @@ -1208,11 +1208,11 @@ "type": "Polygon", "coordinates": [ [ - [2.010316, 0], - [2.010316, 1.001168], - [3.015475, 1.001168], - [3.015475, 0], - [2.010316, 0] + [2, 0], + [2, 1], + [3, 1], + [3, 0], + [2, 0] ] ] } @@ -1224,11 +1224,11 @@ "type": "Polygon", "coordinates": [ [ - [2.010316, 1.001168], - [2.010316, 2.002337], - [3.015475, 2.002337], - [3.015475, 1.001168], - [2.010316, 1.001168] + [2, 1], + [2, 2], + [3, 2], + [3, 1], + [2, 1] ] ] } @@ -1240,11 +1240,11 @@ "type": "Polygon", "coordinates": [ [ - [2.010316, 2.002337], - [2.010316, 3.003505], - [3.015475, 3.003505], - [3.015475, 2.002337], - [2.010316, 2.002337] + [2, 2], + [2, 3], + [3, 3], + [3, 2], + [2, 2] ] ] } @@ -1256,11 +1256,11 @@ "type": "Polygon", "coordinates": [ [ - [2.010316, 3.003505], - [2.010316, 4.004674], - [3.015475, 4.004674], - [3.015475, 3.003505], - [2.010316, 3.003505] + [2, 3], + [2, 4], + [3, 4], + [3, 3], + [2, 3] ] ] } @@ -1272,11 +1272,11 @@ "type": "Polygon", "coordinates": [ [ - [2.010316, 4.004674], - [2.010316, 5.005842], - [3.015475, 5.005842], - [3.015475, 4.004674], - [2.010316, 4.004674] + [2, 4], + [2, 5], + [3, 5], + [3, 4], + [2, 4] ] ] } @@ -1288,11 +1288,11 @@ "type": "Polygon", "coordinates": [ [ - [3.015475, -5.005842], - [3.015475, -4.004674], - [4.020633, -4.004674], - [4.020633, -5.005842], - [3.015475, -5.005842] + [3, -5], + [3, -4], + [4, -4], + [4, -5], + [3, -5] ] ] } @@ -1304,11 +1304,11 @@ "type": "Polygon", "coordinates": [ [ - [3.015475, -4.004674], - [3.015475, -3.003505], - [4.020633, -3.003505], - [4.020633, -4.004674], - [3.015475, -4.004674] + [3, -4], + [3, -3], + [4, -3], + [4, -4], + [3, -4] ] ] } @@ -1320,11 +1320,11 @@ "type": "Polygon", "coordinates": [ [ - [3.015475, -3.003505], - [3.015475, -2.002337], - [4.020633, -2.002337], - [4.020633, -3.003505], - [3.015475, -3.003505] + [3, -3], + [3, -2], + [4, -2], + [4, -3], + [3, -3] ] ] } @@ -1336,11 +1336,11 @@ "type": "Polygon", "coordinates": [ [ - [3.015475, -2.002337], - [3.015475, -1.001168], - [4.020633, -1.001168], - [4.020633, -2.002337], - [3.015475, -2.002337] + [3, -2], + [3, -1], + [4, -1], + [4, -2], + [3, -2] ] ] } @@ -1352,11 +1352,11 @@ "type": "Polygon", "coordinates": [ [ - [3.015475, -1.001168], - [3.015475, 0], - [4.020633, 0], - [4.020633, -1.001168], - [3.015475, -1.001168] + [3, -1], + [3, 0], + [4, 0], + [4, -1], + [3, -1] ] ] } @@ -1368,11 +1368,11 @@ "type": "Polygon", "coordinates": [ [ - [3.015475, 0], - [3.015475, 1.001168], - [4.020633, 1.001168], - [4.020633, 0], - [3.015475, 0] + [3, 0], + [3, 1], + [4, 1], + [4, 0], + [3, 0] ] ] } @@ -1384,11 +1384,11 @@ "type": "Polygon", "coordinates": [ [ - [3.015475, 1.001168], - [3.015475, 2.002337], - [4.020633, 2.002337], - [4.020633, 1.001168], - [3.015475, 1.001168] + [3, 1], + [3, 2], + [4, 2], + [4, 1], + [3, 1] ] ] } @@ -1400,11 +1400,11 @@ "type": "Polygon", "coordinates": [ [ - [3.015475, 2.002337], - [3.015475, 3.003505], - [4.020633, 3.003505], - [4.020633, 2.002337], - [3.015475, 2.002337] + [3, 2], + [3, 3], + [4, 3], + [4, 2], + [3, 2] ] ] } @@ -1416,11 +1416,11 @@ "type": "Polygon", "coordinates": [ [ - [3.015475, 3.003505], - [3.015475, 4.004674], - [4.020633, 4.004674], - [4.020633, 3.003505], - [3.015475, 3.003505] + [3, 3], + [3, 4], + [4, 4], + [4, 3], + [3, 3] ] ] } @@ -1432,11 +1432,11 @@ "type": "Polygon", "coordinates": [ [ - [3.015475, 4.004674], - [3.015475, 5.005842], - [4.020633, 5.005842], - [4.020633, 4.004674], - [3.015475, 4.004674] + [3, 4], + [3, 5], + [4, 5], + [4, 4], + [3, 4] ] ] } @@ -1448,11 +1448,11 @@ "type": "Polygon", "coordinates": [ [ - [4.020633, -5.005842], - [4.020633, -4.004674], - [5.025791, -4.004674], - [5.025791, -5.005842], - [4.020633, -5.005842] + [4, -5], + [4, -4], + [5, -4], + [5, -5], + [4, -5] ] ] } @@ -1464,11 +1464,11 @@ "type": "Polygon", "coordinates": [ [ - [4.020633, -4.004674], - [4.020633, -3.003505], - [5.025791, -3.003505], - [5.025791, -4.004674], - [4.020633, -4.004674] + [4, -4], + [4, -3], + [5, -3], + [5, -4], + [4, -4] ] ] } @@ -1480,11 +1480,11 @@ "type": "Polygon", "coordinates": [ [ - [4.020633, -3.003505], - [4.020633, -2.002337], - [5.025791, -2.002337], - [5.025791, -3.003505], - [4.020633, -3.003505] + [4, -3], + [4, -2], + [5, -2], + [5, -3], + [4, -3] ] ] } @@ -1496,11 +1496,11 @@ "type": "Polygon", "coordinates": [ [ - [4.020633, -2.002337], - [4.020633, -1.001168], - [5.025791, -1.001168], - [5.025791, -2.002337], - [4.020633, -2.002337] + [4, -2], + [4, -1], + [5, -1], + [5, -2], + [4, -2] ] ] } @@ -1512,11 +1512,11 @@ "type": "Polygon", "coordinates": [ [ - [4.020633, -1.001168], - [4.020633, 0], - [5.025791, 0], - [5.025791, -1.001168], - [4.020633, -1.001168] + [4, -1], + [4, 0], + [5, 0], + [5, -1], + [4, -1] ] ] } @@ -1528,11 +1528,11 @@ "type": "Polygon", "coordinates": [ [ - [4.020633, 0], - [4.020633, 1.001168], - [5.025791, 1.001168], - [5.025791, 0], - [4.020633, 0] + [4, 0], + [4, 1], + [5, 1], + [5, 0], + [4, 0] ] ] } @@ -1544,11 +1544,11 @@ "type": "Polygon", "coordinates": [ [ - [4.020633, 1.001168], - [4.020633, 2.002337], - [5.025791, 2.002337], - [5.025791, 1.001168], - [4.020633, 1.001168] + [4, 1], + [4, 2], + [5, 2], + [5, 1], + [4, 1] ] ] } @@ -1560,11 +1560,11 @@ "type": "Polygon", "coordinates": [ [ - [4.020633, 2.002337], - [4.020633, 3.003505], - [5.025791, 3.003505], - [5.025791, 2.002337], - [4.020633, 2.002337] + [4, 2], + [4, 3], + [5, 3], + [5, 2], + [4, 2] ] ] } @@ -1576,11 +1576,11 @@ "type": "Polygon", "coordinates": [ [ - [4.020633, 3.003505], - [4.020633, 4.004674], - [5.025791, 4.004674], - [5.025791, 3.003505], - [4.020633, 3.003505] + [4, 3], + [4, 4], + [5, 4], + [5, 3], + [4, 3] ] ] } @@ -1592,11 +1592,11 @@ "type": "Polygon", "coordinates": [ [ - [4.020633, 4.004674], - [4.020633, 5.005842], - [5.025791, 5.005842], - [5.025791, 4.004674], - [4.020633, 4.004674] + [4, 4], + [4, 5], + [5, 5], + [5, 4], + [4, 4] ] ] } diff --git a/packages/turf-rectangle-grid/test/out/australia-mask.geojson b/packages/turf-rectangle-grid/test/out/australia-mask.geojson index 6bbbc4c2f7..5dfec3643f 100644 --- a/packages/turf-rectangle-grid/test/out/australia-mask.geojson +++ b/packages/turf-rectangle-grid/test/out/australia-mask.geojson @@ -8,11 +8,11 @@ "type": "Polygon", "coordinates": [ [ - [113.47488, -22.997663], - [113.47488, -25], - [114.476048, -25], - [114.476048, -22.997663], - [113.47488, -22.997663] + [114, -34], + [114, -32], + [115, -32], + [115, -34], + [114, -34] ] ] } @@ -24,11 +24,11 @@ "type": "Polygon", "coordinates": [ [ - [113.47488, -25], - [113.47488, -27.002337], - [114.476048, -27.002337], - [114.476048, -25], - [113.47488, -25] + [114, -32], + [114, -30], + [115, -30], + [115, -32], + [114, -32] ] ] } @@ -40,11 +40,11 @@ "type": "Polygon", "coordinates": [ [ - [113.47488, -27.002337], - [113.47488, -29.004674], - [114.476048, -29.004674], - [114.476048, -27.002337], - [113.47488, -27.002337] + [114, -30], + [114, -28], + [115, -28], + [115, -30], + [114, -30] ] ] } @@ -56,11 +56,11 @@ "type": "Polygon", "coordinates": [ [ - [114.476048, -18.99299], - [114.476048, -20.995326], - [115.477216, -20.995326], - [115.477216, -18.99299], - [114.476048, -18.99299] + [114, -28], + [114, -26], + [115, -26], + [115, -28], + [114, -28] ] ] } @@ -72,11 +72,11 @@ "type": "Polygon", "coordinates": [ [ - [114.476048, -20.995326], - [114.476048, -22.997663], - [115.477216, -22.997663], - [115.477216, -20.995326], - [114.476048, -20.995326] + [114, -26], + [114, -24], + [115, -24], + [115, -26], + [114, -26] ] ] } @@ -88,11 +88,11 @@ "type": "Polygon", "coordinates": [ [ - [114.476048, -22.997663], - [114.476048, -25], - [115.477216, -25], - [115.477216, -22.997663], - [114.476048, -22.997663] + [114, -24], + [114, -22], + [115, -22], + [115, -24], + [114, -24] ] ] } @@ -104,11 +104,11 @@ "type": "Polygon", "coordinates": [ [ - [114.476048, -25], - [114.476048, -27.002337], - [115.477216, -27.002337], - [115.477216, -25], - [114.476048, -25] + [114, -22], + [114, -20], + [115, -20], + [115, -22], + [114, -22] ] ] } @@ -120,11 +120,11 @@ "type": "Polygon", "coordinates": [ [ - [114.476048, -27.002337], - [114.476048, -29.004674], - [115.477216, -29.004674], - [115.477216, -27.002337], - [114.476048, -27.002337] + [115, -36], + [115, -34], + [116, -34], + [116, -36], + [115, -36] ] ] } @@ -136,11 +136,11 @@ "type": "Polygon", "coordinates": [ [ - [114.476048, -29.004674], - [114.476048, -31.00701], - [115.477216, -31.00701], - [115.477216, -29.004674], - [114.476048, -29.004674] + [115, -34], + [115, -32], + [116, -32], + [116, -34], + [115, -34] ] ] } @@ -152,11 +152,11 @@ "type": "Polygon", "coordinates": [ [ - [114.476048, -31.00701], - [114.476048, -33.009347], - [115.477216, -33.009347], - [115.477216, -31.00701], - [114.476048, -31.00701] + [115, -32], + [115, -30], + [116, -30], + [116, -32], + [115, -32] ] ] } @@ -168,11 +168,11 @@ "type": "Polygon", "coordinates": [ [ - [114.476048, -33.009347], - [114.476048, -35.011684], - [115.477216, -35.011684], - [115.477216, -33.009347], - [114.476048, -33.009347] + [115, -30], + [115, -28], + [116, -28], + [116, -30], + [115, -30] ] ] } @@ -184,11 +184,11 @@ "type": "Polygon", "coordinates": [ [ - [115.477216, -18.99299], - [115.477216, -20.995326], - [116.478385, -20.995326], - [116.478385, -18.99299], - [115.477216, -18.99299] + [115, -28], + [115, -26], + [116, -26], + [116, -28], + [115, -28] ] ] } @@ -200,11 +200,11 @@ "type": "Polygon", "coordinates": [ [ - [115.477216, -20.995326], - [115.477216, -22.997663], - [116.478385, -22.997663], - [116.478385, -20.995326], - [115.477216, -20.995326] + [115, -26], + [115, -24], + [116, -24], + [116, -26], + [115, -26] ] ] } @@ -216,11 +216,11 @@ "type": "Polygon", "coordinates": [ [ - [115.477216, -22.997663], - [115.477216, -25], - [116.478385, -25], - [116.478385, -22.997663], - [115.477216, -22.997663] + [115, -24], + [115, -22], + [116, -22], + [116, -24], + [115, -24] ] ] } @@ -232,11 +232,11 @@ "type": "Polygon", "coordinates": [ [ - [115.477216, -25], - [115.477216, -27.002337], - [116.478385, -27.002337], - [116.478385, -25], - [115.477216, -25] + [115, -22], + [115, -20], + [116, -20], + [116, -22], + [115, -22] ] ] } @@ -248,11 +248,11 @@ "type": "Polygon", "coordinates": [ [ - [115.477216, -27.002337], - [115.477216, -29.004674], - [116.478385, -29.004674], - [116.478385, -27.002337], - [115.477216, -27.002337] + [116, -36], + [116, -34], + [117, -34], + [117, -36], + [116, -36] ] ] } @@ -264,11 +264,11 @@ "type": "Polygon", "coordinates": [ [ - [115.477216, -29.004674], - [115.477216, -31.00701], - [116.478385, -31.00701], - [116.478385, -29.004674], - [115.477216, -29.004674] + [116, -34], + [116, -32], + [117, -32], + [117, -34], + [116, -34] ] ] } @@ -280,11 +280,11 @@ "type": "Polygon", "coordinates": [ [ - [115.477216, -31.00701], - [115.477216, -33.009347], - [116.478385, -33.009347], - [116.478385, -31.00701], - [115.477216, -31.00701] + [116, -32], + [116, -30], + [117, -30], + [117, -32], + [116, -32] ] ] } @@ -296,11 +296,11 @@ "type": "Polygon", "coordinates": [ [ - [115.477216, -33.009347], - [115.477216, -35.011684], - [116.478385, -35.011684], - [116.478385, -33.009347], - [115.477216, -33.009347] + [116, -30], + [116, -28], + [117, -28], + [117, -30], + [116, -30] ] ] } @@ -312,11 +312,11 @@ "type": "Polygon", "coordinates": [ [ - [115.477216, -35.011684], - [115.477216, -37.014021], - [116.478385, -37.014021], - [116.478385, -35.011684], - [115.477216, -35.011684] + [116, -28], + [116, -26], + [117, -26], + [117, -28], + [116, -28] ] ] } @@ -328,11 +328,11 @@ "type": "Polygon", "coordinates": [ [ - [116.478385, -18.99299], - [116.478385, -20.995326], - [117.479553, -20.995326], - [117.479553, -18.99299], - [116.478385, -18.99299] + [116, -26], + [116, -24], + [117, -24], + [117, -26], + [116, -26] ] ] } @@ -344,11 +344,11 @@ "type": "Polygon", "coordinates": [ [ - [116.478385, -20.995326], - [116.478385, -22.997663], - [117.479553, -22.997663], - [117.479553, -20.995326], - [116.478385, -20.995326] + [116, -24], + [116, -22], + [117, -22], + [117, -24], + [116, -24] ] ] } @@ -360,11 +360,11 @@ "type": "Polygon", "coordinates": [ [ - [116.478385, -22.997663], - [116.478385, -25], - [117.479553, -25], - [117.479553, -22.997663], - [116.478385, -22.997663] + [116, -22], + [116, -20], + [117, -20], + [117, -22], + [116, -22] ] ] } @@ -376,11 +376,11 @@ "type": "Polygon", "coordinates": [ [ - [116.478385, -25], - [116.478385, -27.002337], - [117.479553, -27.002337], - [117.479553, -25], - [116.478385, -25] + [117, -36], + [117, -34], + [118, -34], + [118, -36], + [117, -36] ] ] } @@ -392,11 +392,11 @@ "type": "Polygon", "coordinates": [ [ - [116.478385, -27.002337], - [116.478385, -29.004674], - [117.479553, -29.004674], - [117.479553, -27.002337], - [116.478385, -27.002337] + [117, -34], + [117, -32], + [118, -32], + [118, -34], + [117, -34] ] ] } @@ -408,11 +408,11 @@ "type": "Polygon", "coordinates": [ [ - [116.478385, -29.004674], - [116.478385, -31.00701], - [117.479553, -31.00701], - [117.479553, -29.004674], - [116.478385, -29.004674] + [117, -32], + [117, -30], + [118, -30], + [118, -32], + [117, -32] ] ] } @@ -424,11 +424,11 @@ "type": "Polygon", "coordinates": [ [ - [116.478385, -31.00701], - [116.478385, -33.009347], - [117.479553, -33.009347], - [117.479553, -31.00701], - [116.478385, -31.00701] + [117, -30], + [117, -28], + [118, -28], + [118, -30], + [117, -30] ] ] } @@ -440,11 +440,11 @@ "type": "Polygon", "coordinates": [ [ - [116.478385, -33.009347], - [116.478385, -35.011684], - [117.479553, -35.011684], - [117.479553, -33.009347], - [116.478385, -33.009347] + [117, -28], + [117, -26], + [118, -26], + [118, -28], + [117, -28] ] ] } @@ -456,11 +456,11 @@ "type": "Polygon", "coordinates": [ [ - [117.479553, -18.99299], - [117.479553, -20.995326], - [118.480721, -20.995326], - [118.480721, -18.99299], - [117.479553, -18.99299] + [117, -26], + [117, -24], + [118, -24], + [118, -26], + [117, -26] ] ] } @@ -472,11 +472,11 @@ "type": "Polygon", "coordinates": [ [ - [117.479553, -20.995326], - [117.479553, -22.997663], - [118.480721, -22.997663], - [118.480721, -20.995326], - [117.479553, -20.995326] + [117, -24], + [117, -22], + [118, -22], + [118, -24], + [117, -24] ] ] } @@ -488,11 +488,11 @@ "type": "Polygon", "coordinates": [ [ - [117.479553, -22.997663], - [117.479553, -25], - [118.480721, -25], - [118.480721, -22.997663], - [117.479553, -22.997663] + [117, -22], + [117, -20], + [118, -20], + [118, -22], + [117, -22] ] ] } @@ -504,11 +504,11 @@ "type": "Polygon", "coordinates": [ [ - [117.479553, -25], - [117.479553, -27.002337], - [118.480721, -27.002337], - [118.480721, -25], - [117.479553, -25] + [118, -36], + [118, -34], + [119, -34], + [119, -36], + [118, -36] ] ] } @@ -520,11 +520,11 @@ "type": "Polygon", "coordinates": [ [ - [117.479553, -27.002337], - [117.479553, -29.004674], - [118.480721, -29.004674], - [118.480721, -27.002337], - [117.479553, -27.002337] + [118, -34], + [118, -32], + [119, -32], + [119, -34], + [118, -34] ] ] } @@ -536,11 +536,11 @@ "type": "Polygon", "coordinates": [ [ - [117.479553, -29.004674], - [117.479553, -31.00701], - [118.480721, -31.00701], - [118.480721, -29.004674], - [117.479553, -29.004674] + [118, -32], + [118, -30], + [119, -30], + [119, -32], + [118, -32] ] ] } @@ -552,11 +552,11 @@ "type": "Polygon", "coordinates": [ [ - [117.479553, -31.00701], - [117.479553, -33.009347], - [118.480721, -33.009347], - [118.480721, -31.00701], - [117.479553, -31.00701] + [118, -30], + [118, -28], + [119, -28], + [119, -30], + [118, -30] ] ] } @@ -568,11 +568,11 @@ "type": "Polygon", "coordinates": [ [ - [117.479553, -33.009347], - [117.479553, -35.011684], - [118.480721, -35.011684], - [118.480721, -33.009347], - [117.479553, -33.009347] + [118, -28], + [118, -26], + [119, -26], + [119, -28], + [118, -28] ] ] } @@ -584,11 +584,11 @@ "type": "Polygon", "coordinates": [ [ - [118.480721, -18.99299], - [118.480721, -20.995326], - [119.48189, -20.995326], - [119.48189, -18.99299], - [118.480721, -18.99299] + [118, -26], + [118, -24], + [119, -24], + [119, -26], + [118, -26] ] ] } @@ -600,11 +600,11 @@ "type": "Polygon", "coordinates": [ [ - [118.480721, -20.995326], - [118.480721, -22.997663], - [119.48189, -22.997663], - [119.48189, -20.995326], - [118.480721, -20.995326] + [118, -24], + [118, -22], + [119, -22], + [119, -24], + [118, -24] ] ] } @@ -616,11 +616,11 @@ "type": "Polygon", "coordinates": [ [ - [118.480721, -22.997663], - [118.480721, -25], - [119.48189, -25], - [119.48189, -22.997663], - [118.480721, -22.997663] + [118, -22], + [118, -20], + [119, -20], + [119, -22], + [118, -22] ] ] } @@ -632,11 +632,11 @@ "type": "Polygon", "coordinates": [ [ - [118.480721, -25], - [118.480721, -27.002337], - [119.48189, -27.002337], - [119.48189, -25], - [118.480721, -25] + [119, -36], + [119, -34], + [120, -34], + [120, -36], + [119, -36] ] ] } @@ -648,11 +648,11 @@ "type": "Polygon", "coordinates": [ [ - [118.480721, -27.002337], - [118.480721, -29.004674], - [119.48189, -29.004674], - [119.48189, -27.002337], - [118.480721, -27.002337] + [119, -34], + [119, -32], + [120, -32], + [120, -34], + [119, -34] ] ] } @@ -664,11 +664,11 @@ "type": "Polygon", "coordinates": [ [ - [118.480721, -29.004674], - [118.480721, -31.00701], - [119.48189, -31.00701], - [119.48189, -29.004674], - [118.480721, -29.004674] + [119, -32], + [119, -30], + [120, -30], + [120, -32], + [119, -32] ] ] } @@ -680,11 +680,11 @@ "type": "Polygon", "coordinates": [ [ - [118.480721, -31.00701], - [118.480721, -33.009347], - [119.48189, -33.009347], - [119.48189, -31.00701], - [118.480721, -31.00701] + [119, -30], + [119, -28], + [120, -28], + [120, -30], + [119, -30] ] ] } @@ -696,11 +696,11 @@ "type": "Polygon", "coordinates": [ [ - [118.480721, -33.009347], - [118.480721, -35.011684], - [119.48189, -35.011684], - [119.48189, -33.009347], - [118.480721, -33.009347] + [119, -28], + [119, -26], + [120, -26], + [120, -28], + [119, -28] ] ] } @@ -712,11 +712,11 @@ "type": "Polygon", "coordinates": [ [ - [119.48189, -18.99299], - [119.48189, -20.995326], - [120.483058, -20.995326], - [120.483058, -18.99299], - [119.48189, -18.99299] + [119, -26], + [119, -24], + [120, -24], + [120, -26], + [119, -26] ] ] } @@ -728,11 +728,11 @@ "type": "Polygon", "coordinates": [ [ - [119.48189, -20.995326], - [119.48189, -22.997663], - [120.483058, -22.997663], - [120.483058, -20.995326], - [119.48189, -20.995326] + [119, -24], + [119, -22], + [120, -22], + [120, -24], + [119, -24] ] ] } @@ -744,11 +744,11 @@ "type": "Polygon", "coordinates": [ [ - [119.48189, -22.997663], - [119.48189, -25], - [120.483058, -25], - [120.483058, -22.997663], - [119.48189, -22.997663] + [119, -22], + [119, -20], + [120, -20], + [120, -22], + [119, -22] ] ] } @@ -760,11 +760,11 @@ "type": "Polygon", "coordinates": [ [ - [119.48189, -25], - [119.48189, -27.002337], - [120.483058, -27.002337], - [120.483058, -25], - [119.48189, -25] + [119, -20], + [119, -18], + [120, -18], + [120, -20], + [119, -20] ] ] } @@ -776,11 +776,11 @@ "type": "Polygon", "coordinates": [ [ - [119.48189, -27.002337], - [119.48189, -29.004674], - [120.483058, -29.004674], - [120.483058, -27.002337], - [119.48189, -27.002337] + [120, -36], + [120, -34], + [121, -34], + [121, -36], + [120, -36] ] ] } @@ -792,11 +792,11 @@ "type": "Polygon", "coordinates": [ [ - [119.48189, -29.004674], - [119.48189, -31.00701], - [120.483058, -31.00701], - [120.483058, -29.004674], - [119.48189, -29.004674] + [120, -34], + [120, -32], + [121, -32], + [121, -34], + [120, -34] ] ] } @@ -808,11 +808,11 @@ "type": "Polygon", "coordinates": [ [ - [119.48189, -31.00701], - [119.48189, -33.009347], - [120.483058, -33.009347], - [120.483058, -31.00701], - [119.48189, -31.00701] + [120, -32], + [120, -30], + [121, -30], + [121, -32], + [120, -32] ] ] } @@ -824,11 +824,11 @@ "type": "Polygon", "coordinates": [ [ - [119.48189, -33.009347], - [119.48189, -35.011684], - [120.483058, -35.011684], - [120.483058, -33.009347], - [119.48189, -33.009347] + [120, -30], + [120, -28], + [121, -28], + [121, -30], + [120, -30] ] ] } @@ -840,11 +840,11 @@ "type": "Polygon", "coordinates": [ [ - [120.483058, -16.990653], - [120.483058, -18.99299], - [121.484227, -18.99299], - [121.484227, -16.990653], - [120.483058, -16.990653] + [120, -28], + [120, -26], + [121, -26], + [121, -28], + [120, -28] ] ] } @@ -856,11 +856,11 @@ "type": "Polygon", "coordinates": [ [ - [120.483058, -18.99299], - [120.483058, -20.995326], - [121.484227, -20.995326], - [121.484227, -18.99299], - [120.483058, -18.99299] + [120, -26], + [120, -24], + [121, -24], + [121, -26], + [120, -26] ] ] } @@ -872,11 +872,11 @@ "type": "Polygon", "coordinates": [ [ - [120.483058, -20.995326], - [120.483058, -22.997663], - [121.484227, -22.997663], - [121.484227, -20.995326], - [120.483058, -20.995326] + [120, -24], + [120, -22], + [121, -22], + [121, -24], + [120, -24] ] ] } @@ -888,11 +888,11 @@ "type": "Polygon", "coordinates": [ [ - [120.483058, -22.997663], - [120.483058, -25], - [121.484227, -25], - [121.484227, -22.997663], - [120.483058, -22.997663] + [120, -22], + [120, -20], + [121, -20], + [121, -22], + [120, -22] ] ] } @@ -904,11 +904,11 @@ "type": "Polygon", "coordinates": [ [ - [120.483058, -25], - [120.483058, -27.002337], - [121.484227, -27.002337], - [121.484227, -25], - [120.483058, -25] + [120, -20], + [120, -18], + [121, -18], + [121, -20], + [120, -20] ] ] } @@ -920,11 +920,11 @@ "type": "Polygon", "coordinates": [ [ - [120.483058, -27.002337], - [120.483058, -29.004674], - [121.484227, -29.004674], - [121.484227, -27.002337], - [120.483058, -27.002337] + [121, -36], + [121, -34], + [122, -34], + [122, -36], + [121, -36] ] ] } @@ -936,11 +936,11 @@ "type": "Polygon", "coordinates": [ [ - [120.483058, -29.004674], - [120.483058, -31.00701], - [121.484227, -31.00701], - [121.484227, -29.004674], - [120.483058, -29.004674] + [121, -34], + [121, -32], + [122, -32], + [122, -34], + [121, -34] ] ] } @@ -952,11 +952,11 @@ "type": "Polygon", "coordinates": [ [ - [120.483058, -31.00701], - [120.483058, -33.009347], - [121.484227, -33.009347], - [121.484227, -31.00701], - [120.483058, -31.00701] + [121, -32], + [121, -30], + [122, -30], + [122, -32], + [121, -32] ] ] } @@ -968,11 +968,11 @@ "type": "Polygon", "coordinates": [ [ - [120.483058, -33.009347], - [120.483058, -35.011684], - [121.484227, -35.011684], - [121.484227, -33.009347], - [120.483058, -33.009347] + [121, -30], + [121, -28], + [122, -28], + [122, -30], + [121, -30] ] ] } @@ -984,11 +984,11 @@ "type": "Polygon", "coordinates": [ [ - [121.484227, -16.990653], - [121.484227, -18.99299], - [122.485395, -18.99299], - [122.485395, -16.990653], - [121.484227, -16.990653] + [121, -28], + [121, -26], + [122, -26], + [122, -28], + [121, -28] ] ] } @@ -1000,11 +1000,11 @@ "type": "Polygon", "coordinates": [ [ - [121.484227, -18.99299], - [121.484227, -20.995326], - [122.485395, -20.995326], - [122.485395, -18.99299], - [121.484227, -18.99299] + [121, -26], + [121, -24], + [122, -24], + [122, -26], + [121, -26] ] ] } @@ -1016,11 +1016,11 @@ "type": "Polygon", "coordinates": [ [ - [121.484227, -20.995326], - [121.484227, -22.997663], - [122.485395, -22.997663], - [122.485395, -20.995326], - [121.484227, -20.995326] + [121, -24], + [121, -22], + [122, -22], + [122, -24], + [121, -24] ] ] } @@ -1032,11 +1032,11 @@ "type": "Polygon", "coordinates": [ [ - [121.484227, -22.997663], - [121.484227, -25], - [122.485395, -25], - [122.485395, -22.997663], - [121.484227, -22.997663] + [121, -22], + [121, -20], + [122, -20], + [122, -22], + [121, -22] ] ] } @@ -1048,11 +1048,11 @@ "type": "Polygon", "coordinates": [ [ - [121.484227, -25], - [121.484227, -27.002337], - [122.485395, -27.002337], - [122.485395, -25], - [121.484227, -25] + [121, -20], + [121, -18], + [122, -18], + [122, -20], + [121, -20] ] ] } @@ -1064,11 +1064,11 @@ "type": "Polygon", "coordinates": [ [ - [121.484227, -27.002337], - [121.484227, -29.004674], - [122.485395, -29.004674], - [122.485395, -27.002337], - [121.484227, -27.002337] + [122, -36], + [122, -34], + [123, -34], + [123, -36], + [122, -36] ] ] } @@ -1080,11 +1080,11 @@ "type": "Polygon", "coordinates": [ [ - [121.484227, -29.004674], - [121.484227, -31.00701], - [122.485395, -31.00701], - [122.485395, -29.004674], - [121.484227, -29.004674] + [122, -34], + [122, -32], + [123, -32], + [123, -34], + [122, -34] ] ] } @@ -1096,11 +1096,11 @@ "type": "Polygon", "coordinates": [ [ - [121.484227, -31.00701], - [121.484227, -33.009347], - [122.485395, -33.009347], - [122.485395, -31.00701], - [121.484227, -31.00701] + [122, -32], + [122, -30], + [123, -30], + [123, -32], + [122, -32] ] ] } @@ -1112,11 +1112,11 @@ "type": "Polygon", "coordinates": [ [ - [121.484227, -33.009347], - [121.484227, -35.011684], - [122.485395, -35.011684], - [122.485395, -33.009347], - [121.484227, -33.009347] + [122, -30], + [122, -28], + [123, -28], + [123, -30], + [122, -30] ] ] } @@ -1128,11 +1128,11 @@ "type": "Polygon", "coordinates": [ [ - [122.485395, -14.988316], - [122.485395, -16.990653], - [123.486563, -16.990653], - [123.486563, -14.988316], - [122.485395, -14.988316] + [122, -28], + [122, -26], + [123, -26], + [123, -28], + [122, -28] ] ] } @@ -1144,11 +1144,11 @@ "type": "Polygon", "coordinates": [ [ - [122.485395, -16.990653], - [122.485395, -18.99299], - [123.486563, -18.99299], - [123.486563, -16.990653], - [122.485395, -16.990653] + [122, -26], + [122, -24], + [123, -24], + [123, -26], + [122, -26] ] ] } @@ -1160,11 +1160,11 @@ "type": "Polygon", "coordinates": [ [ - [122.485395, -18.99299], - [122.485395, -20.995326], - [123.486563, -20.995326], - [123.486563, -18.99299], - [122.485395, -18.99299] + [122, -24], + [122, -22], + [123, -22], + [123, -24], + [122, -24] ] ] } @@ -1176,11 +1176,11 @@ "type": "Polygon", "coordinates": [ [ - [122.485395, -20.995326], - [122.485395, -22.997663], - [123.486563, -22.997663], - [123.486563, -20.995326], - [122.485395, -20.995326] + [122, -22], + [122, -20], + [123, -20], + [123, -22], + [122, -22] ] ] } @@ -1192,11 +1192,11 @@ "type": "Polygon", "coordinates": [ [ - [122.485395, -22.997663], - [122.485395, -25], - [123.486563, -25], - [123.486563, -22.997663], - [122.485395, -22.997663] + [122, -20], + [122, -18], + [123, -18], + [123, -20], + [122, -20] ] ] } @@ -1208,11 +1208,11 @@ "type": "Polygon", "coordinates": [ [ - [122.485395, -25], - [122.485395, -27.002337], - [123.486563, -27.002337], - [123.486563, -25], - [122.485395, -25] + [122, -18], + [122, -16], + [123, -16], + [123, -18], + [122, -18] ] ] } @@ -1224,11 +1224,11 @@ "type": "Polygon", "coordinates": [ [ - [122.485395, -27.002337], - [122.485395, -29.004674], - [123.486563, -29.004674], - [123.486563, -27.002337], - [122.485395, -27.002337] + [123, -36], + [123, -34], + [124, -34], + [124, -36], + [123, -36] ] ] } @@ -1240,11 +1240,11 @@ "type": "Polygon", "coordinates": [ [ - [122.485395, -29.004674], - [122.485395, -31.00701], - [123.486563, -31.00701], - [123.486563, -29.004674], - [122.485395, -29.004674] + [123, -34], + [123, -32], + [124, -32], + [124, -34], + [123, -34] ] ] } @@ -1256,11 +1256,11 @@ "type": "Polygon", "coordinates": [ [ - [122.485395, -31.00701], - [122.485395, -33.009347], - [123.486563, -33.009347], - [123.486563, -31.00701], - [122.485395, -31.00701] + [123, -32], + [123, -30], + [124, -30], + [124, -32], + [123, -32] ] ] } @@ -1272,11 +1272,11 @@ "type": "Polygon", "coordinates": [ [ - [122.485395, -33.009347], - [122.485395, -35.011684], - [123.486563, -35.011684], - [123.486563, -33.009347], - [122.485395, -33.009347] + [123, -30], + [123, -28], + [124, -28], + [124, -30], + [123, -30] ] ] } @@ -1288,11 +1288,11 @@ "type": "Polygon", "coordinates": [ [ - [123.486563, -14.988316], - [123.486563, -16.990653], - [124.487732, -16.990653], - [124.487732, -14.988316], - [123.486563, -14.988316] + [123, -28], + [123, -26], + [124, -26], + [124, -28], + [123, -28] ] ] } @@ -1304,11 +1304,11 @@ "type": "Polygon", "coordinates": [ [ - [123.486563, -16.990653], - [123.486563, -18.99299], - [124.487732, -18.99299], - [124.487732, -16.990653], - [123.486563, -16.990653] + [123, -26], + [123, -24], + [124, -24], + [124, -26], + [123, -26] ] ] } @@ -1320,11 +1320,11 @@ "type": "Polygon", "coordinates": [ [ - [123.486563, -18.99299], - [123.486563, -20.995326], - [124.487732, -20.995326], - [124.487732, -18.99299], - [123.486563, -18.99299] + [123, -24], + [123, -22], + [124, -22], + [124, -24], + [123, -24] ] ] } @@ -1336,11 +1336,11 @@ "type": "Polygon", "coordinates": [ [ - [123.486563, -20.995326], - [123.486563, -22.997663], - [124.487732, -22.997663], - [124.487732, -20.995326], - [123.486563, -20.995326] + [123, -22], + [123, -20], + [124, -20], + [124, -22], + [123, -22] ] ] } @@ -1352,11 +1352,11 @@ "type": "Polygon", "coordinates": [ [ - [123.486563, -22.997663], - [123.486563, -25], - [124.487732, -25], - [124.487732, -22.997663], - [123.486563, -22.997663] + [123, -20], + [123, -18], + [124, -18], + [124, -20], + [123, -20] ] ] } @@ -1368,11 +1368,11 @@ "type": "Polygon", "coordinates": [ [ - [123.486563, -25], - [123.486563, -27.002337], - [124.487732, -27.002337], - [124.487732, -25], - [123.486563, -25] + [123, -18], + [123, -16], + [124, -16], + [124, -18], + [123, -18] ] ] } @@ -1384,11 +1384,11 @@ "type": "Polygon", "coordinates": [ [ - [123.486563, -27.002337], - [123.486563, -29.004674], - [124.487732, -29.004674], - [124.487732, -27.002337], - [123.486563, -27.002337] + [124, -34], + [124, -32], + [125, -32], + [125, -34], + [124, -34] ] ] } @@ -1400,11 +1400,11 @@ "type": "Polygon", "coordinates": [ [ - [123.486563, -29.004674], - [123.486563, -31.00701], - [124.487732, -31.00701], - [124.487732, -29.004674], - [123.486563, -29.004674] + [124, -32], + [124, -30], + [125, -30], + [125, -32], + [124, -32] ] ] } @@ -1416,11 +1416,11 @@ "type": "Polygon", "coordinates": [ [ - [123.486563, -31.00701], - [123.486563, -33.009347], - [124.487732, -33.009347], - [124.487732, -31.00701], - [123.486563, -31.00701] + [124, -30], + [124, -28], + [125, -28], + [125, -30], + [124, -30] ] ] } @@ -1432,11 +1432,11 @@ "type": "Polygon", "coordinates": [ [ - [123.486563, -33.009347], - [123.486563, -35.011684], - [124.487732, -35.011684], - [124.487732, -33.009347], - [123.486563, -33.009347] + [124, -28], + [124, -26], + [125, -26], + [125, -28], + [124, -28] ] ] } @@ -1448,11 +1448,11 @@ "type": "Polygon", "coordinates": [ [ - [124.487732, -12.985979], - [124.487732, -14.988316], - [125.4889, -14.988316], - [125.4889, -12.985979], - [124.487732, -12.985979] + [124, -26], + [124, -24], + [125, -24], + [125, -26], + [124, -26] ] ] } @@ -1464,11 +1464,11 @@ "type": "Polygon", "coordinates": [ [ - [124.487732, -14.988316], - [124.487732, -16.990653], - [125.4889, -16.990653], - [125.4889, -14.988316], - [124.487732, -14.988316] + [124, -24], + [124, -22], + [125, -22], + [125, -24], + [124, -24] ] ] } @@ -1480,11 +1480,11 @@ "type": "Polygon", "coordinates": [ [ - [124.487732, -16.990653], - [124.487732, -18.99299], - [125.4889, -18.99299], - [125.4889, -16.990653], - [124.487732, -16.990653] + [124, -22], + [124, -20], + [125, -20], + [125, -22], + [124, -22] ] ] } @@ -1496,11 +1496,11 @@ "type": "Polygon", "coordinates": [ [ - [124.487732, -18.99299], - [124.487732, -20.995326], - [125.4889, -20.995326], - [125.4889, -18.99299], - [124.487732, -18.99299] + [124, -20], + [124, -18], + [125, -18], + [125, -20], + [124, -20] ] ] } @@ -1512,11 +1512,11 @@ "type": "Polygon", "coordinates": [ [ - [124.487732, -20.995326], - [124.487732, -22.997663], - [125.4889, -22.997663], - [125.4889, -20.995326], - [124.487732, -20.995326] + [124, -18], + [124, -16], + [125, -16], + [125, -18], + [124, -18] ] ] } @@ -1528,11 +1528,11 @@ "type": "Polygon", "coordinates": [ [ - [124.487732, -22.997663], - [124.487732, -25], - [125.4889, -25], - [125.4889, -22.997663], - [124.487732, -22.997663] + [124, -16], + [124, -14], + [125, -14], + [125, -16], + [124, -16] ] ] } @@ -1544,11 +1544,11 @@ "type": "Polygon", "coordinates": [ [ - [124.487732, -25], - [124.487732, -27.002337], - [125.4889, -27.002337], - [125.4889, -25], - [124.487732, -25] + [125, -34], + [125, -32], + [126, -32], + [126, -34], + [125, -34] ] ] } @@ -1560,11 +1560,11 @@ "type": "Polygon", "coordinates": [ [ - [124.487732, -27.002337], - [124.487732, -29.004674], - [125.4889, -29.004674], - [125.4889, -27.002337], - [124.487732, -27.002337] + [125, -32], + [125, -30], + [126, -30], + [126, -32], + [125, -32] ] ] } @@ -1576,11 +1576,11 @@ "type": "Polygon", "coordinates": [ [ - [124.487732, -29.004674], - [124.487732, -31.00701], - [125.4889, -31.00701], - [125.4889, -29.004674], - [124.487732, -29.004674] + [125, -30], + [125, -28], + [126, -28], + [126, -30], + [125, -30] ] ] } @@ -1592,11 +1592,11 @@ "type": "Polygon", "coordinates": [ [ - [124.487732, -31.00701], - [124.487732, -33.009347], - [125.4889, -33.009347], - [125.4889, -31.00701], - [124.487732, -31.00701] + [125, -28], + [125, -26], + [126, -26], + [126, -28], + [125, -28] ] ] } @@ -1608,11 +1608,11 @@ "type": "Polygon", "coordinates": [ [ - [124.487732, -33.009347], - [124.487732, -35.011684], - [125.4889, -35.011684], - [125.4889, -33.009347], - [124.487732, -33.009347] + [125, -26], + [125, -24], + [126, -24], + [126, -26], + [125, -26] ] ] } @@ -1624,11 +1624,11 @@ "type": "Polygon", "coordinates": [ [ - [125.4889, -12.985979], - [125.4889, -14.988316], - [126.490069, -14.988316], - [126.490069, -12.985979], - [125.4889, -12.985979] + [125, -24], + [125, -22], + [126, -22], + [126, -24], + [125, -24] ] ] } @@ -1640,11 +1640,11 @@ "type": "Polygon", "coordinates": [ [ - [125.4889, -14.988316], - [125.4889, -16.990653], - [126.490069, -16.990653], - [126.490069, -14.988316], - [125.4889, -14.988316] + [125, -22], + [125, -20], + [126, -20], + [126, -22], + [125, -22] ] ] } @@ -1656,11 +1656,11 @@ "type": "Polygon", "coordinates": [ [ - [125.4889, -16.990653], - [125.4889, -18.99299], - [126.490069, -18.99299], - [126.490069, -16.990653], - [125.4889, -16.990653] + [125, -20], + [125, -18], + [126, -18], + [126, -20], + [125, -20] ] ] } @@ -1672,11 +1672,11 @@ "type": "Polygon", "coordinates": [ [ - [125.4889, -18.99299], - [125.4889, -20.995326], - [126.490069, -20.995326], - [126.490069, -18.99299], - [125.4889, -18.99299] + [125, -18], + [125, -16], + [126, -16], + [126, -18], + [125, -18] ] ] } @@ -1688,11 +1688,11 @@ "type": "Polygon", "coordinates": [ [ - [125.4889, -20.995326], - [125.4889, -22.997663], - [126.490069, -22.997663], - [126.490069, -20.995326], - [125.4889, -20.995326] + [125, -16], + [125, -14], + [126, -14], + [126, -16], + [125, -16] ] ] } @@ -1704,11 +1704,11 @@ "type": "Polygon", "coordinates": [ [ - [125.4889, -22.997663], - [125.4889, -25], - [126.490069, -25], - [126.490069, -22.997663], - [125.4889, -22.997663] + [126, -34], + [126, -32], + [127, -32], + [127, -34], + [126, -34] ] ] } @@ -1720,11 +1720,11 @@ "type": "Polygon", "coordinates": [ [ - [125.4889, -25], - [125.4889, -27.002337], - [126.490069, -27.002337], - [126.490069, -25], - [125.4889, -25] + [126, -32], + [126, -30], + [127, -30], + [127, -32], + [126, -32] ] ] } @@ -1736,11 +1736,11 @@ "type": "Polygon", "coordinates": [ [ - [125.4889, -27.002337], - [125.4889, -29.004674], - [126.490069, -29.004674], - [126.490069, -27.002337], - [125.4889, -27.002337] + [126, -30], + [126, -28], + [127, -28], + [127, -30], + [126, -30] ] ] } @@ -1752,11 +1752,11 @@ "type": "Polygon", "coordinates": [ [ - [125.4889, -29.004674], - [125.4889, -31.00701], - [126.490069, -31.00701], - [126.490069, -29.004674], - [125.4889, -29.004674] + [126, -28], + [126, -26], + [127, -26], + [127, -28], + [126, -28] ] ] } @@ -1768,11 +1768,11 @@ "type": "Polygon", "coordinates": [ [ - [125.4889, -31.00701], - [125.4889, -33.009347], - [126.490069, -33.009347], - [126.490069, -31.00701], - [125.4889, -31.00701] + [126, -26], + [126, -24], + [127, -24], + [127, -26], + [126, -26] ] ] } @@ -1784,11 +1784,11 @@ "type": "Polygon", "coordinates": [ [ - [126.490069, -12.985979], - [126.490069, -14.988316], - [127.491237, -14.988316], - [127.491237, -12.985979], - [126.490069, -12.985979] + [126, -24], + [126, -22], + [127, -22], + [127, -24], + [126, -24] ] ] } @@ -1800,11 +1800,11 @@ "type": "Polygon", "coordinates": [ [ - [126.490069, -14.988316], - [126.490069, -16.990653], - [127.491237, -16.990653], - [127.491237, -14.988316], - [126.490069, -14.988316] + [126, -22], + [126, -20], + [127, -20], + [127, -22], + [126, -22] ] ] } @@ -1816,11 +1816,11 @@ "type": "Polygon", "coordinates": [ [ - [126.490069, -16.990653], - [126.490069, -18.99299], - [127.491237, -18.99299], - [127.491237, -16.990653], - [126.490069, -16.990653] + [126, -20], + [126, -18], + [127, -18], + [127, -20], + [126, -20] ] ] } @@ -1832,11 +1832,11 @@ "type": "Polygon", "coordinates": [ [ - [126.490069, -18.99299], - [126.490069, -20.995326], - [127.491237, -20.995326], - [127.491237, -18.99299], - [126.490069, -18.99299] + [126, -18], + [126, -16], + [127, -16], + [127, -18], + [126, -18] ] ] } @@ -1848,11 +1848,11 @@ "type": "Polygon", "coordinates": [ [ - [126.490069, -20.995326], - [126.490069, -22.997663], - [127.491237, -22.997663], - [127.491237, -20.995326], - [126.490069, -20.995326] + [126, -16], + [126, -14], + [127, -14], + [127, -16], + [126, -16] ] ] } @@ -1864,11 +1864,11 @@ "type": "Polygon", "coordinates": [ [ - [126.490069, -22.997663], - [126.490069, -25], - [127.491237, -25], - [127.491237, -22.997663], - [126.490069, -22.997663] + [127, -34], + [127, -32], + [128, -32], + [128, -34], + [127, -34] ] ] } @@ -1880,11 +1880,11 @@ "type": "Polygon", "coordinates": [ [ - [126.490069, -25], - [126.490069, -27.002337], - [127.491237, -27.002337], - [127.491237, -25], - [126.490069, -25] + [127, -32], + [127, -30], + [128, -30], + [128, -32], + [127, -32] ] ] } @@ -1896,11 +1896,11 @@ "type": "Polygon", "coordinates": [ [ - [126.490069, -27.002337], - [126.490069, -29.004674], - [127.491237, -29.004674], - [127.491237, -27.002337], - [126.490069, -27.002337] + [127, -30], + [127, -28], + [128, -28], + [128, -30], + [127, -30] ] ] } @@ -1912,11 +1912,11 @@ "type": "Polygon", "coordinates": [ [ - [126.490069, -29.004674], - [126.490069, -31.00701], - [127.491237, -31.00701], - [127.491237, -29.004674], - [126.490069, -29.004674] + [127, -28], + [127, -26], + [128, -26], + [128, -28], + [127, -28] ] ] } @@ -1928,11 +1928,11 @@ "type": "Polygon", "coordinates": [ [ - [126.490069, -31.00701], - [126.490069, -33.009347], - [127.491237, -33.009347], - [127.491237, -31.00701], - [126.490069, -31.00701] + [127, -26], + [127, -24], + [128, -24], + [128, -26], + [127, -26] ] ] } @@ -1944,11 +1944,11 @@ "type": "Polygon", "coordinates": [ [ - [127.491237, -12.985979], - [127.491237, -14.988316], - [128.492405, -14.988316], - [128.492405, -12.985979], - [127.491237, -12.985979] + [127, -24], + [127, -22], + [128, -22], + [128, -24], + [127, -24] ] ] } @@ -1960,11 +1960,11 @@ "type": "Polygon", "coordinates": [ [ - [127.491237, -14.988316], - [127.491237, -16.990653], - [128.492405, -16.990653], - [128.492405, -14.988316], - [127.491237, -14.988316] + [127, -22], + [127, -20], + [128, -20], + [128, -22], + [127, -22] ] ] } @@ -1976,11 +1976,11 @@ "type": "Polygon", "coordinates": [ [ - [127.491237, -16.990653], - [127.491237, -18.99299], - [128.492405, -18.99299], - [128.492405, -16.990653], - [127.491237, -16.990653] + [127, -20], + [127, -18], + [128, -18], + [128, -20], + [127, -20] ] ] } @@ -1992,11 +1992,11 @@ "type": "Polygon", "coordinates": [ [ - [127.491237, -18.99299], - [127.491237, -20.995326], - [128.492405, -20.995326], - [128.492405, -18.99299], - [127.491237, -18.99299] + [127, -18], + [127, -16], + [128, -16], + [128, -18], + [127, -18] ] ] } @@ -2008,11 +2008,11 @@ "type": "Polygon", "coordinates": [ [ - [127.491237, -20.995326], - [127.491237, -22.997663], - [128.492405, -22.997663], - [128.492405, -20.995326], - [127.491237, -20.995326] + [127, -16], + [127, -14], + [128, -14], + [128, -16], + [127, -16] ] ] } @@ -2024,11 +2024,11 @@ "type": "Polygon", "coordinates": [ [ - [127.491237, -22.997663], - [127.491237, -25], - [128.492405, -25], - [128.492405, -22.997663], - [127.491237, -22.997663] + [128, -32], + [128, -30], + [129, -30], + [129, -32], + [128, -32] ] ] } @@ -2040,11 +2040,11 @@ "type": "Polygon", "coordinates": [ [ - [127.491237, -25], - [127.491237, -27.002337], - [128.492405, -27.002337], - [128.492405, -25], - [127.491237, -25] + [128, -30], + [128, -28], + [129, -28], + [129, -30], + [128, -30] ] ] } @@ -2056,11 +2056,11 @@ "type": "Polygon", "coordinates": [ [ - [127.491237, -27.002337], - [127.491237, -29.004674], - [128.492405, -29.004674], - [128.492405, -27.002337], - [127.491237, -27.002337] + [128, -28], + [128, -26], + [129, -26], + [129, -28], + [128, -28] ] ] } @@ -2072,11 +2072,11 @@ "type": "Polygon", "coordinates": [ [ - [127.491237, -29.004674], - [127.491237, -31.00701], - [128.492405, -31.00701], - [128.492405, -29.004674], - [127.491237, -29.004674] + [128, -26], + [128, -24], + [129, -24], + [129, -26], + [128, -26] ] ] } @@ -2088,11 +2088,11 @@ "type": "Polygon", "coordinates": [ [ - [127.491237, -31.00701], - [127.491237, -33.009347], - [128.492405, -33.009347], - [128.492405, -31.00701], - [127.491237, -31.00701] + [128, -24], + [128, -22], + [129, -22], + [129, -24], + [128, -24] ] ] } @@ -2104,11 +2104,11 @@ "type": "Polygon", "coordinates": [ [ - [128.492405, -12.985979], - [128.492405, -14.988316], - [129.493574, -14.988316], - [129.493574, -12.985979], - [128.492405, -12.985979] + [128, -22], + [128, -20], + [129, -20], + [129, -22], + [128, -22] ] ] } @@ -2120,11 +2120,11 @@ "type": "Polygon", "coordinates": [ [ - [128.492405, -14.988316], - [128.492405, -16.990653], - [129.493574, -16.990653], - [129.493574, -14.988316], - [128.492405, -14.988316] + [128, -20], + [128, -18], + [129, -18], + [129, -20], + [128, -20] ] ] } @@ -2136,11 +2136,11 @@ "type": "Polygon", "coordinates": [ [ - [128.492405, -16.990653], - [128.492405, -18.99299], - [129.493574, -18.99299], - [129.493574, -16.990653], - [128.492405, -16.990653] + [128, -18], + [128, -16], + [129, -16], + [129, -18], + [128, -18] ] ] } @@ -2152,11 +2152,11 @@ "type": "Polygon", "coordinates": [ [ - [128.492405, -18.99299], - [128.492405, -20.995326], - [129.493574, -20.995326], - [129.493574, -18.99299], - [128.492405, -18.99299] + [128, -16], + [128, -14], + [129, -14], + [129, -16], + [128, -16] ] ] } @@ -2168,11 +2168,11 @@ "type": "Polygon", "coordinates": [ [ - [128.492405, -20.995326], - [128.492405, -22.997663], - [129.493574, -22.997663], - [129.493574, -20.995326], - [128.492405, -20.995326] + [129, -32], + [129, -30], + [130, -30], + [130, -32], + [129, -32] ] ] } @@ -2184,11 +2184,11 @@ "type": "Polygon", "coordinates": [ [ - [128.492405, -22.997663], - [128.492405, -25], - [129.493574, -25], - [129.493574, -22.997663], - [128.492405, -22.997663] + [129, -30], + [129, -28], + [130, -28], + [130, -30], + [129, -30] ] ] } @@ -2200,11 +2200,11 @@ "type": "Polygon", "coordinates": [ [ - [128.492405, -25], - [128.492405, -27.002337], - [129.493574, -27.002337], - [129.493574, -25], - [128.492405, -25] + [129, -28], + [129, -26], + [130, -26], + [130, -28], + [129, -28] ] ] } @@ -2216,11 +2216,11 @@ "type": "Polygon", "coordinates": [ [ - [128.492405, -27.002337], - [128.492405, -29.004674], - [129.493574, -29.004674], - [129.493574, -27.002337], - [128.492405, -27.002337] + [129, -26], + [129, -24], + [130, -24], + [130, -26], + [129, -26] ] ] } @@ -2232,11 +2232,11 @@ "type": "Polygon", "coordinates": [ [ - [128.492405, -29.004674], - [128.492405, -31.00701], - [129.493574, -31.00701], - [129.493574, -29.004674], - [128.492405, -29.004674] + [129, -24], + [129, -22], + [130, -22], + [130, -24], + [129, -24] ] ] } @@ -2248,11 +2248,11 @@ "type": "Polygon", "coordinates": [ [ - [128.492405, -31.00701], - [128.492405, -33.009347], - [129.493574, -33.009347], - [129.493574, -31.00701], - [128.492405, -31.00701] + [129, -22], + [129, -20], + [130, -20], + [130, -22], + [129, -22] ] ] } @@ -2264,11 +2264,11 @@ "type": "Polygon", "coordinates": [ [ - [129.493574, -10.983642], - [129.493574, -12.985979], - [130.494742, -12.985979], - [130.494742, -10.983642], - [129.493574, -10.983642] + [129, -20], + [129, -18], + [130, -18], + [130, -20], + [129, -20] ] ] } @@ -2280,11 +2280,11 @@ "type": "Polygon", "coordinates": [ [ - [129.493574, -12.985979], - [129.493574, -14.988316], - [130.494742, -14.988316], - [130.494742, -12.985979], - [129.493574, -12.985979] + [129, -18], + [129, -16], + [130, -16], + [130, -18], + [129, -18] ] ] } @@ -2296,11 +2296,11 @@ "type": "Polygon", "coordinates": [ [ - [129.493574, -14.988316], - [129.493574, -16.990653], - [130.494742, -16.990653], - [130.494742, -14.988316], - [129.493574, -14.988316] + [129, -16], + [129, -14], + [130, -14], + [130, -16], + [129, -16] ] ] } @@ -2312,11 +2312,11 @@ "type": "Polygon", "coordinates": [ [ - [129.493574, -16.990653], - [129.493574, -18.99299], - [130.494742, -18.99299], - [130.494742, -16.990653], - [129.493574, -16.990653] + [129, -14], + [129, -12], + [130, -12], + [130, -14], + [129, -14] ] ] } @@ -2328,11 +2328,11 @@ "type": "Polygon", "coordinates": [ [ - [129.493574, -18.99299], - [129.493574, -20.995326], - [130.494742, -20.995326], - [130.494742, -18.99299], - [129.493574, -18.99299] + [130, -32], + [130, -30], + [131, -30], + [131, -32], + [130, -32] ] ] } @@ -2344,11 +2344,11 @@ "type": "Polygon", "coordinates": [ [ - [129.493574, -20.995326], - [129.493574, -22.997663], - [130.494742, -22.997663], - [130.494742, -20.995326], - [129.493574, -20.995326] + [130, -30], + [130, -28], + [131, -28], + [131, -30], + [130, -30] ] ] } @@ -2360,11 +2360,11 @@ "type": "Polygon", "coordinates": [ [ - [129.493574, -22.997663], - [129.493574, -25], - [130.494742, -25], - [130.494742, -22.997663], - [129.493574, -22.997663] + [130, -28], + [130, -26], + [131, -26], + [131, -28], + [130, -28] ] ] } @@ -2376,11 +2376,11 @@ "type": "Polygon", "coordinates": [ [ - [129.493574, -25], - [129.493574, -27.002337], - [130.494742, -27.002337], - [130.494742, -25], - [129.493574, -25] + [130, -26], + [130, -24], + [131, -24], + [131, -26], + [130, -26] ] ] } @@ -2392,11 +2392,11 @@ "type": "Polygon", "coordinates": [ [ - [129.493574, -27.002337], - [129.493574, -29.004674], - [130.494742, -29.004674], - [130.494742, -27.002337], - [129.493574, -27.002337] + [130, -24], + [130, -22], + [131, -22], + [131, -24], + [130, -24] ] ] } @@ -2408,11 +2408,11 @@ "type": "Polygon", "coordinates": [ [ - [129.493574, -29.004674], - [129.493574, -31.00701], - [130.494742, -31.00701], - [130.494742, -29.004674], - [129.493574, -29.004674] + [130, -22], + [130, -20], + [131, -20], + [131, -22], + [130, -22] ] ] } @@ -2424,11 +2424,11 @@ "type": "Polygon", "coordinates": [ [ - [129.493574, -31.00701], - [129.493574, -33.009347], - [130.494742, -33.009347], - [130.494742, -31.00701], - [129.493574, -31.00701] + [130, -20], + [130, -18], + [131, -18], + [131, -20], + [130, -20] ] ] } @@ -2440,11 +2440,11 @@ "type": "Polygon", "coordinates": [ [ - [130.494742, -10.983642], - [130.494742, -12.985979], - [131.495911, -12.985979], - [131.495911, -10.983642], - [130.494742, -10.983642] + [130, -18], + [130, -16], + [131, -16], + [131, -18], + [130, -18] ] ] } @@ -2456,11 +2456,11 @@ "type": "Polygon", "coordinates": [ [ - [130.494742, -12.985979], - [130.494742, -14.988316], - [131.495911, -14.988316], - [131.495911, -12.985979], - [130.494742, -12.985979] + [130, -16], + [130, -14], + [131, -14], + [131, -16], + [130, -16] ] ] } @@ -2472,11 +2472,11 @@ "type": "Polygon", "coordinates": [ [ - [130.494742, -14.988316], - [130.494742, -16.990653], - [131.495911, -16.990653], - [131.495911, -14.988316], - [130.494742, -14.988316] + [130, -14], + [130, -12], + [131, -12], + [131, -14], + [130, -14] ] ] } @@ -2488,11 +2488,11 @@ "type": "Polygon", "coordinates": [ [ - [130.494742, -16.990653], - [130.494742, -18.99299], - [131.495911, -18.99299], - [131.495911, -16.990653], - [130.494742, -16.990653] + [130, -12], + [130, -10], + [131, -10], + [131, -12], + [130, -12] ] ] } @@ -2504,11 +2504,11 @@ "type": "Polygon", "coordinates": [ [ - [130.494742, -18.99299], - [130.494742, -20.995326], - [131.495911, -20.995326], - [131.495911, -18.99299], - [130.494742, -18.99299] + [131, -32], + [131, -30], + [132, -30], + [132, -32], + [131, -32] ] ] } @@ -2520,11 +2520,11 @@ "type": "Polygon", "coordinates": [ [ - [130.494742, -20.995326], - [130.494742, -22.997663], - [131.495911, -22.997663], - [131.495911, -20.995326], - [130.494742, -20.995326] + [131, -30], + [131, -28], + [132, -28], + [132, -30], + [131, -30] ] ] } @@ -2536,11 +2536,11 @@ "type": "Polygon", "coordinates": [ [ - [130.494742, -22.997663], - [130.494742, -25], - [131.495911, -25], - [131.495911, -22.997663], - [130.494742, -22.997663] + [131, -28], + [131, -26], + [132, -26], + [132, -28], + [131, -28] ] ] } @@ -2552,11 +2552,11 @@ "type": "Polygon", "coordinates": [ [ - [130.494742, -25], - [130.494742, -27.002337], - [131.495911, -27.002337], - [131.495911, -25], - [130.494742, -25] + [131, -26], + [131, -24], + [132, -24], + [132, -26], + [131, -26] ] ] } @@ -2568,11 +2568,11 @@ "type": "Polygon", "coordinates": [ [ - [130.494742, -27.002337], - [130.494742, -29.004674], - [131.495911, -29.004674], - [131.495911, -27.002337], - [130.494742, -27.002337] + [131, -24], + [131, -22], + [132, -22], + [132, -24], + [131, -24] ] ] } @@ -2584,11 +2584,11 @@ "type": "Polygon", "coordinates": [ [ - [130.494742, -29.004674], - [130.494742, -31.00701], - [131.495911, -31.00701], - [131.495911, -29.004674], - [130.494742, -29.004674] + [131, -22], + [131, -20], + [132, -20], + [132, -22], + [131, -22] ] ] } @@ -2600,11 +2600,11 @@ "type": "Polygon", "coordinates": [ [ - [130.494742, -31.00701], - [130.494742, -33.009347], - [131.495911, -33.009347], - [131.495911, -31.00701], - [130.494742, -31.00701] + [131, -20], + [131, -18], + [132, -18], + [132, -20], + [131, -20] ] ] } @@ -2616,11 +2616,11 @@ "type": "Polygon", "coordinates": [ [ - [131.495911, -10.983642], - [131.495911, -12.985979], - [132.497079, -12.985979], - [132.497079, -10.983642], - [131.495911, -10.983642] + [131, -18], + [131, -16], + [132, -16], + [132, -18], + [131, -18] ] ] } @@ -2632,11 +2632,11 @@ "type": "Polygon", "coordinates": [ [ - [131.495911, -12.985979], - [131.495911, -14.988316], - [132.497079, -14.988316], - [132.497079, -12.985979], - [131.495911, -12.985979] + [131, -16], + [131, -14], + [132, -14], + [132, -16], + [131, -16] ] ] } @@ -2648,11 +2648,11 @@ "type": "Polygon", "coordinates": [ [ - [131.495911, -14.988316], - [131.495911, -16.990653], - [132.497079, -16.990653], - [132.497079, -14.988316], - [131.495911, -14.988316] + [131, -14], + [131, -12], + [132, -12], + [132, -14], + [131, -14] ] ] } @@ -2664,11 +2664,11 @@ "type": "Polygon", "coordinates": [ [ - [131.495911, -16.990653], - [131.495911, -18.99299], - [132.497079, -18.99299], - [132.497079, -16.990653], - [131.495911, -16.990653] + [131, -12], + [131, -10], + [132, -10], + [132, -12], + [131, -12] ] ] } @@ -2680,11 +2680,11 @@ "type": "Polygon", "coordinates": [ [ - [131.495911, -18.99299], - [131.495911, -20.995326], - [132.497079, -20.995326], - [132.497079, -18.99299], - [131.495911, -18.99299] + [132, -34], + [132, -32], + [133, -32], + [133, -34], + [132, -34] ] ] } @@ -2696,11 +2696,11 @@ "type": "Polygon", "coordinates": [ [ - [131.495911, -20.995326], - [131.495911, -22.997663], - [132.497079, -22.997663], - [132.497079, -20.995326], - [131.495911, -20.995326] + [132, -32], + [132, -30], + [133, -30], + [133, -32], + [132, -32] ] ] } @@ -2712,11 +2712,11 @@ "type": "Polygon", "coordinates": [ [ - [131.495911, -22.997663], - [131.495911, -25], - [132.497079, -25], - [132.497079, -22.997663], - [131.495911, -22.997663] + [132, -30], + [132, -28], + [133, -28], + [133, -30], + [132, -30] ] ] } @@ -2728,11 +2728,11 @@ "type": "Polygon", "coordinates": [ [ - [131.495911, -25], - [131.495911, -27.002337], - [132.497079, -27.002337], - [132.497079, -25], - [131.495911, -25] + [132, -28], + [132, -26], + [133, -26], + [133, -28], + [132, -28] ] ] } @@ -2744,11 +2744,11 @@ "type": "Polygon", "coordinates": [ [ - [131.495911, -27.002337], - [131.495911, -29.004674], - [132.497079, -29.004674], - [132.497079, -27.002337], - [131.495911, -27.002337] + [132, -26], + [132, -24], + [133, -24], + [133, -26], + [132, -26] ] ] } @@ -2760,11 +2760,11 @@ "type": "Polygon", "coordinates": [ [ - [131.495911, -29.004674], - [131.495911, -31.00701], - [132.497079, -31.00701], - [132.497079, -29.004674], - [131.495911, -29.004674] + [132, -24], + [132, -22], + [133, -22], + [133, -24], + [132, -24] ] ] } @@ -2776,11 +2776,11 @@ "type": "Polygon", "coordinates": [ [ - [131.495911, -31.00701], - [131.495911, -33.009347], - [132.497079, -33.009347], - [132.497079, -31.00701], - [131.495911, -31.00701] + [132, -22], + [132, -20], + [133, -20], + [133, -22], + [132, -22] ] ] } @@ -2792,11 +2792,11 @@ "type": "Polygon", "coordinates": [ [ - [132.497079, -10.983642], - [132.497079, -12.985979], - [133.498247, -12.985979], - [133.498247, -10.983642], - [132.497079, -10.983642] + [132, -20], + [132, -18], + [133, -18], + [133, -20], + [132, -20] ] ] } @@ -2808,11 +2808,11 @@ "type": "Polygon", "coordinates": [ [ - [132.497079, -12.985979], - [132.497079, -14.988316], - [133.498247, -14.988316], - [133.498247, -12.985979], - [132.497079, -12.985979] + [132, -18], + [132, -16], + [133, -16], + [133, -18], + [132, -18] ] ] } @@ -2824,11 +2824,11 @@ "type": "Polygon", "coordinates": [ [ - [132.497079, -14.988316], - [132.497079, -16.990653], - [133.498247, -16.990653], - [133.498247, -14.988316], - [132.497079, -14.988316] + [132, -16], + [132, -14], + [133, -14], + [133, -16], + [132, -16] ] ] } @@ -2840,11 +2840,11 @@ "type": "Polygon", "coordinates": [ [ - [132.497079, -16.990653], - [132.497079, -18.99299], - [133.498247, -18.99299], - [133.498247, -16.990653], - [132.497079, -16.990653] + [132, -14], + [132, -12], + [133, -12], + [133, -14], + [132, -14] ] ] } @@ -2856,11 +2856,11 @@ "type": "Polygon", "coordinates": [ [ - [132.497079, -18.99299], - [132.497079, -20.995326], - [133.498247, -20.995326], - [133.498247, -18.99299], - [132.497079, -18.99299] + [132, -12], + [132, -10], + [133, -10], + [133, -12], + [132, -12] ] ] } @@ -2872,11 +2872,11 @@ "type": "Polygon", "coordinates": [ [ - [132.497079, -20.995326], - [132.497079, -22.997663], - [133.498247, -22.997663], - [133.498247, -20.995326], - [132.497079, -20.995326] + [133, -34], + [133, -32], + [134, -32], + [134, -34], + [133, -34] ] ] } @@ -2888,11 +2888,11 @@ "type": "Polygon", "coordinates": [ [ - [132.497079, -22.997663], - [132.497079, -25], - [133.498247, -25], - [133.498247, -22.997663], - [132.497079, -22.997663] + [133, -32], + [133, -30], + [134, -30], + [134, -32], + [133, -32] ] ] } @@ -2904,11 +2904,11 @@ "type": "Polygon", "coordinates": [ [ - [132.497079, -25], - [132.497079, -27.002337], - [133.498247, -27.002337], - [133.498247, -25], - [132.497079, -25] + [133, -30], + [133, -28], + [134, -28], + [134, -30], + [133, -30] ] ] } @@ -2920,11 +2920,11 @@ "type": "Polygon", "coordinates": [ [ - [132.497079, -27.002337], - [132.497079, -29.004674], - [133.498247, -29.004674], - [133.498247, -27.002337], - [132.497079, -27.002337] + [133, -28], + [133, -26], + [134, -26], + [134, -28], + [133, -28] ] ] } @@ -2936,11 +2936,11 @@ "type": "Polygon", "coordinates": [ [ - [132.497079, -29.004674], - [132.497079, -31.00701], - [133.498247, -31.00701], - [133.498247, -29.004674], - [132.497079, -29.004674] + [133, -26], + [133, -24], + [134, -24], + [134, -26], + [133, -26] ] ] } @@ -2952,11 +2952,11 @@ "type": "Polygon", "coordinates": [ [ - [132.497079, -31.00701], - [132.497079, -33.009347], - [133.498247, -33.009347], - [133.498247, -31.00701], - [132.497079, -31.00701] + [133, -24], + [133, -22], + [134, -22], + [134, -24], + [133, -24] ] ] } @@ -2968,11 +2968,11 @@ "type": "Polygon", "coordinates": [ [ - [133.498247, -10.983642], - [133.498247, -12.985979], - [134.499416, -12.985979], - [134.499416, -10.983642], - [133.498247, -10.983642] + [133, -22], + [133, -20], + [134, -20], + [134, -22], + [133, -22] ] ] } @@ -2984,11 +2984,11 @@ "type": "Polygon", "coordinates": [ [ - [133.498247, -12.985979], - [133.498247, -14.988316], - [134.499416, -14.988316], - [134.499416, -12.985979], - [133.498247, -12.985979] + [133, -20], + [133, -18], + [134, -18], + [134, -20], + [133, -20] ] ] } @@ -3000,11 +3000,11 @@ "type": "Polygon", "coordinates": [ [ - [133.498247, -14.988316], - [133.498247, -16.990653], - [134.499416, -16.990653], - [134.499416, -14.988316], - [133.498247, -14.988316] + [133, -18], + [133, -16], + [134, -16], + [134, -18], + [133, -18] ] ] } @@ -3016,11 +3016,11 @@ "type": "Polygon", "coordinates": [ [ - [133.498247, -16.990653], - [133.498247, -18.99299], - [134.499416, -18.99299], - [134.499416, -16.990653], - [133.498247, -16.990653] + [133, -16], + [133, -14], + [134, -14], + [134, -16], + [133, -16] ] ] } @@ -3032,11 +3032,11 @@ "type": "Polygon", "coordinates": [ [ - [133.498247, -18.99299], - [133.498247, -20.995326], - [134.499416, -20.995326], - [134.499416, -18.99299], - [133.498247, -18.99299] + [133, -14], + [133, -12], + [134, -12], + [134, -14], + [133, -14] ] ] } @@ -3048,11 +3048,11 @@ "type": "Polygon", "coordinates": [ [ - [133.498247, -20.995326], - [133.498247, -22.997663], - [134.499416, -22.997663], - [134.499416, -20.995326], - [133.498247, -20.995326] + [133, -12], + [133, -10], + [134, -10], + [134, -12], + [133, -12] ] ] } @@ -3064,11 +3064,11 @@ "type": "Polygon", "coordinates": [ [ - [133.498247, -22.997663], - [133.498247, -25], - [134.499416, -25], - [134.499416, -22.997663], - [133.498247, -22.997663] + [134, -36], + [134, -34], + [135, -34], + [135, -36], + [134, -36] ] ] } @@ -3080,11 +3080,11 @@ "type": "Polygon", "coordinates": [ [ - [133.498247, -25], - [133.498247, -27.002337], - [134.499416, -27.002337], - [134.499416, -25], - [133.498247, -25] + [134, -34], + [134, -32], + [135, -32], + [135, -34], + [134, -34] ] ] } @@ -3096,11 +3096,11 @@ "type": "Polygon", "coordinates": [ [ - [133.498247, -27.002337], - [133.498247, -29.004674], - [134.499416, -29.004674], - [134.499416, -27.002337], - [133.498247, -27.002337] + [134, -32], + [134, -30], + [135, -30], + [135, -32], + [134, -32] ] ] } @@ -3112,11 +3112,11 @@ "type": "Polygon", "coordinates": [ [ - [133.498247, -29.004674], - [133.498247, -31.00701], - [134.499416, -31.00701], - [134.499416, -29.004674], - [133.498247, -29.004674] + [134, -30], + [134, -28], + [135, -28], + [135, -30], + [134, -30] ] ] } @@ -3128,11 +3128,11 @@ "type": "Polygon", "coordinates": [ [ - [133.498247, -31.00701], - [133.498247, -33.009347], - [134.499416, -33.009347], - [134.499416, -31.00701], - [133.498247, -31.00701] + [134, -28], + [134, -26], + [135, -26], + [135, -28], + [134, -28] ] ] } @@ -3144,11 +3144,11 @@ "type": "Polygon", "coordinates": [ [ - [133.498247, -33.009347], - [133.498247, -35.011684], - [134.499416, -35.011684], - [134.499416, -33.009347], - [133.498247, -33.009347] + [134, -26], + [134, -24], + [135, -24], + [135, -26], + [134, -26] ] ] } @@ -3160,11 +3160,11 @@ "type": "Polygon", "coordinates": [ [ - [134.499416, -10.983642], - [134.499416, -12.985979], - [135.500584, -12.985979], - [135.500584, -10.983642], - [134.499416, -10.983642] + [134, -24], + [134, -22], + [135, -22], + [135, -24], + [134, -24] ] ] } @@ -3176,11 +3176,11 @@ "type": "Polygon", "coordinates": [ [ - [134.499416, -12.985979], - [134.499416, -14.988316], - [135.500584, -14.988316], - [135.500584, -12.985979], - [134.499416, -12.985979] + [134, -22], + [134, -20], + [135, -20], + [135, -22], + [134, -22] ] ] } @@ -3192,11 +3192,11 @@ "type": "Polygon", "coordinates": [ [ - [134.499416, -14.988316], - [134.499416, -16.990653], - [135.500584, -16.990653], - [135.500584, -14.988316], - [134.499416, -14.988316] + [134, -20], + [134, -18], + [135, -18], + [135, -20], + [134, -20] ] ] } @@ -3208,11 +3208,11 @@ "type": "Polygon", "coordinates": [ [ - [134.499416, -16.990653], - [134.499416, -18.99299], - [135.500584, -18.99299], - [135.500584, -16.990653], - [134.499416, -16.990653] + [134, -18], + [134, -16], + [135, -16], + [135, -18], + [134, -18] ] ] } @@ -3224,11 +3224,11 @@ "type": "Polygon", "coordinates": [ [ - [134.499416, -18.99299], - [134.499416, -20.995326], - [135.500584, -20.995326], - [135.500584, -18.99299], - [134.499416, -18.99299] + [134, -16], + [134, -14], + [135, -14], + [135, -16], + [134, -16] ] ] } @@ -3240,11 +3240,11 @@ "type": "Polygon", "coordinates": [ [ - [134.499416, -20.995326], - [134.499416, -22.997663], - [135.500584, -22.997663], - [135.500584, -20.995326], - [134.499416, -20.995326] + [134, -14], + [134, -12], + [135, -12], + [135, -14], + [134, -14] ] ] } @@ -3256,11 +3256,11 @@ "type": "Polygon", "coordinates": [ [ - [134.499416, -22.997663], - [134.499416, -25], - [135.500584, -25], - [135.500584, -22.997663], - [134.499416, -22.997663] + [134, -12], + [134, -10], + [135, -10], + [135, -12], + [134, -12] ] ] } @@ -3272,11 +3272,11 @@ "type": "Polygon", "coordinates": [ [ - [134.499416, -25], - [134.499416, -27.002337], - [135.500584, -27.002337], - [135.500584, -25], - [134.499416, -25] + [135, -36], + [135, -34], + [136, -34], + [136, -36], + [135, -36] ] ] } @@ -3288,11 +3288,11 @@ "type": "Polygon", "coordinates": [ [ - [134.499416, -27.002337], - [134.499416, -29.004674], - [135.500584, -29.004674], - [135.500584, -27.002337], - [134.499416, -27.002337] + [135, -34], + [135, -32], + [136, -32], + [136, -34], + [135, -34] ] ] } @@ -3304,11 +3304,11 @@ "type": "Polygon", "coordinates": [ [ - [134.499416, -29.004674], - [134.499416, -31.00701], - [135.500584, -31.00701], - [135.500584, -29.004674], - [134.499416, -29.004674] + [135, -32], + [135, -30], + [136, -30], + [136, -32], + [135, -32] ] ] } @@ -3320,11 +3320,11 @@ "type": "Polygon", "coordinates": [ [ - [134.499416, -31.00701], - [134.499416, -33.009347], - [135.500584, -33.009347], - [135.500584, -31.00701], - [134.499416, -31.00701] + [135, -30], + [135, -28], + [136, -28], + [136, -30], + [135, -30] ] ] } @@ -3336,11 +3336,11 @@ "type": "Polygon", "coordinates": [ [ - [134.499416, -33.009347], - [134.499416, -35.011684], - [135.500584, -35.011684], - [135.500584, -33.009347], - [134.499416, -33.009347] + [135, -28], + [135, -26], + [136, -26], + [136, -28], + [135, -28] ] ] } @@ -3352,11 +3352,11 @@ "type": "Polygon", "coordinates": [ [ - [135.500584, -10.983642], - [135.500584, -12.985979], - [136.501753, -12.985979], - [136.501753, -10.983642], - [135.500584, -10.983642] + [135, -26], + [135, -24], + [136, -24], + [136, -26], + [135, -26] ] ] } @@ -3368,11 +3368,11 @@ "type": "Polygon", "coordinates": [ [ - [135.500584, -12.985979], - [135.500584, -14.988316], - [136.501753, -14.988316], - [136.501753, -12.985979], - [135.500584, -12.985979] + [135, -24], + [135, -22], + [136, -22], + [136, -24], + [135, -24] ] ] } @@ -3384,11 +3384,11 @@ "type": "Polygon", "coordinates": [ [ - [135.500584, -14.988316], - [135.500584, -16.990653], - [136.501753, -16.990653], - [136.501753, -14.988316], - [135.500584, -14.988316] + [135, -22], + [135, -20], + [136, -20], + [136, -22], + [135, -22] ] ] } @@ -3400,11 +3400,11 @@ "type": "Polygon", "coordinates": [ [ - [135.500584, -16.990653], - [135.500584, -18.99299], - [136.501753, -18.99299], - [136.501753, -16.990653], - [135.500584, -16.990653] + [135, -20], + [135, -18], + [136, -18], + [136, -20], + [135, -20] ] ] } @@ -3416,11 +3416,11 @@ "type": "Polygon", "coordinates": [ [ - [135.500584, -18.99299], - [135.500584, -20.995326], - [136.501753, -20.995326], - [136.501753, -18.99299], - [135.500584, -18.99299] + [135, -18], + [135, -16], + [136, -16], + [136, -18], + [135, -18] ] ] } @@ -3432,11 +3432,11 @@ "type": "Polygon", "coordinates": [ [ - [135.500584, -20.995326], - [135.500584, -22.997663], - [136.501753, -22.997663], - [136.501753, -20.995326], - [135.500584, -20.995326] + [135, -16], + [135, -14], + [136, -14], + [136, -16], + [135, -16] ] ] } @@ -3448,11 +3448,11 @@ "type": "Polygon", "coordinates": [ [ - [135.500584, -22.997663], - [135.500584, -25], - [136.501753, -25], - [136.501753, -22.997663], - [135.500584, -22.997663] + [135, -14], + [135, -12], + [136, -12], + [136, -14], + [135, -14] ] ] } @@ -3464,11 +3464,11 @@ "type": "Polygon", "coordinates": [ [ - [135.500584, -25], - [135.500584, -27.002337], - [136.501753, -27.002337], - [136.501753, -25], - [135.500584, -25] + [135, -12], + [135, -10], + [136, -10], + [136, -12], + [135, -12] ] ] } @@ -3480,11 +3480,11 @@ "type": "Polygon", "coordinates": [ [ - [135.500584, -27.002337], - [135.500584, -29.004674], - [136.501753, -29.004674], - [136.501753, -27.002337], - [135.500584, -27.002337] + [136, -36], + [136, -34], + [137, -34], + [137, -36], + [136, -36] ] ] } @@ -3496,11 +3496,11 @@ "type": "Polygon", "coordinates": [ [ - [135.500584, -29.004674], - [135.500584, -31.00701], - [136.501753, -31.00701], - [136.501753, -29.004674], - [135.500584, -29.004674] + [136, -34], + [136, -32], + [137, -32], + [137, -34], + [136, -34] ] ] } @@ -3512,11 +3512,11 @@ "type": "Polygon", "coordinates": [ [ - [135.500584, -31.00701], - [135.500584, -33.009347], - [136.501753, -33.009347], - [136.501753, -31.00701], - [135.500584, -31.00701] + [136, -32], + [136, -30], + [137, -30], + [137, -32], + [136, -32] ] ] } @@ -3528,11 +3528,11 @@ "type": "Polygon", "coordinates": [ [ - [135.500584, -33.009347], - [135.500584, -35.011684], - [136.501753, -35.011684], - [136.501753, -33.009347], - [135.500584, -33.009347] + [136, -30], + [136, -28], + [137, -28], + [137, -30], + [136, -30] ] ] } @@ -3544,11 +3544,11 @@ "type": "Polygon", "coordinates": [ [ - [136.501753, -10.983642], - [136.501753, -12.985979], - [137.502921, -12.985979], - [137.502921, -10.983642], - [136.501753, -10.983642] + [136, -28], + [136, -26], + [137, -26], + [137, -28], + [136, -28] ] ] } @@ -3560,11 +3560,11 @@ "type": "Polygon", "coordinates": [ [ - [136.501753, -12.985979], - [136.501753, -14.988316], - [137.502921, -14.988316], - [137.502921, -12.985979], - [136.501753, -12.985979] + [136, -26], + [136, -24], + [137, -24], + [137, -26], + [136, -26] ] ] } @@ -3576,11 +3576,11 @@ "type": "Polygon", "coordinates": [ [ - [136.501753, -14.988316], - [136.501753, -16.990653], - [137.502921, -16.990653], - [137.502921, -14.988316], - [136.501753, -14.988316] + [136, -24], + [136, -22], + [137, -22], + [137, -24], + [136, -24] ] ] } @@ -3592,11 +3592,11 @@ "type": "Polygon", "coordinates": [ [ - [136.501753, -16.990653], - [136.501753, -18.99299], - [137.502921, -18.99299], - [137.502921, -16.990653], - [136.501753, -16.990653] + [136, -22], + [136, -20], + [137, -20], + [137, -22], + [136, -22] ] ] } @@ -3608,11 +3608,11 @@ "type": "Polygon", "coordinates": [ [ - [136.501753, -18.99299], - [136.501753, -20.995326], - [137.502921, -20.995326], - [137.502921, -18.99299], - [136.501753, -18.99299] + [136, -20], + [136, -18], + [137, -18], + [137, -20], + [136, -20] ] ] } @@ -3624,11 +3624,11 @@ "type": "Polygon", "coordinates": [ [ - [136.501753, -20.995326], - [136.501753, -22.997663], - [137.502921, -22.997663], - [137.502921, -20.995326], - [136.501753, -20.995326] + [136, -18], + [136, -16], + [137, -16], + [137, -18], + [136, -18] ] ] } @@ -3640,11 +3640,11 @@ "type": "Polygon", "coordinates": [ [ - [136.501753, -22.997663], - [136.501753, -25], - [137.502921, -25], - [137.502921, -22.997663], - [136.501753, -22.997663] + [136, -16], + [136, -14], + [137, -14], + [137, -16], + [136, -16] ] ] } @@ -3656,11 +3656,11 @@ "type": "Polygon", "coordinates": [ [ - [136.501753, -25], - [136.501753, -27.002337], - [137.502921, -27.002337], - [137.502921, -25], - [136.501753, -25] + [136, -14], + [136, -12], + [137, -12], + [137, -14], + [136, -14] ] ] } @@ -3672,11 +3672,11 @@ "type": "Polygon", "coordinates": [ [ - [136.501753, -27.002337], - [136.501753, -29.004674], - [137.502921, -29.004674], - [137.502921, -27.002337], - [136.501753, -27.002337] + [136, -12], + [136, -10], + [137, -10], + [137, -12], + [136, -12] ] ] } @@ -3688,11 +3688,11 @@ "type": "Polygon", "coordinates": [ [ - [136.501753, -29.004674], - [136.501753, -31.00701], - [137.502921, -31.00701], - [137.502921, -29.004674], - [136.501753, -29.004674] + [137, -36], + [137, -34], + [138, -34], + [138, -36], + [137, -36] ] ] } @@ -3704,11 +3704,11 @@ "type": "Polygon", "coordinates": [ [ - [136.501753, -31.00701], - [136.501753, -33.009347], - [137.502921, -33.009347], - [137.502921, -31.00701], - [136.501753, -31.00701] + [137, -34], + [137, -32], + [138, -32], + [138, -34], + [137, -34] ] ] } @@ -3720,11 +3720,11 @@ "type": "Polygon", "coordinates": [ [ - [136.501753, -33.009347], - [136.501753, -35.011684], - [137.502921, -35.011684], - [137.502921, -33.009347], - [136.501753, -33.009347] + [137, -32], + [137, -30], + [138, -30], + [138, -32], + [137, -32] ] ] } @@ -3736,11 +3736,11 @@ "type": "Polygon", "coordinates": [ [ - [137.502921, -14.988316], - [137.502921, -16.990653], - [138.504089, -16.990653], - [138.504089, -14.988316], - [137.502921, -14.988316] + [137, -30], + [137, -28], + [138, -28], + [138, -30], + [137, -30] ] ] } @@ -3752,11 +3752,11 @@ "type": "Polygon", "coordinates": [ [ - [137.502921, -16.990653], - [137.502921, -18.99299], - [138.504089, -18.99299], - [138.504089, -16.990653], - [137.502921, -16.990653] + [137, -28], + [137, -26], + [138, -26], + [138, -28], + [137, -28] ] ] } @@ -3768,11 +3768,11 @@ "type": "Polygon", "coordinates": [ [ - [137.502921, -18.99299], - [137.502921, -20.995326], - [138.504089, -20.995326], - [138.504089, -18.99299], - [137.502921, -18.99299] + [137, -26], + [137, -24], + [138, -24], + [138, -26], + [137, -26] ] ] } @@ -3784,11 +3784,11 @@ "type": "Polygon", "coordinates": [ [ - [137.502921, -20.995326], - [137.502921, -22.997663], - [138.504089, -22.997663], - [138.504089, -20.995326], - [137.502921, -20.995326] + [137, -24], + [137, -22], + [138, -22], + [138, -24], + [137, -24] ] ] } @@ -3800,11 +3800,11 @@ "type": "Polygon", "coordinates": [ [ - [137.502921, -22.997663], - [137.502921, -25], - [138.504089, -25], - [138.504089, -22.997663], - [137.502921, -22.997663] + [137, -22], + [137, -20], + [138, -20], + [138, -22], + [137, -22] ] ] } @@ -3816,11 +3816,11 @@ "type": "Polygon", "coordinates": [ [ - [137.502921, -25], - [137.502921, -27.002337], - [138.504089, -27.002337], - [138.504089, -25], - [137.502921, -25] + [137, -20], + [137, -18], + [138, -18], + [138, -20], + [137, -20] ] ] } @@ -3832,11 +3832,11 @@ "type": "Polygon", "coordinates": [ [ - [137.502921, -27.002337], - [137.502921, -29.004674], - [138.504089, -29.004674], - [138.504089, -27.002337], - [137.502921, -27.002337] + [137, -18], + [137, -16], + [138, -16], + [138, -18], + [137, -18] ] ] } @@ -3848,11 +3848,11 @@ "type": "Polygon", "coordinates": [ [ - [137.502921, -29.004674], - [137.502921, -31.00701], - [138.504089, -31.00701], - [138.504089, -29.004674], - [137.502921, -29.004674] + [137, -16], + [137, -14], + [138, -14], + [138, -16], + [137, -16] ] ] } @@ -3864,11 +3864,11 @@ "type": "Polygon", "coordinates": [ [ - [137.502921, -31.00701], - [137.502921, -33.009347], - [138.504089, -33.009347], - [138.504089, -31.00701], - [137.502921, -31.00701] + [137, -14], + [137, -12], + [138, -12], + [138, -14], + [137, -14] ] ] } @@ -3880,11 +3880,11 @@ "type": "Polygon", "coordinates": [ [ - [137.502921, -33.009347], - [137.502921, -35.011684], - [138.504089, -35.011684], - [138.504089, -33.009347], - [137.502921, -33.009347] + [137, -12], + [137, -10], + [138, -10], + [138, -12], + [137, -12] ] ] } @@ -3896,11 +3896,11 @@ "type": "Polygon", "coordinates": [ [ - [137.502921, -35.011684], - [137.502921, -37.014021], - [138.504089, -37.014021], - [138.504089, -35.011684], - [137.502921, -35.011684] + [138, -36], + [138, -34], + [139, -34], + [139, -36], + [138, -36] ] ] } @@ -3912,11 +3912,11 @@ "type": "Polygon", "coordinates": [ [ - [138.504089, -14.988316], - [138.504089, -16.990653], - [139.505258, -16.990653], - [139.505258, -14.988316], - [138.504089, -14.988316] + [138, -34], + [138, -32], + [139, -32], + [139, -34], + [138, -34] ] ] } @@ -3928,11 +3928,11 @@ "type": "Polygon", "coordinates": [ [ - [138.504089, -16.990653], - [138.504089, -18.99299], - [139.505258, -18.99299], - [139.505258, -16.990653], - [138.504089, -16.990653] + [138, -32], + [138, -30], + [139, -30], + [139, -32], + [138, -32] ] ] } @@ -3944,11 +3944,11 @@ "type": "Polygon", "coordinates": [ [ - [138.504089, -18.99299], - [138.504089, -20.995326], - [139.505258, -20.995326], - [139.505258, -18.99299], - [138.504089, -18.99299] + [138, -30], + [138, -28], + [139, -28], + [139, -30], + [138, -30] ] ] } @@ -3960,11 +3960,11 @@ "type": "Polygon", "coordinates": [ [ - [138.504089, -20.995326], - [138.504089, -22.997663], - [139.505258, -22.997663], - [139.505258, -20.995326], - [138.504089, -20.995326] + [138, -28], + [138, -26], + [139, -26], + [139, -28], + [138, -28] ] ] } @@ -3976,11 +3976,11 @@ "type": "Polygon", "coordinates": [ [ - [138.504089, -22.997663], - [138.504089, -25], - [139.505258, -25], - [139.505258, -22.997663], - [138.504089, -22.997663] + [138, -26], + [138, -24], + [139, -24], + [139, -26], + [138, -26] ] ] } @@ -3992,11 +3992,11 @@ "type": "Polygon", "coordinates": [ [ - [138.504089, -25], - [138.504089, -27.002337], - [139.505258, -27.002337], - [139.505258, -25], - [138.504089, -25] + [138, -24], + [138, -22], + [139, -22], + [139, -24], + [138, -24] ] ] } @@ -4008,11 +4008,11 @@ "type": "Polygon", "coordinates": [ [ - [138.504089, -27.002337], - [138.504089, -29.004674], - [139.505258, -29.004674], - [139.505258, -27.002337], - [138.504089, -27.002337] + [138, -22], + [138, -20], + [139, -20], + [139, -22], + [138, -22] ] ] } @@ -4024,11 +4024,11 @@ "type": "Polygon", "coordinates": [ [ - [138.504089, -29.004674], - [138.504089, -31.00701], - [139.505258, -31.00701], - [139.505258, -29.004674], - [138.504089, -29.004674] + [138, -20], + [138, -18], + [139, -18], + [139, -20], + [138, -20] ] ] } @@ -4040,11 +4040,11 @@ "type": "Polygon", "coordinates": [ [ - [138.504089, -31.00701], - [138.504089, -33.009347], - [139.505258, -33.009347], - [139.505258, -31.00701], - [138.504089, -31.00701] + [138, -18], + [138, -16], + [139, -16], + [139, -18], + [138, -18] ] ] } @@ -4056,11 +4056,11 @@ "type": "Polygon", "coordinates": [ [ - [138.504089, -33.009347], - [138.504089, -35.011684], - [139.505258, -35.011684], - [139.505258, -33.009347], - [138.504089, -33.009347] + [139, -38], + [139, -36], + [140, -36], + [140, -38], + [139, -38] ] ] } @@ -4072,11 +4072,11 @@ "type": "Polygon", "coordinates": [ [ - [138.504089, -35.011684], - [138.504089, -37.014021], - [139.505258, -37.014021], - [139.505258, -35.011684], - [138.504089, -35.011684] + [139, -36], + [139, -34], + [140, -34], + [140, -36], + [139, -36] ] ] } @@ -4088,11 +4088,11 @@ "type": "Polygon", "coordinates": [ [ - [139.505258, -14.988316], - [139.505258, -16.990653], - [140.506426, -16.990653], - [140.506426, -14.988316], - [139.505258, -14.988316] + [139, -34], + [139, -32], + [140, -32], + [140, -34], + [139, -34] ] ] } @@ -4104,11 +4104,11 @@ "type": "Polygon", "coordinates": [ [ - [139.505258, -16.990653], - [139.505258, -18.99299], - [140.506426, -18.99299], - [140.506426, -16.990653], - [139.505258, -16.990653] + [139, -32], + [139, -30], + [140, -30], + [140, -32], + [139, -32] ] ] } @@ -4120,11 +4120,11 @@ "type": "Polygon", "coordinates": [ [ - [139.505258, -18.99299], - [139.505258, -20.995326], - [140.506426, -20.995326], - [140.506426, -18.99299], - [139.505258, -18.99299] + [139, -30], + [139, -28], + [140, -28], + [140, -30], + [139, -30] ] ] } @@ -4136,11 +4136,11 @@ "type": "Polygon", "coordinates": [ [ - [139.505258, -20.995326], - [139.505258, -22.997663], - [140.506426, -22.997663], - [140.506426, -20.995326], - [139.505258, -20.995326] + [139, -28], + [139, -26], + [140, -26], + [140, -28], + [139, -28] ] ] } @@ -4152,11 +4152,11 @@ "type": "Polygon", "coordinates": [ [ - [139.505258, -22.997663], - [139.505258, -25], - [140.506426, -25], - [140.506426, -22.997663], - [139.505258, -22.997663] + [139, -26], + [139, -24], + [140, -24], + [140, -26], + [139, -26] ] ] } @@ -4168,11 +4168,11 @@ "type": "Polygon", "coordinates": [ [ - [139.505258, -25], - [139.505258, -27.002337], - [140.506426, -27.002337], - [140.506426, -25], - [139.505258, -25] + [139, -24], + [139, -22], + [140, -22], + [140, -24], + [139, -24] ] ] } @@ -4184,11 +4184,11 @@ "type": "Polygon", "coordinates": [ [ - [139.505258, -27.002337], - [139.505258, -29.004674], - [140.506426, -29.004674], - [140.506426, -27.002337], - [139.505258, -27.002337] + [139, -22], + [139, -20], + [140, -20], + [140, -22], + [139, -22] ] ] } @@ -4200,11 +4200,11 @@ "type": "Polygon", "coordinates": [ [ - [139.505258, -29.004674], - [139.505258, -31.00701], - [140.506426, -31.00701], - [140.506426, -29.004674], - [139.505258, -29.004674] + [139, -20], + [139, -18], + [140, -18], + [140, -20], + [139, -20] ] ] } @@ -4216,11 +4216,11 @@ "type": "Polygon", "coordinates": [ [ - [139.505258, -31.00701], - [139.505258, -33.009347], - [140.506426, -33.009347], - [140.506426, -31.00701], - [139.505258, -31.00701] + [139, -18], + [139, -16], + [140, -16], + [140, -18], + [139, -18] ] ] } @@ -4232,11 +4232,11 @@ "type": "Polygon", "coordinates": [ [ - [139.505258, -33.009347], - [139.505258, -35.011684], - [140.506426, -35.011684], - [140.506426, -33.009347], - [139.505258, -33.009347] + [140, -38], + [140, -36], + [141, -36], + [141, -38], + [140, -38] ] ] } @@ -4248,11 +4248,11 @@ "type": "Polygon", "coordinates": [ [ - [139.505258, -35.011684], - [139.505258, -37.014021], - [140.506426, -37.014021], - [140.506426, -35.011684], - [139.505258, -35.011684] + [140, -36], + [140, -34], + [141, -34], + [141, -36], + [140, -36] ] ] } @@ -4264,11 +4264,11 @@ "type": "Polygon", "coordinates": [ [ - [139.505258, -37.014021], - [139.505258, -39.016358], - [140.506426, -39.016358], - [140.506426, -37.014021], - [139.505258, -37.014021] + [140, -34], + [140, -32], + [141, -32], + [141, -34], + [140, -34] ] ] } @@ -4280,11 +4280,11 @@ "type": "Polygon", "coordinates": [ [ - [140.506426, -12.985979], - [140.506426, -14.988316], - [141.507595, -14.988316], - [141.507595, -12.985979], - [140.506426, -12.985979] + [140, -32], + [140, -30], + [141, -30], + [141, -32], + [140, -32] ] ] } @@ -4296,11 +4296,11 @@ "type": "Polygon", "coordinates": [ [ - [140.506426, -14.988316], - [140.506426, -16.990653], - [141.507595, -16.990653], - [141.507595, -14.988316], - [140.506426, -14.988316] + [140, -30], + [140, -28], + [141, -28], + [141, -30], + [140, -30] ] ] } @@ -4312,11 +4312,11 @@ "type": "Polygon", "coordinates": [ [ - [140.506426, -16.990653], - [140.506426, -18.99299], - [141.507595, -18.99299], - [141.507595, -16.990653], - [140.506426, -16.990653] + [140, -28], + [140, -26], + [141, -26], + [141, -28], + [140, -28] ] ] } @@ -4328,11 +4328,11 @@ "type": "Polygon", "coordinates": [ [ - [140.506426, -18.99299], - [140.506426, -20.995326], - [141.507595, -20.995326], - [141.507595, -18.99299], - [140.506426, -18.99299] + [140, -26], + [140, -24], + [141, -24], + [141, -26], + [140, -26] ] ] } @@ -4344,11 +4344,11 @@ "type": "Polygon", "coordinates": [ [ - [140.506426, -20.995326], - [140.506426, -22.997663], - [141.507595, -22.997663], - [141.507595, -20.995326], - [140.506426, -20.995326] + [140, -24], + [140, -22], + [141, -22], + [141, -24], + [140, -24] ] ] } @@ -4360,11 +4360,11 @@ "type": "Polygon", "coordinates": [ [ - [140.506426, -22.997663], - [140.506426, -25], - [141.507595, -25], - [141.507595, -22.997663], - [140.506426, -22.997663] + [140, -22], + [140, -20], + [141, -20], + [141, -22], + [140, -22] ] ] } @@ -4376,11 +4376,11 @@ "type": "Polygon", "coordinates": [ [ - [140.506426, -25], - [140.506426, -27.002337], - [141.507595, -27.002337], - [141.507595, -25], - [140.506426, -25] + [140, -20], + [140, -18], + [141, -18], + [141, -20], + [140, -20] ] ] } @@ -4392,11 +4392,11 @@ "type": "Polygon", "coordinates": [ [ - [140.506426, -27.002337], - [140.506426, -29.004674], - [141.507595, -29.004674], - [141.507595, -27.002337], - [140.506426, -27.002337] + [140, -18], + [140, -16], + [141, -16], + [141, -18], + [140, -18] ] ] } @@ -4408,11 +4408,11 @@ "type": "Polygon", "coordinates": [ [ - [140.506426, -29.004674], - [140.506426, -31.00701], - [141.507595, -31.00701], - [141.507595, -29.004674], - [140.506426, -29.004674] + [140, -16], + [140, -14], + [141, -14], + [141, -16], + [140, -16] ] ] } @@ -4424,11 +4424,11 @@ "type": "Polygon", "coordinates": [ [ - [140.506426, -31.00701], - [140.506426, -33.009347], - [141.507595, -33.009347], - [141.507595, -31.00701], - [140.506426, -31.00701] + [141, -40], + [141, -38], + [142, -38], + [142, -40], + [141, -40] ] ] } @@ -4440,11 +4440,11 @@ "type": "Polygon", "coordinates": [ [ - [140.506426, -33.009347], - [140.506426, -35.011684], - [141.507595, -35.011684], - [141.507595, -33.009347], - [140.506426, -33.009347] + [141, -38], + [141, -36], + [142, -36], + [142, -38], + [141, -38] ] ] } @@ -4456,11 +4456,11 @@ "type": "Polygon", "coordinates": [ [ - [140.506426, -35.011684], - [140.506426, -37.014021], - [141.507595, -37.014021], - [141.507595, -35.011684], - [140.506426, -35.011684] + [141, -36], + [141, -34], + [142, -34], + [142, -36], + [141, -36] ] ] } @@ -4472,11 +4472,11 @@ "type": "Polygon", "coordinates": [ [ - [140.506426, -37.014021], - [140.506426, -39.016358], - [141.507595, -39.016358], - [141.507595, -37.014021], - [140.506426, -37.014021] + [141, -34], + [141, -32], + [142, -32], + [142, -34], + [141, -34] ] ] } @@ -4488,11 +4488,11 @@ "type": "Polygon", "coordinates": [ [ - [141.507595, -8.981306], - [141.507595, -10.983642], - [142.508763, -10.983642], - [142.508763, -8.981306], - [141.507595, -8.981306] + [141, -32], + [141, -30], + [142, -30], + [142, -32], + [141, -32] ] ] } @@ -4504,11 +4504,11 @@ "type": "Polygon", "coordinates": [ [ - [141.507595, -10.983642], - [141.507595, -12.985979], - [142.508763, -12.985979], - [142.508763, -10.983642], - [141.507595, -10.983642] + [141, -30], + [141, -28], + [142, -28], + [142, -30], + [141, -30] ] ] } @@ -4520,11 +4520,11 @@ "type": "Polygon", "coordinates": [ [ - [141.507595, -12.985979], - [141.507595, -14.988316], - [142.508763, -14.988316], - [142.508763, -12.985979], - [141.507595, -12.985979] + [141, -28], + [141, -26], + [142, -26], + [142, -28], + [141, -28] ] ] } @@ -4536,11 +4536,11 @@ "type": "Polygon", "coordinates": [ [ - [141.507595, -14.988316], - [141.507595, -16.990653], - [142.508763, -16.990653], - [142.508763, -14.988316], - [141.507595, -14.988316] + [141, -26], + [141, -24], + [142, -24], + [142, -26], + [141, -26] ] ] } @@ -4552,11 +4552,11 @@ "type": "Polygon", "coordinates": [ [ - [141.507595, -16.990653], - [141.507595, -18.99299], - [142.508763, -18.99299], - [142.508763, -16.990653], - [141.507595, -16.990653] + [141, -24], + [141, -22], + [142, -22], + [142, -24], + [141, -24] ] ] } @@ -4568,11 +4568,11 @@ "type": "Polygon", "coordinates": [ [ - [141.507595, -18.99299], - [141.507595, -20.995326], - [142.508763, -20.995326], - [142.508763, -18.99299], - [141.507595, -18.99299] + [141, -22], + [141, -20], + [142, -20], + [142, -22], + [141, -22] ] ] } @@ -4584,11 +4584,11 @@ "type": "Polygon", "coordinates": [ [ - [141.507595, -20.995326], - [141.507595, -22.997663], - [142.508763, -22.997663], - [142.508763, -20.995326], - [141.507595, -20.995326] + [141, -20], + [141, -18], + [142, -18], + [142, -20], + [141, -20] ] ] } @@ -4600,11 +4600,11 @@ "type": "Polygon", "coordinates": [ [ - [141.507595, -22.997663], - [141.507595, -25], - [142.508763, -25], - [142.508763, -22.997663], - [141.507595, -22.997663] + [141, -18], + [141, -16], + [142, -16], + [142, -18], + [141, -18] ] ] } @@ -4616,11 +4616,11 @@ "type": "Polygon", "coordinates": [ [ - [141.507595, -25], - [141.507595, -27.002337], - [142.508763, -27.002337], - [142.508763, -25], - [141.507595, -25] + [141, -16], + [141, -14], + [142, -14], + [142, -16], + [141, -16] ] ] } @@ -4632,11 +4632,11 @@ "type": "Polygon", "coordinates": [ [ - [141.507595, -27.002337], - [141.507595, -29.004674], - [142.508763, -29.004674], - [142.508763, -27.002337], - [141.507595, -27.002337] + [141, -14], + [141, -12], + [142, -12], + [142, -14], + [141, -14] ] ] } @@ -4648,11 +4648,11 @@ "type": "Polygon", "coordinates": [ [ - [141.507595, -29.004674], - [141.507595, -31.00701], - [142.508763, -31.00701], - [142.508763, -29.004674], - [141.507595, -29.004674] + [141, -12], + [141, -10], + [142, -10], + [142, -12], + [141, -12] ] ] } @@ -4664,11 +4664,11 @@ "type": "Polygon", "coordinates": [ [ - [141.507595, -31.00701], - [141.507595, -33.009347], - [142.508763, -33.009347], - [142.508763, -31.00701], - [141.507595, -31.00701] + [142, -40], + [142, -38], + [143, -38], + [143, -40], + [142, -40] ] ] } @@ -4680,11 +4680,11 @@ "type": "Polygon", "coordinates": [ [ - [141.507595, -33.009347], - [141.507595, -35.011684], - [142.508763, -35.011684], - [142.508763, -33.009347], - [141.507595, -33.009347] + [142, -38], + [142, -36], + [143, -36], + [143, -38], + [142, -38] ] ] } @@ -4696,11 +4696,11 @@ "type": "Polygon", "coordinates": [ [ - [141.507595, -35.011684], - [141.507595, -37.014021], - [142.508763, -37.014021], - [142.508763, -35.011684], - [141.507595, -35.011684] + [142, -36], + [142, -34], + [143, -34], + [143, -36], + [142, -36] ] ] } @@ -4712,11 +4712,11 @@ "type": "Polygon", "coordinates": [ [ - [141.507595, -37.014021], - [141.507595, -39.016358], - [142.508763, -39.016358], - [142.508763, -37.014021], - [141.507595, -37.014021] + [142, -34], + [142, -32], + [143, -32], + [143, -34], + [142, -34] ] ] } @@ -4728,11 +4728,11 @@ "type": "Polygon", "coordinates": [ [ - [142.508763, -8.981306], - [142.508763, -10.983642], - [143.509931, -10.983642], - [143.509931, -8.981306], - [142.508763, -8.981306] + [142, -32], + [142, -30], + [143, -30], + [143, -32], + [142, -32] ] ] } @@ -4744,11 +4744,11 @@ "type": "Polygon", "coordinates": [ [ - [142.508763, -10.983642], - [142.508763, -12.985979], - [143.509931, -12.985979], - [143.509931, -10.983642], - [142.508763, -10.983642] + [142, -30], + [142, -28], + [143, -28], + [143, -30], + [142, -30] ] ] } @@ -4760,11 +4760,11 @@ "type": "Polygon", "coordinates": [ [ - [142.508763, -12.985979], - [142.508763, -14.988316], - [143.509931, -14.988316], - [143.509931, -12.985979], - [142.508763, -12.985979] + [142, -28], + [142, -26], + [143, -26], + [143, -28], + [142, -28] ] ] } @@ -4776,11 +4776,11 @@ "type": "Polygon", "coordinates": [ [ - [142.508763, -14.988316], - [142.508763, -16.990653], - [143.509931, -16.990653], - [143.509931, -14.988316], - [142.508763, -14.988316] + [142, -26], + [142, -24], + [143, -24], + [143, -26], + [142, -26] ] ] } @@ -4792,11 +4792,11 @@ "type": "Polygon", "coordinates": [ [ - [142.508763, -16.990653], - [142.508763, -18.99299], - [143.509931, -18.99299], - [143.509931, -16.990653], - [142.508763, -16.990653] + [142, -24], + [142, -22], + [143, -22], + [143, -24], + [142, -24] ] ] } @@ -4808,11 +4808,11 @@ "type": "Polygon", "coordinates": [ [ - [142.508763, -18.99299], - [142.508763, -20.995326], - [143.509931, -20.995326], - [143.509931, -18.99299], - [142.508763, -18.99299] + [142, -22], + [142, -20], + [143, -20], + [143, -22], + [142, -22] ] ] } @@ -4824,11 +4824,11 @@ "type": "Polygon", "coordinates": [ [ - [142.508763, -20.995326], - [142.508763, -22.997663], - [143.509931, -22.997663], - [143.509931, -20.995326], - [142.508763, -20.995326] + [142, -20], + [142, -18], + [143, -18], + [143, -20], + [142, -20] ] ] } @@ -4840,11 +4840,11 @@ "type": "Polygon", "coordinates": [ [ - [142.508763, -22.997663], - [142.508763, -25], - [143.509931, -25], - [143.509931, -22.997663], - [142.508763, -22.997663] + [142, -18], + [142, -16], + [143, -16], + [143, -18], + [142, -18] ] ] } @@ -4856,11 +4856,11 @@ "type": "Polygon", "coordinates": [ [ - [142.508763, -25], - [142.508763, -27.002337], - [143.509931, -27.002337], - [143.509931, -25], - [142.508763, -25] + [142, -16], + [142, -14], + [143, -14], + [143, -16], + [142, -16] ] ] } @@ -4872,11 +4872,11 @@ "type": "Polygon", "coordinates": [ [ - [142.508763, -27.002337], - [142.508763, -29.004674], - [143.509931, -29.004674], - [143.509931, -27.002337], - [142.508763, -27.002337] + [142, -14], + [142, -12], + [143, -12], + [143, -14], + [142, -14] ] ] } @@ -4888,11 +4888,11 @@ "type": "Polygon", "coordinates": [ [ - [142.508763, -29.004674], - [142.508763, -31.00701], - [143.509931, -31.00701], - [143.509931, -29.004674], - [142.508763, -29.004674] + [142, -12], + [142, -10], + [143, -10], + [143, -12], + [142, -12] ] ] } @@ -4904,11 +4904,11 @@ "type": "Polygon", "coordinates": [ [ - [142.508763, -31.00701], - [142.508763, -33.009347], - [143.509931, -33.009347], - [143.509931, -31.00701], - [142.508763, -31.00701] + [143, -40], + [143, -38], + [144, -38], + [144, -40], + [143, -40] ] ] } @@ -4920,11 +4920,11 @@ "type": "Polygon", "coordinates": [ [ - [142.508763, -33.009347], - [142.508763, -35.011684], - [143.509931, -35.011684], - [143.509931, -33.009347], - [142.508763, -33.009347] + [143, -38], + [143, -36], + [144, -36], + [144, -38], + [143, -38] ] ] } @@ -4936,11 +4936,11 @@ "type": "Polygon", "coordinates": [ [ - [142.508763, -35.011684], - [142.508763, -37.014021], - [143.509931, -37.014021], - [143.509931, -35.011684], - [142.508763, -35.011684] + [143, -36], + [143, -34], + [144, -34], + [144, -36], + [143, -36] ] ] } @@ -4952,11 +4952,11 @@ "type": "Polygon", "coordinates": [ [ - [142.508763, -37.014021], - [142.508763, -39.016358], - [143.509931, -39.016358], - [143.509931, -37.014021], - [142.508763, -37.014021] + [143, -34], + [143, -32], + [144, -32], + [144, -34], + [143, -34] ] ] } @@ -4968,11 +4968,11 @@ "type": "Polygon", "coordinates": [ [ - [143.509931, -10.983642], - [143.509931, -12.985979], - [144.5111, -12.985979], - [144.5111, -10.983642], - [143.509931, -10.983642] + [143, -32], + [143, -30], + [144, -30], + [144, -32], + [143, -32] ] ] } @@ -4984,11 +4984,11 @@ "type": "Polygon", "coordinates": [ [ - [143.509931, -12.985979], - [143.509931, -14.988316], - [144.5111, -14.988316], - [144.5111, -12.985979], - [143.509931, -12.985979] + [143, -30], + [143, -28], + [144, -28], + [144, -30], + [143, -30] ] ] } @@ -5000,11 +5000,11 @@ "type": "Polygon", "coordinates": [ [ - [143.509931, -14.988316], - [143.509931, -16.990653], - [144.5111, -16.990653], - [144.5111, -14.988316], - [143.509931, -14.988316] + [143, -28], + [143, -26], + [144, -26], + [144, -28], + [143, -28] ] ] } @@ -5016,11 +5016,11 @@ "type": "Polygon", "coordinates": [ [ - [143.509931, -16.990653], - [143.509931, -18.99299], - [144.5111, -18.99299], - [144.5111, -16.990653], - [143.509931, -16.990653] + [143, -26], + [143, -24], + [144, -24], + [144, -26], + [143, -26] ] ] } @@ -5032,11 +5032,11 @@ "type": "Polygon", "coordinates": [ [ - [143.509931, -18.99299], - [143.509931, -20.995326], - [144.5111, -20.995326], - [144.5111, -18.99299], - [143.509931, -18.99299] + [143, -24], + [143, -22], + [144, -22], + [144, -24], + [143, -24] ] ] } @@ -5048,11 +5048,11 @@ "type": "Polygon", "coordinates": [ [ - [143.509931, -20.995326], - [143.509931, -22.997663], - [144.5111, -22.997663], - [144.5111, -20.995326], - [143.509931, -20.995326] + [143, -22], + [143, -20], + [144, -20], + [144, -22], + [143, -22] ] ] } @@ -5064,11 +5064,11 @@ "type": "Polygon", "coordinates": [ [ - [143.509931, -22.997663], - [143.509931, -25], - [144.5111, -25], - [144.5111, -22.997663], - [143.509931, -22.997663] + [143, -20], + [143, -18], + [144, -18], + [144, -20], + [143, -20] ] ] } @@ -5080,11 +5080,11 @@ "type": "Polygon", "coordinates": [ [ - [143.509931, -25], - [143.509931, -27.002337], - [144.5111, -27.002337], - [144.5111, -25], - [143.509931, -25] + [143, -18], + [143, -16], + [144, -16], + [144, -18], + [143, -18] ] ] } @@ -5096,11 +5096,11 @@ "type": "Polygon", "coordinates": [ [ - [143.509931, -27.002337], - [143.509931, -29.004674], - [144.5111, -29.004674], - [144.5111, -27.002337], - [143.509931, -27.002337] + [143, -16], + [143, -14], + [144, -14], + [144, -16], + [143, -16] ] ] } @@ -5112,11 +5112,11 @@ "type": "Polygon", "coordinates": [ [ - [143.509931, -29.004674], - [143.509931, -31.00701], - [144.5111, -31.00701], - [144.5111, -29.004674], - [143.509931, -29.004674] + [143, -14], + [143, -12], + [144, -12], + [144, -14], + [143, -14] ] ] } @@ -5128,11 +5128,11 @@ "type": "Polygon", "coordinates": [ [ - [143.509931, -31.00701], - [143.509931, -33.009347], - [144.5111, -33.009347], - [144.5111, -31.00701], - [143.509931, -31.00701] + [143, -12], + [143, -10], + [144, -10], + [144, -12], + [143, -12] ] ] } @@ -5144,11 +5144,11 @@ "type": "Polygon", "coordinates": [ [ - [143.509931, -33.009347], - [143.509931, -35.011684], - [144.5111, -35.011684], - [144.5111, -33.009347], - [143.509931, -33.009347] + [144, -40], + [144, -38], + [145, -38], + [145, -40], + [144, -40] ] ] } @@ -5160,11 +5160,11 @@ "type": "Polygon", "coordinates": [ [ - [143.509931, -35.011684], - [143.509931, -37.014021], - [144.5111, -37.014021], - [144.5111, -35.011684], - [143.509931, -35.011684] + [144, -38], + [144, -36], + [145, -36], + [145, -38], + [144, -38] ] ] } @@ -5176,11 +5176,11 @@ "type": "Polygon", "coordinates": [ [ - [143.509931, -37.014021], - [143.509931, -39.016358], - [144.5111, -39.016358], - [144.5111, -37.014021], - [143.509931, -37.014021] + [144, -36], + [144, -34], + [145, -34], + [145, -36], + [144, -36] ] ] } @@ -5192,11 +5192,11 @@ "type": "Polygon", "coordinates": [ [ - [144.5111, -12.985979], - [144.5111, -14.988316], - [145.512268, -14.988316], - [145.512268, -12.985979], - [144.5111, -12.985979] + [144, -34], + [144, -32], + [145, -32], + [145, -34], + [144, -34] ] ] } @@ -5208,11 +5208,11 @@ "type": "Polygon", "coordinates": [ [ - [144.5111, -14.988316], - [144.5111, -16.990653], - [145.512268, -16.990653], - [145.512268, -14.988316], - [144.5111, -14.988316] + [144, -32], + [144, -30], + [145, -30], + [145, -32], + [144, -32] ] ] } @@ -5224,11 +5224,11 @@ "type": "Polygon", "coordinates": [ [ - [144.5111, -16.990653], - [144.5111, -18.99299], - [145.512268, -18.99299], - [145.512268, -16.990653], - [144.5111, -16.990653] + [144, -30], + [144, -28], + [145, -28], + [145, -30], + [144, -30] ] ] } @@ -5240,11 +5240,11 @@ "type": "Polygon", "coordinates": [ [ - [144.5111, -18.99299], - [144.5111, -20.995326], - [145.512268, -20.995326], - [145.512268, -18.99299], - [144.5111, -18.99299] + [144, -28], + [144, -26], + [145, -26], + [145, -28], + [144, -28] ] ] } @@ -5256,11 +5256,11 @@ "type": "Polygon", "coordinates": [ [ - [144.5111, -20.995326], - [144.5111, -22.997663], - [145.512268, -22.997663], - [145.512268, -20.995326], - [144.5111, -20.995326] + [144, -26], + [144, -24], + [145, -24], + [145, -26], + [144, -26] ] ] } @@ -5272,11 +5272,11 @@ "type": "Polygon", "coordinates": [ [ - [144.5111, -22.997663], - [144.5111, -25], - [145.512268, -25], - [145.512268, -22.997663], - [144.5111, -22.997663] + [144, -24], + [144, -22], + [145, -22], + [145, -24], + [144, -24] ] ] } @@ -5288,11 +5288,11 @@ "type": "Polygon", "coordinates": [ [ - [144.5111, -25], - [144.5111, -27.002337], - [145.512268, -27.002337], - [145.512268, -25], - [144.5111, -25] + [144, -22], + [144, -20], + [145, -20], + [145, -22], + [144, -22] ] ] } @@ -5304,11 +5304,11 @@ "type": "Polygon", "coordinates": [ [ - [144.5111, -27.002337], - [144.5111, -29.004674], - [145.512268, -29.004674], - [145.512268, -27.002337], - [144.5111, -27.002337] + [144, -20], + [144, -18], + [145, -18], + [145, -20], + [144, -20] ] ] } @@ -5320,11 +5320,11 @@ "type": "Polygon", "coordinates": [ [ - [144.5111, -29.004674], - [144.5111, -31.00701], - [145.512268, -31.00701], - [145.512268, -29.004674], - [144.5111, -29.004674] + [144, -18], + [144, -16], + [145, -16], + [145, -18], + [144, -18] ] ] } @@ -5336,11 +5336,11 @@ "type": "Polygon", "coordinates": [ [ - [144.5111, -31.00701], - [144.5111, -33.009347], - [145.512268, -33.009347], - [145.512268, -31.00701], - [144.5111, -31.00701] + [144, -16], + [144, -14], + [145, -14], + [145, -16], + [144, -16] ] ] } @@ -5352,11 +5352,11 @@ "type": "Polygon", "coordinates": [ [ - [144.5111, -33.009347], - [144.5111, -35.011684], - [145.512268, -35.011684], - [145.512268, -33.009347], - [144.5111, -33.009347] + [144, -14], + [144, -12], + [145, -12], + [145, -14], + [144, -14] ] ] } @@ -5368,11 +5368,11 @@ "type": "Polygon", "coordinates": [ [ - [144.5111, -35.011684], - [144.5111, -37.014021], - [145.512268, -37.014021], - [145.512268, -35.011684], - [144.5111, -35.011684] + [145, -40], + [145, -38], + [146, -38], + [146, -40], + [145, -40] ] ] } @@ -5384,11 +5384,11 @@ "type": "Polygon", "coordinates": [ [ - [144.5111, -37.014021], - [144.5111, -39.016358], - [145.512268, -39.016358], - [145.512268, -37.014021], - [144.5111, -37.014021] + [145, -38], + [145, -36], + [146, -36], + [146, -38], + [145, -38] ] ] } @@ -5400,11 +5400,11 @@ "type": "Polygon", "coordinates": [ [ - [145.512268, -14.988316], - [145.512268, -16.990653], - [146.513437, -16.990653], - [146.513437, -14.988316], - [145.512268, -14.988316] + [145, -36], + [145, -34], + [146, -34], + [146, -36], + [145, -36] ] ] } @@ -5416,11 +5416,11 @@ "type": "Polygon", "coordinates": [ [ - [145.512268, -16.990653], - [145.512268, -18.99299], - [146.513437, -18.99299], - [146.513437, -16.990653], - [145.512268, -16.990653] + [145, -34], + [145, -32], + [146, -32], + [146, -34], + [145, -34] ] ] } @@ -5432,11 +5432,11 @@ "type": "Polygon", "coordinates": [ [ - [145.512268, -18.99299], - [145.512268, -20.995326], - [146.513437, -20.995326], - [146.513437, -18.99299], - [145.512268, -18.99299] + [145, -32], + [145, -30], + [146, -30], + [146, -32], + [145, -32] ] ] } @@ -5448,11 +5448,11 @@ "type": "Polygon", "coordinates": [ [ - [145.512268, -20.995326], - [145.512268, -22.997663], - [146.513437, -22.997663], - [146.513437, -20.995326], - [145.512268, -20.995326] + [145, -30], + [145, -28], + [146, -28], + [146, -30], + [145, -30] ] ] } @@ -5464,11 +5464,11 @@ "type": "Polygon", "coordinates": [ [ - [145.512268, -22.997663], - [145.512268, -25], - [146.513437, -25], - [146.513437, -22.997663], - [145.512268, -22.997663] + [145, -28], + [145, -26], + [146, -26], + [146, -28], + [145, -28] ] ] } @@ -5480,11 +5480,11 @@ "type": "Polygon", "coordinates": [ [ - [145.512268, -25], - [145.512268, -27.002337], - [146.513437, -27.002337], - [146.513437, -25], - [145.512268, -25] + [145, -26], + [145, -24], + [146, -24], + [146, -26], + [145, -26] ] ] } @@ -5496,11 +5496,11 @@ "type": "Polygon", "coordinates": [ [ - [145.512268, -27.002337], - [145.512268, -29.004674], - [146.513437, -29.004674], - [146.513437, -27.002337], - [145.512268, -27.002337] + [145, -24], + [145, -22], + [146, -22], + [146, -24], + [145, -24] ] ] } @@ -5512,11 +5512,11 @@ "type": "Polygon", "coordinates": [ [ - [145.512268, -29.004674], - [145.512268, -31.00701], - [146.513437, -31.00701], - [146.513437, -29.004674], - [145.512268, -29.004674] + [145, -22], + [145, -20], + [146, -20], + [146, -22], + [145, -22] ] ] } @@ -5528,11 +5528,11 @@ "type": "Polygon", "coordinates": [ [ - [145.512268, -31.00701], - [145.512268, -33.009347], - [146.513437, -33.009347], - [146.513437, -31.00701], - [145.512268, -31.00701] + [145, -20], + [145, -18], + [146, -18], + [146, -20], + [145, -20] ] ] } @@ -5544,11 +5544,11 @@ "type": "Polygon", "coordinates": [ [ - [145.512268, -33.009347], - [145.512268, -35.011684], - [146.513437, -35.011684], - [146.513437, -33.009347], - [145.512268, -33.009347] + [145, -18], + [145, -16], + [146, -16], + [146, -18], + [145, -18] ] ] } @@ -5560,11 +5560,11 @@ "type": "Polygon", "coordinates": [ [ - [145.512268, -35.011684], - [145.512268, -37.014021], - [146.513437, -37.014021], - [146.513437, -35.011684], - [145.512268, -35.011684] + [145, -16], + [145, -14], + [146, -14], + [146, -16], + [145, -16] ] ] } @@ -5576,11 +5576,11 @@ "type": "Polygon", "coordinates": [ [ - [145.512268, -37.014021], - [145.512268, -39.016358], - [146.513437, -39.016358], - [146.513437, -37.014021], - [145.512268, -37.014021] + [146, -40], + [146, -38], + [147, -38], + [147, -40], + [146, -40] ] ] } @@ -5592,11 +5592,11 @@ "type": "Polygon", "coordinates": [ [ - [146.513437, -16.990653], - [146.513437, -18.99299], - [147.514605, -18.99299], - [147.514605, -16.990653], - [146.513437, -16.990653] + [146, -38], + [146, -36], + [147, -36], + [147, -38], + [146, -38] ] ] } @@ -5608,11 +5608,11 @@ "type": "Polygon", "coordinates": [ [ - [146.513437, -18.99299], - [146.513437, -20.995326], - [147.514605, -20.995326], - [147.514605, -18.99299], - [146.513437, -18.99299] + [146, -36], + [146, -34], + [147, -34], + [147, -36], + [146, -36] ] ] } @@ -5624,11 +5624,11 @@ "type": "Polygon", "coordinates": [ [ - [146.513437, -20.995326], - [146.513437, -22.997663], - [147.514605, -22.997663], - [147.514605, -20.995326], - [146.513437, -20.995326] + [146, -34], + [146, -32], + [147, -32], + [147, -34], + [146, -34] ] ] } @@ -5640,11 +5640,11 @@ "type": "Polygon", "coordinates": [ [ - [146.513437, -22.997663], - [146.513437, -25], - [147.514605, -25], - [147.514605, -22.997663], - [146.513437, -22.997663] + [146, -32], + [146, -30], + [147, -30], + [147, -32], + [146, -32] ] ] } @@ -5656,11 +5656,11 @@ "type": "Polygon", "coordinates": [ [ - [146.513437, -25], - [146.513437, -27.002337], - [147.514605, -27.002337], - [147.514605, -25], - [146.513437, -25] + [146, -30], + [146, -28], + [147, -28], + [147, -30], + [146, -30] ] ] } @@ -5672,11 +5672,11 @@ "type": "Polygon", "coordinates": [ [ - [146.513437, -27.002337], - [146.513437, -29.004674], - [147.514605, -29.004674], - [147.514605, -27.002337], - [146.513437, -27.002337] + [146, -28], + [146, -26], + [147, -26], + [147, -28], + [146, -28] ] ] } @@ -5688,11 +5688,11 @@ "type": "Polygon", "coordinates": [ [ - [146.513437, -29.004674], - [146.513437, -31.00701], - [147.514605, -31.00701], - [147.514605, -29.004674], - [146.513437, -29.004674] + [146, -26], + [146, -24], + [147, -24], + [147, -26], + [146, -26] ] ] } @@ -5704,11 +5704,11 @@ "type": "Polygon", "coordinates": [ [ - [146.513437, -31.00701], - [146.513437, -33.009347], - [147.514605, -33.009347], - [147.514605, -31.00701], - [146.513437, -31.00701] + [146, -24], + [146, -22], + [147, -22], + [147, -24], + [146, -24] ] ] } @@ -5720,11 +5720,11 @@ "type": "Polygon", "coordinates": [ [ - [146.513437, -33.009347], - [146.513437, -35.011684], - [147.514605, -35.011684], - [147.514605, -33.009347], - [146.513437, -33.009347] + [146, -22], + [146, -20], + [147, -20], + [147, -22], + [146, -22] ] ] } @@ -5736,11 +5736,11 @@ "type": "Polygon", "coordinates": [ [ - [146.513437, -35.011684], - [146.513437, -37.014021], - [147.514605, -37.014021], - [147.514605, -35.011684], - [146.513437, -35.011684] + [146, -20], + [146, -18], + [147, -18], + [147, -20], + [146, -20] ] ] } @@ -5752,11 +5752,11 @@ "type": "Polygon", "coordinates": [ [ - [146.513437, -37.014021], - [146.513437, -39.016358], - [147.514605, -39.016358], - [147.514605, -37.014021], - [146.513437, -37.014021] + [146, -18], + [146, -16], + [147, -16], + [147, -18], + [146, -18] ] ] } @@ -5768,11 +5768,11 @@ "type": "Polygon", "coordinates": [ [ - [147.514605, -18.99299], - [147.514605, -20.995326], - [148.515773, -20.995326], - [148.515773, -18.99299], - [147.514605, -18.99299] + [147, -40], + [147, -38], + [148, -38], + [148, -40], + [147, -40] ] ] } @@ -5784,11 +5784,11 @@ "type": "Polygon", "coordinates": [ [ - [147.514605, -20.995326], - [147.514605, -22.997663], - [148.515773, -22.997663], - [148.515773, -20.995326], - [147.514605, -20.995326] + [147, -38], + [147, -36], + [148, -36], + [148, -38], + [147, -38] ] ] } @@ -5800,11 +5800,11 @@ "type": "Polygon", "coordinates": [ [ - [147.514605, -22.997663], - [147.514605, -25], - [148.515773, -25], - [148.515773, -22.997663], - [147.514605, -22.997663] + [147, -36], + [147, -34], + [148, -34], + [148, -36], + [147, -36] ] ] } @@ -5816,11 +5816,11 @@ "type": "Polygon", "coordinates": [ [ - [147.514605, -25], - [147.514605, -27.002337], - [148.515773, -27.002337], - [148.515773, -25], - [147.514605, -25] + [147, -34], + [147, -32], + [148, -32], + [148, -34], + [147, -34] ] ] } @@ -5832,11 +5832,11 @@ "type": "Polygon", "coordinates": [ [ - [147.514605, -27.002337], - [147.514605, -29.004674], - [148.515773, -29.004674], - [148.515773, -27.002337], - [147.514605, -27.002337] + [147, -32], + [147, -30], + [148, -30], + [148, -32], + [147, -32] ] ] } @@ -5848,11 +5848,11 @@ "type": "Polygon", "coordinates": [ [ - [147.514605, -29.004674], - [147.514605, -31.00701], - [148.515773, -31.00701], - [148.515773, -29.004674], - [147.514605, -29.004674] + [147, -30], + [147, -28], + [148, -28], + [148, -30], + [147, -30] ] ] } @@ -5864,11 +5864,11 @@ "type": "Polygon", "coordinates": [ [ - [147.514605, -31.00701], - [147.514605, -33.009347], - [148.515773, -33.009347], - [148.515773, -31.00701], - [147.514605, -31.00701] + [147, -28], + [147, -26], + [148, -26], + [148, -28], + [147, -28] ] ] } @@ -5880,11 +5880,11 @@ "type": "Polygon", "coordinates": [ [ - [147.514605, -33.009347], - [147.514605, -35.011684], - [148.515773, -35.011684], - [148.515773, -33.009347], - [147.514605, -33.009347] + [147, -26], + [147, -24], + [148, -24], + [148, -26], + [147, -26] ] ] } @@ -5896,11 +5896,11 @@ "type": "Polygon", "coordinates": [ [ - [147.514605, -35.011684], - [147.514605, -37.014021], - [148.515773, -37.014021], - [148.515773, -35.011684], - [147.514605, -35.011684] + [147, -24], + [147, -22], + [148, -22], + [148, -24], + [147, -24] ] ] } @@ -5912,11 +5912,11 @@ "type": "Polygon", "coordinates": [ [ - [147.514605, -37.014021], - [147.514605, -39.016358], - [148.515773, -39.016358], - [148.515773, -37.014021], - [147.514605, -37.014021] + [147, -22], + [147, -20], + [148, -20], + [148, -22], + [147, -22] ] ] } @@ -5928,11 +5928,11 @@ "type": "Polygon", "coordinates": [ [ - [148.515773, -18.99299], - [148.515773, -20.995326], - [149.516942, -20.995326], - [149.516942, -18.99299], - [148.515773, -18.99299] + [147, -20], + [147, -18], + [148, -18], + [148, -20], + [147, -20] ] ] } @@ -5944,11 +5944,11 @@ "type": "Polygon", "coordinates": [ [ - [148.515773, -20.995326], - [148.515773, -22.997663], - [149.516942, -22.997663], - [149.516942, -20.995326], - [148.515773, -20.995326] + [148, -40], + [148, -38], + [149, -38], + [149, -40], + [148, -40] ] ] } @@ -5960,11 +5960,11 @@ "type": "Polygon", "coordinates": [ [ - [148.515773, -22.997663], - [148.515773, -25], - [149.516942, -25], - [149.516942, -22.997663], - [148.515773, -22.997663] + [148, -38], + [148, -36], + [149, -36], + [149, -38], + [148, -38] ] ] } @@ -5976,11 +5976,11 @@ "type": "Polygon", "coordinates": [ [ - [148.515773, -25], - [148.515773, -27.002337], - [149.516942, -27.002337], - [149.516942, -25], - [148.515773, -25] + [148, -36], + [148, -34], + [149, -34], + [149, -36], + [148, -36] ] ] } @@ -5992,11 +5992,11 @@ "type": "Polygon", "coordinates": [ [ - [148.515773, -27.002337], - [148.515773, -29.004674], - [149.516942, -29.004674], - [149.516942, -27.002337], - [148.515773, -27.002337] + [148, -34], + [148, -32], + [149, -32], + [149, -34], + [148, -34] ] ] } @@ -6008,11 +6008,11 @@ "type": "Polygon", "coordinates": [ [ - [148.515773, -29.004674], - [148.515773, -31.00701], - [149.516942, -31.00701], - [149.516942, -29.004674], - [148.515773, -29.004674] + [148, -32], + [148, -30], + [149, -30], + [149, -32], + [148, -32] ] ] } @@ -6024,11 +6024,11 @@ "type": "Polygon", "coordinates": [ [ - [148.515773, -31.00701], - [148.515773, -33.009347], - [149.516942, -33.009347], - [149.516942, -31.00701], - [148.515773, -31.00701] + [148, -30], + [148, -28], + [149, -28], + [149, -30], + [148, -30] ] ] } @@ -6040,11 +6040,11 @@ "type": "Polygon", "coordinates": [ [ - [148.515773, -33.009347], - [148.515773, -35.011684], - [149.516942, -35.011684], - [149.516942, -33.009347], - [148.515773, -33.009347] + [148, -28], + [148, -26], + [149, -26], + [149, -28], + [148, -28] ] ] } @@ -6056,11 +6056,11 @@ "type": "Polygon", "coordinates": [ [ - [148.515773, -35.011684], - [148.515773, -37.014021], - [149.516942, -37.014021], - [149.516942, -35.011684], - [148.515773, -35.011684] + [148, -26], + [148, -24], + [149, -24], + [149, -26], + [148, -26] ] ] } @@ -6072,11 +6072,11 @@ "type": "Polygon", "coordinates": [ [ - [148.515773, -37.014021], - [148.515773, -39.016358], - [149.516942, -39.016358], - [149.516942, -37.014021], - [148.515773, -37.014021] + [148, -24], + [148, -22], + [149, -22], + [149, -24], + [148, -24] ] ] } @@ -6088,11 +6088,11 @@ "type": "Polygon", "coordinates": [ [ - [149.516942, -20.995326], - [149.516942, -22.997663], - [150.51811, -22.997663], - [150.51811, -20.995326], - [149.516942, -20.995326] + [148, -22], + [148, -20], + [149, -20], + [149, -22], + [148, -22] ] ] } @@ -6104,11 +6104,11 @@ "type": "Polygon", "coordinates": [ [ - [149.516942, -22.997663], - [149.516942, -25], - [150.51811, -25], - [150.51811, -22.997663], - [149.516942, -22.997663] + [149, -40], + [149, -38], + [150, -38], + [150, -40], + [149, -40] ] ] } @@ -6120,11 +6120,11 @@ "type": "Polygon", "coordinates": [ [ - [149.516942, -25], - [149.516942, -27.002337], - [150.51811, -27.002337], - [150.51811, -25], - [149.516942, -25] + [149, -38], + [149, -36], + [150, -36], + [150, -38], + [149, -38] ] ] } @@ -6136,11 +6136,11 @@ "type": "Polygon", "coordinates": [ [ - [149.516942, -27.002337], - [149.516942, -29.004674], - [150.51811, -29.004674], - [150.51811, -27.002337], - [149.516942, -27.002337] + [149, -36], + [149, -34], + [150, -34], + [150, -36], + [149, -36] ] ] } @@ -6152,11 +6152,11 @@ "type": "Polygon", "coordinates": [ [ - [149.516942, -29.004674], - [149.516942, -31.00701], - [150.51811, -31.00701], - [150.51811, -29.004674], - [149.516942, -29.004674] + [149, -34], + [149, -32], + [150, -32], + [150, -34], + [149, -34] ] ] } @@ -6168,11 +6168,11 @@ "type": "Polygon", "coordinates": [ [ - [149.516942, -31.00701], - [149.516942, -33.009347], - [150.51811, -33.009347], - [150.51811, -31.00701], - [149.516942, -31.00701] + [149, -32], + [149, -30], + [150, -30], + [150, -32], + [149, -32] ] ] } @@ -6184,11 +6184,11 @@ "type": "Polygon", "coordinates": [ [ - [149.516942, -33.009347], - [149.516942, -35.011684], - [150.51811, -35.011684], - [150.51811, -33.009347], - [149.516942, -33.009347] + [149, -30], + [149, -28], + [150, -28], + [150, -30], + [149, -30] ] ] } @@ -6200,11 +6200,11 @@ "type": "Polygon", "coordinates": [ [ - [149.516942, -35.011684], - [149.516942, -37.014021], - [150.51811, -37.014021], - [150.51811, -35.011684], - [149.516942, -35.011684] + [149, -28], + [149, -26], + [150, -26], + [150, -28], + [149, -28] ] ] } @@ -6216,11 +6216,11 @@ "type": "Polygon", "coordinates": [ [ - [149.516942, -37.014021], - [149.516942, -39.016358], - [150.51811, -39.016358], - [150.51811, -37.014021], - [149.516942, -37.014021] + [149, -26], + [149, -24], + [150, -24], + [150, -26], + [149, -26] ] ] } @@ -6232,11 +6232,11 @@ "type": "Polygon", "coordinates": [ [ - [150.51811, -20.995326], - [150.51811, -22.997663], - [151.519279, -22.997663], - [151.519279, -20.995326], - [150.51811, -20.995326] + [149, -24], + [149, -22], + [150, -22], + [150, -24], + [149, -24] ] ] } @@ -6248,11 +6248,11 @@ "type": "Polygon", "coordinates": [ [ - [150.51811, -22.997663], - [150.51811, -25], - [151.519279, -25], - [151.519279, -22.997663], - [150.51811, -22.997663] + [149, -22], + [149, -20], + [150, -20], + [150, -22], + [149, -22] ] ] } @@ -6264,11 +6264,11 @@ "type": "Polygon", "coordinates": [ [ - [150.51811, -25], - [150.51811, -27.002337], - [151.519279, -27.002337], - [151.519279, -25], - [150.51811, -25] + [150, -38], + [150, -36], + [151, -36], + [151, -38], + [150, -38] ] ] } @@ -6280,11 +6280,11 @@ "type": "Polygon", "coordinates": [ [ - [150.51811, -27.002337], - [150.51811, -29.004674], - [151.519279, -29.004674], - [151.519279, -27.002337], - [150.51811, -27.002337] + [150, -36], + [150, -34], + [151, -34], + [151, -36], + [150, -36] ] ] } @@ -6296,11 +6296,11 @@ "type": "Polygon", "coordinates": [ [ - [150.51811, -29.004674], - [150.51811, -31.00701], - [151.519279, -31.00701], - [151.519279, -29.004674], - [150.51811, -29.004674] + [150, -34], + [150, -32], + [151, -32], + [151, -34], + [150, -34] ] ] } @@ -6312,11 +6312,11 @@ "type": "Polygon", "coordinates": [ [ - [150.51811, -31.00701], - [150.51811, -33.009347], - [151.519279, -33.009347], - [151.519279, -31.00701], - [150.51811, -31.00701] + [150, -32], + [150, -30], + [151, -30], + [151, -32], + [150, -32] ] ] } @@ -6328,11 +6328,11 @@ "type": "Polygon", "coordinates": [ [ - [150.51811, -33.009347], - [150.51811, -35.011684], - [151.519279, -35.011684], - [151.519279, -33.009347], - [150.51811, -33.009347] + [150, -30], + [150, -28], + [151, -28], + [151, -30], + [150, -30] ] ] } @@ -6344,11 +6344,11 @@ "type": "Polygon", "coordinates": [ [ - [150.51811, -35.011684], - [150.51811, -37.014021], - [151.519279, -37.014021], - [151.519279, -35.011684], - [150.51811, -35.011684] + [150, -28], + [150, -26], + [151, -26], + [151, -28], + [150, -28] ] ] } @@ -6360,11 +6360,11 @@ "type": "Polygon", "coordinates": [ [ - [150.51811, -37.014021], - [150.51811, -39.016358], - [151.519279, -39.016358], - [151.519279, -37.014021], - [150.51811, -37.014021] + [150, -26], + [150, -24], + [151, -24], + [151, -26], + [150, -26] ] ] } @@ -6376,11 +6376,11 @@ "type": "Polygon", "coordinates": [ [ - [151.519279, -22.997663], - [151.519279, -25], - [152.520447, -25], - [152.520447, -22.997663], - [151.519279, -22.997663] + [150, -24], + [150, -22], + [151, -22], + [151, -24], + [150, -24] ] ] } @@ -6392,11 +6392,11 @@ "type": "Polygon", "coordinates": [ [ - [151.519279, -25], - [151.519279, -27.002337], - [152.520447, -27.002337], - [152.520447, -25], - [151.519279, -25] + [151, -38], + [151, -36], + [152, -36], + [152, -38], + [151, -38] ] ] } @@ -6408,11 +6408,11 @@ "type": "Polygon", "coordinates": [ [ - [151.519279, -27.002337], - [151.519279, -29.004674], - [152.520447, -29.004674], - [152.520447, -27.002337], - [151.519279, -27.002337] + [151, -36], + [151, -34], + [152, -34], + [152, -36], + [151, -36] ] ] } @@ -6424,11 +6424,11 @@ "type": "Polygon", "coordinates": [ [ - [151.519279, -29.004674], - [151.519279, -31.00701], - [152.520447, -31.00701], - [152.520447, -29.004674], - [151.519279, -29.004674] + [151, -34], + [151, -32], + [152, -32], + [152, -34], + [151, -34] ] ] } @@ -6440,11 +6440,11 @@ "type": "Polygon", "coordinates": [ [ - [151.519279, -31.00701], - [151.519279, -33.009347], - [152.520447, -33.009347], - [152.520447, -31.00701], - [151.519279, -31.00701] + [151, -32], + [151, -30], + [152, -30], + [152, -32], + [151, -32] ] ] } @@ -6456,11 +6456,11 @@ "type": "Polygon", "coordinates": [ [ - [151.519279, -33.009347], - [151.519279, -35.011684], - [152.520447, -35.011684], - [152.520447, -33.009347], - [151.519279, -33.009347] + [151, -30], + [151, -28], + [152, -28], + [152, -30], + [151, -30] ] ] } @@ -6472,11 +6472,11 @@ "type": "Polygon", "coordinates": [ [ - [151.519279, -35.011684], - [151.519279, -37.014021], - [152.520447, -37.014021], - [152.520447, -35.011684], - [151.519279, -35.011684] + [151, -28], + [151, -26], + [152, -26], + [152, -28], + [151, -28] ] ] } @@ -6488,11 +6488,11 @@ "type": "Polygon", "coordinates": [ [ - [152.520447, -25], - [152.520447, -27.002337], - [153.521615, -27.002337], - [153.521615, -25], - [152.520447, -25] + [151, -26], + [151, -24], + [152, -24], + [152, -26], + [151, -26] ] ] } @@ -6504,11 +6504,11 @@ "type": "Polygon", "coordinates": [ [ - [152.520447, -27.002337], - [152.520447, -29.004674], - [153.521615, -29.004674], - [153.521615, -27.002337], - [152.520447, -27.002337] + [151, -24], + [151, -22], + [152, -22], + [152, -24], + [151, -24] ] ] } @@ -6520,11 +6520,11 @@ "type": "Polygon", "coordinates": [ [ - [152.520447, -29.004674], - [152.520447, -31.00701], - [153.521615, -31.00701], - [153.521615, -29.004674], - [152.520447, -29.004674] + [152, -36], + [152, -34], + [153, -34], + [153, -36], + [152, -36] ] ] } @@ -6536,11 +6536,11 @@ "type": "Polygon", "coordinates": [ [ - [152.520447, -31.00701], - [152.520447, -33.009347], - [153.521615, -33.009347], - [153.521615, -31.00701], - [152.520447, -31.00701] + [152, -34], + [152, -32], + [153, -32], + [153, -34], + [152, -34] ] ] } @@ -6552,11 +6552,11 @@ "type": "Polygon", "coordinates": [ [ - [152.520447, -33.009347], - [152.520447, -35.011684], - [153.521615, -35.011684], - [153.521615, -33.009347], - [152.520447, -33.009347] + [152, -32], + [152, -30], + [153, -30], + [153, -32], + [152, -32] ] ] } @@ -6568,11 +6568,11 @@ "type": "Polygon", "coordinates": [ [ - [153.521615, -27.002337], - [153.521615, -29.004674], - [154.522784, -29.004674], - [154.522784, -27.002337], - [153.521615, -27.002337] + [152, -30], + [152, -28], + [153, -28], + [153, -30], + [152, -30] ] ] } @@ -6584,11 +6584,107 @@ "type": "Polygon", "coordinates": [ [ - [153.521615, -29.004674], - [153.521615, -31.00701], - [154.522784, -31.00701], - [154.522784, -29.004674], - [153.521615, -29.004674] + [152, -28], + [152, -26], + [153, -26], + [153, -28], + [152, -28] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [152, -26], + [152, -24], + [153, -24], + [153, -26], + [152, -26] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [153, -32], + [153, -30], + [154, -30], + [154, -32], + [153, -32] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [153, -30], + [153, -28], + [154, -28], + [154, -30], + [153, -30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [153, -28], + [153, -26], + [154, -26], + [154, -28], + [153, -28] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [153, -26], + [153, -24], + [154, -24], + [154, -26], + [153, -26] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [154, -30], + [154, -28], + [155, -28], + [155, -30], + [154, -30] ] ] } diff --git a/packages/turf-rectangle-grid/test/out/big-bbox-500x100-miles.geojson b/packages/turf-rectangle-grid/test/out/big-bbox-500x100-miles.geojson index 8b00422276..a2f1fbad47 100644 --- a/packages/turf-rectangle-grid/test/out/big-bbox-500x100-miles.geojson +++ b/packages/turf-rectangle-grid/test/out/big-bbox-500x100-miles.geojson @@ -8,11 +8,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -80.027525], - [-199.504452, -78.580209], - [-125.15625, -78.580209], - [-125.15625, -80.027525], - [-199.504452, -80.027525] + [-219.12199, -79.935471], + [-219.12199, -78.489844], + [-211.893856, -78.489844], + [-211.893856, -79.935471], + [-219.12199, -79.935471] ] ] } @@ -24,11 +24,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -78.580209], - [-199.504452, -77.132893], - [-125.15625, -77.132893], - [-125.15625, -78.580209], - [-199.504452, -78.580209] + [-219.12199, -78.489844], + [-219.12199, -77.044217], + [-211.893856, -77.044217], + [-211.893856, -78.489844], + [-219.12199, -78.489844] ] ] } @@ -40,11 +40,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -77.132893], - [-199.504452, -75.685577], - [-125.15625, -75.685577], - [-125.15625, -77.132893], - [-199.504452, -77.132893] + [-219.12199, -77.044217], + [-219.12199, -75.598591], + [-211.893856, -75.598591], + [-211.893856, -77.044217], + [-219.12199, -77.044217] ] ] } @@ -56,11 +56,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -75.685577], - [-199.504452, -74.238262], - [-125.15625, -74.238262], - [-125.15625, -75.685577], - [-199.504452, -75.685577] + [-219.12199, -75.598591], + [-219.12199, -74.152964], + [-211.893856, -74.152964], + [-211.893856, -75.598591], + [-219.12199, -75.598591] ] ] } @@ -72,11 +72,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -74.238262], - [-199.504452, -72.790946], - [-125.15625, -72.790946], - [-125.15625, -74.238262], - [-199.504452, -74.238262] + [-219.12199, -74.152964], + [-219.12199, -72.707337], + [-211.893856, -72.707337], + [-211.893856, -74.152964], + [-219.12199, -74.152964] ] ] } @@ -88,11 +88,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -72.790946], - [-199.504452, -71.34363], - [-125.15625, -71.34363], - [-125.15625, -72.790946], - [-199.504452, -72.790946] + [-219.12199, -72.707337], + [-219.12199, -71.26171], + [-211.893856, -71.26171], + [-211.893856, -72.707337], + [-219.12199, -72.707337] ] ] } @@ -104,11 +104,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -71.34363], - [-199.504452, -69.896314], - [-125.15625, -69.896314], - [-125.15625, -71.34363], - [-199.504452, -71.34363] + [-219.12199, -71.26171], + [-219.12199, -69.816084], + [-211.893856, -69.816084], + [-211.893856, -71.26171], + [-219.12199, -71.26171] ] ] } @@ -120,11 +120,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -69.896314], - [-199.504452, -68.448998], - [-125.15625, -68.448998], - [-125.15625, -69.896314], - [-199.504452, -69.896314] + [-219.12199, -69.816084], + [-219.12199, -68.370457], + [-211.893856, -68.370457], + [-211.893856, -69.816084], + [-219.12199, -69.816084] ] ] } @@ -136,11 +136,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -68.448998], - [-199.504452, -67.001682], - [-125.15625, -67.001682], - [-125.15625, -68.448998], - [-199.504452, -68.448998] + [-219.12199, -68.370457], + [-219.12199, -66.92483], + [-211.893856, -66.92483], + [-211.893856, -68.370457], + [-219.12199, -68.370457] ] ] } @@ -152,11 +152,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -67.001682], - [-199.504452, -65.554367], - [-125.15625, -65.554367], - [-125.15625, -67.001682], - [-199.504452, -67.001682] + [-219.12199, -66.92483], + [-219.12199, -65.479203], + [-211.893856, -65.479203], + [-211.893856, -66.92483], + [-219.12199, -66.92483] ] ] } @@ -168,11 +168,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -65.554367], - [-199.504452, -64.107051], - [-125.15625, -64.107051], - [-125.15625, -65.554367], - [-199.504452, -65.554367] + [-219.12199, -65.479203], + [-219.12199, -64.033576], + [-211.893856, -64.033576], + [-211.893856, -65.479203], + [-219.12199, -65.479203] ] ] } @@ -184,11 +184,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -64.107051], - [-199.504452, -62.659735], - [-125.15625, -62.659735], - [-125.15625, -64.107051], - [-199.504452, -64.107051] + [-219.12199, -64.033576], + [-219.12199, -62.58795], + [-211.893856, -62.58795], + [-211.893856, -64.033576], + [-219.12199, -64.033576] ] ] } @@ -200,11 +200,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -62.659735], - [-199.504452, -61.212419], - [-125.15625, -61.212419], - [-125.15625, -62.659735], - [-199.504452, -62.659735] + [-219.12199, -62.58795], + [-219.12199, -61.142323], + [-211.893856, -61.142323], + [-211.893856, -62.58795], + [-219.12199, -62.58795] ] ] } @@ -216,11 +216,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -61.212419], - [-199.504452, -59.765103], - [-125.15625, -59.765103], - [-125.15625, -61.212419], - [-199.504452, -61.212419] + [-219.12199, -61.142323], + [-219.12199, -59.696696], + [-211.893856, -59.696696], + [-211.893856, -61.142323], + [-219.12199, -61.142323] ] ] } @@ -232,11 +232,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -59.765103], - [-199.504452, -58.317787], - [-125.15625, -58.317787], - [-125.15625, -59.765103], - [-199.504452, -59.765103] + [-219.12199, -59.696696], + [-219.12199, -58.251069], + [-211.893856, -58.251069], + [-211.893856, -59.696696], + [-219.12199, -59.696696] ] ] } @@ -248,11 +248,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -58.317787], - [-199.504452, -56.870472], - [-125.15625, -56.870472], - [-125.15625, -58.317787], - [-199.504452, -58.317787] + [-219.12199, -58.251069], + [-219.12199, -56.805443], + [-211.893856, -56.805443], + [-211.893856, -58.251069], + [-219.12199, -58.251069] ] ] } @@ -264,11 +264,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -56.870472], - [-199.504452, -55.423156], - [-125.15625, -55.423156], - [-125.15625, -56.870472], - [-199.504452, -56.870472] + [-219.12199, -56.805443], + [-219.12199, -55.359816], + [-211.893856, -55.359816], + [-211.893856, -56.805443], + [-219.12199, -56.805443] ] ] } @@ -280,11 +280,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -55.423156], - [-199.504452, -53.97584], - [-125.15625, -53.97584], - [-125.15625, -55.423156], - [-199.504452, -55.423156] + [-219.12199, -55.359816], + [-219.12199, -53.914189], + [-211.893856, -53.914189], + [-211.893856, -55.359816], + [-219.12199, -55.359816] ] ] } @@ -296,11 +296,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -53.97584], - [-199.504452, -52.528524], - [-125.15625, -52.528524], - [-125.15625, -53.97584], - [-199.504452, -53.97584] + [-219.12199, -53.914189], + [-219.12199, -52.468562], + [-211.893856, -52.468562], + [-211.893856, -53.914189], + [-219.12199, -53.914189] ] ] } @@ -312,11 +312,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -52.528524], - [-199.504452, -51.081208], - [-125.15625, -51.081208], - [-125.15625, -52.528524], - [-199.504452, -52.528524] + [-219.12199, -52.468562], + [-219.12199, -51.022936], + [-211.893856, -51.022936], + [-211.893856, -52.468562], + [-219.12199, -52.468562] ] ] } @@ -328,11 +328,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -51.081208], - [-199.504452, -49.633892], - [-125.15625, -49.633892], - [-125.15625, -51.081208], - [-199.504452, -51.081208] + [-219.12199, -51.022936], + [-219.12199, -49.577309], + [-211.893856, -49.577309], + [-211.893856, -51.022936], + [-219.12199, -51.022936] ] ] } @@ -344,11 +344,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -49.633892], - [-199.504452, -48.186577], - [-125.15625, -48.186577], - [-125.15625, -49.633892], - [-199.504452, -49.633892] + [-219.12199, -49.577309], + [-219.12199, -48.131682], + [-211.893856, -48.131682], + [-211.893856, -49.577309], + [-219.12199, -49.577309] ] ] } @@ -360,11 +360,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -48.186577], - [-199.504452, -46.739261], - [-125.15625, -46.739261], - [-125.15625, -48.186577], - [-199.504452, -48.186577] + [-219.12199, -48.131682], + [-219.12199, -46.686055], + [-211.893856, -46.686055], + [-211.893856, -48.131682], + [-219.12199, -48.131682] ] ] } @@ -376,11 +376,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -46.739261], - [-199.504452, -45.291945], - [-125.15625, -45.291945], - [-125.15625, -46.739261], - [-199.504452, -46.739261] + [-219.12199, -46.686055], + [-219.12199, -45.240428], + [-211.893856, -45.240428], + [-211.893856, -46.686055], + [-219.12199, -46.686055] ] ] } @@ -392,11 +392,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -45.291945], - [-199.504452, -43.844629], - [-125.15625, -43.844629], - [-125.15625, -45.291945], - [-199.504452, -45.291945] + [-219.12199, -45.240428], + [-219.12199, -43.794802], + [-211.893856, -43.794802], + [-211.893856, -45.240428], + [-219.12199, -45.240428] ] ] } @@ -408,11 +408,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -43.844629], - [-199.504452, -42.397313], - [-125.15625, -42.397313], - [-125.15625, -43.844629], - [-199.504452, -43.844629] + [-219.12199, -43.794802], + [-219.12199, -42.349175], + [-211.893856, -42.349175], + [-211.893856, -43.794802], + [-219.12199, -43.794802] ] ] } @@ -424,11 +424,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -42.397313], - [-199.504452, -40.949997], - [-125.15625, -40.949997], - [-125.15625, -42.397313], - [-199.504452, -42.397313] + [-219.12199, -42.349175], + [-219.12199, -40.903548], + [-211.893856, -40.903548], + [-211.893856, -42.349175], + [-219.12199, -42.349175] ] ] } @@ -440,11 +440,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -40.949997], - [-199.504452, -39.502682], - [-125.15625, -39.502682], - [-125.15625, -40.949997], - [-199.504452, -40.949997] + [-219.12199, -40.903548], + [-219.12199, -39.457921], + [-211.893856, -39.457921], + [-211.893856, -40.903548], + [-219.12199, -40.903548] ] ] } @@ -456,11 +456,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -39.502682], - [-199.504452, -38.055366], - [-125.15625, -38.055366], - [-125.15625, -39.502682], - [-199.504452, -39.502682] + [-219.12199, -39.457921], + [-219.12199, -38.012295], + [-211.893856, -38.012295], + [-211.893856, -39.457921], + [-219.12199, -39.457921] ] ] } @@ -472,11 +472,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -38.055366], - [-199.504452, -36.60805], - [-125.15625, -36.60805], - [-125.15625, -38.055366], - [-199.504452, -38.055366] + [-219.12199, -38.012295], + [-219.12199, -36.566668], + [-211.893856, -36.566668], + [-211.893856, -38.012295], + [-219.12199, -38.012295] ] ] } @@ -488,11 +488,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -36.60805], - [-199.504452, -35.160734], - [-125.15625, -35.160734], - [-125.15625, -36.60805], - [-199.504452, -36.60805] + [-219.12199, -36.566668], + [-219.12199, -35.121041], + [-211.893856, -35.121041], + [-211.893856, -36.566668], + [-219.12199, -36.566668] ] ] } @@ -504,11 +504,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -35.160734], - [-199.504452, -33.713418], - [-125.15625, -33.713418], - [-125.15625, -35.160734], - [-199.504452, -35.160734] + [-219.12199, -35.121041], + [-219.12199, -33.675414], + [-211.893856, -33.675414], + [-211.893856, -35.121041], + [-219.12199, -35.121041] ] ] } @@ -520,11 +520,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -33.713418], - [-199.504452, -32.266102], - [-125.15625, -32.266102], - [-125.15625, -33.713418], - [-199.504452, -33.713418] + [-219.12199, -33.675414], + [-219.12199, -32.229788], + [-211.893856, -32.229788], + [-211.893856, -33.675414], + [-219.12199, -33.675414] ] ] } @@ -536,11 +536,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -32.266102], - [-199.504452, -30.818787], - [-125.15625, -30.818787], - [-125.15625, -32.266102], - [-199.504452, -32.266102] + [-219.12199, -32.229788], + [-219.12199, -30.784161], + [-211.893856, -30.784161], + [-211.893856, -32.229788], + [-219.12199, -32.229788] ] ] } @@ -552,11 +552,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -30.818787], - [-199.504452, -29.371471], - [-125.15625, -29.371471], - [-125.15625, -30.818787], - [-199.504452, -30.818787] + [-219.12199, -30.784161], + [-219.12199, -29.338534], + [-211.893856, -29.338534], + [-211.893856, -30.784161], + [-219.12199, -30.784161] ] ] } @@ -568,11 +568,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -29.371471], - [-199.504452, -27.924155], - [-125.15625, -27.924155], - [-125.15625, -29.371471], - [-199.504452, -29.371471] + [-219.12199, -29.338534], + [-219.12199, -27.892907], + [-211.893856, -27.892907], + [-211.893856, -29.338534], + [-219.12199, -29.338534] ] ] } @@ -584,11 +584,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -27.924155], - [-199.504452, -26.476839], - [-125.15625, -26.476839], - [-125.15625, -27.924155], - [-199.504452, -27.924155] + [-219.12199, -27.892907], + [-219.12199, -26.44728], + [-211.893856, -26.44728], + [-211.893856, -27.892907], + [-219.12199, -27.892907] ] ] } @@ -600,11 +600,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -26.476839], - [-199.504452, -25.029523], - [-125.15625, -25.029523], - [-125.15625, -26.476839], - [-199.504452, -26.476839] + [-219.12199, -26.44728], + [-219.12199, -25.001654], + [-211.893856, -25.001654], + [-211.893856, -26.44728], + [-219.12199, -26.44728] ] ] } @@ -616,11 +616,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -25.029523], - [-199.504452, -23.582207], - [-125.15625, -23.582207], - [-125.15625, -25.029523], - [-199.504452, -25.029523] + [-219.12199, -25.001654], + [-219.12199, -23.556027], + [-211.893856, -23.556027], + [-211.893856, -25.001654], + [-219.12199, -25.001654] ] ] } @@ -632,11 +632,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -23.582207], - [-199.504452, -22.134892], - [-125.15625, -22.134892], - [-125.15625, -23.582207], - [-199.504452, -23.582207] + [-219.12199, -23.556027], + [-219.12199, -22.1104], + [-211.893856, -22.1104], + [-211.893856, -23.556027], + [-219.12199, -23.556027] ] ] } @@ -648,11 +648,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -22.134892], - [-199.504452, -20.687576], - [-125.15625, -20.687576], - [-125.15625, -22.134892], - [-199.504452, -22.134892] + [-219.12199, -22.1104], + [-219.12199, -20.664773], + [-211.893856, -20.664773], + [-211.893856, -22.1104], + [-219.12199, -22.1104] ] ] } @@ -664,11 +664,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -20.687576], - [-199.504452, -19.24026], - [-125.15625, -19.24026], - [-125.15625, -20.687576], - [-199.504452, -20.687576] + [-219.12199, -20.664773], + [-219.12199, -19.219147], + [-211.893856, -19.219147], + [-211.893856, -20.664773], + [-219.12199, -20.664773] ] ] } @@ -680,11 +680,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -19.24026], - [-199.504452, -17.792944], - [-125.15625, -17.792944], - [-125.15625, -19.24026], - [-199.504452, -19.24026] + [-219.12199, -19.219147], + [-219.12199, -17.77352], + [-211.893856, -17.77352], + [-211.893856, -19.219147], + [-219.12199, -19.219147] ] ] } @@ -696,11 +696,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -17.792944], - [-199.504452, -16.345628], - [-125.15625, -16.345628], - [-125.15625, -17.792944], - [-199.504452, -17.792944] + [-219.12199, -17.77352], + [-219.12199, -16.327893], + [-211.893856, -16.327893], + [-211.893856, -17.77352], + [-219.12199, -17.77352] ] ] } @@ -712,11 +712,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -16.345628], - [-199.504452, -14.898312], - [-125.15625, -14.898312], - [-125.15625, -16.345628], - [-199.504452, -16.345628] + [-219.12199, -16.327893], + [-219.12199, -14.882266], + [-211.893856, -14.882266], + [-211.893856, -16.327893], + [-219.12199, -16.327893] ] ] } @@ -728,11 +728,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -14.898312], - [-199.504452, -13.450997], - [-125.15625, -13.450997], - [-125.15625, -14.898312], - [-199.504452, -14.898312] + [-219.12199, -14.882266], + [-219.12199, -13.43664], + [-211.893856, -13.43664], + [-211.893856, -14.882266], + [-219.12199, -14.882266] ] ] } @@ -744,11 +744,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -13.450997], - [-199.504452, -12.003681], - [-125.15625, -12.003681], - [-125.15625, -13.450997], - [-199.504452, -13.450997] + [-219.12199, -13.43664], + [-219.12199, -11.991013], + [-211.893856, -11.991013], + [-211.893856, -13.43664], + [-219.12199, -13.43664] ] ] } @@ -760,11 +760,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -12.003681], - [-199.504452, -10.556365], - [-125.15625, -10.556365], - [-125.15625, -12.003681], - [-199.504452, -12.003681] + [-219.12199, -11.991013], + [-219.12199, -10.545386], + [-211.893856, -10.545386], + [-211.893856, -11.991013], + [-219.12199, -11.991013] ] ] } @@ -776,11 +776,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -10.556365], - [-199.504452, -9.109049], - [-125.15625, -9.109049], - [-125.15625, -10.556365], - [-199.504452, -10.556365] + [-219.12199, -10.545386], + [-219.12199, -9.099759], + [-211.893856, -9.099759], + [-211.893856, -10.545386], + [-219.12199, -10.545386] ] ] } @@ -792,11 +792,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -9.109049], - [-199.504452, -7.661733], - [-125.15625, -7.661733], - [-125.15625, -9.109049], - [-199.504452, -9.109049] + [-219.12199, -9.099759], + [-219.12199, -7.654132], + [-211.893856, -7.654132], + [-211.893856, -9.099759], + [-219.12199, -9.099759] ] ] } @@ -808,11 +808,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -7.661733], - [-199.504452, -6.214417], - [-125.15625, -6.214417], - [-125.15625, -7.661733], - [-199.504452, -7.661733] + [-219.12199, -7.654132], + [-219.12199, -6.208506], + [-211.893856, -6.208506], + [-211.893856, -7.654132], + [-219.12199, -7.654132] ] ] } @@ -824,11 +824,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -6.214417], - [-199.504452, -4.767102], - [-125.15625, -4.767102], - [-125.15625, -6.214417], - [-199.504452, -6.214417] + [-219.12199, -6.208506], + [-219.12199, -4.762879], + [-211.893856, -4.762879], + [-211.893856, -6.208506], + [-219.12199, -6.208506] ] ] } @@ -840,11 +840,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -4.767102], - [-199.504452, -3.319786], - [-125.15625, -3.319786], - [-125.15625, -4.767102], - [-199.504452, -4.767102] + [-219.12199, -4.762879], + [-219.12199, -3.317252], + [-211.893856, -3.317252], + [-211.893856, -4.762879], + [-219.12199, -4.762879] ] ] } @@ -856,11 +856,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -3.319786], - [-199.504452, -1.87247], - [-125.15625, -1.87247], - [-125.15625, -3.319786], - [-199.504452, -3.319786] + [-219.12199, -3.317252], + [-219.12199, -1.871625], + [-211.893856, -1.871625], + [-211.893856, -3.317252], + [-219.12199, -3.317252] ] ] } @@ -872,11 +872,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -1.87247], - [-199.504452, -0.425154], - [-125.15625, -0.425154], - [-125.15625, -1.87247], - [-199.504452, -1.87247] + [-219.12199, -1.871625], + [-219.12199, -0.425999], + [-211.893856, -0.425999], + [-211.893856, -1.871625], + [-219.12199, -1.871625] ] ] } @@ -888,11 +888,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -0.425154], - [-199.504452, 1.022162], - [-125.15625, 1.022162], - [-125.15625, -0.425154], - [-199.504452, -0.425154] + [-219.12199, -0.425999], + [-219.12199, 1.019628], + [-211.893856, 1.019628], + [-211.893856, -0.425999], + [-219.12199, -0.425999] ] ] } @@ -904,11 +904,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 1.022162], - [-199.504452, 2.469478], - [-125.15625, 2.469478], - [-125.15625, 1.022162], - [-199.504452, 1.022162] + [-219.12199, 1.019628], + [-219.12199, 2.465255], + [-211.893856, 2.465255], + [-211.893856, 1.019628], + [-219.12199, 1.019628] ] ] } @@ -920,11 +920,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 2.469478], - [-199.504452, 3.916793], - [-125.15625, 3.916793], - [-125.15625, 2.469478], - [-199.504452, 2.469478] + [-219.12199, 2.465255], + [-219.12199, 3.910882], + [-211.893856, 3.910882], + [-211.893856, 2.465255], + [-219.12199, 2.465255] ] ] } @@ -936,11 +936,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 3.916793], - [-199.504452, 5.364109], - [-125.15625, 5.364109], - [-125.15625, 3.916793], - [-199.504452, 3.916793] + [-219.12199, 3.910882], + [-219.12199, 5.356508], + [-211.893856, 5.356508], + [-211.893856, 3.910882], + [-219.12199, 3.910882] ] ] } @@ -952,11 +952,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 5.364109], - [-199.504452, 6.811425], - [-125.15625, 6.811425], - [-125.15625, 5.364109], - [-199.504452, 5.364109] + [-219.12199, 5.356508], + [-219.12199, 6.802135], + [-211.893856, 6.802135], + [-211.893856, 5.356508], + [-219.12199, 5.356508] ] ] } @@ -968,11 +968,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 6.811425], - [-199.504452, 8.258741], - [-125.15625, 8.258741], - [-125.15625, 6.811425], - [-199.504452, 6.811425] + [-219.12199, 6.802135], + [-219.12199, 8.247762], + [-211.893856, 8.247762], + [-211.893856, 6.802135], + [-219.12199, 6.802135] ] ] } @@ -984,11 +984,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 8.258741], - [-199.504452, 9.706057], - [-125.15625, 9.706057], - [-125.15625, 8.258741], - [-199.504452, 8.258741] + [-219.12199, 8.247762], + [-219.12199, 9.693389], + [-211.893856, 9.693389], + [-211.893856, 8.247762], + [-219.12199, 8.247762] ] ] } @@ -1000,11 +1000,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 9.706057], - [-199.504452, 11.153373], - [-125.15625, 11.153373], - [-125.15625, 9.706057], - [-199.504452, 9.706057] + [-219.12199, 9.693389], + [-219.12199, 11.139016], + [-211.893856, 11.139016], + [-211.893856, 9.693389], + [-219.12199, 9.693389] ] ] } @@ -1016,11 +1016,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 11.153373], - [-199.504452, 12.600688], - [-125.15625, 12.600688], - [-125.15625, 11.153373], - [-199.504452, 11.153373] + [-219.12199, 11.139016], + [-219.12199, 12.584642], + [-211.893856, 12.584642], + [-211.893856, 11.139016], + [-219.12199, 11.139016] ] ] } @@ -1032,11 +1032,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 12.600688], - [-199.504452, 14.048004], - [-125.15625, 14.048004], - [-125.15625, 12.600688], - [-199.504452, 12.600688] + [-219.12199, 12.584642], + [-219.12199, 14.030269], + [-211.893856, 14.030269], + [-211.893856, 12.584642], + [-219.12199, 12.584642] ] ] } @@ -1048,11 +1048,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 14.048004], - [-199.504452, 15.49532], - [-125.15625, 15.49532], - [-125.15625, 14.048004], - [-199.504452, 14.048004] + [-219.12199, 14.030269], + [-219.12199, 15.475896], + [-211.893856, 15.475896], + [-211.893856, 14.030269], + [-219.12199, 14.030269] ] ] } @@ -1064,11 +1064,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 15.49532], - [-199.504452, 16.942636], - [-125.15625, 16.942636], - [-125.15625, 15.49532], - [-199.504452, 15.49532] + [-219.12199, 15.475896], + [-219.12199, 16.921523], + [-211.893856, 16.921523], + [-211.893856, 15.475896], + [-219.12199, 15.475896] ] ] } @@ -1080,11 +1080,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 16.942636], - [-199.504452, 18.389952], - [-125.15625, 18.389952], - [-125.15625, 16.942636], - [-199.504452, 16.942636] + [-219.12199, 16.921523], + [-219.12199, 18.367149], + [-211.893856, 18.367149], + [-211.893856, 16.921523], + [-219.12199, 16.921523] ] ] } @@ -1096,11 +1096,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 18.389952], - [-199.504452, 19.837268], - [-125.15625, 19.837268], - [-125.15625, 18.389952], - [-199.504452, 18.389952] + [-219.12199, 18.367149], + [-219.12199, 19.812776], + [-211.893856, 19.812776], + [-211.893856, 18.367149], + [-219.12199, 18.367149] ] ] } @@ -1112,11 +1112,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 19.837268], - [-199.504452, 21.284583], - [-125.15625, 21.284583], - [-125.15625, 19.837268], - [-199.504452, 19.837268] + [-219.12199, 19.812776], + [-219.12199, 21.258403], + [-211.893856, 21.258403], + [-211.893856, 19.812776], + [-219.12199, 19.812776] ] ] } @@ -1128,11 +1128,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 21.284583], - [-199.504452, 22.731899], - [-125.15625, 22.731899], - [-125.15625, 21.284583], - [-199.504452, 21.284583] + [-219.12199, 21.258403], + [-219.12199, 22.70403], + [-211.893856, 22.70403], + [-211.893856, 21.258403], + [-219.12199, 21.258403] ] ] } @@ -1144,11 +1144,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 22.731899], - [-199.504452, 24.179215], - [-125.15625, 24.179215], - [-125.15625, 22.731899], - [-199.504452, 22.731899] + [-219.12199, 22.70403], + [-219.12199, 24.149656], + [-211.893856, 24.149656], + [-211.893856, 22.70403], + [-219.12199, 22.70403] ] ] } @@ -1160,11 +1160,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 24.179215], - [-199.504452, 25.626531], - [-125.15625, 25.626531], - [-125.15625, 24.179215], - [-199.504452, 24.179215] + [-219.12199, 24.149656], + [-219.12199, 25.595283], + [-211.893856, 25.595283], + [-211.893856, 24.149656], + [-219.12199, 24.149656] ] ] } @@ -1176,11 +1176,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 25.626531], - [-199.504452, 27.073847], - [-125.15625, 27.073847], - [-125.15625, 25.626531], - [-199.504452, 25.626531] + [-219.12199, 25.595283], + [-219.12199, 27.04091], + [-211.893856, 27.04091], + [-211.893856, 25.595283], + [-219.12199, 25.595283] ] ] } @@ -1192,11 +1192,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 27.073847], - [-199.504452, 28.521163], - [-125.15625, 28.521163], - [-125.15625, 27.073847], - [-199.504452, 27.073847] + [-219.12199, 27.04091], + [-219.12199, 28.486537], + [-211.893856, 28.486537], + [-211.893856, 27.04091], + [-219.12199, 27.04091] ] ] } @@ -1208,11 +1208,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 28.521163], - [-199.504452, 29.968478], - [-125.15625, 29.968478], - [-125.15625, 28.521163], - [-199.504452, 28.521163] + [-219.12199, 28.486537], + [-219.12199, 29.932163], + [-211.893856, 29.932163], + [-211.893856, 28.486537], + [-219.12199, 28.486537] ] ] } @@ -1224,11 +1224,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 29.968478], - [-199.504452, 31.415794], - [-125.15625, 31.415794], - [-125.15625, 29.968478], - [-199.504452, 29.968478] + [-219.12199, 29.932163], + [-219.12199, 31.37779], + [-211.893856, 31.37779], + [-211.893856, 29.932163], + [-219.12199, 29.932163] ] ] } @@ -1240,11 +1240,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 31.415794], - [-199.504452, 32.86311], - [-125.15625, 32.86311], - [-125.15625, 31.415794], - [-199.504452, 31.415794] + [-219.12199, 31.37779], + [-219.12199, 32.823417], + [-211.893856, 32.823417], + [-211.893856, 31.37779], + [-219.12199, 31.37779] ] ] } @@ -1256,11 +1256,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 32.86311], - [-199.504452, 34.310426], - [-125.15625, 34.310426], - [-125.15625, 32.86311], - [-199.504452, 32.86311] + [-219.12199, 32.823417], + [-219.12199, 34.269044], + [-211.893856, 34.269044], + [-211.893856, 32.823417], + [-219.12199, 32.823417] ] ] } @@ -1272,11 +1272,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 34.310426], - [-199.504452, 35.757742], - [-125.15625, 35.757742], - [-125.15625, 34.310426], - [-199.504452, 34.310426] + [-219.12199, 34.269044], + [-219.12199, 35.714671], + [-211.893856, 35.714671], + [-211.893856, 34.269044], + [-219.12199, 34.269044] ] ] } @@ -1288,11 +1288,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 35.757742], - [-199.504452, 37.205058], - [-125.15625, 37.205058], - [-125.15625, 35.757742], - [-199.504452, 35.757742] + [-219.12199, 35.714671], + [-219.12199, 37.160297], + [-211.893856, 37.160297], + [-211.893856, 35.714671], + [-219.12199, 35.714671] ] ] } @@ -1304,11 +1304,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 37.205058], - [-199.504452, 38.652373], - [-125.15625, 38.652373], - [-125.15625, 37.205058], - [-199.504452, 37.205058] + [-219.12199, 37.160297], + [-219.12199, 38.605924], + [-211.893856, 38.605924], + [-211.893856, 37.160297], + [-219.12199, 37.160297] ] ] } @@ -1320,11 +1320,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 38.652373], - [-199.504452, 40.099689], - [-125.15625, 40.099689], - [-125.15625, 38.652373], - [-199.504452, 38.652373] + [-219.12199, 38.605924], + [-219.12199, 40.051551], + [-211.893856, 40.051551], + [-211.893856, 38.605924], + [-219.12199, 38.605924] ] ] } @@ -1336,11 +1336,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 40.099689], - [-199.504452, 41.547005], - [-125.15625, 41.547005], - [-125.15625, 40.099689], - [-199.504452, 40.099689] + [-219.12199, 40.051551], + [-219.12199, 41.497178], + [-211.893856, 41.497178], + [-211.893856, 40.051551], + [-219.12199, 40.051551] ] ] } @@ -1352,11 +1352,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 41.547005], - [-199.504452, 42.994321], - [-125.15625, 42.994321], - [-125.15625, 41.547005], - [-199.504452, 41.547005] + [-219.12199, 41.497178], + [-219.12199, 42.942804], + [-211.893856, 42.942804], + [-211.893856, 41.497178], + [-219.12199, 41.497178] ] ] } @@ -1368,11 +1368,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 42.994321], - [-199.504452, 44.441637], - [-125.15625, 44.441637], - [-125.15625, 42.994321], - [-199.504452, 42.994321] + [-219.12199, 42.942804], + [-219.12199, 44.388431], + [-211.893856, 44.388431], + [-211.893856, 42.942804], + [-219.12199, 42.942804] ] ] } @@ -1384,11 +1384,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 44.441637], - [-199.504452, 45.888952], - [-125.15625, 45.888952], - [-125.15625, 44.441637], - [-199.504452, 44.441637] + [-219.12199, 44.388431], + [-219.12199, 45.834058], + [-211.893856, 45.834058], + [-211.893856, 44.388431], + [-219.12199, 44.388431] ] ] } @@ -1400,11 +1400,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 45.888952], - [-199.504452, 47.336268], - [-125.15625, 47.336268], - [-125.15625, 45.888952], - [-199.504452, 45.888952] + [-219.12199, 45.834058], + [-219.12199, 47.279685], + [-211.893856, 47.279685], + [-211.893856, 45.834058], + [-219.12199, 45.834058] ] ] } @@ -1416,11 +1416,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 47.336268], - [-199.504452, 48.783584], - [-125.15625, 48.783584], - [-125.15625, 47.336268], - [-199.504452, 47.336268] + [-219.12199, 47.279685], + [-219.12199, 48.725311], + [-211.893856, 48.725311], + [-211.893856, 47.279685], + [-219.12199, 47.279685] ] ] } @@ -1432,11 +1432,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 48.783584], - [-199.504452, 50.2309], - [-125.15625, 50.2309], - [-125.15625, 48.783584], - [-199.504452, 48.783584] + [-219.12199, 48.725311], + [-219.12199, 50.170938], + [-211.893856, 50.170938], + [-211.893856, 48.725311], + [-219.12199, 48.725311] ] ] } @@ -1448,11 +1448,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 50.2309], - [-199.504452, 51.678216], - [-125.15625, 51.678216], - [-125.15625, 50.2309], - [-199.504452, 50.2309] + [-219.12199, 50.170938], + [-219.12199, 51.616565], + [-211.893856, 51.616565], + [-211.893856, 50.170938], + [-219.12199, 50.170938] ] ] } @@ -1464,11 +1464,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 51.678216], - [-199.504452, 53.125532], - [-125.15625, 53.125532], - [-125.15625, 51.678216], - [-199.504452, 51.678216] + [-219.12199, 51.616565], + [-219.12199, 53.062192], + [-211.893856, 53.062192], + [-211.893856, 51.616565], + [-219.12199, 51.616565] ] ] } @@ -1480,11 +1480,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 53.125532], - [-199.504452, 54.572847], - [-125.15625, 54.572847], - [-125.15625, 53.125532], - [-199.504452, 53.125532] + [-219.12199, 53.062192], + [-219.12199, 54.507819], + [-211.893856, 54.507819], + [-211.893856, 53.062192], + [-219.12199, 53.062192] ] ] } @@ -1496,11 +1496,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 54.572847], - [-199.504452, 56.020163], - [-125.15625, 56.020163], - [-125.15625, 54.572847], - [-199.504452, 54.572847] + [-219.12199, 54.507819], + [-219.12199, 55.953445], + [-211.893856, 55.953445], + [-211.893856, 54.507819], + [-219.12199, 54.507819] ] ] } @@ -1512,11 +1512,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 56.020163], - [-199.504452, 57.467479], - [-125.15625, 57.467479], - [-125.15625, 56.020163], - [-199.504452, 56.020163] + [-219.12199, 55.953445], + [-219.12199, 57.399072], + [-211.893856, 57.399072], + [-211.893856, 55.953445], + [-219.12199, 55.953445] ] ] } @@ -1528,11 +1528,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 57.467479], - [-199.504452, 58.914795], - [-125.15625, 58.914795], - [-125.15625, 57.467479], - [-199.504452, 57.467479] + [-219.12199, 57.399072], + [-219.12199, 58.844699], + [-211.893856, 58.844699], + [-211.893856, 57.399072], + [-219.12199, 57.399072] ] ] } @@ -1544,11 +1544,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 58.914795], - [-199.504452, 60.362111], - [-125.15625, 60.362111], - [-125.15625, 58.914795], - [-199.504452, 58.914795] + [-219.12199, 58.844699], + [-219.12199, 60.290326], + [-211.893856, 60.290326], + [-211.893856, 58.844699], + [-219.12199, 58.844699] ] ] } @@ -1560,11 +1560,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 60.362111], - [-199.504452, 61.809427], - [-125.15625, 61.809427], - [-125.15625, 60.362111], - [-199.504452, 60.362111] + [-219.12199, 60.290326], + [-219.12199, 61.735952], + [-211.893856, 61.735952], + [-211.893856, 60.290326], + [-219.12199, 60.290326] ] ] } @@ -1576,11 +1576,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 61.809427], - [-199.504452, 63.256742], - [-125.15625, 63.256742], - [-125.15625, 61.809427], - [-199.504452, 61.809427] + [-219.12199, 61.735952], + [-219.12199, 63.181579], + [-211.893856, 63.181579], + [-211.893856, 61.735952], + [-219.12199, 61.735952] ] ] } @@ -1592,11 +1592,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 63.256742], - [-199.504452, 64.704058], - [-125.15625, 64.704058], - [-125.15625, 63.256742], - [-199.504452, 63.256742] + [-219.12199, 63.181579], + [-219.12199, 64.627206], + [-211.893856, 64.627206], + [-211.893856, 63.181579], + [-219.12199, 63.181579] ] ] } @@ -1608,11 +1608,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 64.704058], - [-199.504452, 66.151374], - [-125.15625, 66.151374], - [-125.15625, 64.704058], - [-199.504452, 64.704058] + [-219.12199, 64.627206], + [-219.12199, 66.072833], + [-211.893856, 66.072833], + [-211.893856, 64.627206], + [-219.12199, 64.627206] ] ] } @@ -1624,11 +1624,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 66.151374], - [-199.504452, 67.59869], - [-125.15625, 67.59869], - [-125.15625, 66.151374], - [-199.504452, 66.151374] + [-219.12199, 66.072833], + [-219.12199, 67.518459], + [-211.893856, 67.518459], + [-211.893856, 66.072833], + [-219.12199, 66.072833] ] ] } @@ -1640,11 +1640,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 67.59869], - [-199.504452, 69.046006], - [-125.15625, 69.046006], - [-125.15625, 67.59869], - [-199.504452, 67.59869] + [-219.12199, 67.518459], + [-219.12199, 68.964086], + [-211.893856, 68.964086], + [-211.893856, 67.518459], + [-219.12199, 67.518459] ] ] } @@ -1656,11 +1656,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 69.046006], - [-199.504452, 70.493322], - [-125.15625, 70.493322], - [-125.15625, 69.046006], - [-199.504452, 69.046006] + [-219.12199, 68.964086], + [-219.12199, 70.409713], + [-211.893856, 70.409713], + [-211.893856, 68.964086], + [-219.12199, 68.964086] ] ] } @@ -1672,11 +1672,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 70.493322], - [-199.504452, 71.940637], - [-125.15625, 71.940637], - [-125.15625, 70.493322], - [-199.504452, 70.493322] + [-219.12199, 70.409713], + [-219.12199, 71.85534], + [-211.893856, 71.85534], + [-211.893856, 70.409713], + [-219.12199, 70.409713] ] ] } @@ -1688,11 +1688,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 71.940637], - [-199.504452, 73.387953], - [-125.15625, 73.387953], - [-125.15625, 71.940637], - [-199.504452, 71.940637] + [-219.12199, 71.85534], + [-219.12199, 73.300967], + [-211.893856, 73.300967], + [-211.893856, 71.85534], + [-219.12199, 71.85534] ] ] } @@ -1704,11 +1704,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 73.387953], - [-199.504452, 74.835269], - [-125.15625, 74.835269], - [-125.15625, 73.387953], - [-199.504452, 73.387953] + [-219.12199, 73.300967], + [-219.12199, 74.746593], + [-211.893856, 74.746593], + [-211.893856, 73.300967], + [-219.12199, 73.300967] ] ] } @@ -1720,11 +1720,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 74.835269], - [-199.504452, 76.282585], - [-125.15625, 76.282585], - [-125.15625, 74.835269], - [-199.504452, 74.835269] + [-219.12199, 74.746593], + [-219.12199, 76.19222], + [-211.893856, 76.19222], + [-211.893856, 74.746593], + [-219.12199, 74.746593] ] ] } @@ -1736,11 +1736,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 76.282585], - [-199.504452, 77.729901], - [-125.15625, 77.729901], - [-125.15625, 76.282585], - [-199.504452, 76.282585] + [-219.12199, 76.19222], + [-219.12199, 77.637847], + [-211.893856, 77.637847], + [-211.893856, 76.19222], + [-219.12199, 76.19222] ] ] } @@ -1752,11 +1752,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -80.027525], - [-125.15625, -78.580209], - [-50.808048, -78.580209], - [-50.808048, -80.027525], - [-125.15625, -80.027525] + [-211.893856, -79.935471], + [-211.893856, -78.489844], + [-204.665722, -78.489844], + [-204.665722, -79.935471], + [-211.893856, -79.935471] ] ] } @@ -1768,11 +1768,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -78.580209], - [-125.15625, -77.132893], - [-50.808048, -77.132893], - [-50.808048, -78.580209], - [-125.15625, -78.580209] + [-211.893856, -78.489844], + [-211.893856, -77.044217], + [-204.665722, -77.044217], + [-204.665722, -78.489844], + [-211.893856, -78.489844] ] ] } @@ -1784,11 +1784,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -77.132893], - [-125.15625, -75.685577], - [-50.808048, -75.685577], - [-50.808048, -77.132893], - [-125.15625, -77.132893] + [-211.893856, -77.044217], + [-211.893856, -75.598591], + [-204.665722, -75.598591], + [-204.665722, -77.044217], + [-211.893856, -77.044217] ] ] } @@ -1800,11 +1800,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -75.685577], - [-125.15625, -74.238262], - [-50.808048, -74.238262], - [-50.808048, -75.685577], - [-125.15625, -75.685577] + [-211.893856, -75.598591], + [-211.893856, -74.152964], + [-204.665722, -74.152964], + [-204.665722, -75.598591], + [-211.893856, -75.598591] ] ] } @@ -1816,11 +1816,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -74.238262], - [-125.15625, -72.790946], - [-50.808048, -72.790946], - [-50.808048, -74.238262], - [-125.15625, -74.238262] + [-211.893856, -74.152964], + [-211.893856, -72.707337], + [-204.665722, -72.707337], + [-204.665722, -74.152964], + [-211.893856, -74.152964] ] ] } @@ -1832,11 +1832,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -72.790946], - [-125.15625, -71.34363], - [-50.808048, -71.34363], - [-50.808048, -72.790946], - [-125.15625, -72.790946] + [-211.893856, -72.707337], + [-211.893856, -71.26171], + [-204.665722, -71.26171], + [-204.665722, -72.707337], + [-211.893856, -72.707337] ] ] } @@ -1848,11 +1848,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -71.34363], - [-125.15625, -69.896314], - [-50.808048, -69.896314], - [-50.808048, -71.34363], - [-125.15625, -71.34363] + [-211.893856, -71.26171], + [-211.893856, -69.816084], + [-204.665722, -69.816084], + [-204.665722, -71.26171], + [-211.893856, -71.26171] ] ] } @@ -1864,11 +1864,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -69.896314], - [-125.15625, -68.448998], - [-50.808048, -68.448998], - [-50.808048, -69.896314], - [-125.15625, -69.896314] + [-211.893856, -69.816084], + [-211.893856, -68.370457], + [-204.665722, -68.370457], + [-204.665722, -69.816084], + [-211.893856, -69.816084] ] ] } @@ -1880,11 +1880,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -68.448998], - [-125.15625, -67.001682], - [-50.808048, -67.001682], - [-50.808048, -68.448998], - [-125.15625, -68.448998] + [-211.893856, -68.370457], + [-211.893856, -66.92483], + [-204.665722, -66.92483], + [-204.665722, -68.370457], + [-211.893856, -68.370457] ] ] } @@ -1896,11 +1896,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -67.001682], - [-125.15625, -65.554367], - [-50.808048, -65.554367], - [-50.808048, -67.001682], - [-125.15625, -67.001682] + [-211.893856, -66.92483], + [-211.893856, -65.479203], + [-204.665722, -65.479203], + [-204.665722, -66.92483], + [-211.893856, -66.92483] ] ] } @@ -1912,11 +1912,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -65.554367], - [-125.15625, -64.107051], - [-50.808048, -64.107051], - [-50.808048, -65.554367], - [-125.15625, -65.554367] + [-211.893856, -65.479203], + [-211.893856, -64.033576], + [-204.665722, -64.033576], + [-204.665722, -65.479203], + [-211.893856, -65.479203] ] ] } @@ -1928,11 +1928,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -64.107051], - [-125.15625, -62.659735], - [-50.808048, -62.659735], - [-50.808048, -64.107051], - [-125.15625, -64.107051] + [-211.893856, -64.033576], + [-211.893856, -62.58795], + [-204.665722, -62.58795], + [-204.665722, -64.033576], + [-211.893856, -64.033576] ] ] } @@ -1944,11 +1944,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -62.659735], - [-125.15625, -61.212419], - [-50.808048, -61.212419], - [-50.808048, -62.659735], - [-125.15625, -62.659735] + [-211.893856, -62.58795], + [-211.893856, -61.142323], + [-204.665722, -61.142323], + [-204.665722, -62.58795], + [-211.893856, -62.58795] ] ] } @@ -1960,11 +1960,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -61.212419], - [-125.15625, -59.765103], - [-50.808048, -59.765103], - [-50.808048, -61.212419], - [-125.15625, -61.212419] + [-211.893856, -61.142323], + [-211.893856, -59.696696], + [-204.665722, -59.696696], + [-204.665722, -61.142323], + [-211.893856, -61.142323] ] ] } @@ -1976,11 +1976,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -59.765103], - [-125.15625, -58.317787], - [-50.808048, -58.317787], - [-50.808048, -59.765103], - [-125.15625, -59.765103] + [-211.893856, -59.696696], + [-211.893856, -58.251069], + [-204.665722, -58.251069], + [-204.665722, -59.696696], + [-211.893856, -59.696696] ] ] } @@ -1992,11 +1992,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -58.317787], - [-125.15625, -56.870472], - [-50.808048, -56.870472], - [-50.808048, -58.317787], - [-125.15625, -58.317787] + [-211.893856, -58.251069], + [-211.893856, -56.805443], + [-204.665722, -56.805443], + [-204.665722, -58.251069], + [-211.893856, -58.251069] ] ] } @@ -2008,11 +2008,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -56.870472], - [-125.15625, -55.423156], - [-50.808048, -55.423156], - [-50.808048, -56.870472], - [-125.15625, -56.870472] + [-211.893856, -56.805443], + [-211.893856, -55.359816], + [-204.665722, -55.359816], + [-204.665722, -56.805443], + [-211.893856, -56.805443] ] ] } @@ -2024,11 +2024,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -55.423156], - [-125.15625, -53.97584], - [-50.808048, -53.97584], - [-50.808048, -55.423156], - [-125.15625, -55.423156] + [-211.893856, -55.359816], + [-211.893856, -53.914189], + [-204.665722, -53.914189], + [-204.665722, -55.359816], + [-211.893856, -55.359816] ] ] } @@ -2040,11 +2040,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -53.97584], - [-125.15625, -52.528524], - [-50.808048, -52.528524], - [-50.808048, -53.97584], - [-125.15625, -53.97584] + [-211.893856, -53.914189], + [-211.893856, -52.468562], + [-204.665722, -52.468562], + [-204.665722, -53.914189], + [-211.893856, -53.914189] ] ] } @@ -2056,11 +2056,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -52.528524], - [-125.15625, -51.081208], - [-50.808048, -51.081208], - [-50.808048, -52.528524], - [-125.15625, -52.528524] + [-211.893856, -52.468562], + [-211.893856, -51.022936], + [-204.665722, -51.022936], + [-204.665722, -52.468562], + [-211.893856, -52.468562] ] ] } @@ -2072,11 +2072,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -51.081208], - [-125.15625, -49.633892], - [-50.808048, -49.633892], - [-50.808048, -51.081208], - [-125.15625, -51.081208] + [-211.893856, -51.022936], + [-211.893856, -49.577309], + [-204.665722, -49.577309], + [-204.665722, -51.022936], + [-211.893856, -51.022936] ] ] } @@ -2088,11 +2088,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -49.633892], - [-125.15625, -48.186577], - [-50.808048, -48.186577], - [-50.808048, -49.633892], - [-125.15625, -49.633892] + [-211.893856, -49.577309], + [-211.893856, -48.131682], + [-204.665722, -48.131682], + [-204.665722, -49.577309], + [-211.893856, -49.577309] ] ] } @@ -2104,11 +2104,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -48.186577], - [-125.15625, -46.739261], - [-50.808048, -46.739261], - [-50.808048, -48.186577], - [-125.15625, -48.186577] + [-211.893856, -48.131682], + [-211.893856, -46.686055], + [-204.665722, -46.686055], + [-204.665722, -48.131682], + [-211.893856, -48.131682] ] ] } @@ -2120,11 +2120,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -46.739261], - [-125.15625, -45.291945], - [-50.808048, -45.291945], - [-50.808048, -46.739261], - [-125.15625, -46.739261] + [-211.893856, -46.686055], + [-211.893856, -45.240428], + [-204.665722, -45.240428], + [-204.665722, -46.686055], + [-211.893856, -46.686055] ] ] } @@ -2136,11 +2136,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -45.291945], - [-125.15625, -43.844629], - [-50.808048, -43.844629], - [-50.808048, -45.291945], - [-125.15625, -45.291945] + [-211.893856, -45.240428], + [-211.893856, -43.794802], + [-204.665722, -43.794802], + [-204.665722, -45.240428], + [-211.893856, -45.240428] ] ] } @@ -2152,11 +2152,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -43.844629], - [-125.15625, -42.397313], - [-50.808048, -42.397313], - [-50.808048, -43.844629], - [-125.15625, -43.844629] + [-211.893856, -43.794802], + [-211.893856, -42.349175], + [-204.665722, -42.349175], + [-204.665722, -43.794802], + [-211.893856, -43.794802] ] ] } @@ -2168,11 +2168,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -42.397313], - [-125.15625, -40.949997], - [-50.808048, -40.949997], - [-50.808048, -42.397313], - [-125.15625, -42.397313] + [-211.893856, -42.349175], + [-211.893856, -40.903548], + [-204.665722, -40.903548], + [-204.665722, -42.349175], + [-211.893856, -42.349175] ] ] } @@ -2184,11 +2184,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -40.949997], - [-125.15625, -39.502682], - [-50.808048, -39.502682], - [-50.808048, -40.949997], - [-125.15625, -40.949997] + [-211.893856, -40.903548], + [-211.893856, -39.457921], + [-204.665722, -39.457921], + [-204.665722, -40.903548], + [-211.893856, -40.903548] ] ] } @@ -2200,11 +2200,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -39.502682], - [-125.15625, -38.055366], - [-50.808048, -38.055366], - [-50.808048, -39.502682], - [-125.15625, -39.502682] + [-211.893856, -39.457921], + [-211.893856, -38.012295], + [-204.665722, -38.012295], + [-204.665722, -39.457921], + [-211.893856, -39.457921] ] ] } @@ -2216,11 +2216,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -38.055366], - [-125.15625, -36.60805], - [-50.808048, -36.60805], - [-50.808048, -38.055366], - [-125.15625, -38.055366] + [-211.893856, -38.012295], + [-211.893856, -36.566668], + [-204.665722, -36.566668], + [-204.665722, -38.012295], + [-211.893856, -38.012295] ] ] } @@ -2232,11 +2232,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -36.60805], - [-125.15625, -35.160734], - [-50.808048, -35.160734], - [-50.808048, -36.60805], - [-125.15625, -36.60805] + [-211.893856, -36.566668], + [-211.893856, -35.121041], + [-204.665722, -35.121041], + [-204.665722, -36.566668], + [-211.893856, -36.566668] ] ] } @@ -2248,11 +2248,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -35.160734], - [-125.15625, -33.713418], - [-50.808048, -33.713418], - [-50.808048, -35.160734], - [-125.15625, -35.160734] + [-211.893856, -35.121041], + [-211.893856, -33.675414], + [-204.665722, -33.675414], + [-204.665722, -35.121041], + [-211.893856, -35.121041] ] ] } @@ -2264,11 +2264,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -33.713418], - [-125.15625, -32.266102], - [-50.808048, -32.266102], - [-50.808048, -33.713418], - [-125.15625, -33.713418] + [-211.893856, -33.675414], + [-211.893856, -32.229788], + [-204.665722, -32.229788], + [-204.665722, -33.675414], + [-211.893856, -33.675414] ] ] } @@ -2280,11 +2280,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -32.266102], - [-125.15625, -30.818787], - [-50.808048, -30.818787], - [-50.808048, -32.266102], - [-125.15625, -32.266102] + [-211.893856, -32.229788], + [-211.893856, -30.784161], + [-204.665722, -30.784161], + [-204.665722, -32.229788], + [-211.893856, -32.229788] ] ] } @@ -2296,11 +2296,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -30.818787], - [-125.15625, -29.371471], - [-50.808048, -29.371471], - [-50.808048, -30.818787], - [-125.15625, -30.818787] + [-211.893856, -30.784161], + [-211.893856, -29.338534], + [-204.665722, -29.338534], + [-204.665722, -30.784161], + [-211.893856, -30.784161] ] ] } @@ -2312,11 +2312,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -29.371471], - [-125.15625, -27.924155], - [-50.808048, -27.924155], - [-50.808048, -29.371471], - [-125.15625, -29.371471] + [-211.893856, -29.338534], + [-211.893856, -27.892907], + [-204.665722, -27.892907], + [-204.665722, -29.338534], + [-211.893856, -29.338534] ] ] } @@ -2328,11 +2328,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -27.924155], - [-125.15625, -26.476839], - [-50.808048, -26.476839], - [-50.808048, -27.924155], - [-125.15625, -27.924155] + [-211.893856, -27.892907], + [-211.893856, -26.44728], + [-204.665722, -26.44728], + [-204.665722, -27.892907], + [-211.893856, -27.892907] ] ] } @@ -2344,11 +2344,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -26.476839], - [-125.15625, -25.029523], - [-50.808048, -25.029523], - [-50.808048, -26.476839], - [-125.15625, -26.476839] + [-211.893856, -26.44728], + [-211.893856, -25.001654], + [-204.665722, -25.001654], + [-204.665722, -26.44728], + [-211.893856, -26.44728] ] ] } @@ -2360,11 +2360,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -25.029523], - [-125.15625, -23.582207], - [-50.808048, -23.582207], - [-50.808048, -25.029523], - [-125.15625, -25.029523] + [-211.893856, -25.001654], + [-211.893856, -23.556027], + [-204.665722, -23.556027], + [-204.665722, -25.001654], + [-211.893856, -25.001654] ] ] } @@ -2376,11 +2376,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -23.582207], - [-125.15625, -22.134892], - [-50.808048, -22.134892], - [-50.808048, -23.582207], - [-125.15625, -23.582207] + [-211.893856, -23.556027], + [-211.893856, -22.1104], + [-204.665722, -22.1104], + [-204.665722, -23.556027], + [-211.893856, -23.556027] ] ] } @@ -2392,11 +2392,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -22.134892], - [-125.15625, -20.687576], - [-50.808048, -20.687576], - [-50.808048, -22.134892], - [-125.15625, -22.134892] + [-211.893856, -22.1104], + [-211.893856, -20.664773], + [-204.665722, -20.664773], + [-204.665722, -22.1104], + [-211.893856, -22.1104] ] ] } @@ -2408,11 +2408,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -20.687576], - [-125.15625, -19.24026], - [-50.808048, -19.24026], - [-50.808048, -20.687576], - [-125.15625, -20.687576] + [-211.893856, -20.664773], + [-211.893856, -19.219147], + [-204.665722, -19.219147], + [-204.665722, -20.664773], + [-211.893856, -20.664773] ] ] } @@ -2424,11 +2424,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -19.24026], - [-125.15625, -17.792944], - [-50.808048, -17.792944], - [-50.808048, -19.24026], - [-125.15625, -19.24026] + [-211.893856, -19.219147], + [-211.893856, -17.77352], + [-204.665722, -17.77352], + [-204.665722, -19.219147], + [-211.893856, -19.219147] ] ] } @@ -2440,11 +2440,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -17.792944], - [-125.15625, -16.345628], - [-50.808048, -16.345628], - [-50.808048, -17.792944], - [-125.15625, -17.792944] + [-211.893856, -17.77352], + [-211.893856, -16.327893], + [-204.665722, -16.327893], + [-204.665722, -17.77352], + [-211.893856, -17.77352] ] ] } @@ -2456,11 +2456,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -16.345628], - [-125.15625, -14.898312], - [-50.808048, -14.898312], - [-50.808048, -16.345628], - [-125.15625, -16.345628] + [-211.893856, -16.327893], + [-211.893856, -14.882266], + [-204.665722, -14.882266], + [-204.665722, -16.327893], + [-211.893856, -16.327893] ] ] } @@ -2472,11 +2472,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -14.898312], - [-125.15625, -13.450997], - [-50.808048, -13.450997], - [-50.808048, -14.898312], - [-125.15625, -14.898312] + [-211.893856, -14.882266], + [-211.893856, -13.43664], + [-204.665722, -13.43664], + [-204.665722, -14.882266], + [-211.893856, -14.882266] ] ] } @@ -2488,11 +2488,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -13.450997], - [-125.15625, -12.003681], - [-50.808048, -12.003681], - [-50.808048, -13.450997], - [-125.15625, -13.450997] + [-211.893856, -13.43664], + [-211.893856, -11.991013], + [-204.665722, -11.991013], + [-204.665722, -13.43664], + [-211.893856, -13.43664] ] ] } @@ -2504,11 +2504,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -12.003681], - [-125.15625, -10.556365], - [-50.808048, -10.556365], - [-50.808048, -12.003681], - [-125.15625, -12.003681] + [-211.893856, -11.991013], + [-211.893856, -10.545386], + [-204.665722, -10.545386], + [-204.665722, -11.991013], + [-211.893856, -11.991013] ] ] } @@ -2520,11 +2520,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -10.556365], - [-125.15625, -9.109049], - [-50.808048, -9.109049], - [-50.808048, -10.556365], - [-125.15625, -10.556365] + [-211.893856, -10.545386], + [-211.893856, -9.099759], + [-204.665722, -9.099759], + [-204.665722, -10.545386], + [-211.893856, -10.545386] ] ] } @@ -2536,11 +2536,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -9.109049], - [-125.15625, -7.661733], - [-50.808048, -7.661733], - [-50.808048, -9.109049], - [-125.15625, -9.109049] + [-211.893856, -9.099759], + [-211.893856, -7.654132], + [-204.665722, -7.654132], + [-204.665722, -9.099759], + [-211.893856, -9.099759] ] ] } @@ -2552,11 +2552,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -7.661733], - [-125.15625, -6.214417], - [-50.808048, -6.214417], - [-50.808048, -7.661733], - [-125.15625, -7.661733] + [-211.893856, -7.654132], + [-211.893856, -6.208506], + [-204.665722, -6.208506], + [-204.665722, -7.654132], + [-211.893856, -7.654132] ] ] } @@ -2568,11 +2568,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -6.214417], - [-125.15625, -4.767102], - [-50.808048, -4.767102], - [-50.808048, -6.214417], - [-125.15625, -6.214417] + [-211.893856, -6.208506], + [-211.893856, -4.762879], + [-204.665722, -4.762879], + [-204.665722, -6.208506], + [-211.893856, -6.208506] ] ] } @@ -2584,11 +2584,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -4.767102], - [-125.15625, -3.319786], - [-50.808048, -3.319786], - [-50.808048, -4.767102], - [-125.15625, -4.767102] + [-211.893856, -4.762879], + [-211.893856, -3.317252], + [-204.665722, -3.317252], + [-204.665722, -4.762879], + [-211.893856, -4.762879] ] ] } @@ -2600,11 +2600,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -3.319786], - [-125.15625, -1.87247], - [-50.808048, -1.87247], - [-50.808048, -3.319786], - [-125.15625, -3.319786] + [-211.893856, -3.317252], + [-211.893856, -1.871625], + [-204.665722, -1.871625], + [-204.665722, -3.317252], + [-211.893856, -3.317252] ] ] } @@ -2616,11 +2616,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -1.87247], - [-125.15625, -0.425154], - [-50.808048, -0.425154], - [-50.808048, -1.87247], - [-125.15625, -1.87247] + [-211.893856, -1.871625], + [-211.893856, -0.425999], + [-204.665722, -0.425999], + [-204.665722, -1.871625], + [-211.893856, -1.871625] ] ] } @@ -2632,11 +2632,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -0.425154], - [-125.15625, 1.022162], - [-50.808048, 1.022162], - [-50.808048, -0.425154], - [-125.15625, -0.425154] + [-211.893856, -0.425999], + [-211.893856, 1.019628], + [-204.665722, 1.019628], + [-204.665722, -0.425999], + [-211.893856, -0.425999] ] ] } @@ -2648,11 +2648,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 1.022162], - [-125.15625, 2.469478], - [-50.808048, 2.469478], - [-50.808048, 1.022162], - [-125.15625, 1.022162] + [-211.893856, 1.019628], + [-211.893856, 2.465255], + [-204.665722, 2.465255], + [-204.665722, 1.019628], + [-211.893856, 1.019628] ] ] } @@ -2664,11 +2664,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 2.469478], - [-125.15625, 3.916793], - [-50.808048, 3.916793], - [-50.808048, 2.469478], - [-125.15625, 2.469478] + [-211.893856, 2.465255], + [-211.893856, 3.910882], + [-204.665722, 3.910882], + [-204.665722, 2.465255], + [-211.893856, 2.465255] ] ] } @@ -2680,11 +2680,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 3.916793], - [-125.15625, 5.364109], - [-50.808048, 5.364109], - [-50.808048, 3.916793], - [-125.15625, 3.916793] + [-211.893856, 3.910882], + [-211.893856, 5.356508], + [-204.665722, 5.356508], + [-204.665722, 3.910882], + [-211.893856, 3.910882] ] ] } @@ -2696,11 +2696,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 5.364109], - [-125.15625, 6.811425], - [-50.808048, 6.811425], - [-50.808048, 5.364109], - [-125.15625, 5.364109] + [-211.893856, 5.356508], + [-211.893856, 6.802135], + [-204.665722, 6.802135], + [-204.665722, 5.356508], + [-211.893856, 5.356508] ] ] } @@ -2712,11 +2712,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 6.811425], - [-125.15625, 8.258741], - [-50.808048, 8.258741], - [-50.808048, 6.811425], - [-125.15625, 6.811425] + [-211.893856, 6.802135], + [-211.893856, 8.247762], + [-204.665722, 8.247762], + [-204.665722, 6.802135], + [-211.893856, 6.802135] ] ] } @@ -2728,11 +2728,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 8.258741], - [-125.15625, 9.706057], - [-50.808048, 9.706057], - [-50.808048, 8.258741], - [-125.15625, 8.258741] + [-211.893856, 8.247762], + [-211.893856, 9.693389], + [-204.665722, 9.693389], + [-204.665722, 8.247762], + [-211.893856, 8.247762] ] ] } @@ -2744,11 +2744,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 9.706057], - [-125.15625, 11.153373], - [-50.808048, 11.153373], - [-50.808048, 9.706057], - [-125.15625, 9.706057] + [-211.893856, 9.693389], + [-211.893856, 11.139016], + [-204.665722, 11.139016], + [-204.665722, 9.693389], + [-211.893856, 9.693389] ] ] } @@ -2760,11 +2760,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 11.153373], - [-125.15625, 12.600688], - [-50.808048, 12.600688], - [-50.808048, 11.153373], - [-125.15625, 11.153373] + [-211.893856, 11.139016], + [-211.893856, 12.584642], + [-204.665722, 12.584642], + [-204.665722, 11.139016], + [-211.893856, 11.139016] ] ] } @@ -2776,11 +2776,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 12.600688], - [-125.15625, 14.048004], - [-50.808048, 14.048004], - [-50.808048, 12.600688], - [-125.15625, 12.600688] + [-211.893856, 12.584642], + [-211.893856, 14.030269], + [-204.665722, 14.030269], + [-204.665722, 12.584642], + [-211.893856, 12.584642] ] ] } @@ -2792,11 +2792,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 14.048004], - [-125.15625, 15.49532], - [-50.808048, 15.49532], - [-50.808048, 14.048004], - [-125.15625, 14.048004] + [-211.893856, 14.030269], + [-211.893856, 15.475896], + [-204.665722, 15.475896], + [-204.665722, 14.030269], + [-211.893856, 14.030269] ] ] } @@ -2808,11 +2808,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 15.49532], - [-125.15625, 16.942636], - [-50.808048, 16.942636], - [-50.808048, 15.49532], - [-125.15625, 15.49532] + [-211.893856, 15.475896], + [-211.893856, 16.921523], + [-204.665722, 16.921523], + [-204.665722, 15.475896], + [-211.893856, 15.475896] ] ] } @@ -2824,11 +2824,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 16.942636], - [-125.15625, 18.389952], - [-50.808048, 18.389952], - [-50.808048, 16.942636], - [-125.15625, 16.942636] + [-211.893856, 16.921523], + [-211.893856, 18.367149], + [-204.665722, 18.367149], + [-204.665722, 16.921523], + [-211.893856, 16.921523] ] ] } @@ -2840,11 +2840,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 18.389952], - [-125.15625, 19.837268], - [-50.808048, 19.837268], - [-50.808048, 18.389952], - [-125.15625, 18.389952] + [-211.893856, 18.367149], + [-211.893856, 19.812776], + [-204.665722, 19.812776], + [-204.665722, 18.367149], + [-211.893856, 18.367149] ] ] } @@ -2856,11 +2856,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 19.837268], - [-125.15625, 21.284583], - [-50.808048, 21.284583], - [-50.808048, 19.837268], - [-125.15625, 19.837268] + [-211.893856, 19.812776], + [-211.893856, 21.258403], + [-204.665722, 21.258403], + [-204.665722, 19.812776], + [-211.893856, 19.812776] ] ] } @@ -2872,11 +2872,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 21.284583], - [-125.15625, 22.731899], - [-50.808048, 22.731899], - [-50.808048, 21.284583], - [-125.15625, 21.284583] + [-211.893856, 21.258403], + [-211.893856, 22.70403], + [-204.665722, 22.70403], + [-204.665722, 21.258403], + [-211.893856, 21.258403] ] ] } @@ -2888,11 +2888,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 22.731899], - [-125.15625, 24.179215], - [-50.808048, 24.179215], - [-50.808048, 22.731899], - [-125.15625, 22.731899] + [-211.893856, 22.70403], + [-211.893856, 24.149656], + [-204.665722, 24.149656], + [-204.665722, 22.70403], + [-211.893856, 22.70403] ] ] } @@ -2904,11 +2904,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 24.179215], - [-125.15625, 25.626531], - [-50.808048, 25.626531], - [-50.808048, 24.179215], - [-125.15625, 24.179215] + [-211.893856, 24.149656], + [-211.893856, 25.595283], + [-204.665722, 25.595283], + [-204.665722, 24.149656], + [-211.893856, 24.149656] ] ] } @@ -2920,11 +2920,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 25.626531], - [-125.15625, 27.073847], - [-50.808048, 27.073847], - [-50.808048, 25.626531], - [-125.15625, 25.626531] + [-211.893856, 25.595283], + [-211.893856, 27.04091], + [-204.665722, 27.04091], + [-204.665722, 25.595283], + [-211.893856, 25.595283] ] ] } @@ -2936,11 +2936,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 27.073847], - [-125.15625, 28.521163], - [-50.808048, 28.521163], - [-50.808048, 27.073847], - [-125.15625, 27.073847] + [-211.893856, 27.04091], + [-211.893856, 28.486537], + [-204.665722, 28.486537], + [-204.665722, 27.04091], + [-211.893856, 27.04091] ] ] } @@ -2952,11 +2952,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 28.521163], - [-125.15625, 29.968478], - [-50.808048, 29.968478], - [-50.808048, 28.521163], - [-125.15625, 28.521163] + [-211.893856, 28.486537], + [-211.893856, 29.932163], + [-204.665722, 29.932163], + [-204.665722, 28.486537], + [-211.893856, 28.486537] ] ] } @@ -2968,11 +2968,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 29.968478], - [-125.15625, 31.415794], - [-50.808048, 31.415794], - [-50.808048, 29.968478], - [-125.15625, 29.968478] + [-211.893856, 29.932163], + [-211.893856, 31.37779], + [-204.665722, 31.37779], + [-204.665722, 29.932163], + [-211.893856, 29.932163] ] ] } @@ -2984,11 +2984,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 31.415794], - [-125.15625, 32.86311], - [-50.808048, 32.86311], - [-50.808048, 31.415794], - [-125.15625, 31.415794] + [-211.893856, 31.37779], + [-211.893856, 32.823417], + [-204.665722, 32.823417], + [-204.665722, 31.37779], + [-211.893856, 31.37779] ] ] } @@ -3000,11 +3000,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 32.86311], - [-125.15625, 34.310426], - [-50.808048, 34.310426], - [-50.808048, 32.86311], - [-125.15625, 32.86311] + [-211.893856, 32.823417], + [-211.893856, 34.269044], + [-204.665722, 34.269044], + [-204.665722, 32.823417], + [-211.893856, 32.823417] ] ] } @@ -3016,11 +3016,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 34.310426], - [-125.15625, 35.757742], - [-50.808048, 35.757742], - [-50.808048, 34.310426], - [-125.15625, 34.310426] + [-211.893856, 34.269044], + [-211.893856, 35.714671], + [-204.665722, 35.714671], + [-204.665722, 34.269044], + [-211.893856, 34.269044] ] ] } @@ -3032,11 +3032,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 35.757742], - [-125.15625, 37.205058], - [-50.808048, 37.205058], - [-50.808048, 35.757742], - [-125.15625, 35.757742] + [-211.893856, 35.714671], + [-211.893856, 37.160297], + [-204.665722, 37.160297], + [-204.665722, 35.714671], + [-211.893856, 35.714671] ] ] } @@ -3048,11 +3048,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 37.205058], - [-125.15625, 38.652373], - [-50.808048, 38.652373], - [-50.808048, 37.205058], - [-125.15625, 37.205058] + [-211.893856, 37.160297], + [-211.893856, 38.605924], + [-204.665722, 38.605924], + [-204.665722, 37.160297], + [-211.893856, 37.160297] ] ] } @@ -3064,11 +3064,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 38.652373], - [-125.15625, 40.099689], - [-50.808048, 40.099689], - [-50.808048, 38.652373], - [-125.15625, 38.652373] + [-211.893856, 38.605924], + [-211.893856, 40.051551], + [-204.665722, 40.051551], + [-204.665722, 38.605924], + [-211.893856, 38.605924] ] ] } @@ -3080,11 +3080,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 40.099689], - [-125.15625, 41.547005], - [-50.808048, 41.547005], - [-50.808048, 40.099689], - [-125.15625, 40.099689] + [-211.893856, 40.051551], + [-211.893856, 41.497178], + [-204.665722, 41.497178], + [-204.665722, 40.051551], + [-211.893856, 40.051551] ] ] } @@ -3096,11 +3096,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 41.547005], - [-125.15625, 42.994321], - [-50.808048, 42.994321], - [-50.808048, 41.547005], - [-125.15625, 41.547005] + [-211.893856, 41.497178], + [-211.893856, 42.942804], + [-204.665722, 42.942804], + [-204.665722, 41.497178], + [-211.893856, 41.497178] ] ] } @@ -3112,11 +3112,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 42.994321], - [-125.15625, 44.441637], - [-50.808048, 44.441637], - [-50.808048, 42.994321], - [-125.15625, 42.994321] + [-211.893856, 42.942804], + [-211.893856, 44.388431], + [-204.665722, 44.388431], + [-204.665722, 42.942804], + [-211.893856, 42.942804] ] ] } @@ -3128,11 +3128,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 44.441637], - [-125.15625, 45.888952], - [-50.808048, 45.888952], - [-50.808048, 44.441637], - [-125.15625, 44.441637] + [-211.893856, 44.388431], + [-211.893856, 45.834058], + [-204.665722, 45.834058], + [-204.665722, 44.388431], + [-211.893856, 44.388431] ] ] } @@ -3144,11 +3144,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 45.888952], - [-125.15625, 47.336268], - [-50.808048, 47.336268], - [-50.808048, 45.888952], - [-125.15625, 45.888952] + [-211.893856, 45.834058], + [-211.893856, 47.279685], + [-204.665722, 47.279685], + [-204.665722, 45.834058], + [-211.893856, 45.834058] ] ] } @@ -3160,11 +3160,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 47.336268], - [-125.15625, 48.783584], - [-50.808048, 48.783584], - [-50.808048, 47.336268], - [-125.15625, 47.336268] + [-211.893856, 47.279685], + [-211.893856, 48.725311], + [-204.665722, 48.725311], + [-204.665722, 47.279685], + [-211.893856, 47.279685] ] ] } @@ -3176,11 +3176,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 48.783584], - [-125.15625, 50.2309], - [-50.808048, 50.2309], - [-50.808048, 48.783584], - [-125.15625, 48.783584] + [-211.893856, 48.725311], + [-211.893856, 50.170938], + [-204.665722, 50.170938], + [-204.665722, 48.725311], + [-211.893856, 48.725311] ] ] } @@ -3192,11 +3192,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 50.2309], - [-125.15625, 51.678216], - [-50.808048, 51.678216], - [-50.808048, 50.2309], - [-125.15625, 50.2309] + [-211.893856, 50.170938], + [-211.893856, 51.616565], + [-204.665722, 51.616565], + [-204.665722, 50.170938], + [-211.893856, 50.170938] ] ] } @@ -3208,11 +3208,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 51.678216], - [-125.15625, 53.125532], - [-50.808048, 53.125532], - [-50.808048, 51.678216], - [-125.15625, 51.678216] + [-211.893856, 51.616565], + [-211.893856, 53.062192], + [-204.665722, 53.062192], + [-204.665722, 51.616565], + [-211.893856, 51.616565] ] ] } @@ -3224,11 +3224,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 53.125532], - [-125.15625, 54.572847], - [-50.808048, 54.572847], - [-50.808048, 53.125532], - [-125.15625, 53.125532] + [-211.893856, 53.062192], + [-211.893856, 54.507819], + [-204.665722, 54.507819], + [-204.665722, 53.062192], + [-211.893856, 53.062192] ] ] } @@ -3240,11 +3240,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 54.572847], - [-125.15625, 56.020163], - [-50.808048, 56.020163], - [-50.808048, 54.572847], - [-125.15625, 54.572847] + [-211.893856, 54.507819], + [-211.893856, 55.953445], + [-204.665722, 55.953445], + [-204.665722, 54.507819], + [-211.893856, 54.507819] ] ] } @@ -3256,11 +3256,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 56.020163], - [-125.15625, 57.467479], - [-50.808048, 57.467479], - [-50.808048, 56.020163], - [-125.15625, 56.020163] + [-211.893856, 55.953445], + [-211.893856, 57.399072], + [-204.665722, 57.399072], + [-204.665722, 55.953445], + [-211.893856, 55.953445] ] ] } @@ -3272,11 +3272,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 57.467479], - [-125.15625, 58.914795], - [-50.808048, 58.914795], - [-50.808048, 57.467479], - [-125.15625, 57.467479] + [-211.893856, 57.399072], + [-211.893856, 58.844699], + [-204.665722, 58.844699], + [-204.665722, 57.399072], + [-211.893856, 57.399072] ] ] } @@ -3288,11 +3288,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 58.914795], - [-125.15625, 60.362111], - [-50.808048, 60.362111], - [-50.808048, 58.914795], - [-125.15625, 58.914795] + [-211.893856, 58.844699], + [-211.893856, 60.290326], + [-204.665722, 60.290326], + [-204.665722, 58.844699], + [-211.893856, 58.844699] ] ] } @@ -3304,11 +3304,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 60.362111], - [-125.15625, 61.809427], - [-50.808048, 61.809427], - [-50.808048, 60.362111], - [-125.15625, 60.362111] + [-211.893856, 60.290326], + [-211.893856, 61.735952], + [-204.665722, 61.735952], + [-204.665722, 60.290326], + [-211.893856, 60.290326] ] ] } @@ -3320,11 +3320,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 61.809427], - [-125.15625, 63.256742], - [-50.808048, 63.256742], - [-50.808048, 61.809427], - [-125.15625, 61.809427] + [-211.893856, 61.735952], + [-211.893856, 63.181579], + [-204.665722, 63.181579], + [-204.665722, 61.735952], + [-211.893856, 61.735952] ] ] } @@ -3336,11 +3336,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 63.256742], - [-125.15625, 64.704058], - [-50.808048, 64.704058], - [-50.808048, 63.256742], - [-125.15625, 63.256742] + [-211.893856, 63.181579], + [-211.893856, 64.627206], + [-204.665722, 64.627206], + [-204.665722, 63.181579], + [-211.893856, 63.181579] ] ] } @@ -3352,11 +3352,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 64.704058], - [-125.15625, 66.151374], - [-50.808048, 66.151374], - [-50.808048, 64.704058], - [-125.15625, 64.704058] + [-211.893856, 64.627206], + [-211.893856, 66.072833], + [-204.665722, 66.072833], + [-204.665722, 64.627206], + [-211.893856, 64.627206] ] ] } @@ -3368,11 +3368,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 66.151374], - [-125.15625, 67.59869], - [-50.808048, 67.59869], - [-50.808048, 66.151374], - [-125.15625, 66.151374] + [-211.893856, 66.072833], + [-211.893856, 67.518459], + [-204.665722, 67.518459], + [-204.665722, 66.072833], + [-211.893856, 66.072833] ] ] } @@ -3384,11 +3384,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 67.59869], - [-125.15625, 69.046006], - [-50.808048, 69.046006], - [-50.808048, 67.59869], - [-125.15625, 67.59869] + [-211.893856, 67.518459], + [-211.893856, 68.964086], + [-204.665722, 68.964086], + [-204.665722, 67.518459], + [-211.893856, 67.518459] ] ] } @@ -3400,11 +3400,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 69.046006], - [-125.15625, 70.493322], - [-50.808048, 70.493322], - [-50.808048, 69.046006], - [-125.15625, 69.046006] + [-211.893856, 68.964086], + [-211.893856, 70.409713], + [-204.665722, 70.409713], + [-204.665722, 68.964086], + [-211.893856, 68.964086] ] ] } @@ -3416,11 +3416,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 70.493322], - [-125.15625, 71.940637], - [-50.808048, 71.940637], - [-50.808048, 70.493322], - [-125.15625, 70.493322] + [-211.893856, 70.409713], + [-211.893856, 71.85534], + [-204.665722, 71.85534], + [-204.665722, 70.409713], + [-211.893856, 70.409713] ] ] } @@ -3432,11 +3432,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 71.940637], - [-125.15625, 73.387953], - [-50.808048, 73.387953], - [-50.808048, 71.940637], - [-125.15625, 71.940637] + [-211.893856, 71.85534], + [-211.893856, 73.300967], + [-204.665722, 73.300967], + [-204.665722, 71.85534], + [-211.893856, 71.85534] ] ] } @@ -3448,11 +3448,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 73.387953], - [-125.15625, 74.835269], - [-50.808048, 74.835269], - [-50.808048, 73.387953], - [-125.15625, 73.387953] + [-211.893856, 73.300967], + [-211.893856, 74.746593], + [-204.665722, 74.746593], + [-204.665722, 73.300967], + [-211.893856, 73.300967] ] ] } @@ -3464,11 +3464,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 74.835269], - [-125.15625, 76.282585], - [-50.808048, 76.282585], - [-50.808048, 74.835269], - [-125.15625, 74.835269] + [-211.893856, 74.746593], + [-211.893856, 76.19222], + [-204.665722, 76.19222], + [-204.665722, 74.746593], + [-211.893856, 74.746593] ] ] } @@ -3480,11 +3480,41867 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 76.282585], - [-125.15625, 77.729901], - [-50.808048, 77.729901], - [-50.808048, 76.282585], - [-125.15625, 76.282585] + [-211.893856, 76.19222], + [-211.893856, 77.637847], + [-204.665722, 77.637847], + [-204.665722, 76.19222], + [-211.893856, 76.19222] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -79.935471], + [-204.665722, -78.489844], + [-197.437588, -78.489844], + [-197.437588, -79.935471], + [-204.665722, -79.935471] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -78.489844], + [-204.665722, -77.044217], + [-197.437588, -77.044217], + [-197.437588, -78.489844], + [-204.665722, -78.489844] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -77.044217], + [-204.665722, -75.598591], + [-197.437588, -75.598591], + [-197.437588, -77.044217], + [-204.665722, -77.044217] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -75.598591], + [-204.665722, -74.152964], + [-197.437588, -74.152964], + [-197.437588, -75.598591], + [-204.665722, -75.598591] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -74.152964], + [-204.665722, -72.707337], + [-197.437588, -72.707337], + [-197.437588, -74.152964], + [-204.665722, -74.152964] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -72.707337], + [-204.665722, -71.26171], + [-197.437588, -71.26171], + [-197.437588, -72.707337], + [-204.665722, -72.707337] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -71.26171], + [-204.665722, -69.816084], + [-197.437588, -69.816084], + [-197.437588, -71.26171], + [-204.665722, -71.26171] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -69.816084], + [-204.665722, -68.370457], + [-197.437588, -68.370457], + [-197.437588, -69.816084], + [-204.665722, -69.816084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -68.370457], + [-204.665722, -66.92483], + [-197.437588, -66.92483], + [-197.437588, -68.370457], + [-204.665722, -68.370457] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -66.92483], + [-204.665722, -65.479203], + [-197.437588, -65.479203], + [-197.437588, -66.92483], + [-204.665722, -66.92483] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -65.479203], + [-204.665722, -64.033576], + [-197.437588, -64.033576], + [-197.437588, -65.479203], + [-204.665722, -65.479203] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -64.033576], + [-204.665722, -62.58795], + [-197.437588, -62.58795], + [-197.437588, -64.033576], + [-204.665722, -64.033576] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -62.58795], + [-204.665722, -61.142323], + [-197.437588, -61.142323], + [-197.437588, -62.58795], + [-204.665722, -62.58795] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -61.142323], + [-204.665722, -59.696696], + [-197.437588, -59.696696], + [-197.437588, -61.142323], + [-204.665722, -61.142323] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -59.696696], + [-204.665722, -58.251069], + [-197.437588, -58.251069], + [-197.437588, -59.696696], + [-204.665722, -59.696696] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -58.251069], + [-204.665722, -56.805443], + [-197.437588, -56.805443], + [-197.437588, -58.251069], + [-204.665722, -58.251069] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -56.805443], + [-204.665722, -55.359816], + [-197.437588, -55.359816], + [-197.437588, -56.805443], + [-204.665722, -56.805443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -55.359816], + [-204.665722, -53.914189], + [-197.437588, -53.914189], + [-197.437588, -55.359816], + [-204.665722, -55.359816] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -53.914189], + [-204.665722, -52.468562], + [-197.437588, -52.468562], + [-197.437588, -53.914189], + [-204.665722, -53.914189] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -52.468562], + [-204.665722, -51.022936], + [-197.437588, -51.022936], + [-197.437588, -52.468562], + [-204.665722, -52.468562] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -51.022936], + [-204.665722, -49.577309], + [-197.437588, -49.577309], + [-197.437588, -51.022936], + [-204.665722, -51.022936] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -49.577309], + [-204.665722, -48.131682], + [-197.437588, -48.131682], + [-197.437588, -49.577309], + [-204.665722, -49.577309] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -48.131682], + [-204.665722, -46.686055], + [-197.437588, -46.686055], + [-197.437588, -48.131682], + [-204.665722, -48.131682] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -46.686055], + [-204.665722, -45.240428], + [-197.437588, -45.240428], + [-197.437588, -46.686055], + [-204.665722, -46.686055] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -45.240428], + [-204.665722, -43.794802], + [-197.437588, -43.794802], + [-197.437588, -45.240428], + [-204.665722, -45.240428] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -43.794802], + [-204.665722, -42.349175], + [-197.437588, -42.349175], + [-197.437588, -43.794802], + [-204.665722, -43.794802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -42.349175], + [-204.665722, -40.903548], + [-197.437588, -40.903548], + [-197.437588, -42.349175], + [-204.665722, -42.349175] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -40.903548], + [-204.665722, -39.457921], + [-197.437588, -39.457921], + [-197.437588, -40.903548], + [-204.665722, -40.903548] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -39.457921], + [-204.665722, -38.012295], + [-197.437588, -38.012295], + [-197.437588, -39.457921], + [-204.665722, -39.457921] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -38.012295], + [-204.665722, -36.566668], + [-197.437588, -36.566668], + [-197.437588, -38.012295], + [-204.665722, -38.012295] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -36.566668], + [-204.665722, -35.121041], + [-197.437588, -35.121041], + [-197.437588, -36.566668], + [-204.665722, -36.566668] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -35.121041], + [-204.665722, -33.675414], + [-197.437588, -33.675414], + [-197.437588, -35.121041], + [-204.665722, -35.121041] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -33.675414], + [-204.665722, -32.229788], + [-197.437588, -32.229788], + [-197.437588, -33.675414], + [-204.665722, -33.675414] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -32.229788], + [-204.665722, -30.784161], + [-197.437588, -30.784161], + [-197.437588, -32.229788], + [-204.665722, -32.229788] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -30.784161], + [-204.665722, -29.338534], + [-197.437588, -29.338534], + [-197.437588, -30.784161], + [-204.665722, -30.784161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -29.338534], + [-204.665722, -27.892907], + [-197.437588, -27.892907], + [-197.437588, -29.338534], + [-204.665722, -29.338534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -27.892907], + [-204.665722, -26.44728], + [-197.437588, -26.44728], + [-197.437588, -27.892907], + [-204.665722, -27.892907] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -26.44728], + [-204.665722, -25.001654], + [-197.437588, -25.001654], + [-197.437588, -26.44728], + [-204.665722, -26.44728] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -25.001654], + [-204.665722, -23.556027], + [-197.437588, -23.556027], + [-197.437588, -25.001654], + [-204.665722, -25.001654] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -23.556027], + [-204.665722, -22.1104], + [-197.437588, -22.1104], + [-197.437588, -23.556027], + [-204.665722, -23.556027] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -22.1104], + [-204.665722, -20.664773], + [-197.437588, -20.664773], + [-197.437588, -22.1104], + [-204.665722, -22.1104] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -20.664773], + [-204.665722, -19.219147], + [-197.437588, -19.219147], + [-197.437588, -20.664773], + [-204.665722, -20.664773] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -19.219147], + [-204.665722, -17.77352], + [-197.437588, -17.77352], + [-197.437588, -19.219147], + [-204.665722, -19.219147] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -17.77352], + [-204.665722, -16.327893], + [-197.437588, -16.327893], + [-197.437588, -17.77352], + [-204.665722, -17.77352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -16.327893], + [-204.665722, -14.882266], + [-197.437588, -14.882266], + [-197.437588, -16.327893], + [-204.665722, -16.327893] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -14.882266], + [-204.665722, -13.43664], + [-197.437588, -13.43664], + [-197.437588, -14.882266], + [-204.665722, -14.882266] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -13.43664], + [-204.665722, -11.991013], + [-197.437588, -11.991013], + [-197.437588, -13.43664], + [-204.665722, -13.43664] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -11.991013], + [-204.665722, -10.545386], + [-197.437588, -10.545386], + [-197.437588, -11.991013], + [-204.665722, -11.991013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -10.545386], + [-204.665722, -9.099759], + [-197.437588, -9.099759], + [-197.437588, -10.545386], + [-204.665722, -10.545386] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -9.099759], + [-204.665722, -7.654132], + [-197.437588, -7.654132], + [-197.437588, -9.099759], + [-204.665722, -9.099759] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -7.654132], + [-204.665722, -6.208506], + [-197.437588, -6.208506], + [-197.437588, -7.654132], + [-204.665722, -7.654132] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -6.208506], + [-204.665722, -4.762879], + [-197.437588, -4.762879], + [-197.437588, -6.208506], + [-204.665722, -6.208506] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -4.762879], + [-204.665722, -3.317252], + [-197.437588, -3.317252], + [-197.437588, -4.762879], + [-204.665722, -4.762879] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -3.317252], + [-204.665722, -1.871625], + [-197.437588, -1.871625], + [-197.437588, -3.317252], + [-204.665722, -3.317252] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -1.871625], + [-204.665722, -0.425999], + [-197.437588, -0.425999], + [-197.437588, -1.871625], + [-204.665722, -1.871625] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -0.425999], + [-204.665722, 1.019628], + [-197.437588, 1.019628], + [-197.437588, -0.425999], + [-204.665722, -0.425999] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 1.019628], + [-204.665722, 2.465255], + [-197.437588, 2.465255], + [-197.437588, 1.019628], + [-204.665722, 1.019628] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 2.465255], + [-204.665722, 3.910882], + [-197.437588, 3.910882], + [-197.437588, 2.465255], + [-204.665722, 2.465255] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 3.910882], + [-204.665722, 5.356508], + [-197.437588, 5.356508], + [-197.437588, 3.910882], + [-204.665722, 3.910882] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 5.356508], + [-204.665722, 6.802135], + [-197.437588, 6.802135], + [-197.437588, 5.356508], + [-204.665722, 5.356508] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 6.802135], + [-204.665722, 8.247762], + [-197.437588, 8.247762], + [-197.437588, 6.802135], + [-204.665722, 6.802135] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 8.247762], + [-204.665722, 9.693389], + [-197.437588, 9.693389], + [-197.437588, 8.247762], + [-204.665722, 8.247762] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 9.693389], + [-204.665722, 11.139016], + [-197.437588, 11.139016], + [-197.437588, 9.693389], + [-204.665722, 9.693389] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 11.139016], + [-204.665722, 12.584642], + [-197.437588, 12.584642], + [-197.437588, 11.139016], + [-204.665722, 11.139016] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 12.584642], + [-204.665722, 14.030269], + [-197.437588, 14.030269], + [-197.437588, 12.584642], + [-204.665722, 12.584642] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 14.030269], + [-204.665722, 15.475896], + [-197.437588, 15.475896], + [-197.437588, 14.030269], + [-204.665722, 14.030269] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 15.475896], + [-204.665722, 16.921523], + [-197.437588, 16.921523], + [-197.437588, 15.475896], + [-204.665722, 15.475896] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 16.921523], + [-204.665722, 18.367149], + [-197.437588, 18.367149], + [-197.437588, 16.921523], + [-204.665722, 16.921523] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 18.367149], + [-204.665722, 19.812776], + [-197.437588, 19.812776], + [-197.437588, 18.367149], + [-204.665722, 18.367149] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 19.812776], + [-204.665722, 21.258403], + [-197.437588, 21.258403], + [-197.437588, 19.812776], + [-204.665722, 19.812776] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 21.258403], + [-204.665722, 22.70403], + [-197.437588, 22.70403], + [-197.437588, 21.258403], + [-204.665722, 21.258403] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 22.70403], + [-204.665722, 24.149656], + [-197.437588, 24.149656], + [-197.437588, 22.70403], + [-204.665722, 22.70403] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 24.149656], + [-204.665722, 25.595283], + [-197.437588, 25.595283], + [-197.437588, 24.149656], + [-204.665722, 24.149656] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 25.595283], + [-204.665722, 27.04091], + [-197.437588, 27.04091], + [-197.437588, 25.595283], + [-204.665722, 25.595283] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 27.04091], + [-204.665722, 28.486537], + [-197.437588, 28.486537], + [-197.437588, 27.04091], + [-204.665722, 27.04091] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 28.486537], + [-204.665722, 29.932163], + [-197.437588, 29.932163], + [-197.437588, 28.486537], + [-204.665722, 28.486537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 29.932163], + [-204.665722, 31.37779], + [-197.437588, 31.37779], + [-197.437588, 29.932163], + [-204.665722, 29.932163] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 31.37779], + [-204.665722, 32.823417], + [-197.437588, 32.823417], + [-197.437588, 31.37779], + [-204.665722, 31.37779] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 32.823417], + [-204.665722, 34.269044], + [-197.437588, 34.269044], + [-197.437588, 32.823417], + [-204.665722, 32.823417] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 34.269044], + [-204.665722, 35.714671], + [-197.437588, 35.714671], + [-197.437588, 34.269044], + [-204.665722, 34.269044] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 35.714671], + [-204.665722, 37.160297], + [-197.437588, 37.160297], + [-197.437588, 35.714671], + [-204.665722, 35.714671] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 37.160297], + [-204.665722, 38.605924], + [-197.437588, 38.605924], + [-197.437588, 37.160297], + [-204.665722, 37.160297] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 38.605924], + [-204.665722, 40.051551], + [-197.437588, 40.051551], + [-197.437588, 38.605924], + [-204.665722, 38.605924] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 40.051551], + [-204.665722, 41.497178], + [-197.437588, 41.497178], + [-197.437588, 40.051551], + [-204.665722, 40.051551] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 41.497178], + [-204.665722, 42.942804], + [-197.437588, 42.942804], + [-197.437588, 41.497178], + [-204.665722, 41.497178] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 42.942804], + [-204.665722, 44.388431], + [-197.437588, 44.388431], + [-197.437588, 42.942804], + [-204.665722, 42.942804] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 44.388431], + [-204.665722, 45.834058], + [-197.437588, 45.834058], + [-197.437588, 44.388431], + [-204.665722, 44.388431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 45.834058], + [-204.665722, 47.279685], + [-197.437588, 47.279685], + [-197.437588, 45.834058], + [-204.665722, 45.834058] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 47.279685], + [-204.665722, 48.725311], + [-197.437588, 48.725311], + [-197.437588, 47.279685], + [-204.665722, 47.279685] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 48.725311], + [-204.665722, 50.170938], + [-197.437588, 50.170938], + [-197.437588, 48.725311], + [-204.665722, 48.725311] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 50.170938], + [-204.665722, 51.616565], + [-197.437588, 51.616565], + [-197.437588, 50.170938], + [-204.665722, 50.170938] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 51.616565], + [-204.665722, 53.062192], + [-197.437588, 53.062192], + [-197.437588, 51.616565], + [-204.665722, 51.616565] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 53.062192], + [-204.665722, 54.507819], + [-197.437588, 54.507819], + [-197.437588, 53.062192], + [-204.665722, 53.062192] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 54.507819], + [-204.665722, 55.953445], + [-197.437588, 55.953445], + [-197.437588, 54.507819], + [-204.665722, 54.507819] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 55.953445], + [-204.665722, 57.399072], + [-197.437588, 57.399072], + [-197.437588, 55.953445], + [-204.665722, 55.953445] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 57.399072], + [-204.665722, 58.844699], + [-197.437588, 58.844699], + [-197.437588, 57.399072], + [-204.665722, 57.399072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 58.844699], + [-204.665722, 60.290326], + [-197.437588, 60.290326], + [-197.437588, 58.844699], + [-204.665722, 58.844699] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 60.290326], + [-204.665722, 61.735952], + [-197.437588, 61.735952], + [-197.437588, 60.290326], + [-204.665722, 60.290326] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 61.735952], + [-204.665722, 63.181579], + [-197.437588, 63.181579], + [-197.437588, 61.735952], + [-204.665722, 61.735952] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 63.181579], + [-204.665722, 64.627206], + [-197.437588, 64.627206], + [-197.437588, 63.181579], + [-204.665722, 63.181579] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 64.627206], + [-204.665722, 66.072833], + [-197.437588, 66.072833], + [-197.437588, 64.627206], + [-204.665722, 64.627206] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 66.072833], + [-204.665722, 67.518459], + [-197.437588, 67.518459], + [-197.437588, 66.072833], + [-204.665722, 66.072833] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 67.518459], + [-204.665722, 68.964086], + [-197.437588, 68.964086], + [-197.437588, 67.518459], + [-204.665722, 67.518459] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 68.964086], + [-204.665722, 70.409713], + [-197.437588, 70.409713], + [-197.437588, 68.964086], + [-204.665722, 68.964086] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 70.409713], + [-204.665722, 71.85534], + [-197.437588, 71.85534], + [-197.437588, 70.409713], + [-204.665722, 70.409713] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 71.85534], + [-204.665722, 73.300967], + [-197.437588, 73.300967], + [-197.437588, 71.85534], + [-204.665722, 71.85534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 73.300967], + [-204.665722, 74.746593], + [-197.437588, 74.746593], + [-197.437588, 73.300967], + [-204.665722, 73.300967] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 74.746593], + [-204.665722, 76.19222], + [-197.437588, 76.19222], + [-197.437588, 74.746593], + [-204.665722, 74.746593] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 76.19222], + [-204.665722, 77.637847], + [-197.437588, 77.637847], + [-197.437588, 76.19222], + [-204.665722, 76.19222] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -79.935471], + [-197.437588, -78.489844], + [-190.209455, -78.489844], + [-190.209455, -79.935471], + [-197.437588, -79.935471] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -78.489844], + [-197.437588, -77.044217], + [-190.209455, -77.044217], + [-190.209455, -78.489844], + [-197.437588, -78.489844] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -77.044217], + [-197.437588, -75.598591], + [-190.209455, -75.598591], + [-190.209455, -77.044217], + [-197.437588, -77.044217] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -75.598591], + [-197.437588, -74.152964], + [-190.209455, -74.152964], + [-190.209455, -75.598591], + [-197.437588, -75.598591] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -74.152964], + [-197.437588, -72.707337], + [-190.209455, -72.707337], + [-190.209455, -74.152964], + [-197.437588, -74.152964] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -72.707337], + [-197.437588, -71.26171], + [-190.209455, -71.26171], + [-190.209455, -72.707337], + [-197.437588, -72.707337] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -71.26171], + [-197.437588, -69.816084], + [-190.209455, -69.816084], + [-190.209455, -71.26171], + [-197.437588, -71.26171] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -69.816084], + [-197.437588, -68.370457], + [-190.209455, -68.370457], + [-190.209455, -69.816084], + [-197.437588, -69.816084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -68.370457], + [-197.437588, -66.92483], + [-190.209455, -66.92483], + [-190.209455, -68.370457], + [-197.437588, -68.370457] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -66.92483], + [-197.437588, -65.479203], + [-190.209455, -65.479203], + [-190.209455, -66.92483], + [-197.437588, -66.92483] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -65.479203], + [-197.437588, -64.033576], + [-190.209455, -64.033576], + [-190.209455, -65.479203], + [-197.437588, -65.479203] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -64.033576], + [-197.437588, -62.58795], + [-190.209455, -62.58795], + [-190.209455, -64.033576], + [-197.437588, -64.033576] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -62.58795], + [-197.437588, -61.142323], + [-190.209455, -61.142323], + [-190.209455, -62.58795], + [-197.437588, -62.58795] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -61.142323], + [-197.437588, -59.696696], + [-190.209455, -59.696696], + [-190.209455, -61.142323], + [-197.437588, -61.142323] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -59.696696], + [-197.437588, -58.251069], + [-190.209455, -58.251069], + [-190.209455, -59.696696], + [-197.437588, -59.696696] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -58.251069], + [-197.437588, -56.805443], + [-190.209455, -56.805443], + [-190.209455, -58.251069], + [-197.437588, -58.251069] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -56.805443], + [-197.437588, -55.359816], + [-190.209455, -55.359816], + [-190.209455, -56.805443], + [-197.437588, -56.805443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -55.359816], + [-197.437588, -53.914189], + [-190.209455, -53.914189], + [-190.209455, -55.359816], + [-197.437588, -55.359816] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -53.914189], + [-197.437588, -52.468562], + [-190.209455, -52.468562], + [-190.209455, -53.914189], + [-197.437588, -53.914189] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -52.468562], + [-197.437588, -51.022936], + [-190.209455, -51.022936], + [-190.209455, -52.468562], + [-197.437588, -52.468562] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -51.022936], + [-197.437588, -49.577309], + [-190.209455, -49.577309], + [-190.209455, -51.022936], + [-197.437588, -51.022936] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -49.577309], + [-197.437588, -48.131682], + [-190.209455, -48.131682], + [-190.209455, -49.577309], + [-197.437588, -49.577309] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -48.131682], + [-197.437588, -46.686055], + [-190.209455, -46.686055], + [-190.209455, -48.131682], + [-197.437588, -48.131682] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -46.686055], + [-197.437588, -45.240428], + [-190.209455, -45.240428], + [-190.209455, -46.686055], + [-197.437588, -46.686055] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -45.240428], + [-197.437588, -43.794802], + [-190.209455, -43.794802], + [-190.209455, -45.240428], + [-197.437588, -45.240428] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -43.794802], + [-197.437588, -42.349175], + [-190.209455, -42.349175], + [-190.209455, -43.794802], + [-197.437588, -43.794802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -42.349175], + [-197.437588, -40.903548], + [-190.209455, -40.903548], + [-190.209455, -42.349175], + [-197.437588, -42.349175] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -40.903548], + [-197.437588, -39.457921], + [-190.209455, -39.457921], + [-190.209455, -40.903548], + [-197.437588, -40.903548] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -39.457921], + [-197.437588, -38.012295], + [-190.209455, -38.012295], + [-190.209455, -39.457921], + [-197.437588, -39.457921] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -38.012295], + [-197.437588, -36.566668], + [-190.209455, -36.566668], + [-190.209455, -38.012295], + [-197.437588, -38.012295] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -36.566668], + [-197.437588, -35.121041], + [-190.209455, -35.121041], + [-190.209455, -36.566668], + [-197.437588, -36.566668] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -35.121041], + [-197.437588, -33.675414], + [-190.209455, -33.675414], + [-190.209455, -35.121041], + [-197.437588, -35.121041] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -33.675414], + [-197.437588, -32.229788], + [-190.209455, -32.229788], + [-190.209455, -33.675414], + [-197.437588, -33.675414] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -32.229788], + [-197.437588, -30.784161], + [-190.209455, -30.784161], + [-190.209455, -32.229788], + [-197.437588, -32.229788] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -30.784161], + [-197.437588, -29.338534], + [-190.209455, -29.338534], + [-190.209455, -30.784161], + [-197.437588, -30.784161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -29.338534], + [-197.437588, -27.892907], + [-190.209455, -27.892907], + [-190.209455, -29.338534], + [-197.437588, -29.338534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -27.892907], + [-197.437588, -26.44728], + [-190.209455, -26.44728], + [-190.209455, -27.892907], + [-197.437588, -27.892907] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -26.44728], + [-197.437588, -25.001654], + [-190.209455, -25.001654], + [-190.209455, -26.44728], + [-197.437588, -26.44728] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -25.001654], + [-197.437588, -23.556027], + [-190.209455, -23.556027], + [-190.209455, -25.001654], + [-197.437588, -25.001654] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -23.556027], + [-197.437588, -22.1104], + [-190.209455, -22.1104], + [-190.209455, -23.556027], + [-197.437588, -23.556027] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -22.1104], + [-197.437588, -20.664773], + [-190.209455, -20.664773], + [-190.209455, -22.1104], + [-197.437588, -22.1104] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -20.664773], + [-197.437588, -19.219147], + [-190.209455, -19.219147], + [-190.209455, -20.664773], + [-197.437588, -20.664773] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -19.219147], + [-197.437588, -17.77352], + [-190.209455, -17.77352], + [-190.209455, -19.219147], + [-197.437588, -19.219147] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -17.77352], + [-197.437588, -16.327893], + [-190.209455, -16.327893], + [-190.209455, -17.77352], + [-197.437588, -17.77352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -16.327893], + [-197.437588, -14.882266], + [-190.209455, -14.882266], + [-190.209455, -16.327893], + [-197.437588, -16.327893] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -14.882266], + [-197.437588, -13.43664], + [-190.209455, -13.43664], + [-190.209455, -14.882266], + [-197.437588, -14.882266] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -13.43664], + [-197.437588, -11.991013], + [-190.209455, -11.991013], + [-190.209455, -13.43664], + [-197.437588, -13.43664] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -11.991013], + [-197.437588, -10.545386], + [-190.209455, -10.545386], + [-190.209455, -11.991013], + [-197.437588, -11.991013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -10.545386], + [-197.437588, -9.099759], + [-190.209455, -9.099759], + [-190.209455, -10.545386], + [-197.437588, -10.545386] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -9.099759], + [-197.437588, -7.654132], + [-190.209455, -7.654132], + [-190.209455, -9.099759], + [-197.437588, -9.099759] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -7.654132], + [-197.437588, -6.208506], + [-190.209455, -6.208506], + [-190.209455, -7.654132], + [-197.437588, -7.654132] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -6.208506], + [-197.437588, -4.762879], + [-190.209455, -4.762879], + [-190.209455, -6.208506], + [-197.437588, -6.208506] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -4.762879], + [-197.437588, -3.317252], + [-190.209455, -3.317252], + [-190.209455, -4.762879], + [-197.437588, -4.762879] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -3.317252], + [-197.437588, -1.871625], + [-190.209455, -1.871625], + [-190.209455, -3.317252], + [-197.437588, -3.317252] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -1.871625], + [-197.437588, -0.425999], + [-190.209455, -0.425999], + [-190.209455, -1.871625], + [-197.437588, -1.871625] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -0.425999], + [-197.437588, 1.019628], + [-190.209455, 1.019628], + [-190.209455, -0.425999], + [-197.437588, -0.425999] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 1.019628], + [-197.437588, 2.465255], + [-190.209455, 2.465255], + [-190.209455, 1.019628], + [-197.437588, 1.019628] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 2.465255], + [-197.437588, 3.910882], + [-190.209455, 3.910882], + [-190.209455, 2.465255], + [-197.437588, 2.465255] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 3.910882], + [-197.437588, 5.356508], + [-190.209455, 5.356508], + [-190.209455, 3.910882], + [-197.437588, 3.910882] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 5.356508], + [-197.437588, 6.802135], + [-190.209455, 6.802135], + [-190.209455, 5.356508], + [-197.437588, 5.356508] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 6.802135], + [-197.437588, 8.247762], + [-190.209455, 8.247762], + [-190.209455, 6.802135], + [-197.437588, 6.802135] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 8.247762], + [-197.437588, 9.693389], + [-190.209455, 9.693389], + [-190.209455, 8.247762], + [-197.437588, 8.247762] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 9.693389], + [-197.437588, 11.139016], + [-190.209455, 11.139016], + [-190.209455, 9.693389], + [-197.437588, 9.693389] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 11.139016], + [-197.437588, 12.584642], + [-190.209455, 12.584642], + [-190.209455, 11.139016], + [-197.437588, 11.139016] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 12.584642], + [-197.437588, 14.030269], + [-190.209455, 14.030269], + [-190.209455, 12.584642], + [-197.437588, 12.584642] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 14.030269], + [-197.437588, 15.475896], + [-190.209455, 15.475896], + [-190.209455, 14.030269], + [-197.437588, 14.030269] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 15.475896], + [-197.437588, 16.921523], + [-190.209455, 16.921523], + [-190.209455, 15.475896], + [-197.437588, 15.475896] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 16.921523], + [-197.437588, 18.367149], + [-190.209455, 18.367149], + [-190.209455, 16.921523], + [-197.437588, 16.921523] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 18.367149], + [-197.437588, 19.812776], + [-190.209455, 19.812776], + [-190.209455, 18.367149], + [-197.437588, 18.367149] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 19.812776], + [-197.437588, 21.258403], + [-190.209455, 21.258403], + [-190.209455, 19.812776], + [-197.437588, 19.812776] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 21.258403], + [-197.437588, 22.70403], + [-190.209455, 22.70403], + [-190.209455, 21.258403], + [-197.437588, 21.258403] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 22.70403], + [-197.437588, 24.149656], + [-190.209455, 24.149656], + [-190.209455, 22.70403], + [-197.437588, 22.70403] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 24.149656], + [-197.437588, 25.595283], + [-190.209455, 25.595283], + [-190.209455, 24.149656], + [-197.437588, 24.149656] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 25.595283], + [-197.437588, 27.04091], + [-190.209455, 27.04091], + [-190.209455, 25.595283], + [-197.437588, 25.595283] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 27.04091], + [-197.437588, 28.486537], + [-190.209455, 28.486537], + [-190.209455, 27.04091], + [-197.437588, 27.04091] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 28.486537], + [-197.437588, 29.932163], + [-190.209455, 29.932163], + [-190.209455, 28.486537], + [-197.437588, 28.486537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 29.932163], + [-197.437588, 31.37779], + [-190.209455, 31.37779], + [-190.209455, 29.932163], + [-197.437588, 29.932163] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 31.37779], + [-197.437588, 32.823417], + [-190.209455, 32.823417], + [-190.209455, 31.37779], + [-197.437588, 31.37779] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 32.823417], + [-197.437588, 34.269044], + [-190.209455, 34.269044], + [-190.209455, 32.823417], + [-197.437588, 32.823417] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 34.269044], + [-197.437588, 35.714671], + [-190.209455, 35.714671], + [-190.209455, 34.269044], + [-197.437588, 34.269044] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 35.714671], + [-197.437588, 37.160297], + [-190.209455, 37.160297], + [-190.209455, 35.714671], + [-197.437588, 35.714671] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 37.160297], + [-197.437588, 38.605924], + [-190.209455, 38.605924], + [-190.209455, 37.160297], + [-197.437588, 37.160297] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 38.605924], + [-197.437588, 40.051551], + [-190.209455, 40.051551], + [-190.209455, 38.605924], + [-197.437588, 38.605924] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 40.051551], + [-197.437588, 41.497178], + [-190.209455, 41.497178], + [-190.209455, 40.051551], + [-197.437588, 40.051551] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 41.497178], + [-197.437588, 42.942804], + [-190.209455, 42.942804], + [-190.209455, 41.497178], + [-197.437588, 41.497178] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 42.942804], + [-197.437588, 44.388431], + [-190.209455, 44.388431], + [-190.209455, 42.942804], + [-197.437588, 42.942804] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 44.388431], + [-197.437588, 45.834058], + [-190.209455, 45.834058], + [-190.209455, 44.388431], + [-197.437588, 44.388431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 45.834058], + [-197.437588, 47.279685], + [-190.209455, 47.279685], + [-190.209455, 45.834058], + [-197.437588, 45.834058] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 47.279685], + [-197.437588, 48.725311], + [-190.209455, 48.725311], + [-190.209455, 47.279685], + [-197.437588, 47.279685] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 48.725311], + [-197.437588, 50.170938], + [-190.209455, 50.170938], + [-190.209455, 48.725311], + [-197.437588, 48.725311] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 50.170938], + [-197.437588, 51.616565], + [-190.209455, 51.616565], + [-190.209455, 50.170938], + [-197.437588, 50.170938] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 51.616565], + [-197.437588, 53.062192], + [-190.209455, 53.062192], + [-190.209455, 51.616565], + [-197.437588, 51.616565] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 53.062192], + [-197.437588, 54.507819], + [-190.209455, 54.507819], + [-190.209455, 53.062192], + [-197.437588, 53.062192] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 54.507819], + [-197.437588, 55.953445], + [-190.209455, 55.953445], + [-190.209455, 54.507819], + [-197.437588, 54.507819] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 55.953445], + [-197.437588, 57.399072], + [-190.209455, 57.399072], + [-190.209455, 55.953445], + [-197.437588, 55.953445] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 57.399072], + [-197.437588, 58.844699], + [-190.209455, 58.844699], + [-190.209455, 57.399072], + [-197.437588, 57.399072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 58.844699], + [-197.437588, 60.290326], + [-190.209455, 60.290326], + [-190.209455, 58.844699], + [-197.437588, 58.844699] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 60.290326], + [-197.437588, 61.735952], + [-190.209455, 61.735952], + [-190.209455, 60.290326], + [-197.437588, 60.290326] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 61.735952], + [-197.437588, 63.181579], + [-190.209455, 63.181579], + [-190.209455, 61.735952], + [-197.437588, 61.735952] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 63.181579], + [-197.437588, 64.627206], + [-190.209455, 64.627206], + [-190.209455, 63.181579], + [-197.437588, 63.181579] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 64.627206], + [-197.437588, 66.072833], + [-190.209455, 66.072833], + [-190.209455, 64.627206], + [-197.437588, 64.627206] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 66.072833], + [-197.437588, 67.518459], + [-190.209455, 67.518459], + [-190.209455, 66.072833], + [-197.437588, 66.072833] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 67.518459], + [-197.437588, 68.964086], + [-190.209455, 68.964086], + [-190.209455, 67.518459], + [-197.437588, 67.518459] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 68.964086], + [-197.437588, 70.409713], + [-190.209455, 70.409713], + [-190.209455, 68.964086], + [-197.437588, 68.964086] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 70.409713], + [-197.437588, 71.85534], + [-190.209455, 71.85534], + [-190.209455, 70.409713], + [-197.437588, 70.409713] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 71.85534], + [-197.437588, 73.300967], + [-190.209455, 73.300967], + [-190.209455, 71.85534], + [-197.437588, 71.85534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 73.300967], + [-197.437588, 74.746593], + [-190.209455, 74.746593], + [-190.209455, 73.300967], + [-197.437588, 73.300967] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 74.746593], + [-197.437588, 76.19222], + [-190.209455, 76.19222], + [-190.209455, 74.746593], + [-197.437588, 74.746593] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 76.19222], + [-197.437588, 77.637847], + [-190.209455, 77.637847], + [-190.209455, 76.19222], + [-197.437588, 76.19222] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -79.935471], + [-190.209455, -78.489844], + [-182.981321, -78.489844], + [-182.981321, -79.935471], + [-190.209455, -79.935471] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -78.489844], + [-190.209455, -77.044217], + [-182.981321, -77.044217], + [-182.981321, -78.489844], + [-190.209455, -78.489844] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -77.044217], + [-190.209455, -75.598591], + [-182.981321, -75.598591], + [-182.981321, -77.044217], + [-190.209455, -77.044217] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -75.598591], + [-190.209455, -74.152964], + [-182.981321, -74.152964], + [-182.981321, -75.598591], + [-190.209455, -75.598591] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -74.152964], + [-190.209455, -72.707337], + [-182.981321, -72.707337], + [-182.981321, -74.152964], + [-190.209455, -74.152964] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -72.707337], + [-190.209455, -71.26171], + [-182.981321, -71.26171], + [-182.981321, -72.707337], + [-190.209455, -72.707337] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -71.26171], + [-190.209455, -69.816084], + [-182.981321, -69.816084], + [-182.981321, -71.26171], + [-190.209455, -71.26171] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -69.816084], + [-190.209455, -68.370457], + [-182.981321, -68.370457], + [-182.981321, -69.816084], + [-190.209455, -69.816084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -68.370457], + [-190.209455, -66.92483], + [-182.981321, -66.92483], + [-182.981321, -68.370457], + [-190.209455, -68.370457] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -66.92483], + [-190.209455, -65.479203], + [-182.981321, -65.479203], + [-182.981321, -66.92483], + [-190.209455, -66.92483] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -65.479203], + [-190.209455, -64.033576], + [-182.981321, -64.033576], + [-182.981321, -65.479203], + [-190.209455, -65.479203] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -64.033576], + [-190.209455, -62.58795], + [-182.981321, -62.58795], + [-182.981321, -64.033576], + [-190.209455, -64.033576] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -62.58795], + [-190.209455, -61.142323], + [-182.981321, -61.142323], + [-182.981321, -62.58795], + [-190.209455, -62.58795] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -61.142323], + [-190.209455, -59.696696], + [-182.981321, -59.696696], + [-182.981321, -61.142323], + [-190.209455, -61.142323] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -59.696696], + [-190.209455, -58.251069], + [-182.981321, -58.251069], + [-182.981321, -59.696696], + [-190.209455, -59.696696] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -58.251069], + [-190.209455, -56.805443], + [-182.981321, -56.805443], + [-182.981321, -58.251069], + [-190.209455, -58.251069] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -56.805443], + [-190.209455, -55.359816], + [-182.981321, -55.359816], + [-182.981321, -56.805443], + [-190.209455, -56.805443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -55.359816], + [-190.209455, -53.914189], + [-182.981321, -53.914189], + [-182.981321, -55.359816], + [-190.209455, -55.359816] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -53.914189], + [-190.209455, -52.468562], + [-182.981321, -52.468562], + [-182.981321, -53.914189], + [-190.209455, -53.914189] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -52.468562], + [-190.209455, -51.022936], + [-182.981321, -51.022936], + [-182.981321, -52.468562], + [-190.209455, -52.468562] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -51.022936], + [-190.209455, -49.577309], + [-182.981321, -49.577309], + [-182.981321, -51.022936], + [-190.209455, -51.022936] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -49.577309], + [-190.209455, -48.131682], + [-182.981321, -48.131682], + [-182.981321, -49.577309], + [-190.209455, -49.577309] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -48.131682], + [-190.209455, -46.686055], + [-182.981321, -46.686055], + [-182.981321, -48.131682], + [-190.209455, -48.131682] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -46.686055], + [-190.209455, -45.240428], + [-182.981321, -45.240428], + [-182.981321, -46.686055], + [-190.209455, -46.686055] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -45.240428], + [-190.209455, -43.794802], + [-182.981321, -43.794802], + [-182.981321, -45.240428], + [-190.209455, -45.240428] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -43.794802], + [-190.209455, -42.349175], + [-182.981321, -42.349175], + [-182.981321, -43.794802], + [-190.209455, -43.794802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -42.349175], + [-190.209455, -40.903548], + [-182.981321, -40.903548], + [-182.981321, -42.349175], + [-190.209455, -42.349175] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -40.903548], + [-190.209455, -39.457921], + [-182.981321, -39.457921], + [-182.981321, -40.903548], + [-190.209455, -40.903548] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -39.457921], + [-190.209455, -38.012295], + [-182.981321, -38.012295], + [-182.981321, -39.457921], + [-190.209455, -39.457921] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -38.012295], + [-190.209455, -36.566668], + [-182.981321, -36.566668], + [-182.981321, -38.012295], + [-190.209455, -38.012295] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -36.566668], + [-190.209455, -35.121041], + [-182.981321, -35.121041], + [-182.981321, -36.566668], + [-190.209455, -36.566668] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -35.121041], + [-190.209455, -33.675414], + [-182.981321, -33.675414], + [-182.981321, -35.121041], + [-190.209455, -35.121041] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -33.675414], + [-190.209455, -32.229788], + [-182.981321, -32.229788], + [-182.981321, -33.675414], + [-190.209455, -33.675414] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -32.229788], + [-190.209455, -30.784161], + [-182.981321, -30.784161], + [-182.981321, -32.229788], + [-190.209455, -32.229788] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -30.784161], + [-190.209455, -29.338534], + [-182.981321, -29.338534], + [-182.981321, -30.784161], + [-190.209455, -30.784161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -29.338534], + [-190.209455, -27.892907], + [-182.981321, -27.892907], + [-182.981321, -29.338534], + [-190.209455, -29.338534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -27.892907], + [-190.209455, -26.44728], + [-182.981321, -26.44728], + [-182.981321, -27.892907], + [-190.209455, -27.892907] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -26.44728], + [-190.209455, -25.001654], + [-182.981321, -25.001654], + [-182.981321, -26.44728], + [-190.209455, -26.44728] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -25.001654], + [-190.209455, -23.556027], + [-182.981321, -23.556027], + [-182.981321, -25.001654], + [-190.209455, -25.001654] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -23.556027], + [-190.209455, -22.1104], + [-182.981321, -22.1104], + [-182.981321, -23.556027], + [-190.209455, -23.556027] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -22.1104], + [-190.209455, -20.664773], + [-182.981321, -20.664773], + [-182.981321, -22.1104], + [-190.209455, -22.1104] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -20.664773], + [-190.209455, -19.219147], + [-182.981321, -19.219147], + [-182.981321, -20.664773], + [-190.209455, -20.664773] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -19.219147], + [-190.209455, -17.77352], + [-182.981321, -17.77352], + [-182.981321, -19.219147], + [-190.209455, -19.219147] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -17.77352], + [-190.209455, -16.327893], + [-182.981321, -16.327893], + [-182.981321, -17.77352], + [-190.209455, -17.77352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -16.327893], + [-190.209455, -14.882266], + [-182.981321, -14.882266], + [-182.981321, -16.327893], + [-190.209455, -16.327893] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -14.882266], + [-190.209455, -13.43664], + [-182.981321, -13.43664], + [-182.981321, -14.882266], + [-190.209455, -14.882266] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -13.43664], + [-190.209455, -11.991013], + [-182.981321, -11.991013], + [-182.981321, -13.43664], + [-190.209455, -13.43664] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -11.991013], + [-190.209455, -10.545386], + [-182.981321, -10.545386], + [-182.981321, -11.991013], + [-190.209455, -11.991013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -10.545386], + [-190.209455, -9.099759], + [-182.981321, -9.099759], + [-182.981321, -10.545386], + [-190.209455, -10.545386] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -9.099759], + [-190.209455, -7.654132], + [-182.981321, -7.654132], + [-182.981321, -9.099759], + [-190.209455, -9.099759] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -7.654132], + [-190.209455, -6.208506], + [-182.981321, -6.208506], + [-182.981321, -7.654132], + [-190.209455, -7.654132] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -6.208506], + [-190.209455, -4.762879], + [-182.981321, -4.762879], + [-182.981321, -6.208506], + [-190.209455, -6.208506] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -4.762879], + [-190.209455, -3.317252], + [-182.981321, -3.317252], + [-182.981321, -4.762879], + [-190.209455, -4.762879] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -3.317252], + [-190.209455, -1.871625], + [-182.981321, -1.871625], + [-182.981321, -3.317252], + [-190.209455, -3.317252] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -1.871625], + [-190.209455, -0.425999], + [-182.981321, -0.425999], + [-182.981321, -1.871625], + [-190.209455, -1.871625] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -0.425999], + [-190.209455, 1.019628], + [-182.981321, 1.019628], + [-182.981321, -0.425999], + [-190.209455, -0.425999] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 1.019628], + [-190.209455, 2.465255], + [-182.981321, 2.465255], + [-182.981321, 1.019628], + [-190.209455, 1.019628] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 2.465255], + [-190.209455, 3.910882], + [-182.981321, 3.910882], + [-182.981321, 2.465255], + [-190.209455, 2.465255] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 3.910882], + [-190.209455, 5.356508], + [-182.981321, 5.356508], + [-182.981321, 3.910882], + [-190.209455, 3.910882] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 5.356508], + [-190.209455, 6.802135], + [-182.981321, 6.802135], + [-182.981321, 5.356508], + [-190.209455, 5.356508] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 6.802135], + [-190.209455, 8.247762], + [-182.981321, 8.247762], + [-182.981321, 6.802135], + [-190.209455, 6.802135] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 8.247762], + [-190.209455, 9.693389], + [-182.981321, 9.693389], + [-182.981321, 8.247762], + [-190.209455, 8.247762] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 9.693389], + [-190.209455, 11.139016], + [-182.981321, 11.139016], + [-182.981321, 9.693389], + [-190.209455, 9.693389] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 11.139016], + [-190.209455, 12.584642], + [-182.981321, 12.584642], + [-182.981321, 11.139016], + [-190.209455, 11.139016] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 12.584642], + [-190.209455, 14.030269], + [-182.981321, 14.030269], + [-182.981321, 12.584642], + [-190.209455, 12.584642] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 14.030269], + [-190.209455, 15.475896], + [-182.981321, 15.475896], + [-182.981321, 14.030269], + [-190.209455, 14.030269] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 15.475896], + [-190.209455, 16.921523], + [-182.981321, 16.921523], + [-182.981321, 15.475896], + [-190.209455, 15.475896] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 16.921523], + [-190.209455, 18.367149], + [-182.981321, 18.367149], + [-182.981321, 16.921523], + [-190.209455, 16.921523] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 18.367149], + [-190.209455, 19.812776], + [-182.981321, 19.812776], + [-182.981321, 18.367149], + [-190.209455, 18.367149] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 19.812776], + [-190.209455, 21.258403], + [-182.981321, 21.258403], + [-182.981321, 19.812776], + [-190.209455, 19.812776] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 21.258403], + [-190.209455, 22.70403], + [-182.981321, 22.70403], + [-182.981321, 21.258403], + [-190.209455, 21.258403] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 22.70403], + [-190.209455, 24.149656], + [-182.981321, 24.149656], + [-182.981321, 22.70403], + [-190.209455, 22.70403] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 24.149656], + [-190.209455, 25.595283], + [-182.981321, 25.595283], + [-182.981321, 24.149656], + [-190.209455, 24.149656] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 25.595283], + [-190.209455, 27.04091], + [-182.981321, 27.04091], + [-182.981321, 25.595283], + [-190.209455, 25.595283] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 27.04091], + [-190.209455, 28.486537], + [-182.981321, 28.486537], + [-182.981321, 27.04091], + [-190.209455, 27.04091] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 28.486537], + [-190.209455, 29.932163], + [-182.981321, 29.932163], + [-182.981321, 28.486537], + [-190.209455, 28.486537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 29.932163], + [-190.209455, 31.37779], + [-182.981321, 31.37779], + [-182.981321, 29.932163], + [-190.209455, 29.932163] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 31.37779], + [-190.209455, 32.823417], + [-182.981321, 32.823417], + [-182.981321, 31.37779], + [-190.209455, 31.37779] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 32.823417], + [-190.209455, 34.269044], + [-182.981321, 34.269044], + [-182.981321, 32.823417], + [-190.209455, 32.823417] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 34.269044], + [-190.209455, 35.714671], + [-182.981321, 35.714671], + [-182.981321, 34.269044], + [-190.209455, 34.269044] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 35.714671], + [-190.209455, 37.160297], + [-182.981321, 37.160297], + [-182.981321, 35.714671], + [-190.209455, 35.714671] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 37.160297], + [-190.209455, 38.605924], + [-182.981321, 38.605924], + [-182.981321, 37.160297], + [-190.209455, 37.160297] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 38.605924], + [-190.209455, 40.051551], + [-182.981321, 40.051551], + [-182.981321, 38.605924], + [-190.209455, 38.605924] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 40.051551], + [-190.209455, 41.497178], + [-182.981321, 41.497178], + [-182.981321, 40.051551], + [-190.209455, 40.051551] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 41.497178], + [-190.209455, 42.942804], + [-182.981321, 42.942804], + [-182.981321, 41.497178], + [-190.209455, 41.497178] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 42.942804], + [-190.209455, 44.388431], + [-182.981321, 44.388431], + [-182.981321, 42.942804], + [-190.209455, 42.942804] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 44.388431], + [-190.209455, 45.834058], + [-182.981321, 45.834058], + [-182.981321, 44.388431], + [-190.209455, 44.388431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 45.834058], + [-190.209455, 47.279685], + [-182.981321, 47.279685], + [-182.981321, 45.834058], + [-190.209455, 45.834058] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 47.279685], + [-190.209455, 48.725311], + [-182.981321, 48.725311], + [-182.981321, 47.279685], + [-190.209455, 47.279685] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 48.725311], + [-190.209455, 50.170938], + [-182.981321, 50.170938], + [-182.981321, 48.725311], + [-190.209455, 48.725311] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 50.170938], + [-190.209455, 51.616565], + [-182.981321, 51.616565], + [-182.981321, 50.170938], + [-190.209455, 50.170938] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 51.616565], + [-190.209455, 53.062192], + [-182.981321, 53.062192], + [-182.981321, 51.616565], + [-190.209455, 51.616565] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 53.062192], + [-190.209455, 54.507819], + [-182.981321, 54.507819], + [-182.981321, 53.062192], + [-190.209455, 53.062192] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 54.507819], + [-190.209455, 55.953445], + [-182.981321, 55.953445], + [-182.981321, 54.507819], + [-190.209455, 54.507819] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 55.953445], + [-190.209455, 57.399072], + [-182.981321, 57.399072], + [-182.981321, 55.953445], + [-190.209455, 55.953445] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 57.399072], + [-190.209455, 58.844699], + [-182.981321, 58.844699], + [-182.981321, 57.399072], + [-190.209455, 57.399072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 58.844699], + [-190.209455, 60.290326], + [-182.981321, 60.290326], + [-182.981321, 58.844699], + [-190.209455, 58.844699] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 60.290326], + [-190.209455, 61.735952], + [-182.981321, 61.735952], + [-182.981321, 60.290326], + [-190.209455, 60.290326] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 61.735952], + [-190.209455, 63.181579], + [-182.981321, 63.181579], + [-182.981321, 61.735952], + [-190.209455, 61.735952] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 63.181579], + [-190.209455, 64.627206], + [-182.981321, 64.627206], + [-182.981321, 63.181579], + [-190.209455, 63.181579] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 64.627206], + [-190.209455, 66.072833], + [-182.981321, 66.072833], + [-182.981321, 64.627206], + [-190.209455, 64.627206] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 66.072833], + [-190.209455, 67.518459], + [-182.981321, 67.518459], + [-182.981321, 66.072833], + [-190.209455, 66.072833] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 67.518459], + [-190.209455, 68.964086], + [-182.981321, 68.964086], + [-182.981321, 67.518459], + [-190.209455, 67.518459] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 68.964086], + [-190.209455, 70.409713], + [-182.981321, 70.409713], + [-182.981321, 68.964086], + [-190.209455, 68.964086] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 70.409713], + [-190.209455, 71.85534], + [-182.981321, 71.85534], + [-182.981321, 70.409713], + [-190.209455, 70.409713] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 71.85534], + [-190.209455, 73.300967], + [-182.981321, 73.300967], + [-182.981321, 71.85534], + [-190.209455, 71.85534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 73.300967], + [-190.209455, 74.746593], + [-182.981321, 74.746593], + [-182.981321, 73.300967], + [-190.209455, 73.300967] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 74.746593], + [-190.209455, 76.19222], + [-182.981321, 76.19222], + [-182.981321, 74.746593], + [-190.209455, 74.746593] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 76.19222], + [-190.209455, 77.637847], + [-182.981321, 77.637847], + [-182.981321, 76.19222], + [-190.209455, 76.19222] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -79.935471], + [-182.981321, -78.489844], + [-175.753187, -78.489844], + [-175.753187, -79.935471], + [-182.981321, -79.935471] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -78.489844], + [-182.981321, -77.044217], + [-175.753187, -77.044217], + [-175.753187, -78.489844], + [-182.981321, -78.489844] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -77.044217], + [-182.981321, -75.598591], + [-175.753187, -75.598591], + [-175.753187, -77.044217], + [-182.981321, -77.044217] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -75.598591], + [-182.981321, -74.152964], + [-175.753187, -74.152964], + [-175.753187, -75.598591], + [-182.981321, -75.598591] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -74.152964], + [-182.981321, -72.707337], + [-175.753187, -72.707337], + [-175.753187, -74.152964], + [-182.981321, -74.152964] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -72.707337], + [-182.981321, -71.26171], + [-175.753187, -71.26171], + [-175.753187, -72.707337], + [-182.981321, -72.707337] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -71.26171], + [-182.981321, -69.816084], + [-175.753187, -69.816084], + [-175.753187, -71.26171], + [-182.981321, -71.26171] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -69.816084], + [-182.981321, -68.370457], + [-175.753187, -68.370457], + [-175.753187, -69.816084], + [-182.981321, -69.816084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -68.370457], + [-182.981321, -66.92483], + [-175.753187, -66.92483], + [-175.753187, -68.370457], + [-182.981321, -68.370457] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -66.92483], + [-182.981321, -65.479203], + [-175.753187, -65.479203], + [-175.753187, -66.92483], + [-182.981321, -66.92483] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -65.479203], + [-182.981321, -64.033576], + [-175.753187, -64.033576], + [-175.753187, -65.479203], + [-182.981321, -65.479203] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -64.033576], + [-182.981321, -62.58795], + [-175.753187, -62.58795], + [-175.753187, -64.033576], + [-182.981321, -64.033576] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -62.58795], + [-182.981321, -61.142323], + [-175.753187, -61.142323], + [-175.753187, -62.58795], + [-182.981321, -62.58795] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -61.142323], + [-182.981321, -59.696696], + [-175.753187, -59.696696], + [-175.753187, -61.142323], + [-182.981321, -61.142323] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -59.696696], + [-182.981321, -58.251069], + [-175.753187, -58.251069], + [-175.753187, -59.696696], + [-182.981321, -59.696696] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -58.251069], + [-182.981321, -56.805443], + [-175.753187, -56.805443], + [-175.753187, -58.251069], + [-182.981321, -58.251069] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -56.805443], + [-182.981321, -55.359816], + [-175.753187, -55.359816], + [-175.753187, -56.805443], + [-182.981321, -56.805443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -55.359816], + [-182.981321, -53.914189], + [-175.753187, -53.914189], + [-175.753187, -55.359816], + [-182.981321, -55.359816] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -53.914189], + [-182.981321, -52.468562], + [-175.753187, -52.468562], + [-175.753187, -53.914189], + [-182.981321, -53.914189] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -52.468562], + [-182.981321, -51.022936], + [-175.753187, -51.022936], + [-175.753187, -52.468562], + [-182.981321, -52.468562] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -51.022936], + [-182.981321, -49.577309], + [-175.753187, -49.577309], + [-175.753187, -51.022936], + [-182.981321, -51.022936] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -49.577309], + [-182.981321, -48.131682], + [-175.753187, -48.131682], + [-175.753187, -49.577309], + [-182.981321, -49.577309] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -48.131682], + [-182.981321, -46.686055], + [-175.753187, -46.686055], + [-175.753187, -48.131682], + [-182.981321, -48.131682] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -46.686055], + [-182.981321, -45.240428], + [-175.753187, -45.240428], + [-175.753187, -46.686055], + [-182.981321, -46.686055] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -45.240428], + [-182.981321, -43.794802], + [-175.753187, -43.794802], + [-175.753187, -45.240428], + [-182.981321, -45.240428] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -43.794802], + [-182.981321, -42.349175], + [-175.753187, -42.349175], + [-175.753187, -43.794802], + [-182.981321, -43.794802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -42.349175], + [-182.981321, -40.903548], + [-175.753187, -40.903548], + [-175.753187, -42.349175], + [-182.981321, -42.349175] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -40.903548], + [-182.981321, -39.457921], + [-175.753187, -39.457921], + [-175.753187, -40.903548], + [-182.981321, -40.903548] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -39.457921], + [-182.981321, -38.012295], + [-175.753187, -38.012295], + [-175.753187, -39.457921], + [-182.981321, -39.457921] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -38.012295], + [-182.981321, -36.566668], + [-175.753187, -36.566668], + [-175.753187, -38.012295], + [-182.981321, -38.012295] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -36.566668], + [-182.981321, -35.121041], + [-175.753187, -35.121041], + [-175.753187, -36.566668], + [-182.981321, -36.566668] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -35.121041], + [-182.981321, -33.675414], + [-175.753187, -33.675414], + [-175.753187, -35.121041], + [-182.981321, -35.121041] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -33.675414], + [-182.981321, -32.229788], + [-175.753187, -32.229788], + [-175.753187, -33.675414], + [-182.981321, -33.675414] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -32.229788], + [-182.981321, -30.784161], + [-175.753187, -30.784161], + [-175.753187, -32.229788], + [-182.981321, -32.229788] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -30.784161], + [-182.981321, -29.338534], + [-175.753187, -29.338534], + [-175.753187, -30.784161], + [-182.981321, -30.784161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -29.338534], + [-182.981321, -27.892907], + [-175.753187, -27.892907], + [-175.753187, -29.338534], + [-182.981321, -29.338534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -27.892907], + [-182.981321, -26.44728], + [-175.753187, -26.44728], + [-175.753187, -27.892907], + [-182.981321, -27.892907] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -26.44728], + [-182.981321, -25.001654], + [-175.753187, -25.001654], + [-175.753187, -26.44728], + [-182.981321, -26.44728] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -25.001654], + [-182.981321, -23.556027], + [-175.753187, -23.556027], + [-175.753187, -25.001654], + [-182.981321, -25.001654] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -23.556027], + [-182.981321, -22.1104], + [-175.753187, -22.1104], + [-175.753187, -23.556027], + [-182.981321, -23.556027] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -22.1104], + [-182.981321, -20.664773], + [-175.753187, -20.664773], + [-175.753187, -22.1104], + [-182.981321, -22.1104] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -20.664773], + [-182.981321, -19.219147], + [-175.753187, -19.219147], + [-175.753187, -20.664773], + [-182.981321, -20.664773] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -19.219147], + [-182.981321, -17.77352], + [-175.753187, -17.77352], + [-175.753187, -19.219147], + [-182.981321, -19.219147] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -17.77352], + [-182.981321, -16.327893], + [-175.753187, -16.327893], + [-175.753187, -17.77352], + [-182.981321, -17.77352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -16.327893], + [-182.981321, -14.882266], + [-175.753187, -14.882266], + [-175.753187, -16.327893], + [-182.981321, -16.327893] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -14.882266], + [-182.981321, -13.43664], + [-175.753187, -13.43664], + [-175.753187, -14.882266], + [-182.981321, -14.882266] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -13.43664], + [-182.981321, -11.991013], + [-175.753187, -11.991013], + [-175.753187, -13.43664], + [-182.981321, -13.43664] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -11.991013], + [-182.981321, -10.545386], + [-175.753187, -10.545386], + [-175.753187, -11.991013], + [-182.981321, -11.991013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -10.545386], + [-182.981321, -9.099759], + [-175.753187, -9.099759], + [-175.753187, -10.545386], + [-182.981321, -10.545386] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -9.099759], + [-182.981321, -7.654132], + [-175.753187, -7.654132], + [-175.753187, -9.099759], + [-182.981321, -9.099759] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -7.654132], + [-182.981321, -6.208506], + [-175.753187, -6.208506], + [-175.753187, -7.654132], + [-182.981321, -7.654132] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -6.208506], + [-182.981321, -4.762879], + [-175.753187, -4.762879], + [-175.753187, -6.208506], + [-182.981321, -6.208506] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -4.762879], + [-182.981321, -3.317252], + [-175.753187, -3.317252], + [-175.753187, -4.762879], + [-182.981321, -4.762879] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -3.317252], + [-182.981321, -1.871625], + [-175.753187, -1.871625], + [-175.753187, -3.317252], + [-182.981321, -3.317252] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -1.871625], + [-182.981321, -0.425999], + [-175.753187, -0.425999], + [-175.753187, -1.871625], + [-182.981321, -1.871625] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -0.425999], + [-182.981321, 1.019628], + [-175.753187, 1.019628], + [-175.753187, -0.425999], + [-182.981321, -0.425999] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 1.019628], + [-182.981321, 2.465255], + [-175.753187, 2.465255], + [-175.753187, 1.019628], + [-182.981321, 1.019628] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 2.465255], + [-182.981321, 3.910882], + [-175.753187, 3.910882], + [-175.753187, 2.465255], + [-182.981321, 2.465255] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 3.910882], + [-182.981321, 5.356508], + [-175.753187, 5.356508], + [-175.753187, 3.910882], + [-182.981321, 3.910882] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 5.356508], + [-182.981321, 6.802135], + [-175.753187, 6.802135], + [-175.753187, 5.356508], + [-182.981321, 5.356508] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 6.802135], + [-182.981321, 8.247762], + [-175.753187, 8.247762], + [-175.753187, 6.802135], + [-182.981321, 6.802135] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 8.247762], + [-182.981321, 9.693389], + [-175.753187, 9.693389], + [-175.753187, 8.247762], + [-182.981321, 8.247762] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 9.693389], + [-182.981321, 11.139016], + [-175.753187, 11.139016], + [-175.753187, 9.693389], + [-182.981321, 9.693389] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 11.139016], + [-182.981321, 12.584642], + [-175.753187, 12.584642], + [-175.753187, 11.139016], + [-182.981321, 11.139016] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 12.584642], + [-182.981321, 14.030269], + [-175.753187, 14.030269], + [-175.753187, 12.584642], + [-182.981321, 12.584642] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 14.030269], + [-182.981321, 15.475896], + [-175.753187, 15.475896], + [-175.753187, 14.030269], + [-182.981321, 14.030269] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 15.475896], + [-182.981321, 16.921523], + [-175.753187, 16.921523], + [-175.753187, 15.475896], + [-182.981321, 15.475896] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 16.921523], + [-182.981321, 18.367149], + [-175.753187, 18.367149], + [-175.753187, 16.921523], + [-182.981321, 16.921523] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 18.367149], + [-182.981321, 19.812776], + [-175.753187, 19.812776], + [-175.753187, 18.367149], + [-182.981321, 18.367149] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 19.812776], + [-182.981321, 21.258403], + [-175.753187, 21.258403], + [-175.753187, 19.812776], + [-182.981321, 19.812776] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 21.258403], + [-182.981321, 22.70403], + [-175.753187, 22.70403], + [-175.753187, 21.258403], + [-182.981321, 21.258403] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 22.70403], + [-182.981321, 24.149656], + [-175.753187, 24.149656], + [-175.753187, 22.70403], + [-182.981321, 22.70403] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 24.149656], + [-182.981321, 25.595283], + [-175.753187, 25.595283], + [-175.753187, 24.149656], + [-182.981321, 24.149656] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 25.595283], + [-182.981321, 27.04091], + [-175.753187, 27.04091], + [-175.753187, 25.595283], + [-182.981321, 25.595283] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 27.04091], + [-182.981321, 28.486537], + [-175.753187, 28.486537], + [-175.753187, 27.04091], + [-182.981321, 27.04091] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 28.486537], + [-182.981321, 29.932163], + [-175.753187, 29.932163], + [-175.753187, 28.486537], + [-182.981321, 28.486537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 29.932163], + [-182.981321, 31.37779], + [-175.753187, 31.37779], + [-175.753187, 29.932163], + [-182.981321, 29.932163] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 31.37779], + [-182.981321, 32.823417], + [-175.753187, 32.823417], + [-175.753187, 31.37779], + [-182.981321, 31.37779] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 32.823417], + [-182.981321, 34.269044], + [-175.753187, 34.269044], + [-175.753187, 32.823417], + [-182.981321, 32.823417] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 34.269044], + [-182.981321, 35.714671], + [-175.753187, 35.714671], + [-175.753187, 34.269044], + [-182.981321, 34.269044] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 35.714671], + [-182.981321, 37.160297], + [-175.753187, 37.160297], + [-175.753187, 35.714671], + [-182.981321, 35.714671] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 37.160297], + [-182.981321, 38.605924], + [-175.753187, 38.605924], + [-175.753187, 37.160297], + [-182.981321, 37.160297] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 38.605924], + [-182.981321, 40.051551], + [-175.753187, 40.051551], + [-175.753187, 38.605924], + [-182.981321, 38.605924] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 40.051551], + [-182.981321, 41.497178], + [-175.753187, 41.497178], + [-175.753187, 40.051551], + [-182.981321, 40.051551] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 41.497178], + [-182.981321, 42.942804], + [-175.753187, 42.942804], + [-175.753187, 41.497178], + [-182.981321, 41.497178] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 42.942804], + [-182.981321, 44.388431], + [-175.753187, 44.388431], + [-175.753187, 42.942804], + [-182.981321, 42.942804] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 44.388431], + [-182.981321, 45.834058], + [-175.753187, 45.834058], + [-175.753187, 44.388431], + [-182.981321, 44.388431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 45.834058], + [-182.981321, 47.279685], + [-175.753187, 47.279685], + [-175.753187, 45.834058], + [-182.981321, 45.834058] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 47.279685], + [-182.981321, 48.725311], + [-175.753187, 48.725311], + [-175.753187, 47.279685], + [-182.981321, 47.279685] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 48.725311], + [-182.981321, 50.170938], + [-175.753187, 50.170938], + [-175.753187, 48.725311], + [-182.981321, 48.725311] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 50.170938], + [-182.981321, 51.616565], + [-175.753187, 51.616565], + [-175.753187, 50.170938], + [-182.981321, 50.170938] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 51.616565], + [-182.981321, 53.062192], + [-175.753187, 53.062192], + [-175.753187, 51.616565], + [-182.981321, 51.616565] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 53.062192], + [-182.981321, 54.507819], + [-175.753187, 54.507819], + [-175.753187, 53.062192], + [-182.981321, 53.062192] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 54.507819], + [-182.981321, 55.953445], + [-175.753187, 55.953445], + [-175.753187, 54.507819], + [-182.981321, 54.507819] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 55.953445], + [-182.981321, 57.399072], + [-175.753187, 57.399072], + [-175.753187, 55.953445], + [-182.981321, 55.953445] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 57.399072], + [-182.981321, 58.844699], + [-175.753187, 58.844699], + [-175.753187, 57.399072], + [-182.981321, 57.399072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 58.844699], + [-182.981321, 60.290326], + [-175.753187, 60.290326], + [-175.753187, 58.844699], + [-182.981321, 58.844699] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 60.290326], + [-182.981321, 61.735952], + [-175.753187, 61.735952], + [-175.753187, 60.290326], + [-182.981321, 60.290326] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 61.735952], + [-182.981321, 63.181579], + [-175.753187, 63.181579], + [-175.753187, 61.735952], + [-182.981321, 61.735952] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 63.181579], + [-182.981321, 64.627206], + [-175.753187, 64.627206], + [-175.753187, 63.181579], + [-182.981321, 63.181579] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 64.627206], + [-182.981321, 66.072833], + [-175.753187, 66.072833], + [-175.753187, 64.627206], + [-182.981321, 64.627206] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 66.072833], + [-182.981321, 67.518459], + [-175.753187, 67.518459], + [-175.753187, 66.072833], + [-182.981321, 66.072833] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 67.518459], + [-182.981321, 68.964086], + [-175.753187, 68.964086], + [-175.753187, 67.518459], + [-182.981321, 67.518459] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 68.964086], + [-182.981321, 70.409713], + [-175.753187, 70.409713], + [-175.753187, 68.964086], + [-182.981321, 68.964086] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 70.409713], + [-182.981321, 71.85534], + [-175.753187, 71.85534], + [-175.753187, 70.409713], + [-182.981321, 70.409713] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 71.85534], + [-182.981321, 73.300967], + [-175.753187, 73.300967], + [-175.753187, 71.85534], + [-182.981321, 71.85534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 73.300967], + [-182.981321, 74.746593], + [-175.753187, 74.746593], + [-175.753187, 73.300967], + [-182.981321, 73.300967] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 74.746593], + [-182.981321, 76.19222], + [-175.753187, 76.19222], + [-175.753187, 74.746593], + [-182.981321, 74.746593] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 76.19222], + [-182.981321, 77.637847], + [-175.753187, 77.637847], + [-175.753187, 76.19222], + [-182.981321, 76.19222] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -79.935471], + [-175.753187, -78.489844], + [-168.525053, -78.489844], + [-168.525053, -79.935471], + [-175.753187, -79.935471] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -78.489844], + [-175.753187, -77.044217], + [-168.525053, -77.044217], + [-168.525053, -78.489844], + [-175.753187, -78.489844] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -77.044217], + [-175.753187, -75.598591], + [-168.525053, -75.598591], + [-168.525053, -77.044217], + [-175.753187, -77.044217] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -75.598591], + [-175.753187, -74.152964], + [-168.525053, -74.152964], + [-168.525053, -75.598591], + [-175.753187, -75.598591] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -74.152964], + [-175.753187, -72.707337], + [-168.525053, -72.707337], + [-168.525053, -74.152964], + [-175.753187, -74.152964] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -72.707337], + [-175.753187, -71.26171], + [-168.525053, -71.26171], + [-168.525053, -72.707337], + [-175.753187, -72.707337] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -71.26171], + [-175.753187, -69.816084], + [-168.525053, -69.816084], + [-168.525053, -71.26171], + [-175.753187, -71.26171] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -69.816084], + [-175.753187, -68.370457], + [-168.525053, -68.370457], + [-168.525053, -69.816084], + [-175.753187, -69.816084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -68.370457], + [-175.753187, -66.92483], + [-168.525053, -66.92483], + [-168.525053, -68.370457], + [-175.753187, -68.370457] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -66.92483], + [-175.753187, -65.479203], + [-168.525053, -65.479203], + [-168.525053, -66.92483], + [-175.753187, -66.92483] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -65.479203], + [-175.753187, -64.033576], + [-168.525053, -64.033576], + [-168.525053, -65.479203], + [-175.753187, -65.479203] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -64.033576], + [-175.753187, -62.58795], + [-168.525053, -62.58795], + [-168.525053, -64.033576], + [-175.753187, -64.033576] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -62.58795], + [-175.753187, -61.142323], + [-168.525053, -61.142323], + [-168.525053, -62.58795], + [-175.753187, -62.58795] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -61.142323], + [-175.753187, -59.696696], + [-168.525053, -59.696696], + [-168.525053, -61.142323], + [-175.753187, -61.142323] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -59.696696], + [-175.753187, -58.251069], + [-168.525053, -58.251069], + [-168.525053, -59.696696], + [-175.753187, -59.696696] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -58.251069], + [-175.753187, -56.805443], + [-168.525053, -56.805443], + [-168.525053, -58.251069], + [-175.753187, -58.251069] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -56.805443], + [-175.753187, -55.359816], + [-168.525053, -55.359816], + [-168.525053, -56.805443], + [-175.753187, -56.805443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -55.359816], + [-175.753187, -53.914189], + [-168.525053, -53.914189], + [-168.525053, -55.359816], + [-175.753187, -55.359816] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -53.914189], + [-175.753187, -52.468562], + [-168.525053, -52.468562], + [-168.525053, -53.914189], + [-175.753187, -53.914189] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -52.468562], + [-175.753187, -51.022936], + [-168.525053, -51.022936], + [-168.525053, -52.468562], + [-175.753187, -52.468562] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -51.022936], + [-175.753187, -49.577309], + [-168.525053, -49.577309], + [-168.525053, -51.022936], + [-175.753187, -51.022936] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -49.577309], + [-175.753187, -48.131682], + [-168.525053, -48.131682], + [-168.525053, -49.577309], + [-175.753187, -49.577309] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -48.131682], + [-175.753187, -46.686055], + [-168.525053, -46.686055], + [-168.525053, -48.131682], + [-175.753187, -48.131682] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -46.686055], + [-175.753187, -45.240428], + [-168.525053, -45.240428], + [-168.525053, -46.686055], + [-175.753187, -46.686055] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -45.240428], + [-175.753187, -43.794802], + [-168.525053, -43.794802], + [-168.525053, -45.240428], + [-175.753187, -45.240428] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -43.794802], + [-175.753187, -42.349175], + [-168.525053, -42.349175], + [-168.525053, -43.794802], + [-175.753187, -43.794802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -42.349175], + [-175.753187, -40.903548], + [-168.525053, -40.903548], + [-168.525053, -42.349175], + [-175.753187, -42.349175] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -40.903548], + [-175.753187, -39.457921], + [-168.525053, -39.457921], + [-168.525053, -40.903548], + [-175.753187, -40.903548] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -39.457921], + [-175.753187, -38.012295], + [-168.525053, -38.012295], + [-168.525053, -39.457921], + [-175.753187, -39.457921] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -38.012295], + [-175.753187, -36.566668], + [-168.525053, -36.566668], + [-168.525053, -38.012295], + [-175.753187, -38.012295] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -36.566668], + [-175.753187, -35.121041], + [-168.525053, -35.121041], + [-168.525053, -36.566668], + [-175.753187, -36.566668] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -35.121041], + [-175.753187, -33.675414], + [-168.525053, -33.675414], + [-168.525053, -35.121041], + [-175.753187, -35.121041] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -33.675414], + [-175.753187, -32.229788], + [-168.525053, -32.229788], + [-168.525053, -33.675414], + [-175.753187, -33.675414] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -32.229788], + [-175.753187, -30.784161], + [-168.525053, -30.784161], + [-168.525053, -32.229788], + [-175.753187, -32.229788] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -30.784161], + [-175.753187, -29.338534], + [-168.525053, -29.338534], + [-168.525053, -30.784161], + [-175.753187, -30.784161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -29.338534], + [-175.753187, -27.892907], + [-168.525053, -27.892907], + [-168.525053, -29.338534], + [-175.753187, -29.338534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -27.892907], + [-175.753187, -26.44728], + [-168.525053, -26.44728], + [-168.525053, -27.892907], + [-175.753187, -27.892907] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -26.44728], + [-175.753187, -25.001654], + [-168.525053, -25.001654], + [-168.525053, -26.44728], + [-175.753187, -26.44728] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -25.001654], + [-175.753187, -23.556027], + [-168.525053, -23.556027], + [-168.525053, -25.001654], + [-175.753187, -25.001654] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -23.556027], + [-175.753187, -22.1104], + [-168.525053, -22.1104], + [-168.525053, -23.556027], + [-175.753187, -23.556027] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -22.1104], + [-175.753187, -20.664773], + [-168.525053, -20.664773], + [-168.525053, -22.1104], + [-175.753187, -22.1104] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -20.664773], + [-175.753187, -19.219147], + [-168.525053, -19.219147], + [-168.525053, -20.664773], + [-175.753187, -20.664773] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -19.219147], + [-175.753187, -17.77352], + [-168.525053, -17.77352], + [-168.525053, -19.219147], + [-175.753187, -19.219147] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -17.77352], + [-175.753187, -16.327893], + [-168.525053, -16.327893], + [-168.525053, -17.77352], + [-175.753187, -17.77352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -16.327893], + [-175.753187, -14.882266], + [-168.525053, -14.882266], + [-168.525053, -16.327893], + [-175.753187, -16.327893] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -14.882266], + [-175.753187, -13.43664], + [-168.525053, -13.43664], + [-168.525053, -14.882266], + [-175.753187, -14.882266] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -13.43664], + [-175.753187, -11.991013], + [-168.525053, -11.991013], + [-168.525053, -13.43664], + [-175.753187, -13.43664] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -11.991013], + [-175.753187, -10.545386], + [-168.525053, -10.545386], + [-168.525053, -11.991013], + [-175.753187, -11.991013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -10.545386], + [-175.753187, -9.099759], + [-168.525053, -9.099759], + [-168.525053, -10.545386], + [-175.753187, -10.545386] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -9.099759], + [-175.753187, -7.654132], + [-168.525053, -7.654132], + [-168.525053, -9.099759], + [-175.753187, -9.099759] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -7.654132], + [-175.753187, -6.208506], + [-168.525053, -6.208506], + [-168.525053, -7.654132], + [-175.753187, -7.654132] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -6.208506], + [-175.753187, -4.762879], + [-168.525053, -4.762879], + [-168.525053, -6.208506], + [-175.753187, -6.208506] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -4.762879], + [-175.753187, -3.317252], + [-168.525053, -3.317252], + [-168.525053, -4.762879], + [-175.753187, -4.762879] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -3.317252], + [-175.753187, -1.871625], + [-168.525053, -1.871625], + [-168.525053, -3.317252], + [-175.753187, -3.317252] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -1.871625], + [-175.753187, -0.425999], + [-168.525053, -0.425999], + [-168.525053, -1.871625], + [-175.753187, -1.871625] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -0.425999], + [-175.753187, 1.019628], + [-168.525053, 1.019628], + [-168.525053, -0.425999], + [-175.753187, -0.425999] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 1.019628], + [-175.753187, 2.465255], + [-168.525053, 2.465255], + [-168.525053, 1.019628], + [-175.753187, 1.019628] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 2.465255], + [-175.753187, 3.910882], + [-168.525053, 3.910882], + [-168.525053, 2.465255], + [-175.753187, 2.465255] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 3.910882], + [-175.753187, 5.356508], + [-168.525053, 5.356508], + [-168.525053, 3.910882], + [-175.753187, 3.910882] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 5.356508], + [-175.753187, 6.802135], + [-168.525053, 6.802135], + [-168.525053, 5.356508], + [-175.753187, 5.356508] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 6.802135], + [-175.753187, 8.247762], + [-168.525053, 8.247762], + [-168.525053, 6.802135], + [-175.753187, 6.802135] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 8.247762], + [-175.753187, 9.693389], + [-168.525053, 9.693389], + [-168.525053, 8.247762], + [-175.753187, 8.247762] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 9.693389], + [-175.753187, 11.139016], + [-168.525053, 11.139016], + [-168.525053, 9.693389], + [-175.753187, 9.693389] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 11.139016], + [-175.753187, 12.584642], + [-168.525053, 12.584642], + [-168.525053, 11.139016], + [-175.753187, 11.139016] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 12.584642], + [-175.753187, 14.030269], + [-168.525053, 14.030269], + [-168.525053, 12.584642], + [-175.753187, 12.584642] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 14.030269], + [-175.753187, 15.475896], + [-168.525053, 15.475896], + [-168.525053, 14.030269], + [-175.753187, 14.030269] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 15.475896], + [-175.753187, 16.921523], + [-168.525053, 16.921523], + [-168.525053, 15.475896], + [-175.753187, 15.475896] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 16.921523], + [-175.753187, 18.367149], + [-168.525053, 18.367149], + [-168.525053, 16.921523], + [-175.753187, 16.921523] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 18.367149], + [-175.753187, 19.812776], + [-168.525053, 19.812776], + [-168.525053, 18.367149], + [-175.753187, 18.367149] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 19.812776], + [-175.753187, 21.258403], + [-168.525053, 21.258403], + [-168.525053, 19.812776], + [-175.753187, 19.812776] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 21.258403], + [-175.753187, 22.70403], + [-168.525053, 22.70403], + [-168.525053, 21.258403], + [-175.753187, 21.258403] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 22.70403], + [-175.753187, 24.149656], + [-168.525053, 24.149656], + [-168.525053, 22.70403], + [-175.753187, 22.70403] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 24.149656], + [-175.753187, 25.595283], + [-168.525053, 25.595283], + [-168.525053, 24.149656], + [-175.753187, 24.149656] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 25.595283], + [-175.753187, 27.04091], + [-168.525053, 27.04091], + [-168.525053, 25.595283], + [-175.753187, 25.595283] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 27.04091], + [-175.753187, 28.486537], + [-168.525053, 28.486537], + [-168.525053, 27.04091], + [-175.753187, 27.04091] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 28.486537], + [-175.753187, 29.932163], + [-168.525053, 29.932163], + [-168.525053, 28.486537], + [-175.753187, 28.486537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 29.932163], + [-175.753187, 31.37779], + [-168.525053, 31.37779], + [-168.525053, 29.932163], + [-175.753187, 29.932163] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 31.37779], + [-175.753187, 32.823417], + [-168.525053, 32.823417], + [-168.525053, 31.37779], + [-175.753187, 31.37779] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 32.823417], + [-175.753187, 34.269044], + [-168.525053, 34.269044], + [-168.525053, 32.823417], + [-175.753187, 32.823417] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 34.269044], + [-175.753187, 35.714671], + [-168.525053, 35.714671], + [-168.525053, 34.269044], + [-175.753187, 34.269044] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 35.714671], + [-175.753187, 37.160297], + [-168.525053, 37.160297], + [-168.525053, 35.714671], + [-175.753187, 35.714671] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 37.160297], + [-175.753187, 38.605924], + [-168.525053, 38.605924], + [-168.525053, 37.160297], + [-175.753187, 37.160297] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 38.605924], + [-175.753187, 40.051551], + [-168.525053, 40.051551], + [-168.525053, 38.605924], + [-175.753187, 38.605924] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 40.051551], + [-175.753187, 41.497178], + [-168.525053, 41.497178], + [-168.525053, 40.051551], + [-175.753187, 40.051551] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 41.497178], + [-175.753187, 42.942804], + [-168.525053, 42.942804], + [-168.525053, 41.497178], + [-175.753187, 41.497178] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 42.942804], + [-175.753187, 44.388431], + [-168.525053, 44.388431], + [-168.525053, 42.942804], + [-175.753187, 42.942804] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 44.388431], + [-175.753187, 45.834058], + [-168.525053, 45.834058], + [-168.525053, 44.388431], + [-175.753187, 44.388431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 45.834058], + [-175.753187, 47.279685], + [-168.525053, 47.279685], + [-168.525053, 45.834058], + [-175.753187, 45.834058] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 47.279685], + [-175.753187, 48.725311], + [-168.525053, 48.725311], + [-168.525053, 47.279685], + [-175.753187, 47.279685] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 48.725311], + [-175.753187, 50.170938], + [-168.525053, 50.170938], + [-168.525053, 48.725311], + [-175.753187, 48.725311] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 50.170938], + [-175.753187, 51.616565], + [-168.525053, 51.616565], + [-168.525053, 50.170938], + [-175.753187, 50.170938] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 51.616565], + [-175.753187, 53.062192], + [-168.525053, 53.062192], + [-168.525053, 51.616565], + [-175.753187, 51.616565] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 53.062192], + [-175.753187, 54.507819], + [-168.525053, 54.507819], + [-168.525053, 53.062192], + [-175.753187, 53.062192] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 54.507819], + [-175.753187, 55.953445], + [-168.525053, 55.953445], + [-168.525053, 54.507819], + [-175.753187, 54.507819] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 55.953445], + [-175.753187, 57.399072], + [-168.525053, 57.399072], + [-168.525053, 55.953445], + [-175.753187, 55.953445] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 57.399072], + [-175.753187, 58.844699], + [-168.525053, 58.844699], + [-168.525053, 57.399072], + [-175.753187, 57.399072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 58.844699], + [-175.753187, 60.290326], + [-168.525053, 60.290326], + [-168.525053, 58.844699], + [-175.753187, 58.844699] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 60.290326], + [-175.753187, 61.735952], + [-168.525053, 61.735952], + [-168.525053, 60.290326], + [-175.753187, 60.290326] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 61.735952], + [-175.753187, 63.181579], + [-168.525053, 63.181579], + [-168.525053, 61.735952], + [-175.753187, 61.735952] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 63.181579], + [-175.753187, 64.627206], + [-168.525053, 64.627206], + [-168.525053, 63.181579], + [-175.753187, 63.181579] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 64.627206], + [-175.753187, 66.072833], + [-168.525053, 66.072833], + [-168.525053, 64.627206], + [-175.753187, 64.627206] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 66.072833], + [-175.753187, 67.518459], + [-168.525053, 67.518459], + [-168.525053, 66.072833], + [-175.753187, 66.072833] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 67.518459], + [-175.753187, 68.964086], + [-168.525053, 68.964086], + [-168.525053, 67.518459], + [-175.753187, 67.518459] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 68.964086], + [-175.753187, 70.409713], + [-168.525053, 70.409713], + [-168.525053, 68.964086], + [-175.753187, 68.964086] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 70.409713], + [-175.753187, 71.85534], + [-168.525053, 71.85534], + [-168.525053, 70.409713], + [-175.753187, 70.409713] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 71.85534], + [-175.753187, 73.300967], + [-168.525053, 73.300967], + [-168.525053, 71.85534], + [-175.753187, 71.85534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 73.300967], + [-175.753187, 74.746593], + [-168.525053, 74.746593], + [-168.525053, 73.300967], + [-175.753187, 73.300967] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 74.746593], + [-175.753187, 76.19222], + [-168.525053, 76.19222], + [-168.525053, 74.746593], + [-175.753187, 74.746593] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 76.19222], + [-175.753187, 77.637847], + [-168.525053, 77.637847], + [-168.525053, 76.19222], + [-175.753187, 76.19222] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -79.935471], + [-168.525053, -78.489844], + [-161.296919, -78.489844], + [-161.296919, -79.935471], + [-168.525053, -79.935471] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -78.489844], + [-168.525053, -77.044217], + [-161.296919, -77.044217], + [-161.296919, -78.489844], + [-168.525053, -78.489844] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -77.044217], + [-168.525053, -75.598591], + [-161.296919, -75.598591], + [-161.296919, -77.044217], + [-168.525053, -77.044217] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -75.598591], + [-168.525053, -74.152964], + [-161.296919, -74.152964], + [-161.296919, -75.598591], + [-168.525053, -75.598591] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -74.152964], + [-168.525053, -72.707337], + [-161.296919, -72.707337], + [-161.296919, -74.152964], + [-168.525053, -74.152964] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -72.707337], + [-168.525053, -71.26171], + [-161.296919, -71.26171], + [-161.296919, -72.707337], + [-168.525053, -72.707337] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -71.26171], + [-168.525053, -69.816084], + [-161.296919, -69.816084], + [-161.296919, -71.26171], + [-168.525053, -71.26171] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -69.816084], + [-168.525053, -68.370457], + [-161.296919, -68.370457], + [-161.296919, -69.816084], + [-168.525053, -69.816084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -68.370457], + [-168.525053, -66.92483], + [-161.296919, -66.92483], + [-161.296919, -68.370457], + [-168.525053, -68.370457] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -66.92483], + [-168.525053, -65.479203], + [-161.296919, -65.479203], + [-161.296919, -66.92483], + [-168.525053, -66.92483] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -65.479203], + [-168.525053, -64.033576], + [-161.296919, -64.033576], + [-161.296919, -65.479203], + [-168.525053, -65.479203] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -64.033576], + [-168.525053, -62.58795], + [-161.296919, -62.58795], + [-161.296919, -64.033576], + [-168.525053, -64.033576] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -62.58795], + [-168.525053, -61.142323], + [-161.296919, -61.142323], + [-161.296919, -62.58795], + [-168.525053, -62.58795] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -61.142323], + [-168.525053, -59.696696], + [-161.296919, -59.696696], + [-161.296919, -61.142323], + [-168.525053, -61.142323] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -59.696696], + [-168.525053, -58.251069], + [-161.296919, -58.251069], + [-161.296919, -59.696696], + [-168.525053, -59.696696] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -58.251069], + [-168.525053, -56.805443], + [-161.296919, -56.805443], + [-161.296919, -58.251069], + [-168.525053, -58.251069] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -56.805443], + [-168.525053, -55.359816], + [-161.296919, -55.359816], + [-161.296919, -56.805443], + [-168.525053, -56.805443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -55.359816], + [-168.525053, -53.914189], + [-161.296919, -53.914189], + [-161.296919, -55.359816], + [-168.525053, -55.359816] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -53.914189], + [-168.525053, -52.468562], + [-161.296919, -52.468562], + [-161.296919, -53.914189], + [-168.525053, -53.914189] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -52.468562], + [-168.525053, -51.022936], + [-161.296919, -51.022936], + [-161.296919, -52.468562], + [-168.525053, -52.468562] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -51.022936], + [-168.525053, -49.577309], + [-161.296919, -49.577309], + [-161.296919, -51.022936], + [-168.525053, -51.022936] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -49.577309], + [-168.525053, -48.131682], + [-161.296919, -48.131682], + [-161.296919, -49.577309], + [-168.525053, -49.577309] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -48.131682], + [-168.525053, -46.686055], + [-161.296919, -46.686055], + [-161.296919, -48.131682], + [-168.525053, -48.131682] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -46.686055], + [-168.525053, -45.240428], + [-161.296919, -45.240428], + [-161.296919, -46.686055], + [-168.525053, -46.686055] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -45.240428], + [-168.525053, -43.794802], + [-161.296919, -43.794802], + [-161.296919, -45.240428], + [-168.525053, -45.240428] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -43.794802], + [-168.525053, -42.349175], + [-161.296919, -42.349175], + [-161.296919, -43.794802], + [-168.525053, -43.794802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -42.349175], + [-168.525053, -40.903548], + [-161.296919, -40.903548], + [-161.296919, -42.349175], + [-168.525053, -42.349175] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -40.903548], + [-168.525053, -39.457921], + [-161.296919, -39.457921], + [-161.296919, -40.903548], + [-168.525053, -40.903548] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -39.457921], + [-168.525053, -38.012295], + [-161.296919, -38.012295], + [-161.296919, -39.457921], + [-168.525053, -39.457921] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -38.012295], + [-168.525053, -36.566668], + [-161.296919, -36.566668], + [-161.296919, -38.012295], + [-168.525053, -38.012295] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -36.566668], + [-168.525053, -35.121041], + [-161.296919, -35.121041], + [-161.296919, -36.566668], + [-168.525053, -36.566668] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -35.121041], + [-168.525053, -33.675414], + [-161.296919, -33.675414], + [-161.296919, -35.121041], + [-168.525053, -35.121041] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -33.675414], + [-168.525053, -32.229788], + [-161.296919, -32.229788], + [-161.296919, -33.675414], + [-168.525053, -33.675414] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -32.229788], + [-168.525053, -30.784161], + [-161.296919, -30.784161], + [-161.296919, -32.229788], + [-168.525053, -32.229788] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -30.784161], + [-168.525053, -29.338534], + [-161.296919, -29.338534], + [-161.296919, -30.784161], + [-168.525053, -30.784161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -29.338534], + [-168.525053, -27.892907], + [-161.296919, -27.892907], + [-161.296919, -29.338534], + [-168.525053, -29.338534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -27.892907], + [-168.525053, -26.44728], + [-161.296919, -26.44728], + [-161.296919, -27.892907], + [-168.525053, -27.892907] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -26.44728], + [-168.525053, -25.001654], + [-161.296919, -25.001654], + [-161.296919, -26.44728], + [-168.525053, -26.44728] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -25.001654], + [-168.525053, -23.556027], + [-161.296919, -23.556027], + [-161.296919, -25.001654], + [-168.525053, -25.001654] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -23.556027], + [-168.525053, -22.1104], + [-161.296919, -22.1104], + [-161.296919, -23.556027], + [-168.525053, -23.556027] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -22.1104], + [-168.525053, -20.664773], + [-161.296919, -20.664773], + [-161.296919, -22.1104], + [-168.525053, -22.1104] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -20.664773], + [-168.525053, -19.219147], + [-161.296919, -19.219147], + [-161.296919, -20.664773], + [-168.525053, -20.664773] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -19.219147], + [-168.525053, -17.77352], + [-161.296919, -17.77352], + [-161.296919, -19.219147], + [-168.525053, -19.219147] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -17.77352], + [-168.525053, -16.327893], + [-161.296919, -16.327893], + [-161.296919, -17.77352], + [-168.525053, -17.77352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -16.327893], + [-168.525053, -14.882266], + [-161.296919, -14.882266], + [-161.296919, -16.327893], + [-168.525053, -16.327893] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -14.882266], + [-168.525053, -13.43664], + [-161.296919, -13.43664], + [-161.296919, -14.882266], + [-168.525053, -14.882266] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -13.43664], + [-168.525053, -11.991013], + [-161.296919, -11.991013], + [-161.296919, -13.43664], + [-168.525053, -13.43664] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -11.991013], + [-168.525053, -10.545386], + [-161.296919, -10.545386], + [-161.296919, -11.991013], + [-168.525053, -11.991013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -10.545386], + [-168.525053, -9.099759], + [-161.296919, -9.099759], + [-161.296919, -10.545386], + [-168.525053, -10.545386] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -9.099759], + [-168.525053, -7.654132], + [-161.296919, -7.654132], + [-161.296919, -9.099759], + [-168.525053, -9.099759] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -7.654132], + [-168.525053, -6.208506], + [-161.296919, -6.208506], + [-161.296919, -7.654132], + [-168.525053, -7.654132] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -6.208506], + [-168.525053, -4.762879], + [-161.296919, -4.762879], + [-161.296919, -6.208506], + [-168.525053, -6.208506] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -4.762879], + [-168.525053, -3.317252], + [-161.296919, -3.317252], + [-161.296919, -4.762879], + [-168.525053, -4.762879] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -3.317252], + [-168.525053, -1.871625], + [-161.296919, -1.871625], + [-161.296919, -3.317252], + [-168.525053, -3.317252] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -1.871625], + [-168.525053, -0.425999], + [-161.296919, -0.425999], + [-161.296919, -1.871625], + [-168.525053, -1.871625] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -0.425999], + [-168.525053, 1.019628], + [-161.296919, 1.019628], + [-161.296919, -0.425999], + [-168.525053, -0.425999] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 1.019628], + [-168.525053, 2.465255], + [-161.296919, 2.465255], + [-161.296919, 1.019628], + [-168.525053, 1.019628] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 2.465255], + [-168.525053, 3.910882], + [-161.296919, 3.910882], + [-161.296919, 2.465255], + [-168.525053, 2.465255] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 3.910882], + [-168.525053, 5.356508], + [-161.296919, 5.356508], + [-161.296919, 3.910882], + [-168.525053, 3.910882] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 5.356508], + [-168.525053, 6.802135], + [-161.296919, 6.802135], + [-161.296919, 5.356508], + [-168.525053, 5.356508] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 6.802135], + [-168.525053, 8.247762], + [-161.296919, 8.247762], + [-161.296919, 6.802135], + [-168.525053, 6.802135] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 8.247762], + [-168.525053, 9.693389], + [-161.296919, 9.693389], + [-161.296919, 8.247762], + [-168.525053, 8.247762] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 9.693389], + [-168.525053, 11.139016], + [-161.296919, 11.139016], + [-161.296919, 9.693389], + [-168.525053, 9.693389] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 11.139016], + [-168.525053, 12.584642], + [-161.296919, 12.584642], + [-161.296919, 11.139016], + [-168.525053, 11.139016] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 12.584642], + [-168.525053, 14.030269], + [-161.296919, 14.030269], + [-161.296919, 12.584642], + [-168.525053, 12.584642] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 14.030269], + [-168.525053, 15.475896], + [-161.296919, 15.475896], + [-161.296919, 14.030269], + [-168.525053, 14.030269] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 15.475896], + [-168.525053, 16.921523], + [-161.296919, 16.921523], + [-161.296919, 15.475896], + [-168.525053, 15.475896] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 16.921523], + [-168.525053, 18.367149], + [-161.296919, 18.367149], + [-161.296919, 16.921523], + [-168.525053, 16.921523] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 18.367149], + [-168.525053, 19.812776], + [-161.296919, 19.812776], + [-161.296919, 18.367149], + [-168.525053, 18.367149] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 19.812776], + [-168.525053, 21.258403], + [-161.296919, 21.258403], + [-161.296919, 19.812776], + [-168.525053, 19.812776] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 21.258403], + [-168.525053, 22.70403], + [-161.296919, 22.70403], + [-161.296919, 21.258403], + [-168.525053, 21.258403] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 22.70403], + [-168.525053, 24.149656], + [-161.296919, 24.149656], + [-161.296919, 22.70403], + [-168.525053, 22.70403] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 24.149656], + [-168.525053, 25.595283], + [-161.296919, 25.595283], + [-161.296919, 24.149656], + [-168.525053, 24.149656] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 25.595283], + [-168.525053, 27.04091], + [-161.296919, 27.04091], + [-161.296919, 25.595283], + [-168.525053, 25.595283] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 27.04091], + [-168.525053, 28.486537], + [-161.296919, 28.486537], + [-161.296919, 27.04091], + [-168.525053, 27.04091] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 28.486537], + [-168.525053, 29.932163], + [-161.296919, 29.932163], + [-161.296919, 28.486537], + [-168.525053, 28.486537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 29.932163], + [-168.525053, 31.37779], + [-161.296919, 31.37779], + [-161.296919, 29.932163], + [-168.525053, 29.932163] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 31.37779], + [-168.525053, 32.823417], + [-161.296919, 32.823417], + [-161.296919, 31.37779], + [-168.525053, 31.37779] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 32.823417], + [-168.525053, 34.269044], + [-161.296919, 34.269044], + [-161.296919, 32.823417], + [-168.525053, 32.823417] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 34.269044], + [-168.525053, 35.714671], + [-161.296919, 35.714671], + [-161.296919, 34.269044], + [-168.525053, 34.269044] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 35.714671], + [-168.525053, 37.160297], + [-161.296919, 37.160297], + [-161.296919, 35.714671], + [-168.525053, 35.714671] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 37.160297], + [-168.525053, 38.605924], + [-161.296919, 38.605924], + [-161.296919, 37.160297], + [-168.525053, 37.160297] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 38.605924], + [-168.525053, 40.051551], + [-161.296919, 40.051551], + [-161.296919, 38.605924], + [-168.525053, 38.605924] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 40.051551], + [-168.525053, 41.497178], + [-161.296919, 41.497178], + [-161.296919, 40.051551], + [-168.525053, 40.051551] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 41.497178], + [-168.525053, 42.942804], + [-161.296919, 42.942804], + [-161.296919, 41.497178], + [-168.525053, 41.497178] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 42.942804], + [-168.525053, 44.388431], + [-161.296919, 44.388431], + [-161.296919, 42.942804], + [-168.525053, 42.942804] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 44.388431], + [-168.525053, 45.834058], + [-161.296919, 45.834058], + [-161.296919, 44.388431], + [-168.525053, 44.388431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 45.834058], + [-168.525053, 47.279685], + [-161.296919, 47.279685], + [-161.296919, 45.834058], + [-168.525053, 45.834058] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 47.279685], + [-168.525053, 48.725311], + [-161.296919, 48.725311], + [-161.296919, 47.279685], + [-168.525053, 47.279685] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 48.725311], + [-168.525053, 50.170938], + [-161.296919, 50.170938], + [-161.296919, 48.725311], + [-168.525053, 48.725311] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 50.170938], + [-168.525053, 51.616565], + [-161.296919, 51.616565], + [-161.296919, 50.170938], + [-168.525053, 50.170938] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 51.616565], + [-168.525053, 53.062192], + [-161.296919, 53.062192], + [-161.296919, 51.616565], + [-168.525053, 51.616565] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 53.062192], + [-168.525053, 54.507819], + [-161.296919, 54.507819], + [-161.296919, 53.062192], + [-168.525053, 53.062192] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 54.507819], + [-168.525053, 55.953445], + [-161.296919, 55.953445], + [-161.296919, 54.507819], + [-168.525053, 54.507819] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 55.953445], + [-168.525053, 57.399072], + [-161.296919, 57.399072], + [-161.296919, 55.953445], + [-168.525053, 55.953445] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 57.399072], + [-168.525053, 58.844699], + [-161.296919, 58.844699], + [-161.296919, 57.399072], + [-168.525053, 57.399072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 58.844699], + [-168.525053, 60.290326], + [-161.296919, 60.290326], + [-161.296919, 58.844699], + [-168.525053, 58.844699] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 60.290326], + [-168.525053, 61.735952], + [-161.296919, 61.735952], + [-161.296919, 60.290326], + [-168.525053, 60.290326] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 61.735952], + [-168.525053, 63.181579], + [-161.296919, 63.181579], + [-161.296919, 61.735952], + [-168.525053, 61.735952] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 63.181579], + [-168.525053, 64.627206], + [-161.296919, 64.627206], + [-161.296919, 63.181579], + [-168.525053, 63.181579] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 64.627206], + [-168.525053, 66.072833], + [-161.296919, 66.072833], + [-161.296919, 64.627206], + [-168.525053, 64.627206] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 66.072833], + [-168.525053, 67.518459], + [-161.296919, 67.518459], + [-161.296919, 66.072833], + [-168.525053, 66.072833] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 67.518459], + [-168.525053, 68.964086], + [-161.296919, 68.964086], + [-161.296919, 67.518459], + [-168.525053, 67.518459] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 68.964086], + [-168.525053, 70.409713], + [-161.296919, 70.409713], + [-161.296919, 68.964086], + [-168.525053, 68.964086] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 70.409713], + [-168.525053, 71.85534], + [-161.296919, 71.85534], + [-161.296919, 70.409713], + [-168.525053, 70.409713] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 71.85534], + [-168.525053, 73.300967], + [-161.296919, 73.300967], + [-161.296919, 71.85534], + [-168.525053, 71.85534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 73.300967], + [-168.525053, 74.746593], + [-161.296919, 74.746593], + [-161.296919, 73.300967], + [-168.525053, 73.300967] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 74.746593], + [-168.525053, 76.19222], + [-161.296919, 76.19222], + [-161.296919, 74.746593], + [-168.525053, 74.746593] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 76.19222], + [-168.525053, 77.637847], + [-161.296919, 77.637847], + [-161.296919, 76.19222], + [-168.525053, 76.19222] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -79.935471], + [-161.296919, -78.489844], + [-154.068785, -78.489844], + [-154.068785, -79.935471], + [-161.296919, -79.935471] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -78.489844], + [-161.296919, -77.044217], + [-154.068785, -77.044217], + [-154.068785, -78.489844], + [-161.296919, -78.489844] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -77.044217], + [-161.296919, -75.598591], + [-154.068785, -75.598591], + [-154.068785, -77.044217], + [-161.296919, -77.044217] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -75.598591], + [-161.296919, -74.152964], + [-154.068785, -74.152964], + [-154.068785, -75.598591], + [-161.296919, -75.598591] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -74.152964], + [-161.296919, -72.707337], + [-154.068785, -72.707337], + [-154.068785, -74.152964], + [-161.296919, -74.152964] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -72.707337], + [-161.296919, -71.26171], + [-154.068785, -71.26171], + [-154.068785, -72.707337], + [-161.296919, -72.707337] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -71.26171], + [-161.296919, -69.816084], + [-154.068785, -69.816084], + [-154.068785, -71.26171], + [-161.296919, -71.26171] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -69.816084], + [-161.296919, -68.370457], + [-154.068785, -68.370457], + [-154.068785, -69.816084], + [-161.296919, -69.816084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -68.370457], + [-161.296919, -66.92483], + [-154.068785, -66.92483], + [-154.068785, -68.370457], + [-161.296919, -68.370457] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -66.92483], + [-161.296919, -65.479203], + [-154.068785, -65.479203], + [-154.068785, -66.92483], + [-161.296919, -66.92483] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -65.479203], + [-161.296919, -64.033576], + [-154.068785, -64.033576], + [-154.068785, -65.479203], + [-161.296919, -65.479203] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -64.033576], + [-161.296919, -62.58795], + [-154.068785, -62.58795], + [-154.068785, -64.033576], + [-161.296919, -64.033576] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -62.58795], + [-161.296919, -61.142323], + [-154.068785, -61.142323], + [-154.068785, -62.58795], + [-161.296919, -62.58795] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -61.142323], + [-161.296919, -59.696696], + [-154.068785, -59.696696], + [-154.068785, -61.142323], + [-161.296919, -61.142323] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -59.696696], + [-161.296919, -58.251069], + [-154.068785, -58.251069], + [-154.068785, -59.696696], + [-161.296919, -59.696696] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -58.251069], + [-161.296919, -56.805443], + [-154.068785, -56.805443], + [-154.068785, -58.251069], + [-161.296919, -58.251069] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -56.805443], + [-161.296919, -55.359816], + [-154.068785, -55.359816], + [-154.068785, -56.805443], + [-161.296919, -56.805443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -55.359816], + [-161.296919, -53.914189], + [-154.068785, -53.914189], + [-154.068785, -55.359816], + [-161.296919, -55.359816] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -53.914189], + [-161.296919, -52.468562], + [-154.068785, -52.468562], + [-154.068785, -53.914189], + [-161.296919, -53.914189] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -52.468562], + [-161.296919, -51.022936], + [-154.068785, -51.022936], + [-154.068785, -52.468562], + [-161.296919, -52.468562] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -51.022936], + [-161.296919, -49.577309], + [-154.068785, -49.577309], + [-154.068785, -51.022936], + [-161.296919, -51.022936] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -49.577309], + [-161.296919, -48.131682], + [-154.068785, -48.131682], + [-154.068785, -49.577309], + [-161.296919, -49.577309] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -48.131682], + [-161.296919, -46.686055], + [-154.068785, -46.686055], + [-154.068785, -48.131682], + [-161.296919, -48.131682] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -46.686055], + [-161.296919, -45.240428], + [-154.068785, -45.240428], + [-154.068785, -46.686055], + [-161.296919, -46.686055] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -45.240428], + [-161.296919, -43.794802], + [-154.068785, -43.794802], + [-154.068785, -45.240428], + [-161.296919, -45.240428] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -43.794802], + [-161.296919, -42.349175], + [-154.068785, -42.349175], + [-154.068785, -43.794802], + [-161.296919, -43.794802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -42.349175], + [-161.296919, -40.903548], + [-154.068785, -40.903548], + [-154.068785, -42.349175], + [-161.296919, -42.349175] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -40.903548], + [-161.296919, -39.457921], + [-154.068785, -39.457921], + [-154.068785, -40.903548], + [-161.296919, -40.903548] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -39.457921], + [-161.296919, -38.012295], + [-154.068785, -38.012295], + [-154.068785, -39.457921], + [-161.296919, -39.457921] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -38.012295], + [-161.296919, -36.566668], + [-154.068785, -36.566668], + [-154.068785, -38.012295], + [-161.296919, -38.012295] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -36.566668], + [-161.296919, -35.121041], + [-154.068785, -35.121041], + [-154.068785, -36.566668], + [-161.296919, -36.566668] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -35.121041], + [-161.296919, -33.675414], + [-154.068785, -33.675414], + [-154.068785, -35.121041], + [-161.296919, -35.121041] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -33.675414], + [-161.296919, -32.229788], + [-154.068785, -32.229788], + [-154.068785, -33.675414], + [-161.296919, -33.675414] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -32.229788], + [-161.296919, -30.784161], + [-154.068785, -30.784161], + [-154.068785, -32.229788], + [-161.296919, -32.229788] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -30.784161], + [-161.296919, -29.338534], + [-154.068785, -29.338534], + [-154.068785, -30.784161], + [-161.296919, -30.784161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -29.338534], + [-161.296919, -27.892907], + [-154.068785, -27.892907], + [-154.068785, -29.338534], + [-161.296919, -29.338534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -27.892907], + [-161.296919, -26.44728], + [-154.068785, -26.44728], + [-154.068785, -27.892907], + [-161.296919, -27.892907] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -26.44728], + [-161.296919, -25.001654], + [-154.068785, -25.001654], + [-154.068785, -26.44728], + [-161.296919, -26.44728] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -25.001654], + [-161.296919, -23.556027], + [-154.068785, -23.556027], + [-154.068785, -25.001654], + [-161.296919, -25.001654] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -23.556027], + [-161.296919, -22.1104], + [-154.068785, -22.1104], + [-154.068785, -23.556027], + [-161.296919, -23.556027] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -22.1104], + [-161.296919, -20.664773], + [-154.068785, -20.664773], + [-154.068785, -22.1104], + [-161.296919, -22.1104] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -20.664773], + [-161.296919, -19.219147], + [-154.068785, -19.219147], + [-154.068785, -20.664773], + [-161.296919, -20.664773] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -19.219147], + [-161.296919, -17.77352], + [-154.068785, -17.77352], + [-154.068785, -19.219147], + [-161.296919, -19.219147] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -17.77352], + [-161.296919, -16.327893], + [-154.068785, -16.327893], + [-154.068785, -17.77352], + [-161.296919, -17.77352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -16.327893], + [-161.296919, -14.882266], + [-154.068785, -14.882266], + [-154.068785, -16.327893], + [-161.296919, -16.327893] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -14.882266], + [-161.296919, -13.43664], + [-154.068785, -13.43664], + [-154.068785, -14.882266], + [-161.296919, -14.882266] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -13.43664], + [-161.296919, -11.991013], + [-154.068785, -11.991013], + [-154.068785, -13.43664], + [-161.296919, -13.43664] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -11.991013], + [-161.296919, -10.545386], + [-154.068785, -10.545386], + [-154.068785, -11.991013], + [-161.296919, -11.991013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -10.545386], + [-161.296919, -9.099759], + [-154.068785, -9.099759], + [-154.068785, -10.545386], + [-161.296919, -10.545386] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -9.099759], + [-161.296919, -7.654132], + [-154.068785, -7.654132], + [-154.068785, -9.099759], + [-161.296919, -9.099759] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -7.654132], + [-161.296919, -6.208506], + [-154.068785, -6.208506], + [-154.068785, -7.654132], + [-161.296919, -7.654132] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -6.208506], + [-161.296919, -4.762879], + [-154.068785, -4.762879], + [-154.068785, -6.208506], + [-161.296919, -6.208506] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -4.762879], + [-161.296919, -3.317252], + [-154.068785, -3.317252], + [-154.068785, -4.762879], + [-161.296919, -4.762879] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -3.317252], + [-161.296919, -1.871625], + [-154.068785, -1.871625], + [-154.068785, -3.317252], + [-161.296919, -3.317252] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -1.871625], + [-161.296919, -0.425999], + [-154.068785, -0.425999], + [-154.068785, -1.871625], + [-161.296919, -1.871625] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -0.425999], + [-161.296919, 1.019628], + [-154.068785, 1.019628], + [-154.068785, -0.425999], + [-161.296919, -0.425999] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 1.019628], + [-161.296919, 2.465255], + [-154.068785, 2.465255], + [-154.068785, 1.019628], + [-161.296919, 1.019628] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 2.465255], + [-161.296919, 3.910882], + [-154.068785, 3.910882], + [-154.068785, 2.465255], + [-161.296919, 2.465255] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 3.910882], + [-161.296919, 5.356508], + [-154.068785, 5.356508], + [-154.068785, 3.910882], + [-161.296919, 3.910882] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 5.356508], + [-161.296919, 6.802135], + [-154.068785, 6.802135], + [-154.068785, 5.356508], + [-161.296919, 5.356508] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 6.802135], + [-161.296919, 8.247762], + [-154.068785, 8.247762], + [-154.068785, 6.802135], + [-161.296919, 6.802135] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 8.247762], + [-161.296919, 9.693389], + [-154.068785, 9.693389], + [-154.068785, 8.247762], + [-161.296919, 8.247762] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 9.693389], + [-161.296919, 11.139016], + [-154.068785, 11.139016], + [-154.068785, 9.693389], + [-161.296919, 9.693389] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 11.139016], + [-161.296919, 12.584642], + [-154.068785, 12.584642], + [-154.068785, 11.139016], + [-161.296919, 11.139016] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 12.584642], + [-161.296919, 14.030269], + [-154.068785, 14.030269], + [-154.068785, 12.584642], + [-161.296919, 12.584642] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 14.030269], + [-161.296919, 15.475896], + [-154.068785, 15.475896], + [-154.068785, 14.030269], + [-161.296919, 14.030269] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 15.475896], + [-161.296919, 16.921523], + [-154.068785, 16.921523], + [-154.068785, 15.475896], + [-161.296919, 15.475896] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 16.921523], + [-161.296919, 18.367149], + [-154.068785, 18.367149], + [-154.068785, 16.921523], + [-161.296919, 16.921523] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 18.367149], + [-161.296919, 19.812776], + [-154.068785, 19.812776], + [-154.068785, 18.367149], + [-161.296919, 18.367149] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 19.812776], + [-161.296919, 21.258403], + [-154.068785, 21.258403], + [-154.068785, 19.812776], + [-161.296919, 19.812776] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 21.258403], + [-161.296919, 22.70403], + [-154.068785, 22.70403], + [-154.068785, 21.258403], + [-161.296919, 21.258403] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 22.70403], + [-161.296919, 24.149656], + [-154.068785, 24.149656], + [-154.068785, 22.70403], + [-161.296919, 22.70403] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 24.149656], + [-161.296919, 25.595283], + [-154.068785, 25.595283], + [-154.068785, 24.149656], + [-161.296919, 24.149656] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 25.595283], + [-161.296919, 27.04091], + [-154.068785, 27.04091], + [-154.068785, 25.595283], + [-161.296919, 25.595283] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 27.04091], + [-161.296919, 28.486537], + [-154.068785, 28.486537], + [-154.068785, 27.04091], + [-161.296919, 27.04091] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 28.486537], + [-161.296919, 29.932163], + [-154.068785, 29.932163], + [-154.068785, 28.486537], + [-161.296919, 28.486537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 29.932163], + [-161.296919, 31.37779], + [-154.068785, 31.37779], + [-154.068785, 29.932163], + [-161.296919, 29.932163] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 31.37779], + [-161.296919, 32.823417], + [-154.068785, 32.823417], + [-154.068785, 31.37779], + [-161.296919, 31.37779] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 32.823417], + [-161.296919, 34.269044], + [-154.068785, 34.269044], + [-154.068785, 32.823417], + [-161.296919, 32.823417] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 34.269044], + [-161.296919, 35.714671], + [-154.068785, 35.714671], + [-154.068785, 34.269044], + [-161.296919, 34.269044] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 35.714671], + [-161.296919, 37.160297], + [-154.068785, 37.160297], + [-154.068785, 35.714671], + [-161.296919, 35.714671] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 37.160297], + [-161.296919, 38.605924], + [-154.068785, 38.605924], + [-154.068785, 37.160297], + [-161.296919, 37.160297] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 38.605924], + [-161.296919, 40.051551], + [-154.068785, 40.051551], + [-154.068785, 38.605924], + [-161.296919, 38.605924] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 40.051551], + [-161.296919, 41.497178], + [-154.068785, 41.497178], + [-154.068785, 40.051551], + [-161.296919, 40.051551] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 41.497178], + [-161.296919, 42.942804], + [-154.068785, 42.942804], + [-154.068785, 41.497178], + [-161.296919, 41.497178] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 42.942804], + [-161.296919, 44.388431], + [-154.068785, 44.388431], + [-154.068785, 42.942804], + [-161.296919, 42.942804] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 44.388431], + [-161.296919, 45.834058], + [-154.068785, 45.834058], + [-154.068785, 44.388431], + [-161.296919, 44.388431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 45.834058], + [-161.296919, 47.279685], + [-154.068785, 47.279685], + [-154.068785, 45.834058], + [-161.296919, 45.834058] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 47.279685], + [-161.296919, 48.725311], + [-154.068785, 48.725311], + [-154.068785, 47.279685], + [-161.296919, 47.279685] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 48.725311], + [-161.296919, 50.170938], + [-154.068785, 50.170938], + [-154.068785, 48.725311], + [-161.296919, 48.725311] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 50.170938], + [-161.296919, 51.616565], + [-154.068785, 51.616565], + [-154.068785, 50.170938], + [-161.296919, 50.170938] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 51.616565], + [-161.296919, 53.062192], + [-154.068785, 53.062192], + [-154.068785, 51.616565], + [-161.296919, 51.616565] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 53.062192], + [-161.296919, 54.507819], + [-154.068785, 54.507819], + [-154.068785, 53.062192], + [-161.296919, 53.062192] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 54.507819], + [-161.296919, 55.953445], + [-154.068785, 55.953445], + [-154.068785, 54.507819], + [-161.296919, 54.507819] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 55.953445], + [-161.296919, 57.399072], + [-154.068785, 57.399072], + [-154.068785, 55.953445], + [-161.296919, 55.953445] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 57.399072], + [-161.296919, 58.844699], + [-154.068785, 58.844699], + [-154.068785, 57.399072], + [-161.296919, 57.399072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 58.844699], + [-161.296919, 60.290326], + [-154.068785, 60.290326], + [-154.068785, 58.844699], + [-161.296919, 58.844699] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 60.290326], + [-161.296919, 61.735952], + [-154.068785, 61.735952], + [-154.068785, 60.290326], + [-161.296919, 60.290326] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 61.735952], + [-161.296919, 63.181579], + [-154.068785, 63.181579], + [-154.068785, 61.735952], + [-161.296919, 61.735952] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 63.181579], + [-161.296919, 64.627206], + [-154.068785, 64.627206], + [-154.068785, 63.181579], + [-161.296919, 63.181579] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 64.627206], + [-161.296919, 66.072833], + [-154.068785, 66.072833], + [-154.068785, 64.627206], + [-161.296919, 64.627206] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 66.072833], + [-161.296919, 67.518459], + [-154.068785, 67.518459], + [-154.068785, 66.072833], + [-161.296919, 66.072833] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 67.518459], + [-161.296919, 68.964086], + [-154.068785, 68.964086], + [-154.068785, 67.518459], + [-161.296919, 67.518459] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 68.964086], + [-161.296919, 70.409713], + [-154.068785, 70.409713], + [-154.068785, 68.964086], + [-161.296919, 68.964086] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 70.409713], + [-161.296919, 71.85534], + [-154.068785, 71.85534], + [-154.068785, 70.409713], + [-161.296919, 70.409713] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 71.85534], + [-161.296919, 73.300967], + [-154.068785, 73.300967], + [-154.068785, 71.85534], + [-161.296919, 71.85534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 73.300967], + [-161.296919, 74.746593], + [-154.068785, 74.746593], + [-154.068785, 73.300967], + [-161.296919, 73.300967] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 74.746593], + [-161.296919, 76.19222], + [-154.068785, 76.19222], + [-154.068785, 74.746593], + [-161.296919, 74.746593] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 76.19222], + [-161.296919, 77.637847], + [-154.068785, 77.637847], + [-154.068785, 76.19222], + [-161.296919, 76.19222] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -79.935471], + [-154.068785, -78.489844], + [-146.840652, -78.489844], + [-146.840652, -79.935471], + [-154.068785, -79.935471] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -78.489844], + [-154.068785, -77.044217], + [-146.840652, -77.044217], + [-146.840652, -78.489844], + [-154.068785, -78.489844] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -77.044217], + [-154.068785, -75.598591], + [-146.840652, -75.598591], + [-146.840652, -77.044217], + [-154.068785, -77.044217] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -75.598591], + [-154.068785, -74.152964], + [-146.840652, -74.152964], + [-146.840652, -75.598591], + [-154.068785, -75.598591] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -74.152964], + [-154.068785, -72.707337], + [-146.840652, -72.707337], + [-146.840652, -74.152964], + [-154.068785, -74.152964] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -72.707337], + [-154.068785, -71.26171], + [-146.840652, -71.26171], + [-146.840652, -72.707337], + [-154.068785, -72.707337] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -71.26171], + [-154.068785, -69.816084], + [-146.840652, -69.816084], + [-146.840652, -71.26171], + [-154.068785, -71.26171] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -69.816084], + [-154.068785, -68.370457], + [-146.840652, -68.370457], + [-146.840652, -69.816084], + [-154.068785, -69.816084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -68.370457], + [-154.068785, -66.92483], + [-146.840652, -66.92483], + [-146.840652, -68.370457], + [-154.068785, -68.370457] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -66.92483], + [-154.068785, -65.479203], + [-146.840652, -65.479203], + [-146.840652, -66.92483], + [-154.068785, -66.92483] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -65.479203], + [-154.068785, -64.033576], + [-146.840652, -64.033576], + [-146.840652, -65.479203], + [-154.068785, -65.479203] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -64.033576], + [-154.068785, -62.58795], + [-146.840652, -62.58795], + [-146.840652, -64.033576], + [-154.068785, -64.033576] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -62.58795], + [-154.068785, -61.142323], + [-146.840652, -61.142323], + [-146.840652, -62.58795], + [-154.068785, -62.58795] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -61.142323], + [-154.068785, -59.696696], + [-146.840652, -59.696696], + [-146.840652, -61.142323], + [-154.068785, -61.142323] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -59.696696], + [-154.068785, -58.251069], + [-146.840652, -58.251069], + [-146.840652, -59.696696], + [-154.068785, -59.696696] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -58.251069], + [-154.068785, -56.805443], + [-146.840652, -56.805443], + [-146.840652, -58.251069], + [-154.068785, -58.251069] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -56.805443], + [-154.068785, -55.359816], + [-146.840652, -55.359816], + [-146.840652, -56.805443], + [-154.068785, -56.805443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -55.359816], + [-154.068785, -53.914189], + [-146.840652, -53.914189], + [-146.840652, -55.359816], + [-154.068785, -55.359816] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -53.914189], + [-154.068785, -52.468562], + [-146.840652, -52.468562], + [-146.840652, -53.914189], + [-154.068785, -53.914189] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -52.468562], + [-154.068785, -51.022936], + [-146.840652, -51.022936], + [-146.840652, -52.468562], + [-154.068785, -52.468562] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -51.022936], + [-154.068785, -49.577309], + [-146.840652, -49.577309], + [-146.840652, -51.022936], + [-154.068785, -51.022936] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -49.577309], + [-154.068785, -48.131682], + [-146.840652, -48.131682], + [-146.840652, -49.577309], + [-154.068785, -49.577309] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -48.131682], + [-154.068785, -46.686055], + [-146.840652, -46.686055], + [-146.840652, -48.131682], + [-154.068785, -48.131682] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -46.686055], + [-154.068785, -45.240428], + [-146.840652, -45.240428], + [-146.840652, -46.686055], + [-154.068785, -46.686055] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -45.240428], + [-154.068785, -43.794802], + [-146.840652, -43.794802], + [-146.840652, -45.240428], + [-154.068785, -45.240428] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -43.794802], + [-154.068785, -42.349175], + [-146.840652, -42.349175], + [-146.840652, -43.794802], + [-154.068785, -43.794802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -42.349175], + [-154.068785, -40.903548], + [-146.840652, -40.903548], + [-146.840652, -42.349175], + [-154.068785, -42.349175] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -40.903548], + [-154.068785, -39.457921], + [-146.840652, -39.457921], + [-146.840652, -40.903548], + [-154.068785, -40.903548] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -39.457921], + [-154.068785, -38.012295], + [-146.840652, -38.012295], + [-146.840652, -39.457921], + [-154.068785, -39.457921] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -38.012295], + [-154.068785, -36.566668], + [-146.840652, -36.566668], + [-146.840652, -38.012295], + [-154.068785, -38.012295] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -36.566668], + [-154.068785, -35.121041], + [-146.840652, -35.121041], + [-146.840652, -36.566668], + [-154.068785, -36.566668] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -35.121041], + [-154.068785, -33.675414], + [-146.840652, -33.675414], + [-146.840652, -35.121041], + [-154.068785, -35.121041] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -33.675414], + [-154.068785, -32.229788], + [-146.840652, -32.229788], + [-146.840652, -33.675414], + [-154.068785, -33.675414] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -32.229788], + [-154.068785, -30.784161], + [-146.840652, -30.784161], + [-146.840652, -32.229788], + [-154.068785, -32.229788] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -30.784161], + [-154.068785, -29.338534], + [-146.840652, -29.338534], + [-146.840652, -30.784161], + [-154.068785, -30.784161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -29.338534], + [-154.068785, -27.892907], + [-146.840652, -27.892907], + [-146.840652, -29.338534], + [-154.068785, -29.338534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -27.892907], + [-154.068785, -26.44728], + [-146.840652, -26.44728], + [-146.840652, -27.892907], + [-154.068785, -27.892907] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -26.44728], + [-154.068785, -25.001654], + [-146.840652, -25.001654], + [-146.840652, -26.44728], + [-154.068785, -26.44728] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -25.001654], + [-154.068785, -23.556027], + [-146.840652, -23.556027], + [-146.840652, -25.001654], + [-154.068785, -25.001654] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -23.556027], + [-154.068785, -22.1104], + [-146.840652, -22.1104], + [-146.840652, -23.556027], + [-154.068785, -23.556027] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -22.1104], + [-154.068785, -20.664773], + [-146.840652, -20.664773], + [-146.840652, -22.1104], + [-154.068785, -22.1104] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -20.664773], + [-154.068785, -19.219147], + [-146.840652, -19.219147], + [-146.840652, -20.664773], + [-154.068785, -20.664773] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -19.219147], + [-154.068785, -17.77352], + [-146.840652, -17.77352], + [-146.840652, -19.219147], + [-154.068785, -19.219147] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -17.77352], + [-154.068785, -16.327893], + [-146.840652, -16.327893], + [-146.840652, -17.77352], + [-154.068785, -17.77352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -16.327893], + [-154.068785, -14.882266], + [-146.840652, -14.882266], + [-146.840652, -16.327893], + [-154.068785, -16.327893] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -14.882266], + [-154.068785, -13.43664], + [-146.840652, -13.43664], + [-146.840652, -14.882266], + [-154.068785, -14.882266] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -13.43664], + [-154.068785, -11.991013], + [-146.840652, -11.991013], + [-146.840652, -13.43664], + [-154.068785, -13.43664] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -11.991013], + [-154.068785, -10.545386], + [-146.840652, -10.545386], + [-146.840652, -11.991013], + [-154.068785, -11.991013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -10.545386], + [-154.068785, -9.099759], + [-146.840652, -9.099759], + [-146.840652, -10.545386], + [-154.068785, -10.545386] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -9.099759], + [-154.068785, -7.654132], + [-146.840652, -7.654132], + [-146.840652, -9.099759], + [-154.068785, -9.099759] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -7.654132], + [-154.068785, -6.208506], + [-146.840652, -6.208506], + [-146.840652, -7.654132], + [-154.068785, -7.654132] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -6.208506], + [-154.068785, -4.762879], + [-146.840652, -4.762879], + [-146.840652, -6.208506], + [-154.068785, -6.208506] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -4.762879], + [-154.068785, -3.317252], + [-146.840652, -3.317252], + [-146.840652, -4.762879], + [-154.068785, -4.762879] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -3.317252], + [-154.068785, -1.871625], + [-146.840652, -1.871625], + [-146.840652, -3.317252], + [-154.068785, -3.317252] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -1.871625], + [-154.068785, -0.425999], + [-146.840652, -0.425999], + [-146.840652, -1.871625], + [-154.068785, -1.871625] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -0.425999], + [-154.068785, 1.019628], + [-146.840652, 1.019628], + [-146.840652, -0.425999], + [-154.068785, -0.425999] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 1.019628], + [-154.068785, 2.465255], + [-146.840652, 2.465255], + [-146.840652, 1.019628], + [-154.068785, 1.019628] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 2.465255], + [-154.068785, 3.910882], + [-146.840652, 3.910882], + [-146.840652, 2.465255], + [-154.068785, 2.465255] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 3.910882], + [-154.068785, 5.356508], + [-146.840652, 5.356508], + [-146.840652, 3.910882], + [-154.068785, 3.910882] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 5.356508], + [-154.068785, 6.802135], + [-146.840652, 6.802135], + [-146.840652, 5.356508], + [-154.068785, 5.356508] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 6.802135], + [-154.068785, 8.247762], + [-146.840652, 8.247762], + [-146.840652, 6.802135], + [-154.068785, 6.802135] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 8.247762], + [-154.068785, 9.693389], + [-146.840652, 9.693389], + [-146.840652, 8.247762], + [-154.068785, 8.247762] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 9.693389], + [-154.068785, 11.139016], + [-146.840652, 11.139016], + [-146.840652, 9.693389], + [-154.068785, 9.693389] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 11.139016], + [-154.068785, 12.584642], + [-146.840652, 12.584642], + [-146.840652, 11.139016], + [-154.068785, 11.139016] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 12.584642], + [-154.068785, 14.030269], + [-146.840652, 14.030269], + [-146.840652, 12.584642], + [-154.068785, 12.584642] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 14.030269], + [-154.068785, 15.475896], + [-146.840652, 15.475896], + [-146.840652, 14.030269], + [-154.068785, 14.030269] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 15.475896], + [-154.068785, 16.921523], + [-146.840652, 16.921523], + [-146.840652, 15.475896], + [-154.068785, 15.475896] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 16.921523], + [-154.068785, 18.367149], + [-146.840652, 18.367149], + [-146.840652, 16.921523], + [-154.068785, 16.921523] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 18.367149], + [-154.068785, 19.812776], + [-146.840652, 19.812776], + [-146.840652, 18.367149], + [-154.068785, 18.367149] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 19.812776], + [-154.068785, 21.258403], + [-146.840652, 21.258403], + [-146.840652, 19.812776], + [-154.068785, 19.812776] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 21.258403], + [-154.068785, 22.70403], + [-146.840652, 22.70403], + [-146.840652, 21.258403], + [-154.068785, 21.258403] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 22.70403], + [-154.068785, 24.149656], + [-146.840652, 24.149656], + [-146.840652, 22.70403], + [-154.068785, 22.70403] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 24.149656], + [-154.068785, 25.595283], + [-146.840652, 25.595283], + [-146.840652, 24.149656], + [-154.068785, 24.149656] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 25.595283], + [-154.068785, 27.04091], + [-146.840652, 27.04091], + [-146.840652, 25.595283], + [-154.068785, 25.595283] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 27.04091], + [-154.068785, 28.486537], + [-146.840652, 28.486537], + [-146.840652, 27.04091], + [-154.068785, 27.04091] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 28.486537], + [-154.068785, 29.932163], + [-146.840652, 29.932163], + [-146.840652, 28.486537], + [-154.068785, 28.486537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 29.932163], + [-154.068785, 31.37779], + [-146.840652, 31.37779], + [-146.840652, 29.932163], + [-154.068785, 29.932163] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 31.37779], + [-154.068785, 32.823417], + [-146.840652, 32.823417], + [-146.840652, 31.37779], + [-154.068785, 31.37779] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 32.823417], + [-154.068785, 34.269044], + [-146.840652, 34.269044], + [-146.840652, 32.823417], + [-154.068785, 32.823417] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 34.269044], + [-154.068785, 35.714671], + [-146.840652, 35.714671], + [-146.840652, 34.269044], + [-154.068785, 34.269044] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 35.714671], + [-154.068785, 37.160297], + [-146.840652, 37.160297], + [-146.840652, 35.714671], + [-154.068785, 35.714671] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 37.160297], + [-154.068785, 38.605924], + [-146.840652, 38.605924], + [-146.840652, 37.160297], + [-154.068785, 37.160297] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 38.605924], + [-154.068785, 40.051551], + [-146.840652, 40.051551], + [-146.840652, 38.605924], + [-154.068785, 38.605924] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 40.051551], + [-154.068785, 41.497178], + [-146.840652, 41.497178], + [-146.840652, 40.051551], + [-154.068785, 40.051551] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 41.497178], + [-154.068785, 42.942804], + [-146.840652, 42.942804], + [-146.840652, 41.497178], + [-154.068785, 41.497178] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 42.942804], + [-154.068785, 44.388431], + [-146.840652, 44.388431], + [-146.840652, 42.942804], + [-154.068785, 42.942804] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 44.388431], + [-154.068785, 45.834058], + [-146.840652, 45.834058], + [-146.840652, 44.388431], + [-154.068785, 44.388431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 45.834058], + [-154.068785, 47.279685], + [-146.840652, 47.279685], + [-146.840652, 45.834058], + [-154.068785, 45.834058] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 47.279685], + [-154.068785, 48.725311], + [-146.840652, 48.725311], + [-146.840652, 47.279685], + [-154.068785, 47.279685] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 48.725311], + [-154.068785, 50.170938], + [-146.840652, 50.170938], + [-146.840652, 48.725311], + [-154.068785, 48.725311] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 50.170938], + [-154.068785, 51.616565], + [-146.840652, 51.616565], + [-146.840652, 50.170938], + [-154.068785, 50.170938] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 51.616565], + [-154.068785, 53.062192], + [-146.840652, 53.062192], + [-146.840652, 51.616565], + [-154.068785, 51.616565] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 53.062192], + [-154.068785, 54.507819], + [-146.840652, 54.507819], + [-146.840652, 53.062192], + [-154.068785, 53.062192] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 54.507819], + [-154.068785, 55.953445], + [-146.840652, 55.953445], + [-146.840652, 54.507819], + [-154.068785, 54.507819] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 55.953445], + [-154.068785, 57.399072], + [-146.840652, 57.399072], + [-146.840652, 55.953445], + [-154.068785, 55.953445] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 57.399072], + [-154.068785, 58.844699], + [-146.840652, 58.844699], + [-146.840652, 57.399072], + [-154.068785, 57.399072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 58.844699], + [-154.068785, 60.290326], + [-146.840652, 60.290326], + [-146.840652, 58.844699], + [-154.068785, 58.844699] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 60.290326], + [-154.068785, 61.735952], + [-146.840652, 61.735952], + [-146.840652, 60.290326], + [-154.068785, 60.290326] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 61.735952], + [-154.068785, 63.181579], + [-146.840652, 63.181579], + [-146.840652, 61.735952], + [-154.068785, 61.735952] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 63.181579], + [-154.068785, 64.627206], + [-146.840652, 64.627206], + [-146.840652, 63.181579], + [-154.068785, 63.181579] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 64.627206], + [-154.068785, 66.072833], + [-146.840652, 66.072833], + [-146.840652, 64.627206], + [-154.068785, 64.627206] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 66.072833], + [-154.068785, 67.518459], + [-146.840652, 67.518459], + [-146.840652, 66.072833], + [-154.068785, 66.072833] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 67.518459], + [-154.068785, 68.964086], + [-146.840652, 68.964086], + [-146.840652, 67.518459], + [-154.068785, 67.518459] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 68.964086], + [-154.068785, 70.409713], + [-146.840652, 70.409713], + [-146.840652, 68.964086], + [-154.068785, 68.964086] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 70.409713], + [-154.068785, 71.85534], + [-146.840652, 71.85534], + [-146.840652, 70.409713], + [-154.068785, 70.409713] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 71.85534], + [-154.068785, 73.300967], + [-146.840652, 73.300967], + [-146.840652, 71.85534], + [-154.068785, 71.85534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 73.300967], + [-154.068785, 74.746593], + [-146.840652, 74.746593], + [-146.840652, 73.300967], + [-154.068785, 73.300967] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 74.746593], + [-154.068785, 76.19222], + [-146.840652, 76.19222], + [-146.840652, 74.746593], + [-154.068785, 74.746593] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 76.19222], + [-154.068785, 77.637847], + [-146.840652, 77.637847], + [-146.840652, 76.19222], + [-154.068785, 76.19222] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -79.935471], + [-146.840652, -78.489844], + [-139.612518, -78.489844], + [-139.612518, -79.935471], + [-146.840652, -79.935471] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -78.489844], + [-146.840652, -77.044217], + [-139.612518, -77.044217], + [-139.612518, -78.489844], + [-146.840652, -78.489844] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -77.044217], + [-146.840652, -75.598591], + [-139.612518, -75.598591], + [-139.612518, -77.044217], + [-146.840652, -77.044217] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -75.598591], + [-146.840652, -74.152964], + [-139.612518, -74.152964], + [-139.612518, -75.598591], + [-146.840652, -75.598591] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -74.152964], + [-146.840652, -72.707337], + [-139.612518, -72.707337], + [-139.612518, -74.152964], + [-146.840652, -74.152964] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -72.707337], + [-146.840652, -71.26171], + [-139.612518, -71.26171], + [-139.612518, -72.707337], + [-146.840652, -72.707337] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -71.26171], + [-146.840652, -69.816084], + [-139.612518, -69.816084], + [-139.612518, -71.26171], + [-146.840652, -71.26171] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -69.816084], + [-146.840652, -68.370457], + [-139.612518, -68.370457], + [-139.612518, -69.816084], + [-146.840652, -69.816084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -68.370457], + [-146.840652, -66.92483], + [-139.612518, -66.92483], + [-139.612518, -68.370457], + [-146.840652, -68.370457] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -66.92483], + [-146.840652, -65.479203], + [-139.612518, -65.479203], + [-139.612518, -66.92483], + [-146.840652, -66.92483] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -65.479203], + [-146.840652, -64.033576], + [-139.612518, -64.033576], + [-139.612518, -65.479203], + [-146.840652, -65.479203] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -64.033576], + [-146.840652, -62.58795], + [-139.612518, -62.58795], + [-139.612518, -64.033576], + [-146.840652, -64.033576] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -62.58795], + [-146.840652, -61.142323], + [-139.612518, -61.142323], + [-139.612518, -62.58795], + [-146.840652, -62.58795] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -61.142323], + [-146.840652, -59.696696], + [-139.612518, -59.696696], + [-139.612518, -61.142323], + [-146.840652, -61.142323] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -59.696696], + [-146.840652, -58.251069], + [-139.612518, -58.251069], + [-139.612518, -59.696696], + [-146.840652, -59.696696] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -58.251069], + [-146.840652, -56.805443], + [-139.612518, -56.805443], + [-139.612518, -58.251069], + [-146.840652, -58.251069] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -56.805443], + [-146.840652, -55.359816], + [-139.612518, -55.359816], + [-139.612518, -56.805443], + [-146.840652, -56.805443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -55.359816], + [-146.840652, -53.914189], + [-139.612518, -53.914189], + [-139.612518, -55.359816], + [-146.840652, -55.359816] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -53.914189], + [-146.840652, -52.468562], + [-139.612518, -52.468562], + [-139.612518, -53.914189], + [-146.840652, -53.914189] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -52.468562], + [-146.840652, -51.022936], + [-139.612518, -51.022936], + [-139.612518, -52.468562], + [-146.840652, -52.468562] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -51.022936], + [-146.840652, -49.577309], + [-139.612518, -49.577309], + [-139.612518, -51.022936], + [-146.840652, -51.022936] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -49.577309], + [-146.840652, -48.131682], + [-139.612518, -48.131682], + [-139.612518, -49.577309], + [-146.840652, -49.577309] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -48.131682], + [-146.840652, -46.686055], + [-139.612518, -46.686055], + [-139.612518, -48.131682], + [-146.840652, -48.131682] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -46.686055], + [-146.840652, -45.240428], + [-139.612518, -45.240428], + [-139.612518, -46.686055], + [-146.840652, -46.686055] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -45.240428], + [-146.840652, -43.794802], + [-139.612518, -43.794802], + [-139.612518, -45.240428], + [-146.840652, -45.240428] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -43.794802], + [-146.840652, -42.349175], + [-139.612518, -42.349175], + [-139.612518, -43.794802], + [-146.840652, -43.794802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -42.349175], + [-146.840652, -40.903548], + [-139.612518, -40.903548], + [-139.612518, -42.349175], + [-146.840652, -42.349175] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -40.903548], + [-146.840652, -39.457921], + [-139.612518, -39.457921], + [-139.612518, -40.903548], + [-146.840652, -40.903548] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -39.457921], + [-146.840652, -38.012295], + [-139.612518, -38.012295], + [-139.612518, -39.457921], + [-146.840652, -39.457921] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -38.012295], + [-146.840652, -36.566668], + [-139.612518, -36.566668], + [-139.612518, -38.012295], + [-146.840652, -38.012295] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -36.566668], + [-146.840652, -35.121041], + [-139.612518, -35.121041], + [-139.612518, -36.566668], + [-146.840652, -36.566668] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -35.121041], + [-146.840652, -33.675414], + [-139.612518, -33.675414], + [-139.612518, -35.121041], + [-146.840652, -35.121041] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -33.675414], + [-146.840652, -32.229788], + [-139.612518, -32.229788], + [-139.612518, -33.675414], + [-146.840652, -33.675414] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -32.229788], + [-146.840652, -30.784161], + [-139.612518, -30.784161], + [-139.612518, -32.229788], + [-146.840652, -32.229788] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -30.784161], + [-146.840652, -29.338534], + [-139.612518, -29.338534], + [-139.612518, -30.784161], + [-146.840652, -30.784161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -29.338534], + [-146.840652, -27.892907], + [-139.612518, -27.892907], + [-139.612518, -29.338534], + [-146.840652, -29.338534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -27.892907], + [-146.840652, -26.44728], + [-139.612518, -26.44728], + [-139.612518, -27.892907], + [-146.840652, -27.892907] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -26.44728], + [-146.840652, -25.001654], + [-139.612518, -25.001654], + [-139.612518, -26.44728], + [-146.840652, -26.44728] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -25.001654], + [-146.840652, -23.556027], + [-139.612518, -23.556027], + [-139.612518, -25.001654], + [-146.840652, -25.001654] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -23.556027], + [-146.840652, -22.1104], + [-139.612518, -22.1104], + [-139.612518, -23.556027], + [-146.840652, -23.556027] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -22.1104], + [-146.840652, -20.664773], + [-139.612518, -20.664773], + [-139.612518, -22.1104], + [-146.840652, -22.1104] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -20.664773], + [-146.840652, -19.219147], + [-139.612518, -19.219147], + [-139.612518, -20.664773], + [-146.840652, -20.664773] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -19.219147], + [-146.840652, -17.77352], + [-139.612518, -17.77352], + [-139.612518, -19.219147], + [-146.840652, -19.219147] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -17.77352], + [-146.840652, -16.327893], + [-139.612518, -16.327893], + [-139.612518, -17.77352], + [-146.840652, -17.77352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -16.327893], + [-146.840652, -14.882266], + [-139.612518, -14.882266], + [-139.612518, -16.327893], + [-146.840652, -16.327893] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -14.882266], + [-146.840652, -13.43664], + [-139.612518, -13.43664], + [-139.612518, -14.882266], + [-146.840652, -14.882266] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -13.43664], + [-146.840652, -11.991013], + [-139.612518, -11.991013], + [-139.612518, -13.43664], + [-146.840652, -13.43664] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -11.991013], + [-146.840652, -10.545386], + [-139.612518, -10.545386], + [-139.612518, -11.991013], + [-146.840652, -11.991013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -10.545386], + [-146.840652, -9.099759], + [-139.612518, -9.099759], + [-139.612518, -10.545386], + [-146.840652, -10.545386] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -9.099759], + [-146.840652, -7.654132], + [-139.612518, -7.654132], + [-139.612518, -9.099759], + [-146.840652, -9.099759] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -7.654132], + [-146.840652, -6.208506], + [-139.612518, -6.208506], + [-139.612518, -7.654132], + [-146.840652, -7.654132] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -6.208506], + [-146.840652, -4.762879], + [-139.612518, -4.762879], + [-139.612518, -6.208506], + [-146.840652, -6.208506] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -4.762879], + [-146.840652, -3.317252], + [-139.612518, -3.317252], + [-139.612518, -4.762879], + [-146.840652, -4.762879] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -3.317252], + [-146.840652, -1.871625], + [-139.612518, -1.871625], + [-139.612518, -3.317252], + [-146.840652, -3.317252] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -1.871625], + [-146.840652, -0.425999], + [-139.612518, -0.425999], + [-139.612518, -1.871625], + [-146.840652, -1.871625] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -0.425999], + [-146.840652, 1.019628], + [-139.612518, 1.019628], + [-139.612518, -0.425999], + [-146.840652, -0.425999] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 1.019628], + [-146.840652, 2.465255], + [-139.612518, 2.465255], + [-139.612518, 1.019628], + [-146.840652, 1.019628] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 2.465255], + [-146.840652, 3.910882], + [-139.612518, 3.910882], + [-139.612518, 2.465255], + [-146.840652, 2.465255] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 3.910882], + [-146.840652, 5.356508], + [-139.612518, 5.356508], + [-139.612518, 3.910882], + [-146.840652, 3.910882] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 5.356508], + [-146.840652, 6.802135], + [-139.612518, 6.802135], + [-139.612518, 5.356508], + [-146.840652, 5.356508] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 6.802135], + [-146.840652, 8.247762], + [-139.612518, 8.247762], + [-139.612518, 6.802135], + [-146.840652, 6.802135] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 8.247762], + [-146.840652, 9.693389], + [-139.612518, 9.693389], + [-139.612518, 8.247762], + [-146.840652, 8.247762] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 9.693389], + [-146.840652, 11.139016], + [-139.612518, 11.139016], + [-139.612518, 9.693389], + [-146.840652, 9.693389] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 11.139016], + [-146.840652, 12.584642], + [-139.612518, 12.584642], + [-139.612518, 11.139016], + [-146.840652, 11.139016] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 12.584642], + [-146.840652, 14.030269], + [-139.612518, 14.030269], + [-139.612518, 12.584642], + [-146.840652, 12.584642] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 14.030269], + [-146.840652, 15.475896], + [-139.612518, 15.475896], + [-139.612518, 14.030269], + [-146.840652, 14.030269] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 15.475896], + [-146.840652, 16.921523], + [-139.612518, 16.921523], + [-139.612518, 15.475896], + [-146.840652, 15.475896] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 16.921523], + [-146.840652, 18.367149], + [-139.612518, 18.367149], + [-139.612518, 16.921523], + [-146.840652, 16.921523] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 18.367149], + [-146.840652, 19.812776], + [-139.612518, 19.812776], + [-139.612518, 18.367149], + [-146.840652, 18.367149] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 19.812776], + [-146.840652, 21.258403], + [-139.612518, 21.258403], + [-139.612518, 19.812776], + [-146.840652, 19.812776] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 21.258403], + [-146.840652, 22.70403], + [-139.612518, 22.70403], + [-139.612518, 21.258403], + [-146.840652, 21.258403] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 22.70403], + [-146.840652, 24.149656], + [-139.612518, 24.149656], + [-139.612518, 22.70403], + [-146.840652, 22.70403] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 24.149656], + [-146.840652, 25.595283], + [-139.612518, 25.595283], + [-139.612518, 24.149656], + [-146.840652, 24.149656] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 25.595283], + [-146.840652, 27.04091], + [-139.612518, 27.04091], + [-139.612518, 25.595283], + [-146.840652, 25.595283] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 27.04091], + [-146.840652, 28.486537], + [-139.612518, 28.486537], + [-139.612518, 27.04091], + [-146.840652, 27.04091] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 28.486537], + [-146.840652, 29.932163], + [-139.612518, 29.932163], + [-139.612518, 28.486537], + [-146.840652, 28.486537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 29.932163], + [-146.840652, 31.37779], + [-139.612518, 31.37779], + [-139.612518, 29.932163], + [-146.840652, 29.932163] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 31.37779], + [-146.840652, 32.823417], + [-139.612518, 32.823417], + [-139.612518, 31.37779], + [-146.840652, 31.37779] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 32.823417], + [-146.840652, 34.269044], + [-139.612518, 34.269044], + [-139.612518, 32.823417], + [-146.840652, 32.823417] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 34.269044], + [-146.840652, 35.714671], + [-139.612518, 35.714671], + [-139.612518, 34.269044], + [-146.840652, 34.269044] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 35.714671], + [-146.840652, 37.160297], + [-139.612518, 37.160297], + [-139.612518, 35.714671], + [-146.840652, 35.714671] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 37.160297], + [-146.840652, 38.605924], + [-139.612518, 38.605924], + [-139.612518, 37.160297], + [-146.840652, 37.160297] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 38.605924], + [-146.840652, 40.051551], + [-139.612518, 40.051551], + [-139.612518, 38.605924], + [-146.840652, 38.605924] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 40.051551], + [-146.840652, 41.497178], + [-139.612518, 41.497178], + [-139.612518, 40.051551], + [-146.840652, 40.051551] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 41.497178], + [-146.840652, 42.942804], + [-139.612518, 42.942804], + [-139.612518, 41.497178], + [-146.840652, 41.497178] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 42.942804], + [-146.840652, 44.388431], + [-139.612518, 44.388431], + [-139.612518, 42.942804], + [-146.840652, 42.942804] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 44.388431], + [-146.840652, 45.834058], + [-139.612518, 45.834058], + [-139.612518, 44.388431], + [-146.840652, 44.388431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 45.834058], + [-146.840652, 47.279685], + [-139.612518, 47.279685], + [-139.612518, 45.834058], + [-146.840652, 45.834058] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 47.279685], + [-146.840652, 48.725311], + [-139.612518, 48.725311], + [-139.612518, 47.279685], + [-146.840652, 47.279685] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 48.725311], + [-146.840652, 50.170938], + [-139.612518, 50.170938], + [-139.612518, 48.725311], + [-146.840652, 48.725311] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 50.170938], + [-146.840652, 51.616565], + [-139.612518, 51.616565], + [-139.612518, 50.170938], + [-146.840652, 50.170938] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 51.616565], + [-146.840652, 53.062192], + [-139.612518, 53.062192], + [-139.612518, 51.616565], + [-146.840652, 51.616565] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 53.062192], + [-146.840652, 54.507819], + [-139.612518, 54.507819], + [-139.612518, 53.062192], + [-146.840652, 53.062192] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 54.507819], + [-146.840652, 55.953445], + [-139.612518, 55.953445], + [-139.612518, 54.507819], + [-146.840652, 54.507819] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 55.953445], + [-146.840652, 57.399072], + [-139.612518, 57.399072], + [-139.612518, 55.953445], + [-146.840652, 55.953445] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 57.399072], + [-146.840652, 58.844699], + [-139.612518, 58.844699], + [-139.612518, 57.399072], + [-146.840652, 57.399072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 58.844699], + [-146.840652, 60.290326], + [-139.612518, 60.290326], + [-139.612518, 58.844699], + [-146.840652, 58.844699] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 60.290326], + [-146.840652, 61.735952], + [-139.612518, 61.735952], + [-139.612518, 60.290326], + [-146.840652, 60.290326] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 61.735952], + [-146.840652, 63.181579], + [-139.612518, 63.181579], + [-139.612518, 61.735952], + [-146.840652, 61.735952] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 63.181579], + [-146.840652, 64.627206], + [-139.612518, 64.627206], + [-139.612518, 63.181579], + [-146.840652, 63.181579] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 64.627206], + [-146.840652, 66.072833], + [-139.612518, 66.072833], + [-139.612518, 64.627206], + [-146.840652, 64.627206] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 66.072833], + [-146.840652, 67.518459], + [-139.612518, 67.518459], + [-139.612518, 66.072833], + [-146.840652, 66.072833] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 67.518459], + [-146.840652, 68.964086], + [-139.612518, 68.964086], + [-139.612518, 67.518459], + [-146.840652, 67.518459] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 68.964086], + [-146.840652, 70.409713], + [-139.612518, 70.409713], + [-139.612518, 68.964086], + [-146.840652, 68.964086] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 70.409713], + [-146.840652, 71.85534], + [-139.612518, 71.85534], + [-139.612518, 70.409713], + [-146.840652, 70.409713] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 71.85534], + [-146.840652, 73.300967], + [-139.612518, 73.300967], + [-139.612518, 71.85534], + [-146.840652, 71.85534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 73.300967], + [-146.840652, 74.746593], + [-139.612518, 74.746593], + [-139.612518, 73.300967], + [-146.840652, 73.300967] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 74.746593], + [-146.840652, 76.19222], + [-139.612518, 76.19222], + [-139.612518, 74.746593], + [-146.840652, 74.746593] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 76.19222], + [-146.840652, 77.637847], + [-139.612518, 77.637847], + [-139.612518, 76.19222], + [-146.840652, 76.19222] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -79.935471], + [-139.612518, -78.489844], + [-132.384384, -78.489844], + [-132.384384, -79.935471], + [-139.612518, -79.935471] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -78.489844], + [-139.612518, -77.044217], + [-132.384384, -77.044217], + [-132.384384, -78.489844], + [-139.612518, -78.489844] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -77.044217], + [-139.612518, -75.598591], + [-132.384384, -75.598591], + [-132.384384, -77.044217], + [-139.612518, -77.044217] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -75.598591], + [-139.612518, -74.152964], + [-132.384384, -74.152964], + [-132.384384, -75.598591], + [-139.612518, -75.598591] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -74.152964], + [-139.612518, -72.707337], + [-132.384384, -72.707337], + [-132.384384, -74.152964], + [-139.612518, -74.152964] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -72.707337], + [-139.612518, -71.26171], + [-132.384384, -71.26171], + [-132.384384, -72.707337], + [-139.612518, -72.707337] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -71.26171], + [-139.612518, -69.816084], + [-132.384384, -69.816084], + [-132.384384, -71.26171], + [-139.612518, -71.26171] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -69.816084], + [-139.612518, -68.370457], + [-132.384384, -68.370457], + [-132.384384, -69.816084], + [-139.612518, -69.816084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -68.370457], + [-139.612518, -66.92483], + [-132.384384, -66.92483], + [-132.384384, -68.370457], + [-139.612518, -68.370457] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -66.92483], + [-139.612518, -65.479203], + [-132.384384, -65.479203], + [-132.384384, -66.92483], + [-139.612518, -66.92483] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -65.479203], + [-139.612518, -64.033576], + [-132.384384, -64.033576], + [-132.384384, -65.479203], + [-139.612518, -65.479203] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -64.033576], + [-139.612518, -62.58795], + [-132.384384, -62.58795], + [-132.384384, -64.033576], + [-139.612518, -64.033576] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -62.58795], + [-139.612518, -61.142323], + [-132.384384, -61.142323], + [-132.384384, -62.58795], + [-139.612518, -62.58795] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -61.142323], + [-139.612518, -59.696696], + [-132.384384, -59.696696], + [-132.384384, -61.142323], + [-139.612518, -61.142323] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -59.696696], + [-139.612518, -58.251069], + [-132.384384, -58.251069], + [-132.384384, -59.696696], + [-139.612518, -59.696696] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -58.251069], + [-139.612518, -56.805443], + [-132.384384, -56.805443], + [-132.384384, -58.251069], + [-139.612518, -58.251069] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -56.805443], + [-139.612518, -55.359816], + [-132.384384, -55.359816], + [-132.384384, -56.805443], + [-139.612518, -56.805443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -55.359816], + [-139.612518, -53.914189], + [-132.384384, -53.914189], + [-132.384384, -55.359816], + [-139.612518, -55.359816] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -53.914189], + [-139.612518, -52.468562], + [-132.384384, -52.468562], + [-132.384384, -53.914189], + [-139.612518, -53.914189] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -52.468562], + [-139.612518, -51.022936], + [-132.384384, -51.022936], + [-132.384384, -52.468562], + [-139.612518, -52.468562] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -51.022936], + [-139.612518, -49.577309], + [-132.384384, -49.577309], + [-132.384384, -51.022936], + [-139.612518, -51.022936] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -49.577309], + [-139.612518, -48.131682], + [-132.384384, -48.131682], + [-132.384384, -49.577309], + [-139.612518, -49.577309] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -48.131682], + [-139.612518, -46.686055], + [-132.384384, -46.686055], + [-132.384384, -48.131682], + [-139.612518, -48.131682] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -46.686055], + [-139.612518, -45.240428], + [-132.384384, -45.240428], + [-132.384384, -46.686055], + [-139.612518, -46.686055] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -45.240428], + [-139.612518, -43.794802], + [-132.384384, -43.794802], + [-132.384384, -45.240428], + [-139.612518, -45.240428] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -43.794802], + [-139.612518, -42.349175], + [-132.384384, -42.349175], + [-132.384384, -43.794802], + [-139.612518, -43.794802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -42.349175], + [-139.612518, -40.903548], + [-132.384384, -40.903548], + [-132.384384, -42.349175], + [-139.612518, -42.349175] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -40.903548], + [-139.612518, -39.457921], + [-132.384384, -39.457921], + [-132.384384, -40.903548], + [-139.612518, -40.903548] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -39.457921], + [-139.612518, -38.012295], + [-132.384384, -38.012295], + [-132.384384, -39.457921], + [-139.612518, -39.457921] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -38.012295], + [-139.612518, -36.566668], + [-132.384384, -36.566668], + [-132.384384, -38.012295], + [-139.612518, -38.012295] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -36.566668], + [-139.612518, -35.121041], + [-132.384384, -35.121041], + [-132.384384, -36.566668], + [-139.612518, -36.566668] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -35.121041], + [-139.612518, -33.675414], + [-132.384384, -33.675414], + [-132.384384, -35.121041], + [-139.612518, -35.121041] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -33.675414], + [-139.612518, -32.229788], + [-132.384384, -32.229788], + [-132.384384, -33.675414], + [-139.612518, -33.675414] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -32.229788], + [-139.612518, -30.784161], + [-132.384384, -30.784161], + [-132.384384, -32.229788], + [-139.612518, -32.229788] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -30.784161], + [-139.612518, -29.338534], + [-132.384384, -29.338534], + [-132.384384, -30.784161], + [-139.612518, -30.784161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -29.338534], + [-139.612518, -27.892907], + [-132.384384, -27.892907], + [-132.384384, -29.338534], + [-139.612518, -29.338534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -27.892907], + [-139.612518, -26.44728], + [-132.384384, -26.44728], + [-132.384384, -27.892907], + [-139.612518, -27.892907] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -26.44728], + [-139.612518, -25.001654], + [-132.384384, -25.001654], + [-132.384384, -26.44728], + [-139.612518, -26.44728] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -25.001654], + [-139.612518, -23.556027], + [-132.384384, -23.556027], + [-132.384384, -25.001654], + [-139.612518, -25.001654] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -23.556027], + [-139.612518, -22.1104], + [-132.384384, -22.1104], + [-132.384384, -23.556027], + [-139.612518, -23.556027] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -22.1104], + [-139.612518, -20.664773], + [-132.384384, -20.664773], + [-132.384384, -22.1104], + [-139.612518, -22.1104] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -20.664773], + [-139.612518, -19.219147], + [-132.384384, -19.219147], + [-132.384384, -20.664773], + [-139.612518, -20.664773] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -19.219147], + [-139.612518, -17.77352], + [-132.384384, -17.77352], + [-132.384384, -19.219147], + [-139.612518, -19.219147] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -17.77352], + [-139.612518, -16.327893], + [-132.384384, -16.327893], + [-132.384384, -17.77352], + [-139.612518, -17.77352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -16.327893], + [-139.612518, -14.882266], + [-132.384384, -14.882266], + [-132.384384, -16.327893], + [-139.612518, -16.327893] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -14.882266], + [-139.612518, -13.43664], + [-132.384384, -13.43664], + [-132.384384, -14.882266], + [-139.612518, -14.882266] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -13.43664], + [-139.612518, -11.991013], + [-132.384384, -11.991013], + [-132.384384, -13.43664], + [-139.612518, -13.43664] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -11.991013], + [-139.612518, -10.545386], + [-132.384384, -10.545386], + [-132.384384, -11.991013], + [-139.612518, -11.991013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -10.545386], + [-139.612518, -9.099759], + [-132.384384, -9.099759], + [-132.384384, -10.545386], + [-139.612518, -10.545386] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -9.099759], + [-139.612518, -7.654132], + [-132.384384, -7.654132], + [-132.384384, -9.099759], + [-139.612518, -9.099759] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -7.654132], + [-139.612518, -6.208506], + [-132.384384, -6.208506], + [-132.384384, -7.654132], + [-139.612518, -7.654132] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -6.208506], + [-139.612518, -4.762879], + [-132.384384, -4.762879], + [-132.384384, -6.208506], + [-139.612518, -6.208506] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -4.762879], + [-139.612518, -3.317252], + [-132.384384, -3.317252], + [-132.384384, -4.762879], + [-139.612518, -4.762879] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -3.317252], + [-139.612518, -1.871625], + [-132.384384, -1.871625], + [-132.384384, -3.317252], + [-139.612518, -3.317252] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -1.871625], + [-139.612518, -0.425999], + [-132.384384, -0.425999], + [-132.384384, -1.871625], + [-139.612518, -1.871625] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -0.425999], + [-139.612518, 1.019628], + [-132.384384, 1.019628], + [-132.384384, -0.425999], + [-139.612518, -0.425999] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 1.019628], + [-139.612518, 2.465255], + [-132.384384, 2.465255], + [-132.384384, 1.019628], + [-139.612518, 1.019628] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 2.465255], + [-139.612518, 3.910882], + [-132.384384, 3.910882], + [-132.384384, 2.465255], + [-139.612518, 2.465255] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 3.910882], + [-139.612518, 5.356508], + [-132.384384, 5.356508], + [-132.384384, 3.910882], + [-139.612518, 3.910882] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 5.356508], + [-139.612518, 6.802135], + [-132.384384, 6.802135], + [-132.384384, 5.356508], + [-139.612518, 5.356508] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 6.802135], + [-139.612518, 8.247762], + [-132.384384, 8.247762], + [-132.384384, 6.802135], + [-139.612518, 6.802135] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 8.247762], + [-139.612518, 9.693389], + [-132.384384, 9.693389], + [-132.384384, 8.247762], + [-139.612518, 8.247762] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 9.693389], + [-139.612518, 11.139016], + [-132.384384, 11.139016], + [-132.384384, 9.693389], + [-139.612518, 9.693389] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 11.139016], + [-139.612518, 12.584642], + [-132.384384, 12.584642], + [-132.384384, 11.139016], + [-139.612518, 11.139016] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 12.584642], + [-139.612518, 14.030269], + [-132.384384, 14.030269], + [-132.384384, 12.584642], + [-139.612518, 12.584642] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 14.030269], + [-139.612518, 15.475896], + [-132.384384, 15.475896], + [-132.384384, 14.030269], + [-139.612518, 14.030269] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 15.475896], + [-139.612518, 16.921523], + [-132.384384, 16.921523], + [-132.384384, 15.475896], + [-139.612518, 15.475896] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 16.921523], + [-139.612518, 18.367149], + [-132.384384, 18.367149], + [-132.384384, 16.921523], + [-139.612518, 16.921523] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 18.367149], + [-139.612518, 19.812776], + [-132.384384, 19.812776], + [-132.384384, 18.367149], + [-139.612518, 18.367149] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 19.812776], + [-139.612518, 21.258403], + [-132.384384, 21.258403], + [-132.384384, 19.812776], + [-139.612518, 19.812776] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 21.258403], + [-139.612518, 22.70403], + [-132.384384, 22.70403], + [-132.384384, 21.258403], + [-139.612518, 21.258403] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 22.70403], + [-139.612518, 24.149656], + [-132.384384, 24.149656], + [-132.384384, 22.70403], + [-139.612518, 22.70403] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 24.149656], + [-139.612518, 25.595283], + [-132.384384, 25.595283], + [-132.384384, 24.149656], + [-139.612518, 24.149656] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 25.595283], + [-139.612518, 27.04091], + [-132.384384, 27.04091], + [-132.384384, 25.595283], + [-139.612518, 25.595283] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 27.04091], + [-139.612518, 28.486537], + [-132.384384, 28.486537], + [-132.384384, 27.04091], + [-139.612518, 27.04091] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 28.486537], + [-139.612518, 29.932163], + [-132.384384, 29.932163], + [-132.384384, 28.486537], + [-139.612518, 28.486537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 29.932163], + [-139.612518, 31.37779], + [-132.384384, 31.37779], + [-132.384384, 29.932163], + [-139.612518, 29.932163] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 31.37779], + [-139.612518, 32.823417], + [-132.384384, 32.823417], + [-132.384384, 31.37779], + [-139.612518, 31.37779] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 32.823417], + [-139.612518, 34.269044], + [-132.384384, 34.269044], + [-132.384384, 32.823417], + [-139.612518, 32.823417] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 34.269044], + [-139.612518, 35.714671], + [-132.384384, 35.714671], + [-132.384384, 34.269044], + [-139.612518, 34.269044] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 35.714671], + [-139.612518, 37.160297], + [-132.384384, 37.160297], + [-132.384384, 35.714671], + [-139.612518, 35.714671] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 37.160297], + [-139.612518, 38.605924], + [-132.384384, 38.605924], + [-132.384384, 37.160297], + [-139.612518, 37.160297] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 38.605924], + [-139.612518, 40.051551], + [-132.384384, 40.051551], + [-132.384384, 38.605924], + [-139.612518, 38.605924] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 40.051551], + [-139.612518, 41.497178], + [-132.384384, 41.497178], + [-132.384384, 40.051551], + [-139.612518, 40.051551] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 41.497178], + [-139.612518, 42.942804], + [-132.384384, 42.942804], + [-132.384384, 41.497178], + [-139.612518, 41.497178] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 42.942804], + [-139.612518, 44.388431], + [-132.384384, 44.388431], + [-132.384384, 42.942804], + [-139.612518, 42.942804] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 44.388431], + [-139.612518, 45.834058], + [-132.384384, 45.834058], + [-132.384384, 44.388431], + [-139.612518, 44.388431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 45.834058], + [-139.612518, 47.279685], + [-132.384384, 47.279685], + [-132.384384, 45.834058], + [-139.612518, 45.834058] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 47.279685], + [-139.612518, 48.725311], + [-132.384384, 48.725311], + [-132.384384, 47.279685], + [-139.612518, 47.279685] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 48.725311], + [-139.612518, 50.170938], + [-132.384384, 50.170938], + [-132.384384, 48.725311], + [-139.612518, 48.725311] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 50.170938], + [-139.612518, 51.616565], + [-132.384384, 51.616565], + [-132.384384, 50.170938], + [-139.612518, 50.170938] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 51.616565], + [-139.612518, 53.062192], + [-132.384384, 53.062192], + [-132.384384, 51.616565], + [-139.612518, 51.616565] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 53.062192], + [-139.612518, 54.507819], + [-132.384384, 54.507819], + [-132.384384, 53.062192], + [-139.612518, 53.062192] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 54.507819], + [-139.612518, 55.953445], + [-132.384384, 55.953445], + [-132.384384, 54.507819], + [-139.612518, 54.507819] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 55.953445], + [-139.612518, 57.399072], + [-132.384384, 57.399072], + [-132.384384, 55.953445], + [-139.612518, 55.953445] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 57.399072], + [-139.612518, 58.844699], + [-132.384384, 58.844699], + [-132.384384, 57.399072], + [-139.612518, 57.399072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 58.844699], + [-139.612518, 60.290326], + [-132.384384, 60.290326], + [-132.384384, 58.844699], + [-139.612518, 58.844699] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 60.290326], + [-139.612518, 61.735952], + [-132.384384, 61.735952], + [-132.384384, 60.290326], + [-139.612518, 60.290326] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 61.735952], + [-139.612518, 63.181579], + [-132.384384, 63.181579], + [-132.384384, 61.735952], + [-139.612518, 61.735952] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 63.181579], + [-139.612518, 64.627206], + [-132.384384, 64.627206], + [-132.384384, 63.181579], + [-139.612518, 63.181579] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 64.627206], + [-139.612518, 66.072833], + [-132.384384, 66.072833], + [-132.384384, 64.627206], + [-139.612518, 64.627206] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 66.072833], + [-139.612518, 67.518459], + [-132.384384, 67.518459], + [-132.384384, 66.072833], + [-139.612518, 66.072833] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 67.518459], + [-139.612518, 68.964086], + [-132.384384, 68.964086], + [-132.384384, 67.518459], + [-139.612518, 67.518459] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 68.964086], + [-139.612518, 70.409713], + [-132.384384, 70.409713], + [-132.384384, 68.964086], + [-139.612518, 68.964086] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 70.409713], + [-139.612518, 71.85534], + [-132.384384, 71.85534], + [-132.384384, 70.409713], + [-139.612518, 70.409713] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 71.85534], + [-139.612518, 73.300967], + [-132.384384, 73.300967], + [-132.384384, 71.85534], + [-139.612518, 71.85534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 73.300967], + [-139.612518, 74.746593], + [-132.384384, 74.746593], + [-132.384384, 73.300967], + [-139.612518, 73.300967] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 74.746593], + [-139.612518, 76.19222], + [-132.384384, 76.19222], + [-132.384384, 74.746593], + [-139.612518, 74.746593] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 76.19222], + [-139.612518, 77.637847], + [-132.384384, 77.637847], + [-132.384384, 76.19222], + [-139.612518, 76.19222] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -79.935471], + [-132.384384, -78.489844], + [-125.15625, -78.489844], + [-125.15625, -79.935471], + [-132.384384, -79.935471] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -78.489844], + [-132.384384, -77.044217], + [-125.15625, -77.044217], + [-125.15625, -78.489844], + [-132.384384, -78.489844] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -77.044217], + [-132.384384, -75.598591], + [-125.15625, -75.598591], + [-125.15625, -77.044217], + [-132.384384, -77.044217] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -75.598591], + [-132.384384, -74.152964], + [-125.15625, -74.152964], + [-125.15625, -75.598591], + [-132.384384, -75.598591] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -74.152964], + [-132.384384, -72.707337], + [-125.15625, -72.707337], + [-125.15625, -74.152964], + [-132.384384, -74.152964] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -72.707337], + [-132.384384, -71.26171], + [-125.15625, -71.26171], + [-125.15625, -72.707337], + [-132.384384, -72.707337] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -71.26171], + [-132.384384, -69.816084], + [-125.15625, -69.816084], + [-125.15625, -71.26171], + [-132.384384, -71.26171] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -69.816084], + [-132.384384, -68.370457], + [-125.15625, -68.370457], + [-125.15625, -69.816084], + [-132.384384, -69.816084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -68.370457], + [-132.384384, -66.92483], + [-125.15625, -66.92483], + [-125.15625, -68.370457], + [-132.384384, -68.370457] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -66.92483], + [-132.384384, -65.479203], + [-125.15625, -65.479203], + [-125.15625, -66.92483], + [-132.384384, -66.92483] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -65.479203], + [-132.384384, -64.033576], + [-125.15625, -64.033576], + [-125.15625, -65.479203], + [-132.384384, -65.479203] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -64.033576], + [-132.384384, -62.58795], + [-125.15625, -62.58795], + [-125.15625, -64.033576], + [-132.384384, -64.033576] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -62.58795], + [-132.384384, -61.142323], + [-125.15625, -61.142323], + [-125.15625, -62.58795], + [-132.384384, -62.58795] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -61.142323], + [-132.384384, -59.696696], + [-125.15625, -59.696696], + [-125.15625, -61.142323], + [-132.384384, -61.142323] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -59.696696], + [-132.384384, -58.251069], + [-125.15625, -58.251069], + [-125.15625, -59.696696], + [-132.384384, -59.696696] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -58.251069], + [-132.384384, -56.805443], + [-125.15625, -56.805443], + [-125.15625, -58.251069], + [-132.384384, -58.251069] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -56.805443], + [-132.384384, -55.359816], + [-125.15625, -55.359816], + [-125.15625, -56.805443], + [-132.384384, -56.805443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -55.359816], + [-132.384384, -53.914189], + [-125.15625, -53.914189], + [-125.15625, -55.359816], + [-132.384384, -55.359816] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -53.914189], + [-132.384384, -52.468562], + [-125.15625, -52.468562], + [-125.15625, -53.914189], + [-132.384384, -53.914189] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -52.468562], + [-132.384384, -51.022936], + [-125.15625, -51.022936], + [-125.15625, -52.468562], + [-132.384384, -52.468562] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -51.022936], + [-132.384384, -49.577309], + [-125.15625, -49.577309], + [-125.15625, -51.022936], + [-132.384384, -51.022936] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -49.577309], + [-132.384384, -48.131682], + [-125.15625, -48.131682], + [-125.15625, -49.577309], + [-132.384384, -49.577309] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -48.131682], + [-132.384384, -46.686055], + [-125.15625, -46.686055], + [-125.15625, -48.131682], + [-132.384384, -48.131682] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -46.686055], + [-132.384384, -45.240428], + [-125.15625, -45.240428], + [-125.15625, -46.686055], + [-132.384384, -46.686055] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -45.240428], + [-132.384384, -43.794802], + [-125.15625, -43.794802], + [-125.15625, -45.240428], + [-132.384384, -45.240428] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -43.794802], + [-132.384384, -42.349175], + [-125.15625, -42.349175], + [-125.15625, -43.794802], + [-132.384384, -43.794802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -42.349175], + [-132.384384, -40.903548], + [-125.15625, -40.903548], + [-125.15625, -42.349175], + [-132.384384, -42.349175] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -40.903548], + [-132.384384, -39.457921], + [-125.15625, -39.457921], + [-125.15625, -40.903548], + [-132.384384, -40.903548] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -39.457921], + [-132.384384, -38.012295], + [-125.15625, -38.012295], + [-125.15625, -39.457921], + [-132.384384, -39.457921] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -38.012295], + [-132.384384, -36.566668], + [-125.15625, -36.566668], + [-125.15625, -38.012295], + [-132.384384, -38.012295] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -36.566668], + [-132.384384, -35.121041], + [-125.15625, -35.121041], + [-125.15625, -36.566668], + [-132.384384, -36.566668] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -35.121041], + [-132.384384, -33.675414], + [-125.15625, -33.675414], + [-125.15625, -35.121041], + [-132.384384, -35.121041] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -33.675414], + [-132.384384, -32.229788], + [-125.15625, -32.229788], + [-125.15625, -33.675414], + [-132.384384, -33.675414] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -32.229788], + [-132.384384, -30.784161], + [-125.15625, -30.784161], + [-125.15625, -32.229788], + [-132.384384, -32.229788] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -30.784161], + [-132.384384, -29.338534], + [-125.15625, -29.338534], + [-125.15625, -30.784161], + [-132.384384, -30.784161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -29.338534], + [-132.384384, -27.892907], + [-125.15625, -27.892907], + [-125.15625, -29.338534], + [-132.384384, -29.338534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -27.892907], + [-132.384384, -26.44728], + [-125.15625, -26.44728], + [-125.15625, -27.892907], + [-132.384384, -27.892907] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -26.44728], + [-132.384384, -25.001654], + [-125.15625, -25.001654], + [-125.15625, -26.44728], + [-132.384384, -26.44728] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -25.001654], + [-132.384384, -23.556027], + [-125.15625, -23.556027], + [-125.15625, -25.001654], + [-132.384384, -25.001654] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -23.556027], + [-132.384384, -22.1104], + [-125.15625, -22.1104], + [-125.15625, -23.556027], + [-132.384384, -23.556027] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -22.1104], + [-132.384384, -20.664773], + [-125.15625, -20.664773], + [-125.15625, -22.1104], + [-132.384384, -22.1104] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -20.664773], + [-132.384384, -19.219147], + [-125.15625, -19.219147], + [-125.15625, -20.664773], + [-132.384384, -20.664773] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -19.219147], + [-132.384384, -17.77352], + [-125.15625, -17.77352], + [-125.15625, -19.219147], + [-132.384384, -19.219147] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -17.77352], + [-132.384384, -16.327893], + [-125.15625, -16.327893], + [-125.15625, -17.77352], + [-132.384384, -17.77352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -16.327893], + [-132.384384, -14.882266], + [-125.15625, -14.882266], + [-125.15625, -16.327893], + [-132.384384, -16.327893] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -14.882266], + [-132.384384, -13.43664], + [-125.15625, -13.43664], + [-125.15625, -14.882266], + [-132.384384, -14.882266] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -13.43664], + [-132.384384, -11.991013], + [-125.15625, -11.991013], + [-125.15625, -13.43664], + [-132.384384, -13.43664] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -11.991013], + [-132.384384, -10.545386], + [-125.15625, -10.545386], + [-125.15625, -11.991013], + [-132.384384, -11.991013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -10.545386], + [-132.384384, -9.099759], + [-125.15625, -9.099759], + [-125.15625, -10.545386], + [-132.384384, -10.545386] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -9.099759], + [-132.384384, -7.654132], + [-125.15625, -7.654132], + [-125.15625, -9.099759], + [-132.384384, -9.099759] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -7.654132], + [-132.384384, -6.208506], + [-125.15625, -6.208506], + [-125.15625, -7.654132], + [-132.384384, -7.654132] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -6.208506], + [-132.384384, -4.762879], + [-125.15625, -4.762879], + [-125.15625, -6.208506], + [-132.384384, -6.208506] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -4.762879], + [-132.384384, -3.317252], + [-125.15625, -3.317252], + [-125.15625, -4.762879], + [-132.384384, -4.762879] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -3.317252], + [-132.384384, -1.871625], + [-125.15625, -1.871625], + [-125.15625, -3.317252], + [-132.384384, -3.317252] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -1.871625], + [-132.384384, -0.425999], + [-125.15625, -0.425999], + [-125.15625, -1.871625], + [-132.384384, -1.871625] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -0.425999], + [-132.384384, 1.019628], + [-125.15625, 1.019628], + [-125.15625, -0.425999], + [-132.384384, -0.425999] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 1.019628], + [-132.384384, 2.465255], + [-125.15625, 2.465255], + [-125.15625, 1.019628], + [-132.384384, 1.019628] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 2.465255], + [-132.384384, 3.910882], + [-125.15625, 3.910882], + [-125.15625, 2.465255], + [-132.384384, 2.465255] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 3.910882], + [-132.384384, 5.356508], + [-125.15625, 5.356508], + [-125.15625, 3.910882], + [-132.384384, 3.910882] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 5.356508], + [-132.384384, 6.802135], + [-125.15625, 6.802135], + [-125.15625, 5.356508], + [-132.384384, 5.356508] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 6.802135], + [-132.384384, 8.247762], + [-125.15625, 8.247762], + [-125.15625, 6.802135], + [-132.384384, 6.802135] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 8.247762], + [-132.384384, 9.693389], + [-125.15625, 9.693389], + [-125.15625, 8.247762], + [-132.384384, 8.247762] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 9.693389], + [-132.384384, 11.139016], + [-125.15625, 11.139016], + [-125.15625, 9.693389], + [-132.384384, 9.693389] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 11.139016], + [-132.384384, 12.584642], + [-125.15625, 12.584642], + [-125.15625, 11.139016], + [-132.384384, 11.139016] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 12.584642], + [-132.384384, 14.030269], + [-125.15625, 14.030269], + [-125.15625, 12.584642], + [-132.384384, 12.584642] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 14.030269], + [-132.384384, 15.475896], + [-125.15625, 15.475896], + [-125.15625, 14.030269], + [-132.384384, 14.030269] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 15.475896], + [-132.384384, 16.921523], + [-125.15625, 16.921523], + [-125.15625, 15.475896], + [-132.384384, 15.475896] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 16.921523], + [-132.384384, 18.367149], + [-125.15625, 18.367149], + [-125.15625, 16.921523], + [-132.384384, 16.921523] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 18.367149], + [-132.384384, 19.812776], + [-125.15625, 19.812776], + [-125.15625, 18.367149], + [-132.384384, 18.367149] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 19.812776], + [-132.384384, 21.258403], + [-125.15625, 21.258403], + [-125.15625, 19.812776], + [-132.384384, 19.812776] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 21.258403], + [-132.384384, 22.70403], + [-125.15625, 22.70403], + [-125.15625, 21.258403], + [-132.384384, 21.258403] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 22.70403], + [-132.384384, 24.149656], + [-125.15625, 24.149656], + [-125.15625, 22.70403], + [-132.384384, 22.70403] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 24.149656], + [-132.384384, 25.595283], + [-125.15625, 25.595283], + [-125.15625, 24.149656], + [-132.384384, 24.149656] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 25.595283], + [-132.384384, 27.04091], + [-125.15625, 27.04091], + [-125.15625, 25.595283], + [-132.384384, 25.595283] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 27.04091], + [-132.384384, 28.486537], + [-125.15625, 28.486537], + [-125.15625, 27.04091], + [-132.384384, 27.04091] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 28.486537], + [-132.384384, 29.932163], + [-125.15625, 29.932163], + [-125.15625, 28.486537], + [-132.384384, 28.486537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 29.932163], + [-132.384384, 31.37779], + [-125.15625, 31.37779], + [-125.15625, 29.932163], + [-132.384384, 29.932163] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 31.37779], + [-132.384384, 32.823417], + [-125.15625, 32.823417], + [-125.15625, 31.37779], + [-132.384384, 31.37779] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 32.823417], + [-132.384384, 34.269044], + [-125.15625, 34.269044], + [-125.15625, 32.823417], + [-132.384384, 32.823417] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 34.269044], + [-132.384384, 35.714671], + [-125.15625, 35.714671], + [-125.15625, 34.269044], + [-132.384384, 34.269044] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 35.714671], + [-132.384384, 37.160297], + [-125.15625, 37.160297], + [-125.15625, 35.714671], + [-132.384384, 35.714671] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 37.160297], + [-132.384384, 38.605924], + [-125.15625, 38.605924], + [-125.15625, 37.160297], + [-132.384384, 37.160297] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 38.605924], + [-132.384384, 40.051551], + [-125.15625, 40.051551], + [-125.15625, 38.605924], + [-132.384384, 38.605924] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 40.051551], + [-132.384384, 41.497178], + [-125.15625, 41.497178], + [-125.15625, 40.051551], + [-132.384384, 40.051551] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 41.497178], + [-132.384384, 42.942804], + [-125.15625, 42.942804], + [-125.15625, 41.497178], + [-132.384384, 41.497178] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 42.942804], + [-132.384384, 44.388431], + [-125.15625, 44.388431], + [-125.15625, 42.942804], + [-132.384384, 42.942804] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 44.388431], + [-132.384384, 45.834058], + [-125.15625, 45.834058], + [-125.15625, 44.388431], + [-132.384384, 44.388431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 45.834058], + [-132.384384, 47.279685], + [-125.15625, 47.279685], + [-125.15625, 45.834058], + [-132.384384, 45.834058] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 47.279685], + [-132.384384, 48.725311], + [-125.15625, 48.725311], + [-125.15625, 47.279685], + [-132.384384, 47.279685] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 48.725311], + [-132.384384, 50.170938], + [-125.15625, 50.170938], + [-125.15625, 48.725311], + [-132.384384, 48.725311] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 50.170938], + [-132.384384, 51.616565], + [-125.15625, 51.616565], + [-125.15625, 50.170938], + [-132.384384, 50.170938] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 51.616565], + [-132.384384, 53.062192], + [-125.15625, 53.062192], + [-125.15625, 51.616565], + [-132.384384, 51.616565] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 53.062192], + [-132.384384, 54.507819], + [-125.15625, 54.507819], + [-125.15625, 53.062192], + [-132.384384, 53.062192] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 54.507819], + [-132.384384, 55.953445], + [-125.15625, 55.953445], + [-125.15625, 54.507819], + [-132.384384, 54.507819] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 55.953445], + [-132.384384, 57.399072], + [-125.15625, 57.399072], + [-125.15625, 55.953445], + [-132.384384, 55.953445] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 57.399072], + [-132.384384, 58.844699], + [-125.15625, 58.844699], + [-125.15625, 57.399072], + [-132.384384, 57.399072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 58.844699], + [-132.384384, 60.290326], + [-125.15625, 60.290326], + [-125.15625, 58.844699], + [-132.384384, 58.844699] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 60.290326], + [-132.384384, 61.735952], + [-125.15625, 61.735952], + [-125.15625, 60.290326], + [-132.384384, 60.290326] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 61.735952], + [-132.384384, 63.181579], + [-125.15625, 63.181579], + [-125.15625, 61.735952], + [-132.384384, 61.735952] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 63.181579], + [-132.384384, 64.627206], + [-125.15625, 64.627206], + [-125.15625, 63.181579], + [-132.384384, 63.181579] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 64.627206], + [-132.384384, 66.072833], + [-125.15625, 66.072833], + [-125.15625, 64.627206], + [-132.384384, 64.627206] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 66.072833], + [-132.384384, 67.518459], + [-125.15625, 67.518459], + [-125.15625, 66.072833], + [-132.384384, 66.072833] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 67.518459], + [-132.384384, 68.964086], + [-125.15625, 68.964086], + [-125.15625, 67.518459], + [-132.384384, 67.518459] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 68.964086], + [-132.384384, 70.409713], + [-125.15625, 70.409713], + [-125.15625, 68.964086], + [-132.384384, 68.964086] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 70.409713], + [-132.384384, 71.85534], + [-125.15625, 71.85534], + [-125.15625, 70.409713], + [-132.384384, 70.409713] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 71.85534], + [-132.384384, 73.300967], + [-125.15625, 73.300967], + [-125.15625, 71.85534], + [-132.384384, 71.85534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 73.300967], + [-132.384384, 74.746593], + [-125.15625, 74.746593], + [-125.15625, 73.300967], + [-132.384384, 73.300967] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 74.746593], + [-132.384384, 76.19222], + [-125.15625, 76.19222], + [-125.15625, 74.746593], + [-132.384384, 74.746593] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 76.19222], + [-132.384384, 77.637847], + [-125.15625, 77.637847], + [-125.15625, 76.19222], + [-132.384384, 76.19222] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -79.935471], + [-125.15625, -78.489844], + [-117.928116, -78.489844], + [-117.928116, -79.935471], + [-125.15625, -79.935471] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -78.489844], + [-125.15625, -77.044217], + [-117.928116, -77.044217], + [-117.928116, -78.489844], + [-125.15625, -78.489844] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -77.044217], + [-125.15625, -75.598591], + [-117.928116, -75.598591], + [-117.928116, -77.044217], + [-125.15625, -77.044217] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -75.598591], + [-125.15625, -74.152964], + [-117.928116, -74.152964], + [-117.928116, -75.598591], + [-125.15625, -75.598591] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -74.152964], + [-125.15625, -72.707337], + [-117.928116, -72.707337], + [-117.928116, -74.152964], + [-125.15625, -74.152964] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -72.707337], + [-125.15625, -71.26171], + [-117.928116, -71.26171], + [-117.928116, -72.707337], + [-125.15625, -72.707337] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -71.26171], + [-125.15625, -69.816084], + [-117.928116, -69.816084], + [-117.928116, -71.26171], + [-125.15625, -71.26171] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -69.816084], + [-125.15625, -68.370457], + [-117.928116, -68.370457], + [-117.928116, -69.816084], + [-125.15625, -69.816084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -68.370457], + [-125.15625, -66.92483], + [-117.928116, -66.92483], + [-117.928116, -68.370457], + [-125.15625, -68.370457] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -66.92483], + [-125.15625, -65.479203], + [-117.928116, -65.479203], + [-117.928116, -66.92483], + [-125.15625, -66.92483] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -65.479203], + [-125.15625, -64.033576], + [-117.928116, -64.033576], + [-117.928116, -65.479203], + [-125.15625, -65.479203] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -64.033576], + [-125.15625, -62.58795], + [-117.928116, -62.58795], + [-117.928116, -64.033576], + [-125.15625, -64.033576] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -62.58795], + [-125.15625, -61.142323], + [-117.928116, -61.142323], + [-117.928116, -62.58795], + [-125.15625, -62.58795] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -61.142323], + [-125.15625, -59.696696], + [-117.928116, -59.696696], + [-117.928116, -61.142323], + [-125.15625, -61.142323] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -59.696696], + [-125.15625, -58.251069], + [-117.928116, -58.251069], + [-117.928116, -59.696696], + [-125.15625, -59.696696] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -58.251069], + [-125.15625, -56.805443], + [-117.928116, -56.805443], + [-117.928116, -58.251069], + [-125.15625, -58.251069] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -56.805443], + [-125.15625, -55.359816], + [-117.928116, -55.359816], + [-117.928116, -56.805443], + [-125.15625, -56.805443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -55.359816], + [-125.15625, -53.914189], + [-117.928116, -53.914189], + [-117.928116, -55.359816], + [-125.15625, -55.359816] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -53.914189], + [-125.15625, -52.468562], + [-117.928116, -52.468562], + [-117.928116, -53.914189], + [-125.15625, -53.914189] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -52.468562], + [-125.15625, -51.022936], + [-117.928116, -51.022936], + [-117.928116, -52.468562], + [-125.15625, -52.468562] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -51.022936], + [-125.15625, -49.577309], + [-117.928116, -49.577309], + [-117.928116, -51.022936], + [-125.15625, -51.022936] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -49.577309], + [-125.15625, -48.131682], + [-117.928116, -48.131682], + [-117.928116, -49.577309], + [-125.15625, -49.577309] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -48.131682], + [-125.15625, -46.686055], + [-117.928116, -46.686055], + [-117.928116, -48.131682], + [-125.15625, -48.131682] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -46.686055], + [-125.15625, -45.240428], + [-117.928116, -45.240428], + [-117.928116, -46.686055], + [-125.15625, -46.686055] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -45.240428], + [-125.15625, -43.794802], + [-117.928116, -43.794802], + [-117.928116, -45.240428], + [-125.15625, -45.240428] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -43.794802], + [-125.15625, -42.349175], + [-117.928116, -42.349175], + [-117.928116, -43.794802], + [-125.15625, -43.794802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -42.349175], + [-125.15625, -40.903548], + [-117.928116, -40.903548], + [-117.928116, -42.349175], + [-125.15625, -42.349175] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -40.903548], + [-125.15625, -39.457921], + [-117.928116, -39.457921], + [-117.928116, -40.903548], + [-125.15625, -40.903548] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -39.457921], + [-125.15625, -38.012295], + [-117.928116, -38.012295], + [-117.928116, -39.457921], + [-125.15625, -39.457921] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -38.012295], + [-125.15625, -36.566668], + [-117.928116, -36.566668], + [-117.928116, -38.012295], + [-125.15625, -38.012295] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -36.566668], + [-125.15625, -35.121041], + [-117.928116, -35.121041], + [-117.928116, -36.566668], + [-125.15625, -36.566668] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -35.121041], + [-125.15625, -33.675414], + [-117.928116, -33.675414], + [-117.928116, -35.121041], + [-125.15625, -35.121041] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -33.675414], + [-125.15625, -32.229788], + [-117.928116, -32.229788], + [-117.928116, -33.675414], + [-125.15625, -33.675414] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -32.229788], + [-125.15625, -30.784161], + [-117.928116, -30.784161], + [-117.928116, -32.229788], + [-125.15625, -32.229788] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -30.784161], + [-125.15625, -29.338534], + [-117.928116, -29.338534], + [-117.928116, -30.784161], + [-125.15625, -30.784161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -29.338534], + [-125.15625, -27.892907], + [-117.928116, -27.892907], + [-117.928116, -29.338534], + [-125.15625, -29.338534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -27.892907], + [-125.15625, -26.44728], + [-117.928116, -26.44728], + [-117.928116, -27.892907], + [-125.15625, -27.892907] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -26.44728], + [-125.15625, -25.001654], + [-117.928116, -25.001654], + [-117.928116, -26.44728], + [-125.15625, -26.44728] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -25.001654], + [-125.15625, -23.556027], + [-117.928116, -23.556027], + [-117.928116, -25.001654], + [-125.15625, -25.001654] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -23.556027], + [-125.15625, -22.1104], + [-117.928116, -22.1104], + [-117.928116, -23.556027], + [-125.15625, -23.556027] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -22.1104], + [-125.15625, -20.664773], + [-117.928116, -20.664773], + [-117.928116, -22.1104], + [-125.15625, -22.1104] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -20.664773], + [-125.15625, -19.219147], + [-117.928116, -19.219147], + [-117.928116, -20.664773], + [-125.15625, -20.664773] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -19.219147], + [-125.15625, -17.77352], + [-117.928116, -17.77352], + [-117.928116, -19.219147], + [-125.15625, -19.219147] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -17.77352], + [-125.15625, -16.327893], + [-117.928116, -16.327893], + [-117.928116, -17.77352], + [-125.15625, -17.77352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -16.327893], + [-125.15625, -14.882266], + [-117.928116, -14.882266], + [-117.928116, -16.327893], + [-125.15625, -16.327893] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -14.882266], + [-125.15625, -13.43664], + [-117.928116, -13.43664], + [-117.928116, -14.882266], + [-125.15625, -14.882266] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -13.43664], + [-125.15625, -11.991013], + [-117.928116, -11.991013], + [-117.928116, -13.43664], + [-125.15625, -13.43664] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -11.991013], + [-125.15625, -10.545386], + [-117.928116, -10.545386], + [-117.928116, -11.991013], + [-125.15625, -11.991013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -10.545386], + [-125.15625, -9.099759], + [-117.928116, -9.099759], + [-117.928116, -10.545386], + [-125.15625, -10.545386] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -9.099759], + [-125.15625, -7.654132], + [-117.928116, -7.654132], + [-117.928116, -9.099759], + [-125.15625, -9.099759] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -7.654132], + [-125.15625, -6.208506], + [-117.928116, -6.208506], + [-117.928116, -7.654132], + [-125.15625, -7.654132] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -6.208506], + [-125.15625, -4.762879], + [-117.928116, -4.762879], + [-117.928116, -6.208506], + [-125.15625, -6.208506] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -4.762879], + [-125.15625, -3.317252], + [-117.928116, -3.317252], + [-117.928116, -4.762879], + [-125.15625, -4.762879] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -3.317252], + [-125.15625, -1.871625], + [-117.928116, -1.871625], + [-117.928116, -3.317252], + [-125.15625, -3.317252] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -1.871625], + [-125.15625, -0.425999], + [-117.928116, -0.425999], + [-117.928116, -1.871625], + [-125.15625, -1.871625] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -0.425999], + [-125.15625, 1.019628], + [-117.928116, 1.019628], + [-117.928116, -0.425999], + [-125.15625, -0.425999] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 1.019628], + [-125.15625, 2.465255], + [-117.928116, 2.465255], + [-117.928116, 1.019628], + [-125.15625, 1.019628] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 2.465255], + [-125.15625, 3.910882], + [-117.928116, 3.910882], + [-117.928116, 2.465255], + [-125.15625, 2.465255] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 3.910882], + [-125.15625, 5.356508], + [-117.928116, 5.356508], + [-117.928116, 3.910882], + [-125.15625, 3.910882] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 5.356508], + [-125.15625, 6.802135], + [-117.928116, 6.802135], + [-117.928116, 5.356508], + [-125.15625, 5.356508] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 6.802135], + [-125.15625, 8.247762], + [-117.928116, 8.247762], + [-117.928116, 6.802135], + [-125.15625, 6.802135] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 8.247762], + [-125.15625, 9.693389], + [-117.928116, 9.693389], + [-117.928116, 8.247762], + [-125.15625, 8.247762] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 9.693389], + [-125.15625, 11.139016], + [-117.928116, 11.139016], + [-117.928116, 9.693389], + [-125.15625, 9.693389] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 11.139016], + [-125.15625, 12.584642], + [-117.928116, 12.584642], + [-117.928116, 11.139016], + [-125.15625, 11.139016] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 12.584642], + [-125.15625, 14.030269], + [-117.928116, 14.030269], + [-117.928116, 12.584642], + [-125.15625, 12.584642] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 14.030269], + [-125.15625, 15.475896], + [-117.928116, 15.475896], + [-117.928116, 14.030269], + [-125.15625, 14.030269] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 15.475896], + [-125.15625, 16.921523], + [-117.928116, 16.921523], + [-117.928116, 15.475896], + [-125.15625, 15.475896] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 16.921523], + [-125.15625, 18.367149], + [-117.928116, 18.367149], + [-117.928116, 16.921523], + [-125.15625, 16.921523] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 18.367149], + [-125.15625, 19.812776], + [-117.928116, 19.812776], + [-117.928116, 18.367149], + [-125.15625, 18.367149] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 19.812776], + [-125.15625, 21.258403], + [-117.928116, 21.258403], + [-117.928116, 19.812776], + [-125.15625, 19.812776] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 21.258403], + [-125.15625, 22.70403], + [-117.928116, 22.70403], + [-117.928116, 21.258403], + [-125.15625, 21.258403] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 22.70403], + [-125.15625, 24.149656], + [-117.928116, 24.149656], + [-117.928116, 22.70403], + [-125.15625, 22.70403] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 24.149656], + [-125.15625, 25.595283], + [-117.928116, 25.595283], + [-117.928116, 24.149656], + [-125.15625, 24.149656] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 25.595283], + [-125.15625, 27.04091], + [-117.928116, 27.04091], + [-117.928116, 25.595283], + [-125.15625, 25.595283] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 27.04091], + [-125.15625, 28.486537], + [-117.928116, 28.486537], + [-117.928116, 27.04091], + [-125.15625, 27.04091] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 28.486537], + [-125.15625, 29.932163], + [-117.928116, 29.932163], + [-117.928116, 28.486537], + [-125.15625, 28.486537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 29.932163], + [-125.15625, 31.37779], + [-117.928116, 31.37779], + [-117.928116, 29.932163], + [-125.15625, 29.932163] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 31.37779], + [-125.15625, 32.823417], + [-117.928116, 32.823417], + [-117.928116, 31.37779], + [-125.15625, 31.37779] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 32.823417], + [-125.15625, 34.269044], + [-117.928116, 34.269044], + [-117.928116, 32.823417], + [-125.15625, 32.823417] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 34.269044], + [-125.15625, 35.714671], + [-117.928116, 35.714671], + [-117.928116, 34.269044], + [-125.15625, 34.269044] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 35.714671], + [-125.15625, 37.160297], + [-117.928116, 37.160297], + [-117.928116, 35.714671], + [-125.15625, 35.714671] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 37.160297], + [-125.15625, 38.605924], + [-117.928116, 38.605924], + [-117.928116, 37.160297], + [-125.15625, 37.160297] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 38.605924], + [-125.15625, 40.051551], + [-117.928116, 40.051551], + [-117.928116, 38.605924], + [-125.15625, 38.605924] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 40.051551], + [-125.15625, 41.497178], + [-117.928116, 41.497178], + [-117.928116, 40.051551], + [-125.15625, 40.051551] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 41.497178], + [-125.15625, 42.942804], + [-117.928116, 42.942804], + [-117.928116, 41.497178], + [-125.15625, 41.497178] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 42.942804], + [-125.15625, 44.388431], + [-117.928116, 44.388431], + [-117.928116, 42.942804], + [-125.15625, 42.942804] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 44.388431], + [-125.15625, 45.834058], + [-117.928116, 45.834058], + [-117.928116, 44.388431], + [-125.15625, 44.388431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 45.834058], + [-125.15625, 47.279685], + [-117.928116, 47.279685], + [-117.928116, 45.834058], + [-125.15625, 45.834058] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 47.279685], + [-125.15625, 48.725311], + [-117.928116, 48.725311], + [-117.928116, 47.279685], + [-125.15625, 47.279685] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 48.725311], + [-125.15625, 50.170938], + [-117.928116, 50.170938], + [-117.928116, 48.725311], + [-125.15625, 48.725311] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 50.170938], + [-125.15625, 51.616565], + [-117.928116, 51.616565], + [-117.928116, 50.170938], + [-125.15625, 50.170938] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 51.616565], + [-125.15625, 53.062192], + [-117.928116, 53.062192], + [-117.928116, 51.616565], + [-125.15625, 51.616565] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 53.062192], + [-125.15625, 54.507819], + [-117.928116, 54.507819], + [-117.928116, 53.062192], + [-125.15625, 53.062192] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 54.507819], + [-125.15625, 55.953445], + [-117.928116, 55.953445], + [-117.928116, 54.507819], + [-125.15625, 54.507819] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 55.953445], + [-125.15625, 57.399072], + [-117.928116, 57.399072], + [-117.928116, 55.953445], + [-125.15625, 55.953445] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 57.399072], + [-125.15625, 58.844699], + [-117.928116, 58.844699], + [-117.928116, 57.399072], + [-125.15625, 57.399072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 58.844699], + [-125.15625, 60.290326], + [-117.928116, 60.290326], + [-117.928116, 58.844699], + [-125.15625, 58.844699] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 60.290326], + [-125.15625, 61.735952], + [-117.928116, 61.735952], + [-117.928116, 60.290326], + [-125.15625, 60.290326] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 61.735952], + [-125.15625, 63.181579], + [-117.928116, 63.181579], + [-117.928116, 61.735952], + [-125.15625, 61.735952] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 63.181579], + [-125.15625, 64.627206], + [-117.928116, 64.627206], + [-117.928116, 63.181579], + [-125.15625, 63.181579] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 64.627206], + [-125.15625, 66.072833], + [-117.928116, 66.072833], + [-117.928116, 64.627206], + [-125.15625, 64.627206] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 66.072833], + [-125.15625, 67.518459], + [-117.928116, 67.518459], + [-117.928116, 66.072833], + [-125.15625, 66.072833] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 67.518459], + [-125.15625, 68.964086], + [-117.928116, 68.964086], + [-117.928116, 67.518459], + [-125.15625, 67.518459] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 68.964086], + [-125.15625, 70.409713], + [-117.928116, 70.409713], + [-117.928116, 68.964086], + [-125.15625, 68.964086] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 70.409713], + [-125.15625, 71.85534], + [-117.928116, 71.85534], + [-117.928116, 70.409713], + [-125.15625, 70.409713] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 71.85534], + [-125.15625, 73.300967], + [-117.928116, 73.300967], + [-117.928116, 71.85534], + [-125.15625, 71.85534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 73.300967], + [-125.15625, 74.746593], + [-117.928116, 74.746593], + [-117.928116, 73.300967], + [-125.15625, 73.300967] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 74.746593], + [-125.15625, 76.19222], + [-117.928116, 76.19222], + [-117.928116, 74.746593], + [-125.15625, 74.746593] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 76.19222], + [-125.15625, 77.637847], + [-117.928116, 77.637847], + [-117.928116, 76.19222], + [-125.15625, 76.19222] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -79.935471], + [-117.928116, -78.489844], + [-110.699982, -78.489844], + [-110.699982, -79.935471], + [-117.928116, -79.935471] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -78.489844], + [-117.928116, -77.044217], + [-110.699982, -77.044217], + [-110.699982, -78.489844], + [-117.928116, -78.489844] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -77.044217], + [-117.928116, -75.598591], + [-110.699982, -75.598591], + [-110.699982, -77.044217], + [-117.928116, -77.044217] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -75.598591], + [-117.928116, -74.152964], + [-110.699982, -74.152964], + [-110.699982, -75.598591], + [-117.928116, -75.598591] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -74.152964], + [-117.928116, -72.707337], + [-110.699982, -72.707337], + [-110.699982, -74.152964], + [-117.928116, -74.152964] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -72.707337], + [-117.928116, -71.26171], + [-110.699982, -71.26171], + [-110.699982, -72.707337], + [-117.928116, -72.707337] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -71.26171], + [-117.928116, -69.816084], + [-110.699982, -69.816084], + [-110.699982, -71.26171], + [-117.928116, -71.26171] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -69.816084], + [-117.928116, -68.370457], + [-110.699982, -68.370457], + [-110.699982, -69.816084], + [-117.928116, -69.816084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -68.370457], + [-117.928116, -66.92483], + [-110.699982, -66.92483], + [-110.699982, -68.370457], + [-117.928116, -68.370457] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -66.92483], + [-117.928116, -65.479203], + [-110.699982, -65.479203], + [-110.699982, -66.92483], + [-117.928116, -66.92483] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -65.479203], + [-117.928116, -64.033576], + [-110.699982, -64.033576], + [-110.699982, -65.479203], + [-117.928116, -65.479203] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -64.033576], + [-117.928116, -62.58795], + [-110.699982, -62.58795], + [-110.699982, -64.033576], + [-117.928116, -64.033576] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -62.58795], + [-117.928116, -61.142323], + [-110.699982, -61.142323], + [-110.699982, -62.58795], + [-117.928116, -62.58795] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -61.142323], + [-117.928116, -59.696696], + [-110.699982, -59.696696], + [-110.699982, -61.142323], + [-117.928116, -61.142323] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -59.696696], + [-117.928116, -58.251069], + [-110.699982, -58.251069], + [-110.699982, -59.696696], + [-117.928116, -59.696696] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -58.251069], + [-117.928116, -56.805443], + [-110.699982, -56.805443], + [-110.699982, -58.251069], + [-117.928116, -58.251069] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -56.805443], + [-117.928116, -55.359816], + [-110.699982, -55.359816], + [-110.699982, -56.805443], + [-117.928116, -56.805443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -55.359816], + [-117.928116, -53.914189], + [-110.699982, -53.914189], + [-110.699982, -55.359816], + [-117.928116, -55.359816] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -53.914189], + [-117.928116, -52.468562], + [-110.699982, -52.468562], + [-110.699982, -53.914189], + [-117.928116, -53.914189] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -52.468562], + [-117.928116, -51.022936], + [-110.699982, -51.022936], + [-110.699982, -52.468562], + [-117.928116, -52.468562] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -51.022936], + [-117.928116, -49.577309], + [-110.699982, -49.577309], + [-110.699982, -51.022936], + [-117.928116, -51.022936] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -49.577309], + [-117.928116, -48.131682], + [-110.699982, -48.131682], + [-110.699982, -49.577309], + [-117.928116, -49.577309] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -48.131682], + [-117.928116, -46.686055], + [-110.699982, -46.686055], + [-110.699982, -48.131682], + [-117.928116, -48.131682] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -46.686055], + [-117.928116, -45.240428], + [-110.699982, -45.240428], + [-110.699982, -46.686055], + [-117.928116, -46.686055] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -45.240428], + [-117.928116, -43.794802], + [-110.699982, -43.794802], + [-110.699982, -45.240428], + [-117.928116, -45.240428] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -43.794802], + [-117.928116, -42.349175], + [-110.699982, -42.349175], + [-110.699982, -43.794802], + [-117.928116, -43.794802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -42.349175], + [-117.928116, -40.903548], + [-110.699982, -40.903548], + [-110.699982, -42.349175], + [-117.928116, -42.349175] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -40.903548], + [-117.928116, -39.457921], + [-110.699982, -39.457921], + [-110.699982, -40.903548], + [-117.928116, -40.903548] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -39.457921], + [-117.928116, -38.012295], + [-110.699982, -38.012295], + [-110.699982, -39.457921], + [-117.928116, -39.457921] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -38.012295], + [-117.928116, -36.566668], + [-110.699982, -36.566668], + [-110.699982, -38.012295], + [-117.928116, -38.012295] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -36.566668], + [-117.928116, -35.121041], + [-110.699982, -35.121041], + [-110.699982, -36.566668], + [-117.928116, -36.566668] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -35.121041], + [-117.928116, -33.675414], + [-110.699982, -33.675414], + [-110.699982, -35.121041], + [-117.928116, -35.121041] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -33.675414], + [-117.928116, -32.229788], + [-110.699982, -32.229788], + [-110.699982, -33.675414], + [-117.928116, -33.675414] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -32.229788], + [-117.928116, -30.784161], + [-110.699982, -30.784161], + [-110.699982, -32.229788], + [-117.928116, -32.229788] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -30.784161], + [-117.928116, -29.338534], + [-110.699982, -29.338534], + [-110.699982, -30.784161], + [-117.928116, -30.784161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -29.338534], + [-117.928116, -27.892907], + [-110.699982, -27.892907], + [-110.699982, -29.338534], + [-117.928116, -29.338534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -27.892907], + [-117.928116, -26.44728], + [-110.699982, -26.44728], + [-110.699982, -27.892907], + [-117.928116, -27.892907] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -26.44728], + [-117.928116, -25.001654], + [-110.699982, -25.001654], + [-110.699982, -26.44728], + [-117.928116, -26.44728] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -25.001654], + [-117.928116, -23.556027], + [-110.699982, -23.556027], + [-110.699982, -25.001654], + [-117.928116, -25.001654] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -23.556027], + [-117.928116, -22.1104], + [-110.699982, -22.1104], + [-110.699982, -23.556027], + [-117.928116, -23.556027] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -22.1104], + [-117.928116, -20.664773], + [-110.699982, -20.664773], + [-110.699982, -22.1104], + [-117.928116, -22.1104] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -20.664773], + [-117.928116, -19.219147], + [-110.699982, -19.219147], + [-110.699982, -20.664773], + [-117.928116, -20.664773] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -19.219147], + [-117.928116, -17.77352], + [-110.699982, -17.77352], + [-110.699982, -19.219147], + [-117.928116, -19.219147] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -17.77352], + [-117.928116, -16.327893], + [-110.699982, -16.327893], + [-110.699982, -17.77352], + [-117.928116, -17.77352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -16.327893], + [-117.928116, -14.882266], + [-110.699982, -14.882266], + [-110.699982, -16.327893], + [-117.928116, -16.327893] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -14.882266], + [-117.928116, -13.43664], + [-110.699982, -13.43664], + [-110.699982, -14.882266], + [-117.928116, -14.882266] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -13.43664], + [-117.928116, -11.991013], + [-110.699982, -11.991013], + [-110.699982, -13.43664], + [-117.928116, -13.43664] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -11.991013], + [-117.928116, -10.545386], + [-110.699982, -10.545386], + [-110.699982, -11.991013], + [-117.928116, -11.991013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -10.545386], + [-117.928116, -9.099759], + [-110.699982, -9.099759], + [-110.699982, -10.545386], + [-117.928116, -10.545386] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -9.099759], + [-117.928116, -7.654132], + [-110.699982, -7.654132], + [-110.699982, -9.099759], + [-117.928116, -9.099759] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -7.654132], + [-117.928116, -6.208506], + [-110.699982, -6.208506], + [-110.699982, -7.654132], + [-117.928116, -7.654132] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -6.208506], + [-117.928116, -4.762879], + [-110.699982, -4.762879], + [-110.699982, -6.208506], + [-117.928116, -6.208506] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -4.762879], + [-117.928116, -3.317252], + [-110.699982, -3.317252], + [-110.699982, -4.762879], + [-117.928116, -4.762879] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -3.317252], + [-117.928116, -1.871625], + [-110.699982, -1.871625], + [-110.699982, -3.317252], + [-117.928116, -3.317252] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -1.871625], + [-117.928116, -0.425999], + [-110.699982, -0.425999], + [-110.699982, -1.871625], + [-117.928116, -1.871625] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -0.425999], + [-117.928116, 1.019628], + [-110.699982, 1.019628], + [-110.699982, -0.425999], + [-117.928116, -0.425999] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 1.019628], + [-117.928116, 2.465255], + [-110.699982, 2.465255], + [-110.699982, 1.019628], + [-117.928116, 1.019628] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 2.465255], + [-117.928116, 3.910882], + [-110.699982, 3.910882], + [-110.699982, 2.465255], + [-117.928116, 2.465255] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 3.910882], + [-117.928116, 5.356508], + [-110.699982, 5.356508], + [-110.699982, 3.910882], + [-117.928116, 3.910882] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 5.356508], + [-117.928116, 6.802135], + [-110.699982, 6.802135], + [-110.699982, 5.356508], + [-117.928116, 5.356508] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 6.802135], + [-117.928116, 8.247762], + [-110.699982, 8.247762], + [-110.699982, 6.802135], + [-117.928116, 6.802135] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 8.247762], + [-117.928116, 9.693389], + [-110.699982, 9.693389], + [-110.699982, 8.247762], + [-117.928116, 8.247762] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 9.693389], + [-117.928116, 11.139016], + [-110.699982, 11.139016], + [-110.699982, 9.693389], + [-117.928116, 9.693389] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 11.139016], + [-117.928116, 12.584642], + [-110.699982, 12.584642], + [-110.699982, 11.139016], + [-117.928116, 11.139016] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 12.584642], + [-117.928116, 14.030269], + [-110.699982, 14.030269], + [-110.699982, 12.584642], + [-117.928116, 12.584642] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 14.030269], + [-117.928116, 15.475896], + [-110.699982, 15.475896], + [-110.699982, 14.030269], + [-117.928116, 14.030269] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 15.475896], + [-117.928116, 16.921523], + [-110.699982, 16.921523], + [-110.699982, 15.475896], + [-117.928116, 15.475896] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 16.921523], + [-117.928116, 18.367149], + [-110.699982, 18.367149], + [-110.699982, 16.921523], + [-117.928116, 16.921523] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 18.367149], + [-117.928116, 19.812776], + [-110.699982, 19.812776], + [-110.699982, 18.367149], + [-117.928116, 18.367149] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 19.812776], + [-117.928116, 21.258403], + [-110.699982, 21.258403], + [-110.699982, 19.812776], + [-117.928116, 19.812776] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 21.258403], + [-117.928116, 22.70403], + [-110.699982, 22.70403], + [-110.699982, 21.258403], + [-117.928116, 21.258403] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 22.70403], + [-117.928116, 24.149656], + [-110.699982, 24.149656], + [-110.699982, 22.70403], + [-117.928116, 22.70403] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 24.149656], + [-117.928116, 25.595283], + [-110.699982, 25.595283], + [-110.699982, 24.149656], + [-117.928116, 24.149656] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 25.595283], + [-117.928116, 27.04091], + [-110.699982, 27.04091], + [-110.699982, 25.595283], + [-117.928116, 25.595283] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 27.04091], + [-117.928116, 28.486537], + [-110.699982, 28.486537], + [-110.699982, 27.04091], + [-117.928116, 27.04091] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 28.486537], + [-117.928116, 29.932163], + [-110.699982, 29.932163], + [-110.699982, 28.486537], + [-117.928116, 28.486537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 29.932163], + [-117.928116, 31.37779], + [-110.699982, 31.37779], + [-110.699982, 29.932163], + [-117.928116, 29.932163] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 31.37779], + [-117.928116, 32.823417], + [-110.699982, 32.823417], + [-110.699982, 31.37779], + [-117.928116, 31.37779] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 32.823417], + [-117.928116, 34.269044], + [-110.699982, 34.269044], + [-110.699982, 32.823417], + [-117.928116, 32.823417] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 34.269044], + [-117.928116, 35.714671], + [-110.699982, 35.714671], + [-110.699982, 34.269044], + [-117.928116, 34.269044] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 35.714671], + [-117.928116, 37.160297], + [-110.699982, 37.160297], + [-110.699982, 35.714671], + [-117.928116, 35.714671] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 37.160297], + [-117.928116, 38.605924], + [-110.699982, 38.605924], + [-110.699982, 37.160297], + [-117.928116, 37.160297] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 38.605924], + [-117.928116, 40.051551], + [-110.699982, 40.051551], + [-110.699982, 38.605924], + [-117.928116, 38.605924] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 40.051551], + [-117.928116, 41.497178], + [-110.699982, 41.497178], + [-110.699982, 40.051551], + [-117.928116, 40.051551] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 41.497178], + [-117.928116, 42.942804], + [-110.699982, 42.942804], + [-110.699982, 41.497178], + [-117.928116, 41.497178] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 42.942804], + [-117.928116, 44.388431], + [-110.699982, 44.388431], + [-110.699982, 42.942804], + [-117.928116, 42.942804] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 44.388431], + [-117.928116, 45.834058], + [-110.699982, 45.834058], + [-110.699982, 44.388431], + [-117.928116, 44.388431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 45.834058], + [-117.928116, 47.279685], + [-110.699982, 47.279685], + [-110.699982, 45.834058], + [-117.928116, 45.834058] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 47.279685], + [-117.928116, 48.725311], + [-110.699982, 48.725311], + [-110.699982, 47.279685], + [-117.928116, 47.279685] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 48.725311], + [-117.928116, 50.170938], + [-110.699982, 50.170938], + [-110.699982, 48.725311], + [-117.928116, 48.725311] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 50.170938], + [-117.928116, 51.616565], + [-110.699982, 51.616565], + [-110.699982, 50.170938], + [-117.928116, 50.170938] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 51.616565], + [-117.928116, 53.062192], + [-110.699982, 53.062192], + [-110.699982, 51.616565], + [-117.928116, 51.616565] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 53.062192], + [-117.928116, 54.507819], + [-110.699982, 54.507819], + [-110.699982, 53.062192], + [-117.928116, 53.062192] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 54.507819], + [-117.928116, 55.953445], + [-110.699982, 55.953445], + [-110.699982, 54.507819], + [-117.928116, 54.507819] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 55.953445], + [-117.928116, 57.399072], + [-110.699982, 57.399072], + [-110.699982, 55.953445], + [-117.928116, 55.953445] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 57.399072], + [-117.928116, 58.844699], + [-110.699982, 58.844699], + [-110.699982, 57.399072], + [-117.928116, 57.399072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 58.844699], + [-117.928116, 60.290326], + [-110.699982, 60.290326], + [-110.699982, 58.844699], + [-117.928116, 58.844699] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 60.290326], + [-117.928116, 61.735952], + [-110.699982, 61.735952], + [-110.699982, 60.290326], + [-117.928116, 60.290326] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 61.735952], + [-117.928116, 63.181579], + [-110.699982, 63.181579], + [-110.699982, 61.735952], + [-117.928116, 61.735952] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 63.181579], + [-117.928116, 64.627206], + [-110.699982, 64.627206], + [-110.699982, 63.181579], + [-117.928116, 63.181579] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 64.627206], + [-117.928116, 66.072833], + [-110.699982, 66.072833], + [-110.699982, 64.627206], + [-117.928116, 64.627206] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 66.072833], + [-117.928116, 67.518459], + [-110.699982, 67.518459], + [-110.699982, 66.072833], + [-117.928116, 66.072833] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 67.518459], + [-117.928116, 68.964086], + [-110.699982, 68.964086], + [-110.699982, 67.518459], + [-117.928116, 67.518459] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 68.964086], + [-117.928116, 70.409713], + [-110.699982, 70.409713], + [-110.699982, 68.964086], + [-117.928116, 68.964086] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 70.409713], + [-117.928116, 71.85534], + [-110.699982, 71.85534], + [-110.699982, 70.409713], + [-117.928116, 70.409713] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 71.85534], + [-117.928116, 73.300967], + [-110.699982, 73.300967], + [-110.699982, 71.85534], + [-117.928116, 71.85534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 73.300967], + [-117.928116, 74.746593], + [-110.699982, 74.746593], + [-110.699982, 73.300967], + [-117.928116, 73.300967] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 74.746593], + [-117.928116, 76.19222], + [-110.699982, 76.19222], + [-110.699982, 74.746593], + [-117.928116, 74.746593] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 76.19222], + [-117.928116, 77.637847], + [-110.699982, 77.637847], + [-110.699982, 76.19222], + [-117.928116, 76.19222] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -79.935471], + [-110.699982, -78.489844], + [-103.471848, -78.489844], + [-103.471848, -79.935471], + [-110.699982, -79.935471] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -78.489844], + [-110.699982, -77.044217], + [-103.471848, -77.044217], + [-103.471848, -78.489844], + [-110.699982, -78.489844] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -77.044217], + [-110.699982, -75.598591], + [-103.471848, -75.598591], + [-103.471848, -77.044217], + [-110.699982, -77.044217] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -75.598591], + [-110.699982, -74.152964], + [-103.471848, -74.152964], + [-103.471848, -75.598591], + [-110.699982, -75.598591] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -74.152964], + [-110.699982, -72.707337], + [-103.471848, -72.707337], + [-103.471848, -74.152964], + [-110.699982, -74.152964] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -72.707337], + [-110.699982, -71.26171], + [-103.471848, -71.26171], + [-103.471848, -72.707337], + [-110.699982, -72.707337] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -71.26171], + [-110.699982, -69.816084], + [-103.471848, -69.816084], + [-103.471848, -71.26171], + [-110.699982, -71.26171] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -69.816084], + [-110.699982, -68.370457], + [-103.471848, -68.370457], + [-103.471848, -69.816084], + [-110.699982, -69.816084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -68.370457], + [-110.699982, -66.92483], + [-103.471848, -66.92483], + [-103.471848, -68.370457], + [-110.699982, -68.370457] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -66.92483], + [-110.699982, -65.479203], + [-103.471848, -65.479203], + [-103.471848, -66.92483], + [-110.699982, -66.92483] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -65.479203], + [-110.699982, -64.033576], + [-103.471848, -64.033576], + [-103.471848, -65.479203], + [-110.699982, -65.479203] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -64.033576], + [-110.699982, -62.58795], + [-103.471848, -62.58795], + [-103.471848, -64.033576], + [-110.699982, -64.033576] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -62.58795], + [-110.699982, -61.142323], + [-103.471848, -61.142323], + [-103.471848, -62.58795], + [-110.699982, -62.58795] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -61.142323], + [-110.699982, -59.696696], + [-103.471848, -59.696696], + [-103.471848, -61.142323], + [-110.699982, -61.142323] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -59.696696], + [-110.699982, -58.251069], + [-103.471848, -58.251069], + [-103.471848, -59.696696], + [-110.699982, -59.696696] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -58.251069], + [-110.699982, -56.805443], + [-103.471848, -56.805443], + [-103.471848, -58.251069], + [-110.699982, -58.251069] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -56.805443], + [-110.699982, -55.359816], + [-103.471848, -55.359816], + [-103.471848, -56.805443], + [-110.699982, -56.805443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -55.359816], + [-110.699982, -53.914189], + [-103.471848, -53.914189], + [-103.471848, -55.359816], + [-110.699982, -55.359816] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -53.914189], + [-110.699982, -52.468562], + [-103.471848, -52.468562], + [-103.471848, -53.914189], + [-110.699982, -53.914189] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -52.468562], + [-110.699982, -51.022936], + [-103.471848, -51.022936], + [-103.471848, -52.468562], + [-110.699982, -52.468562] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -51.022936], + [-110.699982, -49.577309], + [-103.471848, -49.577309], + [-103.471848, -51.022936], + [-110.699982, -51.022936] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -49.577309], + [-110.699982, -48.131682], + [-103.471848, -48.131682], + [-103.471848, -49.577309], + [-110.699982, -49.577309] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -48.131682], + [-110.699982, -46.686055], + [-103.471848, -46.686055], + [-103.471848, -48.131682], + [-110.699982, -48.131682] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -46.686055], + [-110.699982, -45.240428], + [-103.471848, -45.240428], + [-103.471848, -46.686055], + [-110.699982, -46.686055] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -45.240428], + [-110.699982, -43.794802], + [-103.471848, -43.794802], + [-103.471848, -45.240428], + [-110.699982, -45.240428] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -43.794802], + [-110.699982, -42.349175], + [-103.471848, -42.349175], + [-103.471848, -43.794802], + [-110.699982, -43.794802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -42.349175], + [-110.699982, -40.903548], + [-103.471848, -40.903548], + [-103.471848, -42.349175], + [-110.699982, -42.349175] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -40.903548], + [-110.699982, -39.457921], + [-103.471848, -39.457921], + [-103.471848, -40.903548], + [-110.699982, -40.903548] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -39.457921], + [-110.699982, -38.012295], + [-103.471848, -38.012295], + [-103.471848, -39.457921], + [-110.699982, -39.457921] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -38.012295], + [-110.699982, -36.566668], + [-103.471848, -36.566668], + [-103.471848, -38.012295], + [-110.699982, -38.012295] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -36.566668], + [-110.699982, -35.121041], + [-103.471848, -35.121041], + [-103.471848, -36.566668], + [-110.699982, -36.566668] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -35.121041], + [-110.699982, -33.675414], + [-103.471848, -33.675414], + [-103.471848, -35.121041], + [-110.699982, -35.121041] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -33.675414], + [-110.699982, -32.229788], + [-103.471848, -32.229788], + [-103.471848, -33.675414], + [-110.699982, -33.675414] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -32.229788], + [-110.699982, -30.784161], + [-103.471848, -30.784161], + [-103.471848, -32.229788], + [-110.699982, -32.229788] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -30.784161], + [-110.699982, -29.338534], + [-103.471848, -29.338534], + [-103.471848, -30.784161], + [-110.699982, -30.784161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -29.338534], + [-110.699982, -27.892907], + [-103.471848, -27.892907], + [-103.471848, -29.338534], + [-110.699982, -29.338534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -27.892907], + [-110.699982, -26.44728], + [-103.471848, -26.44728], + [-103.471848, -27.892907], + [-110.699982, -27.892907] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -26.44728], + [-110.699982, -25.001654], + [-103.471848, -25.001654], + [-103.471848, -26.44728], + [-110.699982, -26.44728] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -25.001654], + [-110.699982, -23.556027], + [-103.471848, -23.556027], + [-103.471848, -25.001654], + [-110.699982, -25.001654] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -23.556027], + [-110.699982, -22.1104], + [-103.471848, -22.1104], + [-103.471848, -23.556027], + [-110.699982, -23.556027] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -22.1104], + [-110.699982, -20.664773], + [-103.471848, -20.664773], + [-103.471848, -22.1104], + [-110.699982, -22.1104] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -20.664773], + [-110.699982, -19.219147], + [-103.471848, -19.219147], + [-103.471848, -20.664773], + [-110.699982, -20.664773] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -19.219147], + [-110.699982, -17.77352], + [-103.471848, -17.77352], + [-103.471848, -19.219147], + [-110.699982, -19.219147] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -17.77352], + [-110.699982, -16.327893], + [-103.471848, -16.327893], + [-103.471848, -17.77352], + [-110.699982, -17.77352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -16.327893], + [-110.699982, -14.882266], + [-103.471848, -14.882266], + [-103.471848, -16.327893], + [-110.699982, -16.327893] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -14.882266], + [-110.699982, -13.43664], + [-103.471848, -13.43664], + [-103.471848, -14.882266], + [-110.699982, -14.882266] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -13.43664], + [-110.699982, -11.991013], + [-103.471848, -11.991013], + [-103.471848, -13.43664], + [-110.699982, -13.43664] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -11.991013], + [-110.699982, -10.545386], + [-103.471848, -10.545386], + [-103.471848, -11.991013], + [-110.699982, -11.991013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -10.545386], + [-110.699982, -9.099759], + [-103.471848, -9.099759], + [-103.471848, -10.545386], + [-110.699982, -10.545386] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -9.099759], + [-110.699982, -7.654132], + [-103.471848, -7.654132], + [-103.471848, -9.099759], + [-110.699982, -9.099759] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -7.654132], + [-110.699982, -6.208506], + [-103.471848, -6.208506], + [-103.471848, -7.654132], + [-110.699982, -7.654132] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -6.208506], + [-110.699982, -4.762879], + [-103.471848, -4.762879], + [-103.471848, -6.208506], + [-110.699982, -6.208506] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -4.762879], + [-110.699982, -3.317252], + [-103.471848, -3.317252], + [-103.471848, -4.762879], + [-110.699982, -4.762879] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -3.317252], + [-110.699982, -1.871625], + [-103.471848, -1.871625], + [-103.471848, -3.317252], + [-110.699982, -3.317252] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -1.871625], + [-110.699982, -0.425999], + [-103.471848, -0.425999], + [-103.471848, -1.871625], + [-110.699982, -1.871625] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -0.425999], + [-110.699982, 1.019628], + [-103.471848, 1.019628], + [-103.471848, -0.425999], + [-110.699982, -0.425999] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 1.019628], + [-110.699982, 2.465255], + [-103.471848, 2.465255], + [-103.471848, 1.019628], + [-110.699982, 1.019628] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 2.465255], + [-110.699982, 3.910882], + [-103.471848, 3.910882], + [-103.471848, 2.465255], + [-110.699982, 2.465255] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 3.910882], + [-110.699982, 5.356508], + [-103.471848, 5.356508], + [-103.471848, 3.910882], + [-110.699982, 3.910882] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 5.356508], + [-110.699982, 6.802135], + [-103.471848, 6.802135], + [-103.471848, 5.356508], + [-110.699982, 5.356508] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 6.802135], + [-110.699982, 8.247762], + [-103.471848, 8.247762], + [-103.471848, 6.802135], + [-110.699982, 6.802135] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 8.247762], + [-110.699982, 9.693389], + [-103.471848, 9.693389], + [-103.471848, 8.247762], + [-110.699982, 8.247762] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 9.693389], + [-110.699982, 11.139016], + [-103.471848, 11.139016], + [-103.471848, 9.693389], + [-110.699982, 9.693389] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 11.139016], + [-110.699982, 12.584642], + [-103.471848, 12.584642], + [-103.471848, 11.139016], + [-110.699982, 11.139016] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 12.584642], + [-110.699982, 14.030269], + [-103.471848, 14.030269], + [-103.471848, 12.584642], + [-110.699982, 12.584642] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 14.030269], + [-110.699982, 15.475896], + [-103.471848, 15.475896], + [-103.471848, 14.030269], + [-110.699982, 14.030269] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 15.475896], + [-110.699982, 16.921523], + [-103.471848, 16.921523], + [-103.471848, 15.475896], + [-110.699982, 15.475896] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 16.921523], + [-110.699982, 18.367149], + [-103.471848, 18.367149], + [-103.471848, 16.921523], + [-110.699982, 16.921523] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 18.367149], + [-110.699982, 19.812776], + [-103.471848, 19.812776], + [-103.471848, 18.367149], + [-110.699982, 18.367149] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 19.812776], + [-110.699982, 21.258403], + [-103.471848, 21.258403], + [-103.471848, 19.812776], + [-110.699982, 19.812776] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 21.258403], + [-110.699982, 22.70403], + [-103.471848, 22.70403], + [-103.471848, 21.258403], + [-110.699982, 21.258403] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 22.70403], + [-110.699982, 24.149656], + [-103.471848, 24.149656], + [-103.471848, 22.70403], + [-110.699982, 22.70403] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 24.149656], + [-110.699982, 25.595283], + [-103.471848, 25.595283], + [-103.471848, 24.149656], + [-110.699982, 24.149656] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 25.595283], + [-110.699982, 27.04091], + [-103.471848, 27.04091], + [-103.471848, 25.595283], + [-110.699982, 25.595283] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 27.04091], + [-110.699982, 28.486537], + [-103.471848, 28.486537], + [-103.471848, 27.04091], + [-110.699982, 27.04091] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 28.486537], + [-110.699982, 29.932163], + [-103.471848, 29.932163], + [-103.471848, 28.486537], + [-110.699982, 28.486537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 29.932163], + [-110.699982, 31.37779], + [-103.471848, 31.37779], + [-103.471848, 29.932163], + [-110.699982, 29.932163] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 31.37779], + [-110.699982, 32.823417], + [-103.471848, 32.823417], + [-103.471848, 31.37779], + [-110.699982, 31.37779] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 32.823417], + [-110.699982, 34.269044], + [-103.471848, 34.269044], + [-103.471848, 32.823417], + [-110.699982, 32.823417] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 34.269044], + [-110.699982, 35.714671], + [-103.471848, 35.714671], + [-103.471848, 34.269044], + [-110.699982, 34.269044] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 35.714671], + [-110.699982, 37.160297], + [-103.471848, 37.160297], + [-103.471848, 35.714671], + [-110.699982, 35.714671] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 37.160297], + [-110.699982, 38.605924], + [-103.471848, 38.605924], + [-103.471848, 37.160297], + [-110.699982, 37.160297] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 38.605924], + [-110.699982, 40.051551], + [-103.471848, 40.051551], + [-103.471848, 38.605924], + [-110.699982, 38.605924] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 40.051551], + [-110.699982, 41.497178], + [-103.471848, 41.497178], + [-103.471848, 40.051551], + [-110.699982, 40.051551] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 41.497178], + [-110.699982, 42.942804], + [-103.471848, 42.942804], + [-103.471848, 41.497178], + [-110.699982, 41.497178] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 42.942804], + [-110.699982, 44.388431], + [-103.471848, 44.388431], + [-103.471848, 42.942804], + [-110.699982, 42.942804] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 44.388431], + [-110.699982, 45.834058], + [-103.471848, 45.834058], + [-103.471848, 44.388431], + [-110.699982, 44.388431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 45.834058], + [-110.699982, 47.279685], + [-103.471848, 47.279685], + [-103.471848, 45.834058], + [-110.699982, 45.834058] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 47.279685], + [-110.699982, 48.725311], + [-103.471848, 48.725311], + [-103.471848, 47.279685], + [-110.699982, 47.279685] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 48.725311], + [-110.699982, 50.170938], + [-103.471848, 50.170938], + [-103.471848, 48.725311], + [-110.699982, 48.725311] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 50.170938], + [-110.699982, 51.616565], + [-103.471848, 51.616565], + [-103.471848, 50.170938], + [-110.699982, 50.170938] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 51.616565], + [-110.699982, 53.062192], + [-103.471848, 53.062192], + [-103.471848, 51.616565], + [-110.699982, 51.616565] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 53.062192], + [-110.699982, 54.507819], + [-103.471848, 54.507819], + [-103.471848, 53.062192], + [-110.699982, 53.062192] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 54.507819], + [-110.699982, 55.953445], + [-103.471848, 55.953445], + [-103.471848, 54.507819], + [-110.699982, 54.507819] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 55.953445], + [-110.699982, 57.399072], + [-103.471848, 57.399072], + [-103.471848, 55.953445], + [-110.699982, 55.953445] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 57.399072], + [-110.699982, 58.844699], + [-103.471848, 58.844699], + [-103.471848, 57.399072], + [-110.699982, 57.399072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 58.844699], + [-110.699982, 60.290326], + [-103.471848, 60.290326], + [-103.471848, 58.844699], + [-110.699982, 58.844699] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 60.290326], + [-110.699982, 61.735952], + [-103.471848, 61.735952], + [-103.471848, 60.290326], + [-110.699982, 60.290326] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 61.735952], + [-110.699982, 63.181579], + [-103.471848, 63.181579], + [-103.471848, 61.735952], + [-110.699982, 61.735952] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 63.181579], + [-110.699982, 64.627206], + [-103.471848, 64.627206], + [-103.471848, 63.181579], + [-110.699982, 63.181579] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 64.627206], + [-110.699982, 66.072833], + [-103.471848, 66.072833], + [-103.471848, 64.627206], + [-110.699982, 64.627206] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 66.072833], + [-110.699982, 67.518459], + [-103.471848, 67.518459], + [-103.471848, 66.072833], + [-110.699982, 66.072833] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 67.518459], + [-110.699982, 68.964086], + [-103.471848, 68.964086], + [-103.471848, 67.518459], + [-110.699982, 67.518459] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 68.964086], + [-110.699982, 70.409713], + [-103.471848, 70.409713], + [-103.471848, 68.964086], + [-110.699982, 68.964086] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 70.409713], + [-110.699982, 71.85534], + [-103.471848, 71.85534], + [-103.471848, 70.409713], + [-110.699982, 70.409713] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 71.85534], + [-110.699982, 73.300967], + [-103.471848, 73.300967], + [-103.471848, 71.85534], + [-110.699982, 71.85534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 73.300967], + [-110.699982, 74.746593], + [-103.471848, 74.746593], + [-103.471848, 73.300967], + [-110.699982, 73.300967] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 74.746593], + [-110.699982, 76.19222], + [-103.471848, 76.19222], + [-103.471848, 74.746593], + [-110.699982, 74.746593] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 76.19222], + [-110.699982, 77.637847], + [-103.471848, 77.637847], + [-103.471848, 76.19222], + [-110.699982, 76.19222] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -79.935471], + [-103.471848, -78.489844], + [-96.243715, -78.489844], + [-96.243715, -79.935471], + [-103.471848, -79.935471] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -78.489844], + [-103.471848, -77.044217], + [-96.243715, -77.044217], + [-96.243715, -78.489844], + [-103.471848, -78.489844] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -77.044217], + [-103.471848, -75.598591], + [-96.243715, -75.598591], + [-96.243715, -77.044217], + [-103.471848, -77.044217] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -75.598591], + [-103.471848, -74.152964], + [-96.243715, -74.152964], + [-96.243715, -75.598591], + [-103.471848, -75.598591] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -74.152964], + [-103.471848, -72.707337], + [-96.243715, -72.707337], + [-96.243715, -74.152964], + [-103.471848, -74.152964] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -72.707337], + [-103.471848, -71.26171], + [-96.243715, -71.26171], + [-96.243715, -72.707337], + [-103.471848, -72.707337] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -71.26171], + [-103.471848, -69.816084], + [-96.243715, -69.816084], + [-96.243715, -71.26171], + [-103.471848, -71.26171] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -69.816084], + [-103.471848, -68.370457], + [-96.243715, -68.370457], + [-96.243715, -69.816084], + [-103.471848, -69.816084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -68.370457], + [-103.471848, -66.92483], + [-96.243715, -66.92483], + [-96.243715, -68.370457], + [-103.471848, -68.370457] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -66.92483], + [-103.471848, -65.479203], + [-96.243715, -65.479203], + [-96.243715, -66.92483], + [-103.471848, -66.92483] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -65.479203], + [-103.471848, -64.033576], + [-96.243715, -64.033576], + [-96.243715, -65.479203], + [-103.471848, -65.479203] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -64.033576], + [-103.471848, -62.58795], + [-96.243715, -62.58795], + [-96.243715, -64.033576], + [-103.471848, -64.033576] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -62.58795], + [-103.471848, -61.142323], + [-96.243715, -61.142323], + [-96.243715, -62.58795], + [-103.471848, -62.58795] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -61.142323], + [-103.471848, -59.696696], + [-96.243715, -59.696696], + [-96.243715, -61.142323], + [-103.471848, -61.142323] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -59.696696], + [-103.471848, -58.251069], + [-96.243715, -58.251069], + [-96.243715, -59.696696], + [-103.471848, -59.696696] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -58.251069], + [-103.471848, -56.805443], + [-96.243715, -56.805443], + [-96.243715, -58.251069], + [-103.471848, -58.251069] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -56.805443], + [-103.471848, -55.359816], + [-96.243715, -55.359816], + [-96.243715, -56.805443], + [-103.471848, -56.805443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -55.359816], + [-103.471848, -53.914189], + [-96.243715, -53.914189], + [-96.243715, -55.359816], + [-103.471848, -55.359816] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -53.914189], + [-103.471848, -52.468562], + [-96.243715, -52.468562], + [-96.243715, -53.914189], + [-103.471848, -53.914189] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -52.468562], + [-103.471848, -51.022936], + [-96.243715, -51.022936], + [-96.243715, -52.468562], + [-103.471848, -52.468562] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -51.022936], + [-103.471848, -49.577309], + [-96.243715, -49.577309], + [-96.243715, -51.022936], + [-103.471848, -51.022936] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -49.577309], + [-103.471848, -48.131682], + [-96.243715, -48.131682], + [-96.243715, -49.577309], + [-103.471848, -49.577309] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -48.131682], + [-103.471848, -46.686055], + [-96.243715, -46.686055], + [-96.243715, -48.131682], + [-103.471848, -48.131682] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -46.686055], + [-103.471848, -45.240428], + [-96.243715, -45.240428], + [-96.243715, -46.686055], + [-103.471848, -46.686055] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -45.240428], + [-103.471848, -43.794802], + [-96.243715, -43.794802], + [-96.243715, -45.240428], + [-103.471848, -45.240428] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -43.794802], + [-103.471848, -42.349175], + [-96.243715, -42.349175], + [-96.243715, -43.794802], + [-103.471848, -43.794802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -42.349175], + [-103.471848, -40.903548], + [-96.243715, -40.903548], + [-96.243715, -42.349175], + [-103.471848, -42.349175] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -40.903548], + [-103.471848, -39.457921], + [-96.243715, -39.457921], + [-96.243715, -40.903548], + [-103.471848, -40.903548] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -39.457921], + [-103.471848, -38.012295], + [-96.243715, -38.012295], + [-96.243715, -39.457921], + [-103.471848, -39.457921] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -38.012295], + [-103.471848, -36.566668], + [-96.243715, -36.566668], + [-96.243715, -38.012295], + [-103.471848, -38.012295] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -36.566668], + [-103.471848, -35.121041], + [-96.243715, -35.121041], + [-96.243715, -36.566668], + [-103.471848, -36.566668] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -35.121041], + [-103.471848, -33.675414], + [-96.243715, -33.675414], + [-96.243715, -35.121041], + [-103.471848, -35.121041] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -33.675414], + [-103.471848, -32.229788], + [-96.243715, -32.229788], + [-96.243715, -33.675414], + [-103.471848, -33.675414] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -32.229788], + [-103.471848, -30.784161], + [-96.243715, -30.784161], + [-96.243715, -32.229788], + [-103.471848, -32.229788] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -30.784161], + [-103.471848, -29.338534], + [-96.243715, -29.338534], + [-96.243715, -30.784161], + [-103.471848, -30.784161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -29.338534], + [-103.471848, -27.892907], + [-96.243715, -27.892907], + [-96.243715, -29.338534], + [-103.471848, -29.338534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -27.892907], + [-103.471848, -26.44728], + [-96.243715, -26.44728], + [-96.243715, -27.892907], + [-103.471848, -27.892907] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -26.44728], + [-103.471848, -25.001654], + [-96.243715, -25.001654], + [-96.243715, -26.44728], + [-103.471848, -26.44728] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -25.001654], + [-103.471848, -23.556027], + [-96.243715, -23.556027], + [-96.243715, -25.001654], + [-103.471848, -25.001654] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -23.556027], + [-103.471848, -22.1104], + [-96.243715, -22.1104], + [-96.243715, -23.556027], + [-103.471848, -23.556027] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -22.1104], + [-103.471848, -20.664773], + [-96.243715, -20.664773], + [-96.243715, -22.1104], + [-103.471848, -22.1104] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -20.664773], + [-103.471848, -19.219147], + [-96.243715, -19.219147], + [-96.243715, -20.664773], + [-103.471848, -20.664773] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -19.219147], + [-103.471848, -17.77352], + [-96.243715, -17.77352], + [-96.243715, -19.219147], + [-103.471848, -19.219147] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -17.77352], + [-103.471848, -16.327893], + [-96.243715, -16.327893], + [-96.243715, -17.77352], + [-103.471848, -17.77352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -16.327893], + [-103.471848, -14.882266], + [-96.243715, -14.882266], + [-96.243715, -16.327893], + [-103.471848, -16.327893] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -14.882266], + [-103.471848, -13.43664], + [-96.243715, -13.43664], + [-96.243715, -14.882266], + [-103.471848, -14.882266] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -13.43664], + [-103.471848, -11.991013], + [-96.243715, -11.991013], + [-96.243715, -13.43664], + [-103.471848, -13.43664] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -11.991013], + [-103.471848, -10.545386], + [-96.243715, -10.545386], + [-96.243715, -11.991013], + [-103.471848, -11.991013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -10.545386], + [-103.471848, -9.099759], + [-96.243715, -9.099759], + [-96.243715, -10.545386], + [-103.471848, -10.545386] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -9.099759], + [-103.471848, -7.654132], + [-96.243715, -7.654132], + [-96.243715, -9.099759], + [-103.471848, -9.099759] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -7.654132], + [-103.471848, -6.208506], + [-96.243715, -6.208506], + [-96.243715, -7.654132], + [-103.471848, -7.654132] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -6.208506], + [-103.471848, -4.762879], + [-96.243715, -4.762879], + [-96.243715, -6.208506], + [-103.471848, -6.208506] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -4.762879], + [-103.471848, -3.317252], + [-96.243715, -3.317252], + [-96.243715, -4.762879], + [-103.471848, -4.762879] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -3.317252], + [-103.471848, -1.871625], + [-96.243715, -1.871625], + [-96.243715, -3.317252], + [-103.471848, -3.317252] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -1.871625], + [-103.471848, -0.425999], + [-96.243715, -0.425999], + [-96.243715, -1.871625], + [-103.471848, -1.871625] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -0.425999], + [-103.471848, 1.019628], + [-96.243715, 1.019628], + [-96.243715, -0.425999], + [-103.471848, -0.425999] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 1.019628], + [-103.471848, 2.465255], + [-96.243715, 2.465255], + [-96.243715, 1.019628], + [-103.471848, 1.019628] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 2.465255], + [-103.471848, 3.910882], + [-96.243715, 3.910882], + [-96.243715, 2.465255], + [-103.471848, 2.465255] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 3.910882], + [-103.471848, 5.356508], + [-96.243715, 5.356508], + [-96.243715, 3.910882], + [-103.471848, 3.910882] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 5.356508], + [-103.471848, 6.802135], + [-96.243715, 6.802135], + [-96.243715, 5.356508], + [-103.471848, 5.356508] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 6.802135], + [-103.471848, 8.247762], + [-96.243715, 8.247762], + [-96.243715, 6.802135], + [-103.471848, 6.802135] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 8.247762], + [-103.471848, 9.693389], + [-96.243715, 9.693389], + [-96.243715, 8.247762], + [-103.471848, 8.247762] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 9.693389], + [-103.471848, 11.139016], + [-96.243715, 11.139016], + [-96.243715, 9.693389], + [-103.471848, 9.693389] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 11.139016], + [-103.471848, 12.584642], + [-96.243715, 12.584642], + [-96.243715, 11.139016], + [-103.471848, 11.139016] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 12.584642], + [-103.471848, 14.030269], + [-96.243715, 14.030269], + [-96.243715, 12.584642], + [-103.471848, 12.584642] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 14.030269], + [-103.471848, 15.475896], + [-96.243715, 15.475896], + [-96.243715, 14.030269], + [-103.471848, 14.030269] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 15.475896], + [-103.471848, 16.921523], + [-96.243715, 16.921523], + [-96.243715, 15.475896], + [-103.471848, 15.475896] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 16.921523], + [-103.471848, 18.367149], + [-96.243715, 18.367149], + [-96.243715, 16.921523], + [-103.471848, 16.921523] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 18.367149], + [-103.471848, 19.812776], + [-96.243715, 19.812776], + [-96.243715, 18.367149], + [-103.471848, 18.367149] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 19.812776], + [-103.471848, 21.258403], + [-96.243715, 21.258403], + [-96.243715, 19.812776], + [-103.471848, 19.812776] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 21.258403], + [-103.471848, 22.70403], + [-96.243715, 22.70403], + [-96.243715, 21.258403], + [-103.471848, 21.258403] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 22.70403], + [-103.471848, 24.149656], + [-96.243715, 24.149656], + [-96.243715, 22.70403], + [-103.471848, 22.70403] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 24.149656], + [-103.471848, 25.595283], + [-96.243715, 25.595283], + [-96.243715, 24.149656], + [-103.471848, 24.149656] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 25.595283], + [-103.471848, 27.04091], + [-96.243715, 27.04091], + [-96.243715, 25.595283], + [-103.471848, 25.595283] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 27.04091], + [-103.471848, 28.486537], + [-96.243715, 28.486537], + [-96.243715, 27.04091], + [-103.471848, 27.04091] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 28.486537], + [-103.471848, 29.932163], + [-96.243715, 29.932163], + [-96.243715, 28.486537], + [-103.471848, 28.486537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 29.932163], + [-103.471848, 31.37779], + [-96.243715, 31.37779], + [-96.243715, 29.932163], + [-103.471848, 29.932163] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 31.37779], + [-103.471848, 32.823417], + [-96.243715, 32.823417], + [-96.243715, 31.37779], + [-103.471848, 31.37779] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 32.823417], + [-103.471848, 34.269044], + [-96.243715, 34.269044], + [-96.243715, 32.823417], + [-103.471848, 32.823417] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 34.269044], + [-103.471848, 35.714671], + [-96.243715, 35.714671], + [-96.243715, 34.269044], + [-103.471848, 34.269044] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 35.714671], + [-103.471848, 37.160297], + [-96.243715, 37.160297], + [-96.243715, 35.714671], + [-103.471848, 35.714671] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 37.160297], + [-103.471848, 38.605924], + [-96.243715, 38.605924], + [-96.243715, 37.160297], + [-103.471848, 37.160297] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 38.605924], + [-103.471848, 40.051551], + [-96.243715, 40.051551], + [-96.243715, 38.605924], + [-103.471848, 38.605924] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 40.051551], + [-103.471848, 41.497178], + [-96.243715, 41.497178], + [-96.243715, 40.051551], + [-103.471848, 40.051551] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 41.497178], + [-103.471848, 42.942804], + [-96.243715, 42.942804], + [-96.243715, 41.497178], + [-103.471848, 41.497178] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 42.942804], + [-103.471848, 44.388431], + [-96.243715, 44.388431], + [-96.243715, 42.942804], + [-103.471848, 42.942804] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 44.388431], + [-103.471848, 45.834058], + [-96.243715, 45.834058], + [-96.243715, 44.388431], + [-103.471848, 44.388431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 45.834058], + [-103.471848, 47.279685], + [-96.243715, 47.279685], + [-96.243715, 45.834058], + [-103.471848, 45.834058] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 47.279685], + [-103.471848, 48.725311], + [-96.243715, 48.725311], + [-96.243715, 47.279685], + [-103.471848, 47.279685] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 48.725311], + [-103.471848, 50.170938], + [-96.243715, 50.170938], + [-96.243715, 48.725311], + [-103.471848, 48.725311] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 50.170938], + [-103.471848, 51.616565], + [-96.243715, 51.616565], + [-96.243715, 50.170938], + [-103.471848, 50.170938] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 51.616565], + [-103.471848, 53.062192], + [-96.243715, 53.062192], + [-96.243715, 51.616565], + [-103.471848, 51.616565] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 53.062192], + [-103.471848, 54.507819], + [-96.243715, 54.507819], + [-96.243715, 53.062192], + [-103.471848, 53.062192] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 54.507819], + [-103.471848, 55.953445], + [-96.243715, 55.953445], + [-96.243715, 54.507819], + [-103.471848, 54.507819] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 55.953445], + [-103.471848, 57.399072], + [-96.243715, 57.399072], + [-96.243715, 55.953445], + [-103.471848, 55.953445] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 57.399072], + [-103.471848, 58.844699], + [-96.243715, 58.844699], + [-96.243715, 57.399072], + [-103.471848, 57.399072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 58.844699], + [-103.471848, 60.290326], + [-96.243715, 60.290326], + [-96.243715, 58.844699], + [-103.471848, 58.844699] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 60.290326], + [-103.471848, 61.735952], + [-96.243715, 61.735952], + [-96.243715, 60.290326], + [-103.471848, 60.290326] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 61.735952], + [-103.471848, 63.181579], + [-96.243715, 63.181579], + [-96.243715, 61.735952], + [-103.471848, 61.735952] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 63.181579], + [-103.471848, 64.627206], + [-96.243715, 64.627206], + [-96.243715, 63.181579], + [-103.471848, 63.181579] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 64.627206], + [-103.471848, 66.072833], + [-96.243715, 66.072833], + [-96.243715, 64.627206], + [-103.471848, 64.627206] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 66.072833], + [-103.471848, 67.518459], + [-96.243715, 67.518459], + [-96.243715, 66.072833], + [-103.471848, 66.072833] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 67.518459], + [-103.471848, 68.964086], + [-96.243715, 68.964086], + [-96.243715, 67.518459], + [-103.471848, 67.518459] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 68.964086], + [-103.471848, 70.409713], + [-96.243715, 70.409713], + [-96.243715, 68.964086], + [-103.471848, 68.964086] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 70.409713], + [-103.471848, 71.85534], + [-96.243715, 71.85534], + [-96.243715, 70.409713], + [-103.471848, 70.409713] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 71.85534], + [-103.471848, 73.300967], + [-96.243715, 73.300967], + [-96.243715, 71.85534], + [-103.471848, 71.85534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 73.300967], + [-103.471848, 74.746593], + [-96.243715, 74.746593], + [-96.243715, 73.300967], + [-103.471848, 73.300967] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 74.746593], + [-103.471848, 76.19222], + [-96.243715, 76.19222], + [-96.243715, 74.746593], + [-103.471848, 74.746593] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 76.19222], + [-103.471848, 77.637847], + [-96.243715, 77.637847], + [-96.243715, 76.19222], + [-103.471848, 76.19222] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -79.935471], + [-96.243715, -78.489844], + [-89.015581, -78.489844], + [-89.015581, -79.935471], + [-96.243715, -79.935471] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -78.489844], + [-96.243715, -77.044217], + [-89.015581, -77.044217], + [-89.015581, -78.489844], + [-96.243715, -78.489844] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -77.044217], + [-96.243715, -75.598591], + [-89.015581, -75.598591], + [-89.015581, -77.044217], + [-96.243715, -77.044217] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -75.598591], + [-96.243715, -74.152964], + [-89.015581, -74.152964], + [-89.015581, -75.598591], + [-96.243715, -75.598591] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -74.152964], + [-96.243715, -72.707337], + [-89.015581, -72.707337], + [-89.015581, -74.152964], + [-96.243715, -74.152964] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -72.707337], + [-96.243715, -71.26171], + [-89.015581, -71.26171], + [-89.015581, -72.707337], + [-96.243715, -72.707337] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -71.26171], + [-96.243715, -69.816084], + [-89.015581, -69.816084], + [-89.015581, -71.26171], + [-96.243715, -71.26171] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -69.816084], + [-96.243715, -68.370457], + [-89.015581, -68.370457], + [-89.015581, -69.816084], + [-96.243715, -69.816084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -68.370457], + [-96.243715, -66.92483], + [-89.015581, -66.92483], + [-89.015581, -68.370457], + [-96.243715, -68.370457] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -66.92483], + [-96.243715, -65.479203], + [-89.015581, -65.479203], + [-89.015581, -66.92483], + [-96.243715, -66.92483] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -65.479203], + [-96.243715, -64.033576], + [-89.015581, -64.033576], + [-89.015581, -65.479203], + [-96.243715, -65.479203] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -64.033576], + [-96.243715, -62.58795], + [-89.015581, -62.58795], + [-89.015581, -64.033576], + [-96.243715, -64.033576] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -62.58795], + [-96.243715, -61.142323], + [-89.015581, -61.142323], + [-89.015581, -62.58795], + [-96.243715, -62.58795] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -61.142323], + [-96.243715, -59.696696], + [-89.015581, -59.696696], + [-89.015581, -61.142323], + [-96.243715, -61.142323] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -59.696696], + [-96.243715, -58.251069], + [-89.015581, -58.251069], + [-89.015581, -59.696696], + [-96.243715, -59.696696] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -58.251069], + [-96.243715, -56.805443], + [-89.015581, -56.805443], + [-89.015581, -58.251069], + [-96.243715, -58.251069] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -56.805443], + [-96.243715, -55.359816], + [-89.015581, -55.359816], + [-89.015581, -56.805443], + [-96.243715, -56.805443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -55.359816], + [-96.243715, -53.914189], + [-89.015581, -53.914189], + [-89.015581, -55.359816], + [-96.243715, -55.359816] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -53.914189], + [-96.243715, -52.468562], + [-89.015581, -52.468562], + [-89.015581, -53.914189], + [-96.243715, -53.914189] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -52.468562], + [-96.243715, -51.022936], + [-89.015581, -51.022936], + [-89.015581, -52.468562], + [-96.243715, -52.468562] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -51.022936], + [-96.243715, -49.577309], + [-89.015581, -49.577309], + [-89.015581, -51.022936], + [-96.243715, -51.022936] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -49.577309], + [-96.243715, -48.131682], + [-89.015581, -48.131682], + [-89.015581, -49.577309], + [-96.243715, -49.577309] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -48.131682], + [-96.243715, -46.686055], + [-89.015581, -46.686055], + [-89.015581, -48.131682], + [-96.243715, -48.131682] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -46.686055], + [-96.243715, -45.240428], + [-89.015581, -45.240428], + [-89.015581, -46.686055], + [-96.243715, -46.686055] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -45.240428], + [-96.243715, -43.794802], + [-89.015581, -43.794802], + [-89.015581, -45.240428], + [-96.243715, -45.240428] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -43.794802], + [-96.243715, -42.349175], + [-89.015581, -42.349175], + [-89.015581, -43.794802], + [-96.243715, -43.794802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -42.349175], + [-96.243715, -40.903548], + [-89.015581, -40.903548], + [-89.015581, -42.349175], + [-96.243715, -42.349175] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -40.903548], + [-96.243715, -39.457921], + [-89.015581, -39.457921], + [-89.015581, -40.903548], + [-96.243715, -40.903548] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -39.457921], + [-96.243715, -38.012295], + [-89.015581, -38.012295], + [-89.015581, -39.457921], + [-96.243715, -39.457921] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -38.012295], + [-96.243715, -36.566668], + [-89.015581, -36.566668], + [-89.015581, -38.012295], + [-96.243715, -38.012295] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -36.566668], + [-96.243715, -35.121041], + [-89.015581, -35.121041], + [-89.015581, -36.566668], + [-96.243715, -36.566668] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -35.121041], + [-96.243715, -33.675414], + [-89.015581, -33.675414], + [-89.015581, -35.121041], + [-96.243715, -35.121041] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -33.675414], + [-96.243715, -32.229788], + [-89.015581, -32.229788], + [-89.015581, -33.675414], + [-96.243715, -33.675414] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -32.229788], + [-96.243715, -30.784161], + [-89.015581, -30.784161], + [-89.015581, -32.229788], + [-96.243715, -32.229788] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -30.784161], + [-96.243715, -29.338534], + [-89.015581, -29.338534], + [-89.015581, -30.784161], + [-96.243715, -30.784161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -29.338534], + [-96.243715, -27.892907], + [-89.015581, -27.892907], + [-89.015581, -29.338534], + [-96.243715, -29.338534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -27.892907], + [-96.243715, -26.44728], + [-89.015581, -26.44728], + [-89.015581, -27.892907], + [-96.243715, -27.892907] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -26.44728], + [-96.243715, -25.001654], + [-89.015581, -25.001654], + [-89.015581, -26.44728], + [-96.243715, -26.44728] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -25.001654], + [-96.243715, -23.556027], + [-89.015581, -23.556027], + [-89.015581, -25.001654], + [-96.243715, -25.001654] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -23.556027], + [-96.243715, -22.1104], + [-89.015581, -22.1104], + [-89.015581, -23.556027], + [-96.243715, -23.556027] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -22.1104], + [-96.243715, -20.664773], + [-89.015581, -20.664773], + [-89.015581, -22.1104], + [-96.243715, -22.1104] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -20.664773], + [-96.243715, -19.219147], + [-89.015581, -19.219147], + [-89.015581, -20.664773], + [-96.243715, -20.664773] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -19.219147], + [-96.243715, -17.77352], + [-89.015581, -17.77352], + [-89.015581, -19.219147], + [-96.243715, -19.219147] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -17.77352], + [-96.243715, -16.327893], + [-89.015581, -16.327893], + [-89.015581, -17.77352], + [-96.243715, -17.77352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -16.327893], + [-96.243715, -14.882266], + [-89.015581, -14.882266], + [-89.015581, -16.327893], + [-96.243715, -16.327893] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -14.882266], + [-96.243715, -13.43664], + [-89.015581, -13.43664], + [-89.015581, -14.882266], + [-96.243715, -14.882266] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -13.43664], + [-96.243715, -11.991013], + [-89.015581, -11.991013], + [-89.015581, -13.43664], + [-96.243715, -13.43664] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -11.991013], + [-96.243715, -10.545386], + [-89.015581, -10.545386], + [-89.015581, -11.991013], + [-96.243715, -11.991013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -10.545386], + [-96.243715, -9.099759], + [-89.015581, -9.099759], + [-89.015581, -10.545386], + [-96.243715, -10.545386] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -9.099759], + [-96.243715, -7.654132], + [-89.015581, -7.654132], + [-89.015581, -9.099759], + [-96.243715, -9.099759] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -7.654132], + [-96.243715, -6.208506], + [-89.015581, -6.208506], + [-89.015581, -7.654132], + [-96.243715, -7.654132] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -6.208506], + [-96.243715, -4.762879], + [-89.015581, -4.762879], + [-89.015581, -6.208506], + [-96.243715, -6.208506] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -4.762879], + [-96.243715, -3.317252], + [-89.015581, -3.317252], + [-89.015581, -4.762879], + [-96.243715, -4.762879] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -3.317252], + [-96.243715, -1.871625], + [-89.015581, -1.871625], + [-89.015581, -3.317252], + [-96.243715, -3.317252] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -1.871625], + [-96.243715, -0.425999], + [-89.015581, -0.425999], + [-89.015581, -1.871625], + [-96.243715, -1.871625] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -0.425999], + [-96.243715, 1.019628], + [-89.015581, 1.019628], + [-89.015581, -0.425999], + [-96.243715, -0.425999] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 1.019628], + [-96.243715, 2.465255], + [-89.015581, 2.465255], + [-89.015581, 1.019628], + [-96.243715, 1.019628] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 2.465255], + [-96.243715, 3.910882], + [-89.015581, 3.910882], + [-89.015581, 2.465255], + [-96.243715, 2.465255] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 3.910882], + [-96.243715, 5.356508], + [-89.015581, 5.356508], + [-89.015581, 3.910882], + [-96.243715, 3.910882] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 5.356508], + [-96.243715, 6.802135], + [-89.015581, 6.802135], + [-89.015581, 5.356508], + [-96.243715, 5.356508] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 6.802135], + [-96.243715, 8.247762], + [-89.015581, 8.247762], + [-89.015581, 6.802135], + [-96.243715, 6.802135] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 8.247762], + [-96.243715, 9.693389], + [-89.015581, 9.693389], + [-89.015581, 8.247762], + [-96.243715, 8.247762] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 9.693389], + [-96.243715, 11.139016], + [-89.015581, 11.139016], + [-89.015581, 9.693389], + [-96.243715, 9.693389] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 11.139016], + [-96.243715, 12.584642], + [-89.015581, 12.584642], + [-89.015581, 11.139016], + [-96.243715, 11.139016] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 12.584642], + [-96.243715, 14.030269], + [-89.015581, 14.030269], + [-89.015581, 12.584642], + [-96.243715, 12.584642] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 14.030269], + [-96.243715, 15.475896], + [-89.015581, 15.475896], + [-89.015581, 14.030269], + [-96.243715, 14.030269] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 15.475896], + [-96.243715, 16.921523], + [-89.015581, 16.921523], + [-89.015581, 15.475896], + [-96.243715, 15.475896] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 16.921523], + [-96.243715, 18.367149], + [-89.015581, 18.367149], + [-89.015581, 16.921523], + [-96.243715, 16.921523] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 18.367149], + [-96.243715, 19.812776], + [-89.015581, 19.812776], + [-89.015581, 18.367149], + [-96.243715, 18.367149] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 19.812776], + [-96.243715, 21.258403], + [-89.015581, 21.258403], + [-89.015581, 19.812776], + [-96.243715, 19.812776] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 21.258403], + [-96.243715, 22.70403], + [-89.015581, 22.70403], + [-89.015581, 21.258403], + [-96.243715, 21.258403] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 22.70403], + [-96.243715, 24.149656], + [-89.015581, 24.149656], + [-89.015581, 22.70403], + [-96.243715, 22.70403] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 24.149656], + [-96.243715, 25.595283], + [-89.015581, 25.595283], + [-89.015581, 24.149656], + [-96.243715, 24.149656] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 25.595283], + [-96.243715, 27.04091], + [-89.015581, 27.04091], + [-89.015581, 25.595283], + [-96.243715, 25.595283] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 27.04091], + [-96.243715, 28.486537], + [-89.015581, 28.486537], + [-89.015581, 27.04091], + [-96.243715, 27.04091] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 28.486537], + [-96.243715, 29.932163], + [-89.015581, 29.932163], + [-89.015581, 28.486537], + [-96.243715, 28.486537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 29.932163], + [-96.243715, 31.37779], + [-89.015581, 31.37779], + [-89.015581, 29.932163], + [-96.243715, 29.932163] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 31.37779], + [-96.243715, 32.823417], + [-89.015581, 32.823417], + [-89.015581, 31.37779], + [-96.243715, 31.37779] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 32.823417], + [-96.243715, 34.269044], + [-89.015581, 34.269044], + [-89.015581, 32.823417], + [-96.243715, 32.823417] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 34.269044], + [-96.243715, 35.714671], + [-89.015581, 35.714671], + [-89.015581, 34.269044], + [-96.243715, 34.269044] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 35.714671], + [-96.243715, 37.160297], + [-89.015581, 37.160297], + [-89.015581, 35.714671], + [-96.243715, 35.714671] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 37.160297], + [-96.243715, 38.605924], + [-89.015581, 38.605924], + [-89.015581, 37.160297], + [-96.243715, 37.160297] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 38.605924], + [-96.243715, 40.051551], + [-89.015581, 40.051551], + [-89.015581, 38.605924], + [-96.243715, 38.605924] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 40.051551], + [-96.243715, 41.497178], + [-89.015581, 41.497178], + [-89.015581, 40.051551], + [-96.243715, 40.051551] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 41.497178], + [-96.243715, 42.942804], + [-89.015581, 42.942804], + [-89.015581, 41.497178], + [-96.243715, 41.497178] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 42.942804], + [-96.243715, 44.388431], + [-89.015581, 44.388431], + [-89.015581, 42.942804], + [-96.243715, 42.942804] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 44.388431], + [-96.243715, 45.834058], + [-89.015581, 45.834058], + [-89.015581, 44.388431], + [-96.243715, 44.388431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 45.834058], + [-96.243715, 47.279685], + [-89.015581, 47.279685], + [-89.015581, 45.834058], + [-96.243715, 45.834058] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 47.279685], + [-96.243715, 48.725311], + [-89.015581, 48.725311], + [-89.015581, 47.279685], + [-96.243715, 47.279685] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 48.725311], + [-96.243715, 50.170938], + [-89.015581, 50.170938], + [-89.015581, 48.725311], + [-96.243715, 48.725311] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 50.170938], + [-96.243715, 51.616565], + [-89.015581, 51.616565], + [-89.015581, 50.170938], + [-96.243715, 50.170938] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 51.616565], + [-96.243715, 53.062192], + [-89.015581, 53.062192], + [-89.015581, 51.616565], + [-96.243715, 51.616565] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 53.062192], + [-96.243715, 54.507819], + [-89.015581, 54.507819], + [-89.015581, 53.062192], + [-96.243715, 53.062192] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 54.507819], + [-96.243715, 55.953445], + [-89.015581, 55.953445], + [-89.015581, 54.507819], + [-96.243715, 54.507819] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 55.953445], + [-96.243715, 57.399072], + [-89.015581, 57.399072], + [-89.015581, 55.953445], + [-96.243715, 55.953445] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 57.399072], + [-96.243715, 58.844699], + [-89.015581, 58.844699], + [-89.015581, 57.399072], + [-96.243715, 57.399072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 58.844699], + [-96.243715, 60.290326], + [-89.015581, 60.290326], + [-89.015581, 58.844699], + [-96.243715, 58.844699] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 60.290326], + [-96.243715, 61.735952], + [-89.015581, 61.735952], + [-89.015581, 60.290326], + [-96.243715, 60.290326] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 61.735952], + [-96.243715, 63.181579], + [-89.015581, 63.181579], + [-89.015581, 61.735952], + [-96.243715, 61.735952] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 63.181579], + [-96.243715, 64.627206], + [-89.015581, 64.627206], + [-89.015581, 63.181579], + [-96.243715, 63.181579] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 64.627206], + [-96.243715, 66.072833], + [-89.015581, 66.072833], + [-89.015581, 64.627206], + [-96.243715, 64.627206] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 66.072833], + [-96.243715, 67.518459], + [-89.015581, 67.518459], + [-89.015581, 66.072833], + [-96.243715, 66.072833] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 67.518459], + [-96.243715, 68.964086], + [-89.015581, 68.964086], + [-89.015581, 67.518459], + [-96.243715, 67.518459] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 68.964086], + [-96.243715, 70.409713], + [-89.015581, 70.409713], + [-89.015581, 68.964086], + [-96.243715, 68.964086] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 70.409713], + [-96.243715, 71.85534], + [-89.015581, 71.85534], + [-89.015581, 70.409713], + [-96.243715, 70.409713] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 71.85534], + [-96.243715, 73.300967], + [-89.015581, 73.300967], + [-89.015581, 71.85534], + [-96.243715, 71.85534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 73.300967], + [-96.243715, 74.746593], + [-89.015581, 74.746593], + [-89.015581, 73.300967], + [-96.243715, 73.300967] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 74.746593], + [-96.243715, 76.19222], + [-89.015581, 76.19222], + [-89.015581, 74.746593], + [-96.243715, 74.746593] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 76.19222], + [-96.243715, 77.637847], + [-89.015581, 77.637847], + [-89.015581, 76.19222], + [-96.243715, 76.19222] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -79.935471], + [-89.015581, -78.489844], + [-81.787447, -78.489844], + [-81.787447, -79.935471], + [-89.015581, -79.935471] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -78.489844], + [-89.015581, -77.044217], + [-81.787447, -77.044217], + [-81.787447, -78.489844], + [-89.015581, -78.489844] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -77.044217], + [-89.015581, -75.598591], + [-81.787447, -75.598591], + [-81.787447, -77.044217], + [-89.015581, -77.044217] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -75.598591], + [-89.015581, -74.152964], + [-81.787447, -74.152964], + [-81.787447, -75.598591], + [-89.015581, -75.598591] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -74.152964], + [-89.015581, -72.707337], + [-81.787447, -72.707337], + [-81.787447, -74.152964], + [-89.015581, -74.152964] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -72.707337], + [-89.015581, -71.26171], + [-81.787447, -71.26171], + [-81.787447, -72.707337], + [-89.015581, -72.707337] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -71.26171], + [-89.015581, -69.816084], + [-81.787447, -69.816084], + [-81.787447, -71.26171], + [-89.015581, -71.26171] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -69.816084], + [-89.015581, -68.370457], + [-81.787447, -68.370457], + [-81.787447, -69.816084], + [-89.015581, -69.816084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -68.370457], + [-89.015581, -66.92483], + [-81.787447, -66.92483], + [-81.787447, -68.370457], + [-89.015581, -68.370457] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -66.92483], + [-89.015581, -65.479203], + [-81.787447, -65.479203], + [-81.787447, -66.92483], + [-89.015581, -66.92483] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -65.479203], + [-89.015581, -64.033576], + [-81.787447, -64.033576], + [-81.787447, -65.479203], + [-89.015581, -65.479203] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -64.033576], + [-89.015581, -62.58795], + [-81.787447, -62.58795], + [-81.787447, -64.033576], + [-89.015581, -64.033576] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -62.58795], + [-89.015581, -61.142323], + [-81.787447, -61.142323], + [-81.787447, -62.58795], + [-89.015581, -62.58795] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -61.142323], + [-89.015581, -59.696696], + [-81.787447, -59.696696], + [-81.787447, -61.142323], + [-89.015581, -61.142323] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -59.696696], + [-89.015581, -58.251069], + [-81.787447, -58.251069], + [-81.787447, -59.696696], + [-89.015581, -59.696696] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -58.251069], + [-89.015581, -56.805443], + [-81.787447, -56.805443], + [-81.787447, -58.251069], + [-89.015581, -58.251069] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -56.805443], + [-89.015581, -55.359816], + [-81.787447, -55.359816], + [-81.787447, -56.805443], + [-89.015581, -56.805443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -55.359816], + [-89.015581, -53.914189], + [-81.787447, -53.914189], + [-81.787447, -55.359816], + [-89.015581, -55.359816] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -53.914189], + [-89.015581, -52.468562], + [-81.787447, -52.468562], + [-81.787447, -53.914189], + [-89.015581, -53.914189] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -52.468562], + [-89.015581, -51.022936], + [-81.787447, -51.022936], + [-81.787447, -52.468562], + [-89.015581, -52.468562] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -51.022936], + [-89.015581, -49.577309], + [-81.787447, -49.577309], + [-81.787447, -51.022936], + [-89.015581, -51.022936] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -49.577309], + [-89.015581, -48.131682], + [-81.787447, -48.131682], + [-81.787447, -49.577309], + [-89.015581, -49.577309] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -48.131682], + [-89.015581, -46.686055], + [-81.787447, -46.686055], + [-81.787447, -48.131682], + [-89.015581, -48.131682] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -46.686055], + [-89.015581, -45.240428], + [-81.787447, -45.240428], + [-81.787447, -46.686055], + [-89.015581, -46.686055] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -45.240428], + [-89.015581, -43.794802], + [-81.787447, -43.794802], + [-81.787447, -45.240428], + [-89.015581, -45.240428] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -43.794802], + [-89.015581, -42.349175], + [-81.787447, -42.349175], + [-81.787447, -43.794802], + [-89.015581, -43.794802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -42.349175], + [-89.015581, -40.903548], + [-81.787447, -40.903548], + [-81.787447, -42.349175], + [-89.015581, -42.349175] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -40.903548], + [-89.015581, -39.457921], + [-81.787447, -39.457921], + [-81.787447, -40.903548], + [-89.015581, -40.903548] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -39.457921], + [-89.015581, -38.012295], + [-81.787447, -38.012295], + [-81.787447, -39.457921], + [-89.015581, -39.457921] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -38.012295], + [-89.015581, -36.566668], + [-81.787447, -36.566668], + [-81.787447, -38.012295], + [-89.015581, -38.012295] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -36.566668], + [-89.015581, -35.121041], + [-81.787447, -35.121041], + [-81.787447, -36.566668], + [-89.015581, -36.566668] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -35.121041], + [-89.015581, -33.675414], + [-81.787447, -33.675414], + [-81.787447, -35.121041], + [-89.015581, -35.121041] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -33.675414], + [-89.015581, -32.229788], + [-81.787447, -32.229788], + [-81.787447, -33.675414], + [-89.015581, -33.675414] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -32.229788], + [-89.015581, -30.784161], + [-81.787447, -30.784161], + [-81.787447, -32.229788], + [-89.015581, -32.229788] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -30.784161], + [-89.015581, -29.338534], + [-81.787447, -29.338534], + [-81.787447, -30.784161], + [-89.015581, -30.784161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -29.338534], + [-89.015581, -27.892907], + [-81.787447, -27.892907], + [-81.787447, -29.338534], + [-89.015581, -29.338534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -27.892907], + [-89.015581, -26.44728], + [-81.787447, -26.44728], + [-81.787447, -27.892907], + [-89.015581, -27.892907] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -26.44728], + [-89.015581, -25.001654], + [-81.787447, -25.001654], + [-81.787447, -26.44728], + [-89.015581, -26.44728] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -25.001654], + [-89.015581, -23.556027], + [-81.787447, -23.556027], + [-81.787447, -25.001654], + [-89.015581, -25.001654] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -23.556027], + [-89.015581, -22.1104], + [-81.787447, -22.1104], + [-81.787447, -23.556027], + [-89.015581, -23.556027] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -22.1104], + [-89.015581, -20.664773], + [-81.787447, -20.664773], + [-81.787447, -22.1104], + [-89.015581, -22.1104] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -20.664773], + [-89.015581, -19.219147], + [-81.787447, -19.219147], + [-81.787447, -20.664773], + [-89.015581, -20.664773] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -19.219147], + [-89.015581, -17.77352], + [-81.787447, -17.77352], + [-81.787447, -19.219147], + [-89.015581, -19.219147] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -17.77352], + [-89.015581, -16.327893], + [-81.787447, -16.327893], + [-81.787447, -17.77352], + [-89.015581, -17.77352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -16.327893], + [-89.015581, -14.882266], + [-81.787447, -14.882266], + [-81.787447, -16.327893], + [-89.015581, -16.327893] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -14.882266], + [-89.015581, -13.43664], + [-81.787447, -13.43664], + [-81.787447, -14.882266], + [-89.015581, -14.882266] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -13.43664], + [-89.015581, -11.991013], + [-81.787447, -11.991013], + [-81.787447, -13.43664], + [-89.015581, -13.43664] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -11.991013], + [-89.015581, -10.545386], + [-81.787447, -10.545386], + [-81.787447, -11.991013], + [-89.015581, -11.991013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -10.545386], + [-89.015581, -9.099759], + [-81.787447, -9.099759], + [-81.787447, -10.545386], + [-89.015581, -10.545386] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -9.099759], + [-89.015581, -7.654132], + [-81.787447, -7.654132], + [-81.787447, -9.099759], + [-89.015581, -9.099759] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -7.654132], + [-89.015581, -6.208506], + [-81.787447, -6.208506], + [-81.787447, -7.654132], + [-89.015581, -7.654132] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -6.208506], + [-89.015581, -4.762879], + [-81.787447, -4.762879], + [-81.787447, -6.208506], + [-89.015581, -6.208506] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -4.762879], + [-89.015581, -3.317252], + [-81.787447, -3.317252], + [-81.787447, -4.762879], + [-89.015581, -4.762879] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -3.317252], + [-89.015581, -1.871625], + [-81.787447, -1.871625], + [-81.787447, -3.317252], + [-89.015581, -3.317252] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -1.871625], + [-89.015581, -0.425999], + [-81.787447, -0.425999], + [-81.787447, -1.871625], + [-89.015581, -1.871625] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -0.425999], + [-89.015581, 1.019628], + [-81.787447, 1.019628], + [-81.787447, -0.425999], + [-89.015581, -0.425999] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 1.019628], + [-89.015581, 2.465255], + [-81.787447, 2.465255], + [-81.787447, 1.019628], + [-89.015581, 1.019628] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 2.465255], + [-89.015581, 3.910882], + [-81.787447, 3.910882], + [-81.787447, 2.465255], + [-89.015581, 2.465255] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 3.910882], + [-89.015581, 5.356508], + [-81.787447, 5.356508], + [-81.787447, 3.910882], + [-89.015581, 3.910882] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 5.356508], + [-89.015581, 6.802135], + [-81.787447, 6.802135], + [-81.787447, 5.356508], + [-89.015581, 5.356508] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 6.802135], + [-89.015581, 8.247762], + [-81.787447, 8.247762], + [-81.787447, 6.802135], + [-89.015581, 6.802135] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 8.247762], + [-89.015581, 9.693389], + [-81.787447, 9.693389], + [-81.787447, 8.247762], + [-89.015581, 8.247762] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 9.693389], + [-89.015581, 11.139016], + [-81.787447, 11.139016], + [-81.787447, 9.693389], + [-89.015581, 9.693389] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 11.139016], + [-89.015581, 12.584642], + [-81.787447, 12.584642], + [-81.787447, 11.139016], + [-89.015581, 11.139016] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 12.584642], + [-89.015581, 14.030269], + [-81.787447, 14.030269], + [-81.787447, 12.584642], + [-89.015581, 12.584642] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 14.030269], + [-89.015581, 15.475896], + [-81.787447, 15.475896], + [-81.787447, 14.030269], + [-89.015581, 14.030269] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 15.475896], + [-89.015581, 16.921523], + [-81.787447, 16.921523], + [-81.787447, 15.475896], + [-89.015581, 15.475896] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 16.921523], + [-89.015581, 18.367149], + [-81.787447, 18.367149], + [-81.787447, 16.921523], + [-89.015581, 16.921523] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 18.367149], + [-89.015581, 19.812776], + [-81.787447, 19.812776], + [-81.787447, 18.367149], + [-89.015581, 18.367149] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 19.812776], + [-89.015581, 21.258403], + [-81.787447, 21.258403], + [-81.787447, 19.812776], + [-89.015581, 19.812776] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 21.258403], + [-89.015581, 22.70403], + [-81.787447, 22.70403], + [-81.787447, 21.258403], + [-89.015581, 21.258403] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 22.70403], + [-89.015581, 24.149656], + [-81.787447, 24.149656], + [-81.787447, 22.70403], + [-89.015581, 22.70403] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 24.149656], + [-89.015581, 25.595283], + [-81.787447, 25.595283], + [-81.787447, 24.149656], + [-89.015581, 24.149656] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 25.595283], + [-89.015581, 27.04091], + [-81.787447, 27.04091], + [-81.787447, 25.595283], + [-89.015581, 25.595283] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 27.04091], + [-89.015581, 28.486537], + [-81.787447, 28.486537], + [-81.787447, 27.04091], + [-89.015581, 27.04091] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 28.486537], + [-89.015581, 29.932163], + [-81.787447, 29.932163], + [-81.787447, 28.486537], + [-89.015581, 28.486537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 29.932163], + [-89.015581, 31.37779], + [-81.787447, 31.37779], + [-81.787447, 29.932163], + [-89.015581, 29.932163] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 31.37779], + [-89.015581, 32.823417], + [-81.787447, 32.823417], + [-81.787447, 31.37779], + [-89.015581, 31.37779] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 32.823417], + [-89.015581, 34.269044], + [-81.787447, 34.269044], + [-81.787447, 32.823417], + [-89.015581, 32.823417] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 34.269044], + [-89.015581, 35.714671], + [-81.787447, 35.714671], + [-81.787447, 34.269044], + [-89.015581, 34.269044] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 35.714671], + [-89.015581, 37.160297], + [-81.787447, 37.160297], + [-81.787447, 35.714671], + [-89.015581, 35.714671] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 37.160297], + [-89.015581, 38.605924], + [-81.787447, 38.605924], + [-81.787447, 37.160297], + [-89.015581, 37.160297] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 38.605924], + [-89.015581, 40.051551], + [-81.787447, 40.051551], + [-81.787447, 38.605924], + [-89.015581, 38.605924] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 40.051551], + [-89.015581, 41.497178], + [-81.787447, 41.497178], + [-81.787447, 40.051551], + [-89.015581, 40.051551] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 41.497178], + [-89.015581, 42.942804], + [-81.787447, 42.942804], + [-81.787447, 41.497178], + [-89.015581, 41.497178] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 42.942804], + [-89.015581, 44.388431], + [-81.787447, 44.388431], + [-81.787447, 42.942804], + [-89.015581, 42.942804] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 44.388431], + [-89.015581, 45.834058], + [-81.787447, 45.834058], + [-81.787447, 44.388431], + [-89.015581, 44.388431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 45.834058], + [-89.015581, 47.279685], + [-81.787447, 47.279685], + [-81.787447, 45.834058], + [-89.015581, 45.834058] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 47.279685], + [-89.015581, 48.725311], + [-81.787447, 48.725311], + [-81.787447, 47.279685], + [-89.015581, 47.279685] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 48.725311], + [-89.015581, 50.170938], + [-81.787447, 50.170938], + [-81.787447, 48.725311], + [-89.015581, 48.725311] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 50.170938], + [-89.015581, 51.616565], + [-81.787447, 51.616565], + [-81.787447, 50.170938], + [-89.015581, 50.170938] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 51.616565], + [-89.015581, 53.062192], + [-81.787447, 53.062192], + [-81.787447, 51.616565], + [-89.015581, 51.616565] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 53.062192], + [-89.015581, 54.507819], + [-81.787447, 54.507819], + [-81.787447, 53.062192], + [-89.015581, 53.062192] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 54.507819], + [-89.015581, 55.953445], + [-81.787447, 55.953445], + [-81.787447, 54.507819], + [-89.015581, 54.507819] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 55.953445], + [-89.015581, 57.399072], + [-81.787447, 57.399072], + [-81.787447, 55.953445], + [-89.015581, 55.953445] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 57.399072], + [-89.015581, 58.844699], + [-81.787447, 58.844699], + [-81.787447, 57.399072], + [-89.015581, 57.399072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 58.844699], + [-89.015581, 60.290326], + [-81.787447, 60.290326], + [-81.787447, 58.844699], + [-89.015581, 58.844699] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 60.290326], + [-89.015581, 61.735952], + [-81.787447, 61.735952], + [-81.787447, 60.290326], + [-89.015581, 60.290326] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 61.735952], + [-89.015581, 63.181579], + [-81.787447, 63.181579], + [-81.787447, 61.735952], + [-89.015581, 61.735952] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 63.181579], + [-89.015581, 64.627206], + [-81.787447, 64.627206], + [-81.787447, 63.181579], + [-89.015581, 63.181579] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 64.627206], + [-89.015581, 66.072833], + [-81.787447, 66.072833], + [-81.787447, 64.627206], + [-89.015581, 64.627206] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 66.072833], + [-89.015581, 67.518459], + [-81.787447, 67.518459], + [-81.787447, 66.072833], + [-89.015581, 66.072833] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 67.518459], + [-89.015581, 68.964086], + [-81.787447, 68.964086], + [-81.787447, 67.518459], + [-89.015581, 67.518459] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 68.964086], + [-89.015581, 70.409713], + [-81.787447, 70.409713], + [-81.787447, 68.964086], + [-89.015581, 68.964086] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 70.409713], + [-89.015581, 71.85534], + [-81.787447, 71.85534], + [-81.787447, 70.409713], + [-89.015581, 70.409713] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 71.85534], + [-89.015581, 73.300967], + [-81.787447, 73.300967], + [-81.787447, 71.85534], + [-89.015581, 71.85534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 73.300967], + [-89.015581, 74.746593], + [-81.787447, 74.746593], + [-81.787447, 73.300967], + [-89.015581, 73.300967] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 74.746593], + [-89.015581, 76.19222], + [-81.787447, 76.19222], + [-81.787447, 74.746593], + [-89.015581, 74.746593] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 76.19222], + [-89.015581, 77.637847], + [-81.787447, 77.637847], + [-81.787447, 76.19222], + [-89.015581, 76.19222] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -79.935471], + [-81.787447, -78.489844], + [-74.559313, -78.489844], + [-74.559313, -79.935471], + [-81.787447, -79.935471] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -78.489844], + [-81.787447, -77.044217], + [-74.559313, -77.044217], + [-74.559313, -78.489844], + [-81.787447, -78.489844] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -77.044217], + [-81.787447, -75.598591], + [-74.559313, -75.598591], + [-74.559313, -77.044217], + [-81.787447, -77.044217] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -75.598591], + [-81.787447, -74.152964], + [-74.559313, -74.152964], + [-74.559313, -75.598591], + [-81.787447, -75.598591] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -74.152964], + [-81.787447, -72.707337], + [-74.559313, -72.707337], + [-74.559313, -74.152964], + [-81.787447, -74.152964] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -72.707337], + [-81.787447, -71.26171], + [-74.559313, -71.26171], + [-74.559313, -72.707337], + [-81.787447, -72.707337] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -71.26171], + [-81.787447, -69.816084], + [-74.559313, -69.816084], + [-74.559313, -71.26171], + [-81.787447, -71.26171] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -69.816084], + [-81.787447, -68.370457], + [-74.559313, -68.370457], + [-74.559313, -69.816084], + [-81.787447, -69.816084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -68.370457], + [-81.787447, -66.92483], + [-74.559313, -66.92483], + [-74.559313, -68.370457], + [-81.787447, -68.370457] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -66.92483], + [-81.787447, -65.479203], + [-74.559313, -65.479203], + [-74.559313, -66.92483], + [-81.787447, -66.92483] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -65.479203], + [-81.787447, -64.033576], + [-74.559313, -64.033576], + [-74.559313, -65.479203], + [-81.787447, -65.479203] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -64.033576], + [-81.787447, -62.58795], + [-74.559313, -62.58795], + [-74.559313, -64.033576], + [-81.787447, -64.033576] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -62.58795], + [-81.787447, -61.142323], + [-74.559313, -61.142323], + [-74.559313, -62.58795], + [-81.787447, -62.58795] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -61.142323], + [-81.787447, -59.696696], + [-74.559313, -59.696696], + [-74.559313, -61.142323], + [-81.787447, -61.142323] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -59.696696], + [-81.787447, -58.251069], + [-74.559313, -58.251069], + [-74.559313, -59.696696], + [-81.787447, -59.696696] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -58.251069], + [-81.787447, -56.805443], + [-74.559313, -56.805443], + [-74.559313, -58.251069], + [-81.787447, -58.251069] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -56.805443], + [-81.787447, -55.359816], + [-74.559313, -55.359816], + [-74.559313, -56.805443], + [-81.787447, -56.805443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -55.359816], + [-81.787447, -53.914189], + [-74.559313, -53.914189], + [-74.559313, -55.359816], + [-81.787447, -55.359816] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -53.914189], + [-81.787447, -52.468562], + [-74.559313, -52.468562], + [-74.559313, -53.914189], + [-81.787447, -53.914189] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -52.468562], + [-81.787447, -51.022936], + [-74.559313, -51.022936], + [-74.559313, -52.468562], + [-81.787447, -52.468562] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -51.022936], + [-81.787447, -49.577309], + [-74.559313, -49.577309], + [-74.559313, -51.022936], + [-81.787447, -51.022936] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -49.577309], + [-81.787447, -48.131682], + [-74.559313, -48.131682], + [-74.559313, -49.577309], + [-81.787447, -49.577309] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -48.131682], + [-81.787447, -46.686055], + [-74.559313, -46.686055], + [-74.559313, -48.131682], + [-81.787447, -48.131682] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -46.686055], + [-81.787447, -45.240428], + [-74.559313, -45.240428], + [-74.559313, -46.686055], + [-81.787447, -46.686055] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -45.240428], + [-81.787447, -43.794802], + [-74.559313, -43.794802], + [-74.559313, -45.240428], + [-81.787447, -45.240428] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -43.794802], + [-81.787447, -42.349175], + [-74.559313, -42.349175], + [-74.559313, -43.794802], + [-81.787447, -43.794802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -42.349175], + [-81.787447, -40.903548], + [-74.559313, -40.903548], + [-74.559313, -42.349175], + [-81.787447, -42.349175] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -40.903548], + [-81.787447, -39.457921], + [-74.559313, -39.457921], + [-74.559313, -40.903548], + [-81.787447, -40.903548] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -39.457921], + [-81.787447, -38.012295], + [-74.559313, -38.012295], + [-74.559313, -39.457921], + [-81.787447, -39.457921] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -38.012295], + [-81.787447, -36.566668], + [-74.559313, -36.566668], + [-74.559313, -38.012295], + [-81.787447, -38.012295] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -36.566668], + [-81.787447, -35.121041], + [-74.559313, -35.121041], + [-74.559313, -36.566668], + [-81.787447, -36.566668] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -35.121041], + [-81.787447, -33.675414], + [-74.559313, -33.675414], + [-74.559313, -35.121041], + [-81.787447, -35.121041] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -33.675414], + [-81.787447, -32.229788], + [-74.559313, -32.229788], + [-74.559313, -33.675414], + [-81.787447, -33.675414] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -32.229788], + [-81.787447, -30.784161], + [-74.559313, -30.784161], + [-74.559313, -32.229788], + [-81.787447, -32.229788] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -30.784161], + [-81.787447, -29.338534], + [-74.559313, -29.338534], + [-74.559313, -30.784161], + [-81.787447, -30.784161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -29.338534], + [-81.787447, -27.892907], + [-74.559313, -27.892907], + [-74.559313, -29.338534], + [-81.787447, -29.338534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -27.892907], + [-81.787447, -26.44728], + [-74.559313, -26.44728], + [-74.559313, -27.892907], + [-81.787447, -27.892907] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -26.44728], + [-81.787447, -25.001654], + [-74.559313, -25.001654], + [-74.559313, -26.44728], + [-81.787447, -26.44728] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -25.001654], + [-81.787447, -23.556027], + [-74.559313, -23.556027], + [-74.559313, -25.001654], + [-81.787447, -25.001654] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -23.556027], + [-81.787447, -22.1104], + [-74.559313, -22.1104], + [-74.559313, -23.556027], + [-81.787447, -23.556027] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -22.1104], + [-81.787447, -20.664773], + [-74.559313, -20.664773], + [-74.559313, -22.1104], + [-81.787447, -22.1104] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -20.664773], + [-81.787447, -19.219147], + [-74.559313, -19.219147], + [-74.559313, -20.664773], + [-81.787447, -20.664773] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -19.219147], + [-81.787447, -17.77352], + [-74.559313, -17.77352], + [-74.559313, -19.219147], + [-81.787447, -19.219147] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -17.77352], + [-81.787447, -16.327893], + [-74.559313, -16.327893], + [-74.559313, -17.77352], + [-81.787447, -17.77352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -16.327893], + [-81.787447, -14.882266], + [-74.559313, -14.882266], + [-74.559313, -16.327893], + [-81.787447, -16.327893] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -14.882266], + [-81.787447, -13.43664], + [-74.559313, -13.43664], + [-74.559313, -14.882266], + [-81.787447, -14.882266] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -13.43664], + [-81.787447, -11.991013], + [-74.559313, -11.991013], + [-74.559313, -13.43664], + [-81.787447, -13.43664] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -11.991013], + [-81.787447, -10.545386], + [-74.559313, -10.545386], + [-74.559313, -11.991013], + [-81.787447, -11.991013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -10.545386], + [-81.787447, -9.099759], + [-74.559313, -9.099759], + [-74.559313, -10.545386], + [-81.787447, -10.545386] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -9.099759], + [-81.787447, -7.654132], + [-74.559313, -7.654132], + [-74.559313, -9.099759], + [-81.787447, -9.099759] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -7.654132], + [-81.787447, -6.208506], + [-74.559313, -6.208506], + [-74.559313, -7.654132], + [-81.787447, -7.654132] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -6.208506], + [-81.787447, -4.762879], + [-74.559313, -4.762879], + [-74.559313, -6.208506], + [-81.787447, -6.208506] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -4.762879], + [-81.787447, -3.317252], + [-74.559313, -3.317252], + [-74.559313, -4.762879], + [-81.787447, -4.762879] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -3.317252], + [-81.787447, -1.871625], + [-74.559313, -1.871625], + [-74.559313, -3.317252], + [-81.787447, -3.317252] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -1.871625], + [-81.787447, -0.425999], + [-74.559313, -0.425999], + [-74.559313, -1.871625], + [-81.787447, -1.871625] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -0.425999], + [-81.787447, 1.019628], + [-74.559313, 1.019628], + [-74.559313, -0.425999], + [-81.787447, -0.425999] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 1.019628], + [-81.787447, 2.465255], + [-74.559313, 2.465255], + [-74.559313, 1.019628], + [-81.787447, 1.019628] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 2.465255], + [-81.787447, 3.910882], + [-74.559313, 3.910882], + [-74.559313, 2.465255], + [-81.787447, 2.465255] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 3.910882], + [-81.787447, 5.356508], + [-74.559313, 5.356508], + [-74.559313, 3.910882], + [-81.787447, 3.910882] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 5.356508], + [-81.787447, 6.802135], + [-74.559313, 6.802135], + [-74.559313, 5.356508], + [-81.787447, 5.356508] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 6.802135], + [-81.787447, 8.247762], + [-74.559313, 8.247762], + [-74.559313, 6.802135], + [-81.787447, 6.802135] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 8.247762], + [-81.787447, 9.693389], + [-74.559313, 9.693389], + [-74.559313, 8.247762], + [-81.787447, 8.247762] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 9.693389], + [-81.787447, 11.139016], + [-74.559313, 11.139016], + [-74.559313, 9.693389], + [-81.787447, 9.693389] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 11.139016], + [-81.787447, 12.584642], + [-74.559313, 12.584642], + [-74.559313, 11.139016], + [-81.787447, 11.139016] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 12.584642], + [-81.787447, 14.030269], + [-74.559313, 14.030269], + [-74.559313, 12.584642], + [-81.787447, 12.584642] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 14.030269], + [-81.787447, 15.475896], + [-74.559313, 15.475896], + [-74.559313, 14.030269], + [-81.787447, 14.030269] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 15.475896], + [-81.787447, 16.921523], + [-74.559313, 16.921523], + [-74.559313, 15.475896], + [-81.787447, 15.475896] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 16.921523], + [-81.787447, 18.367149], + [-74.559313, 18.367149], + [-74.559313, 16.921523], + [-81.787447, 16.921523] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 18.367149], + [-81.787447, 19.812776], + [-74.559313, 19.812776], + [-74.559313, 18.367149], + [-81.787447, 18.367149] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 19.812776], + [-81.787447, 21.258403], + [-74.559313, 21.258403], + [-74.559313, 19.812776], + [-81.787447, 19.812776] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 21.258403], + [-81.787447, 22.70403], + [-74.559313, 22.70403], + [-74.559313, 21.258403], + [-81.787447, 21.258403] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 22.70403], + [-81.787447, 24.149656], + [-74.559313, 24.149656], + [-74.559313, 22.70403], + [-81.787447, 22.70403] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 24.149656], + [-81.787447, 25.595283], + [-74.559313, 25.595283], + [-74.559313, 24.149656], + [-81.787447, 24.149656] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 25.595283], + [-81.787447, 27.04091], + [-74.559313, 27.04091], + [-74.559313, 25.595283], + [-81.787447, 25.595283] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 27.04091], + [-81.787447, 28.486537], + [-74.559313, 28.486537], + [-74.559313, 27.04091], + [-81.787447, 27.04091] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 28.486537], + [-81.787447, 29.932163], + [-74.559313, 29.932163], + [-74.559313, 28.486537], + [-81.787447, 28.486537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 29.932163], + [-81.787447, 31.37779], + [-74.559313, 31.37779], + [-74.559313, 29.932163], + [-81.787447, 29.932163] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 31.37779], + [-81.787447, 32.823417], + [-74.559313, 32.823417], + [-74.559313, 31.37779], + [-81.787447, 31.37779] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 32.823417], + [-81.787447, 34.269044], + [-74.559313, 34.269044], + [-74.559313, 32.823417], + [-81.787447, 32.823417] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 34.269044], + [-81.787447, 35.714671], + [-74.559313, 35.714671], + [-74.559313, 34.269044], + [-81.787447, 34.269044] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 35.714671], + [-81.787447, 37.160297], + [-74.559313, 37.160297], + [-74.559313, 35.714671], + [-81.787447, 35.714671] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 37.160297], + [-81.787447, 38.605924], + [-74.559313, 38.605924], + [-74.559313, 37.160297], + [-81.787447, 37.160297] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 38.605924], + [-81.787447, 40.051551], + [-74.559313, 40.051551], + [-74.559313, 38.605924], + [-81.787447, 38.605924] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 40.051551], + [-81.787447, 41.497178], + [-74.559313, 41.497178], + [-74.559313, 40.051551], + [-81.787447, 40.051551] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 41.497178], + [-81.787447, 42.942804], + [-74.559313, 42.942804], + [-74.559313, 41.497178], + [-81.787447, 41.497178] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 42.942804], + [-81.787447, 44.388431], + [-74.559313, 44.388431], + [-74.559313, 42.942804], + [-81.787447, 42.942804] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 44.388431], + [-81.787447, 45.834058], + [-74.559313, 45.834058], + [-74.559313, 44.388431], + [-81.787447, 44.388431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 45.834058], + [-81.787447, 47.279685], + [-74.559313, 47.279685], + [-74.559313, 45.834058], + [-81.787447, 45.834058] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 47.279685], + [-81.787447, 48.725311], + [-74.559313, 48.725311], + [-74.559313, 47.279685], + [-81.787447, 47.279685] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 48.725311], + [-81.787447, 50.170938], + [-74.559313, 50.170938], + [-74.559313, 48.725311], + [-81.787447, 48.725311] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 50.170938], + [-81.787447, 51.616565], + [-74.559313, 51.616565], + [-74.559313, 50.170938], + [-81.787447, 50.170938] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 51.616565], + [-81.787447, 53.062192], + [-74.559313, 53.062192], + [-74.559313, 51.616565], + [-81.787447, 51.616565] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 53.062192], + [-81.787447, 54.507819], + [-74.559313, 54.507819], + [-74.559313, 53.062192], + [-81.787447, 53.062192] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 54.507819], + [-81.787447, 55.953445], + [-74.559313, 55.953445], + [-74.559313, 54.507819], + [-81.787447, 54.507819] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 55.953445], + [-81.787447, 57.399072], + [-74.559313, 57.399072], + [-74.559313, 55.953445], + [-81.787447, 55.953445] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 57.399072], + [-81.787447, 58.844699], + [-74.559313, 58.844699], + [-74.559313, 57.399072], + [-81.787447, 57.399072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 58.844699], + [-81.787447, 60.290326], + [-74.559313, 60.290326], + [-74.559313, 58.844699], + [-81.787447, 58.844699] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 60.290326], + [-81.787447, 61.735952], + [-74.559313, 61.735952], + [-74.559313, 60.290326], + [-81.787447, 60.290326] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 61.735952], + [-81.787447, 63.181579], + [-74.559313, 63.181579], + [-74.559313, 61.735952], + [-81.787447, 61.735952] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 63.181579], + [-81.787447, 64.627206], + [-74.559313, 64.627206], + [-74.559313, 63.181579], + [-81.787447, 63.181579] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 64.627206], + [-81.787447, 66.072833], + [-74.559313, 66.072833], + [-74.559313, 64.627206], + [-81.787447, 64.627206] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 66.072833], + [-81.787447, 67.518459], + [-74.559313, 67.518459], + [-74.559313, 66.072833], + [-81.787447, 66.072833] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 67.518459], + [-81.787447, 68.964086], + [-74.559313, 68.964086], + [-74.559313, 67.518459], + [-81.787447, 67.518459] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 68.964086], + [-81.787447, 70.409713], + [-74.559313, 70.409713], + [-74.559313, 68.964086], + [-81.787447, 68.964086] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 70.409713], + [-81.787447, 71.85534], + [-74.559313, 71.85534], + [-74.559313, 70.409713], + [-81.787447, 70.409713] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 71.85534], + [-81.787447, 73.300967], + [-74.559313, 73.300967], + [-74.559313, 71.85534], + [-81.787447, 71.85534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 73.300967], + [-81.787447, 74.746593], + [-74.559313, 74.746593], + [-74.559313, 73.300967], + [-81.787447, 73.300967] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 74.746593], + [-81.787447, 76.19222], + [-74.559313, 76.19222], + [-74.559313, 74.746593], + [-81.787447, 74.746593] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 76.19222], + [-81.787447, 77.637847], + [-74.559313, 77.637847], + [-74.559313, 76.19222], + [-81.787447, 76.19222] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -79.935471], + [-74.559313, -78.489844], + [-67.331179, -78.489844], + [-67.331179, -79.935471], + [-74.559313, -79.935471] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -78.489844], + [-74.559313, -77.044217], + [-67.331179, -77.044217], + [-67.331179, -78.489844], + [-74.559313, -78.489844] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -77.044217], + [-74.559313, -75.598591], + [-67.331179, -75.598591], + [-67.331179, -77.044217], + [-74.559313, -77.044217] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -75.598591], + [-74.559313, -74.152964], + [-67.331179, -74.152964], + [-67.331179, -75.598591], + [-74.559313, -75.598591] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -74.152964], + [-74.559313, -72.707337], + [-67.331179, -72.707337], + [-67.331179, -74.152964], + [-74.559313, -74.152964] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -72.707337], + [-74.559313, -71.26171], + [-67.331179, -71.26171], + [-67.331179, -72.707337], + [-74.559313, -72.707337] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -71.26171], + [-74.559313, -69.816084], + [-67.331179, -69.816084], + [-67.331179, -71.26171], + [-74.559313, -71.26171] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -69.816084], + [-74.559313, -68.370457], + [-67.331179, -68.370457], + [-67.331179, -69.816084], + [-74.559313, -69.816084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -68.370457], + [-74.559313, -66.92483], + [-67.331179, -66.92483], + [-67.331179, -68.370457], + [-74.559313, -68.370457] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -66.92483], + [-74.559313, -65.479203], + [-67.331179, -65.479203], + [-67.331179, -66.92483], + [-74.559313, -66.92483] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -65.479203], + [-74.559313, -64.033576], + [-67.331179, -64.033576], + [-67.331179, -65.479203], + [-74.559313, -65.479203] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -64.033576], + [-74.559313, -62.58795], + [-67.331179, -62.58795], + [-67.331179, -64.033576], + [-74.559313, -64.033576] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -62.58795], + [-74.559313, -61.142323], + [-67.331179, -61.142323], + [-67.331179, -62.58795], + [-74.559313, -62.58795] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -61.142323], + [-74.559313, -59.696696], + [-67.331179, -59.696696], + [-67.331179, -61.142323], + [-74.559313, -61.142323] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -59.696696], + [-74.559313, -58.251069], + [-67.331179, -58.251069], + [-67.331179, -59.696696], + [-74.559313, -59.696696] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -58.251069], + [-74.559313, -56.805443], + [-67.331179, -56.805443], + [-67.331179, -58.251069], + [-74.559313, -58.251069] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -56.805443], + [-74.559313, -55.359816], + [-67.331179, -55.359816], + [-67.331179, -56.805443], + [-74.559313, -56.805443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -55.359816], + [-74.559313, -53.914189], + [-67.331179, -53.914189], + [-67.331179, -55.359816], + [-74.559313, -55.359816] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -53.914189], + [-74.559313, -52.468562], + [-67.331179, -52.468562], + [-67.331179, -53.914189], + [-74.559313, -53.914189] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -52.468562], + [-74.559313, -51.022936], + [-67.331179, -51.022936], + [-67.331179, -52.468562], + [-74.559313, -52.468562] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -51.022936], + [-74.559313, -49.577309], + [-67.331179, -49.577309], + [-67.331179, -51.022936], + [-74.559313, -51.022936] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -49.577309], + [-74.559313, -48.131682], + [-67.331179, -48.131682], + [-67.331179, -49.577309], + [-74.559313, -49.577309] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -48.131682], + [-74.559313, -46.686055], + [-67.331179, -46.686055], + [-67.331179, -48.131682], + [-74.559313, -48.131682] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -46.686055], + [-74.559313, -45.240428], + [-67.331179, -45.240428], + [-67.331179, -46.686055], + [-74.559313, -46.686055] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -45.240428], + [-74.559313, -43.794802], + [-67.331179, -43.794802], + [-67.331179, -45.240428], + [-74.559313, -45.240428] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -43.794802], + [-74.559313, -42.349175], + [-67.331179, -42.349175], + [-67.331179, -43.794802], + [-74.559313, -43.794802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -42.349175], + [-74.559313, -40.903548], + [-67.331179, -40.903548], + [-67.331179, -42.349175], + [-74.559313, -42.349175] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -40.903548], + [-74.559313, -39.457921], + [-67.331179, -39.457921], + [-67.331179, -40.903548], + [-74.559313, -40.903548] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -39.457921], + [-74.559313, -38.012295], + [-67.331179, -38.012295], + [-67.331179, -39.457921], + [-74.559313, -39.457921] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -38.012295], + [-74.559313, -36.566668], + [-67.331179, -36.566668], + [-67.331179, -38.012295], + [-74.559313, -38.012295] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -36.566668], + [-74.559313, -35.121041], + [-67.331179, -35.121041], + [-67.331179, -36.566668], + [-74.559313, -36.566668] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -35.121041], + [-74.559313, -33.675414], + [-67.331179, -33.675414], + [-67.331179, -35.121041], + [-74.559313, -35.121041] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -33.675414], + [-74.559313, -32.229788], + [-67.331179, -32.229788], + [-67.331179, -33.675414], + [-74.559313, -33.675414] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -32.229788], + [-74.559313, -30.784161], + [-67.331179, -30.784161], + [-67.331179, -32.229788], + [-74.559313, -32.229788] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -30.784161], + [-74.559313, -29.338534], + [-67.331179, -29.338534], + [-67.331179, -30.784161], + [-74.559313, -30.784161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -29.338534], + [-74.559313, -27.892907], + [-67.331179, -27.892907], + [-67.331179, -29.338534], + [-74.559313, -29.338534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -27.892907], + [-74.559313, -26.44728], + [-67.331179, -26.44728], + [-67.331179, -27.892907], + [-74.559313, -27.892907] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -26.44728], + [-74.559313, -25.001654], + [-67.331179, -25.001654], + [-67.331179, -26.44728], + [-74.559313, -26.44728] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -25.001654], + [-74.559313, -23.556027], + [-67.331179, -23.556027], + [-67.331179, -25.001654], + [-74.559313, -25.001654] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -23.556027], + [-74.559313, -22.1104], + [-67.331179, -22.1104], + [-67.331179, -23.556027], + [-74.559313, -23.556027] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -22.1104], + [-74.559313, -20.664773], + [-67.331179, -20.664773], + [-67.331179, -22.1104], + [-74.559313, -22.1104] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -20.664773], + [-74.559313, -19.219147], + [-67.331179, -19.219147], + [-67.331179, -20.664773], + [-74.559313, -20.664773] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -19.219147], + [-74.559313, -17.77352], + [-67.331179, -17.77352], + [-67.331179, -19.219147], + [-74.559313, -19.219147] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -17.77352], + [-74.559313, -16.327893], + [-67.331179, -16.327893], + [-67.331179, -17.77352], + [-74.559313, -17.77352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -16.327893], + [-74.559313, -14.882266], + [-67.331179, -14.882266], + [-67.331179, -16.327893], + [-74.559313, -16.327893] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -14.882266], + [-74.559313, -13.43664], + [-67.331179, -13.43664], + [-67.331179, -14.882266], + [-74.559313, -14.882266] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -13.43664], + [-74.559313, -11.991013], + [-67.331179, -11.991013], + [-67.331179, -13.43664], + [-74.559313, -13.43664] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -11.991013], + [-74.559313, -10.545386], + [-67.331179, -10.545386], + [-67.331179, -11.991013], + [-74.559313, -11.991013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -10.545386], + [-74.559313, -9.099759], + [-67.331179, -9.099759], + [-67.331179, -10.545386], + [-74.559313, -10.545386] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -9.099759], + [-74.559313, -7.654132], + [-67.331179, -7.654132], + [-67.331179, -9.099759], + [-74.559313, -9.099759] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -7.654132], + [-74.559313, -6.208506], + [-67.331179, -6.208506], + [-67.331179, -7.654132], + [-74.559313, -7.654132] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -6.208506], + [-74.559313, -4.762879], + [-67.331179, -4.762879], + [-67.331179, -6.208506], + [-74.559313, -6.208506] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -4.762879], + [-74.559313, -3.317252], + [-67.331179, -3.317252], + [-67.331179, -4.762879], + [-74.559313, -4.762879] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -3.317252], + [-74.559313, -1.871625], + [-67.331179, -1.871625], + [-67.331179, -3.317252], + [-74.559313, -3.317252] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -1.871625], + [-74.559313, -0.425999], + [-67.331179, -0.425999], + [-67.331179, -1.871625], + [-74.559313, -1.871625] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -0.425999], + [-74.559313, 1.019628], + [-67.331179, 1.019628], + [-67.331179, -0.425999], + [-74.559313, -0.425999] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 1.019628], + [-74.559313, 2.465255], + [-67.331179, 2.465255], + [-67.331179, 1.019628], + [-74.559313, 1.019628] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 2.465255], + [-74.559313, 3.910882], + [-67.331179, 3.910882], + [-67.331179, 2.465255], + [-74.559313, 2.465255] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 3.910882], + [-74.559313, 5.356508], + [-67.331179, 5.356508], + [-67.331179, 3.910882], + [-74.559313, 3.910882] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 5.356508], + [-74.559313, 6.802135], + [-67.331179, 6.802135], + [-67.331179, 5.356508], + [-74.559313, 5.356508] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 6.802135], + [-74.559313, 8.247762], + [-67.331179, 8.247762], + [-67.331179, 6.802135], + [-74.559313, 6.802135] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 8.247762], + [-74.559313, 9.693389], + [-67.331179, 9.693389], + [-67.331179, 8.247762], + [-74.559313, 8.247762] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 9.693389], + [-74.559313, 11.139016], + [-67.331179, 11.139016], + [-67.331179, 9.693389], + [-74.559313, 9.693389] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 11.139016], + [-74.559313, 12.584642], + [-67.331179, 12.584642], + [-67.331179, 11.139016], + [-74.559313, 11.139016] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 12.584642], + [-74.559313, 14.030269], + [-67.331179, 14.030269], + [-67.331179, 12.584642], + [-74.559313, 12.584642] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 14.030269], + [-74.559313, 15.475896], + [-67.331179, 15.475896], + [-67.331179, 14.030269], + [-74.559313, 14.030269] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 15.475896], + [-74.559313, 16.921523], + [-67.331179, 16.921523], + [-67.331179, 15.475896], + [-74.559313, 15.475896] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 16.921523], + [-74.559313, 18.367149], + [-67.331179, 18.367149], + [-67.331179, 16.921523], + [-74.559313, 16.921523] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 18.367149], + [-74.559313, 19.812776], + [-67.331179, 19.812776], + [-67.331179, 18.367149], + [-74.559313, 18.367149] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 19.812776], + [-74.559313, 21.258403], + [-67.331179, 21.258403], + [-67.331179, 19.812776], + [-74.559313, 19.812776] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 21.258403], + [-74.559313, 22.70403], + [-67.331179, 22.70403], + [-67.331179, 21.258403], + [-74.559313, 21.258403] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 22.70403], + [-74.559313, 24.149656], + [-67.331179, 24.149656], + [-67.331179, 22.70403], + [-74.559313, 22.70403] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 24.149656], + [-74.559313, 25.595283], + [-67.331179, 25.595283], + [-67.331179, 24.149656], + [-74.559313, 24.149656] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 25.595283], + [-74.559313, 27.04091], + [-67.331179, 27.04091], + [-67.331179, 25.595283], + [-74.559313, 25.595283] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 27.04091], + [-74.559313, 28.486537], + [-67.331179, 28.486537], + [-67.331179, 27.04091], + [-74.559313, 27.04091] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 28.486537], + [-74.559313, 29.932163], + [-67.331179, 29.932163], + [-67.331179, 28.486537], + [-74.559313, 28.486537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 29.932163], + [-74.559313, 31.37779], + [-67.331179, 31.37779], + [-67.331179, 29.932163], + [-74.559313, 29.932163] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 31.37779], + [-74.559313, 32.823417], + [-67.331179, 32.823417], + [-67.331179, 31.37779], + [-74.559313, 31.37779] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 32.823417], + [-74.559313, 34.269044], + [-67.331179, 34.269044], + [-67.331179, 32.823417], + [-74.559313, 32.823417] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 34.269044], + [-74.559313, 35.714671], + [-67.331179, 35.714671], + [-67.331179, 34.269044], + [-74.559313, 34.269044] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 35.714671], + [-74.559313, 37.160297], + [-67.331179, 37.160297], + [-67.331179, 35.714671], + [-74.559313, 35.714671] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 37.160297], + [-74.559313, 38.605924], + [-67.331179, 38.605924], + [-67.331179, 37.160297], + [-74.559313, 37.160297] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 38.605924], + [-74.559313, 40.051551], + [-67.331179, 40.051551], + [-67.331179, 38.605924], + [-74.559313, 38.605924] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 40.051551], + [-74.559313, 41.497178], + [-67.331179, 41.497178], + [-67.331179, 40.051551], + [-74.559313, 40.051551] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 41.497178], + [-74.559313, 42.942804], + [-67.331179, 42.942804], + [-67.331179, 41.497178], + [-74.559313, 41.497178] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 42.942804], + [-74.559313, 44.388431], + [-67.331179, 44.388431], + [-67.331179, 42.942804], + [-74.559313, 42.942804] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 44.388431], + [-74.559313, 45.834058], + [-67.331179, 45.834058], + [-67.331179, 44.388431], + [-74.559313, 44.388431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 45.834058], + [-74.559313, 47.279685], + [-67.331179, 47.279685], + [-67.331179, 45.834058], + [-74.559313, 45.834058] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 47.279685], + [-74.559313, 48.725311], + [-67.331179, 48.725311], + [-67.331179, 47.279685], + [-74.559313, 47.279685] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 48.725311], + [-74.559313, 50.170938], + [-67.331179, 50.170938], + [-67.331179, 48.725311], + [-74.559313, 48.725311] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 50.170938], + [-74.559313, 51.616565], + [-67.331179, 51.616565], + [-67.331179, 50.170938], + [-74.559313, 50.170938] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 51.616565], + [-74.559313, 53.062192], + [-67.331179, 53.062192], + [-67.331179, 51.616565], + [-74.559313, 51.616565] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 53.062192], + [-74.559313, 54.507819], + [-67.331179, 54.507819], + [-67.331179, 53.062192], + [-74.559313, 53.062192] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 54.507819], + [-74.559313, 55.953445], + [-67.331179, 55.953445], + [-67.331179, 54.507819], + [-74.559313, 54.507819] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 55.953445], + [-74.559313, 57.399072], + [-67.331179, 57.399072], + [-67.331179, 55.953445], + [-74.559313, 55.953445] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 57.399072], + [-74.559313, 58.844699], + [-67.331179, 58.844699], + [-67.331179, 57.399072], + [-74.559313, 57.399072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 58.844699], + [-74.559313, 60.290326], + [-67.331179, 60.290326], + [-67.331179, 58.844699], + [-74.559313, 58.844699] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 60.290326], + [-74.559313, 61.735952], + [-67.331179, 61.735952], + [-67.331179, 60.290326], + [-74.559313, 60.290326] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 61.735952], + [-74.559313, 63.181579], + [-67.331179, 63.181579], + [-67.331179, 61.735952], + [-74.559313, 61.735952] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 63.181579], + [-74.559313, 64.627206], + [-67.331179, 64.627206], + [-67.331179, 63.181579], + [-74.559313, 63.181579] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 64.627206], + [-74.559313, 66.072833], + [-67.331179, 66.072833], + [-67.331179, 64.627206], + [-74.559313, 64.627206] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 66.072833], + [-74.559313, 67.518459], + [-67.331179, 67.518459], + [-67.331179, 66.072833], + [-74.559313, 66.072833] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 67.518459], + [-74.559313, 68.964086], + [-67.331179, 68.964086], + [-67.331179, 67.518459], + [-74.559313, 67.518459] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 68.964086], + [-74.559313, 70.409713], + [-67.331179, 70.409713], + [-67.331179, 68.964086], + [-74.559313, 68.964086] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 70.409713], + [-74.559313, 71.85534], + [-67.331179, 71.85534], + [-67.331179, 70.409713], + [-74.559313, 70.409713] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 71.85534], + [-74.559313, 73.300967], + [-67.331179, 73.300967], + [-67.331179, 71.85534], + [-74.559313, 71.85534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 73.300967], + [-74.559313, 74.746593], + [-67.331179, 74.746593], + [-67.331179, 73.300967], + [-74.559313, 73.300967] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 74.746593], + [-74.559313, 76.19222], + [-67.331179, 76.19222], + [-67.331179, 74.746593], + [-74.559313, 74.746593] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 76.19222], + [-74.559313, 77.637847], + [-67.331179, 77.637847], + [-67.331179, 76.19222], + [-74.559313, 76.19222] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -79.935471], + [-67.331179, -78.489844], + [-60.103045, -78.489844], + [-60.103045, -79.935471], + [-67.331179, -79.935471] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -78.489844], + [-67.331179, -77.044217], + [-60.103045, -77.044217], + [-60.103045, -78.489844], + [-67.331179, -78.489844] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -77.044217], + [-67.331179, -75.598591], + [-60.103045, -75.598591], + [-60.103045, -77.044217], + [-67.331179, -77.044217] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -75.598591], + [-67.331179, -74.152964], + [-60.103045, -74.152964], + [-60.103045, -75.598591], + [-67.331179, -75.598591] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -74.152964], + [-67.331179, -72.707337], + [-60.103045, -72.707337], + [-60.103045, -74.152964], + [-67.331179, -74.152964] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -72.707337], + [-67.331179, -71.26171], + [-60.103045, -71.26171], + [-60.103045, -72.707337], + [-67.331179, -72.707337] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -71.26171], + [-67.331179, -69.816084], + [-60.103045, -69.816084], + [-60.103045, -71.26171], + [-67.331179, -71.26171] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -69.816084], + [-67.331179, -68.370457], + [-60.103045, -68.370457], + [-60.103045, -69.816084], + [-67.331179, -69.816084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -68.370457], + [-67.331179, -66.92483], + [-60.103045, -66.92483], + [-60.103045, -68.370457], + [-67.331179, -68.370457] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -66.92483], + [-67.331179, -65.479203], + [-60.103045, -65.479203], + [-60.103045, -66.92483], + [-67.331179, -66.92483] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -65.479203], + [-67.331179, -64.033576], + [-60.103045, -64.033576], + [-60.103045, -65.479203], + [-67.331179, -65.479203] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -64.033576], + [-67.331179, -62.58795], + [-60.103045, -62.58795], + [-60.103045, -64.033576], + [-67.331179, -64.033576] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -62.58795], + [-67.331179, -61.142323], + [-60.103045, -61.142323], + [-60.103045, -62.58795], + [-67.331179, -62.58795] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -61.142323], + [-67.331179, -59.696696], + [-60.103045, -59.696696], + [-60.103045, -61.142323], + [-67.331179, -61.142323] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -59.696696], + [-67.331179, -58.251069], + [-60.103045, -58.251069], + [-60.103045, -59.696696], + [-67.331179, -59.696696] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -58.251069], + [-67.331179, -56.805443], + [-60.103045, -56.805443], + [-60.103045, -58.251069], + [-67.331179, -58.251069] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -56.805443], + [-67.331179, -55.359816], + [-60.103045, -55.359816], + [-60.103045, -56.805443], + [-67.331179, -56.805443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -55.359816], + [-67.331179, -53.914189], + [-60.103045, -53.914189], + [-60.103045, -55.359816], + [-67.331179, -55.359816] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -53.914189], + [-67.331179, -52.468562], + [-60.103045, -52.468562], + [-60.103045, -53.914189], + [-67.331179, -53.914189] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -52.468562], + [-67.331179, -51.022936], + [-60.103045, -51.022936], + [-60.103045, -52.468562], + [-67.331179, -52.468562] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -51.022936], + [-67.331179, -49.577309], + [-60.103045, -49.577309], + [-60.103045, -51.022936], + [-67.331179, -51.022936] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -49.577309], + [-67.331179, -48.131682], + [-60.103045, -48.131682], + [-60.103045, -49.577309], + [-67.331179, -49.577309] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -48.131682], + [-67.331179, -46.686055], + [-60.103045, -46.686055], + [-60.103045, -48.131682], + [-67.331179, -48.131682] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -46.686055], + [-67.331179, -45.240428], + [-60.103045, -45.240428], + [-60.103045, -46.686055], + [-67.331179, -46.686055] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -45.240428], + [-67.331179, -43.794802], + [-60.103045, -43.794802], + [-60.103045, -45.240428], + [-67.331179, -45.240428] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -43.794802], + [-67.331179, -42.349175], + [-60.103045, -42.349175], + [-60.103045, -43.794802], + [-67.331179, -43.794802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -42.349175], + [-67.331179, -40.903548], + [-60.103045, -40.903548], + [-60.103045, -42.349175], + [-67.331179, -42.349175] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -40.903548], + [-67.331179, -39.457921], + [-60.103045, -39.457921], + [-60.103045, -40.903548], + [-67.331179, -40.903548] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -39.457921], + [-67.331179, -38.012295], + [-60.103045, -38.012295], + [-60.103045, -39.457921], + [-67.331179, -39.457921] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -38.012295], + [-67.331179, -36.566668], + [-60.103045, -36.566668], + [-60.103045, -38.012295], + [-67.331179, -38.012295] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -36.566668], + [-67.331179, -35.121041], + [-60.103045, -35.121041], + [-60.103045, -36.566668], + [-67.331179, -36.566668] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -35.121041], + [-67.331179, -33.675414], + [-60.103045, -33.675414], + [-60.103045, -35.121041], + [-67.331179, -35.121041] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -33.675414], + [-67.331179, -32.229788], + [-60.103045, -32.229788], + [-60.103045, -33.675414], + [-67.331179, -33.675414] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -32.229788], + [-67.331179, -30.784161], + [-60.103045, -30.784161], + [-60.103045, -32.229788], + [-67.331179, -32.229788] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -30.784161], + [-67.331179, -29.338534], + [-60.103045, -29.338534], + [-60.103045, -30.784161], + [-67.331179, -30.784161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -29.338534], + [-67.331179, -27.892907], + [-60.103045, -27.892907], + [-60.103045, -29.338534], + [-67.331179, -29.338534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -27.892907], + [-67.331179, -26.44728], + [-60.103045, -26.44728], + [-60.103045, -27.892907], + [-67.331179, -27.892907] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -26.44728], + [-67.331179, -25.001654], + [-60.103045, -25.001654], + [-60.103045, -26.44728], + [-67.331179, -26.44728] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -25.001654], + [-67.331179, -23.556027], + [-60.103045, -23.556027], + [-60.103045, -25.001654], + [-67.331179, -25.001654] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -23.556027], + [-67.331179, -22.1104], + [-60.103045, -22.1104], + [-60.103045, -23.556027], + [-67.331179, -23.556027] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -22.1104], + [-67.331179, -20.664773], + [-60.103045, -20.664773], + [-60.103045, -22.1104], + [-67.331179, -22.1104] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -20.664773], + [-67.331179, -19.219147], + [-60.103045, -19.219147], + [-60.103045, -20.664773], + [-67.331179, -20.664773] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -19.219147], + [-67.331179, -17.77352], + [-60.103045, -17.77352], + [-60.103045, -19.219147], + [-67.331179, -19.219147] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -17.77352], + [-67.331179, -16.327893], + [-60.103045, -16.327893], + [-60.103045, -17.77352], + [-67.331179, -17.77352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -16.327893], + [-67.331179, -14.882266], + [-60.103045, -14.882266], + [-60.103045, -16.327893], + [-67.331179, -16.327893] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -14.882266], + [-67.331179, -13.43664], + [-60.103045, -13.43664], + [-60.103045, -14.882266], + [-67.331179, -14.882266] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -13.43664], + [-67.331179, -11.991013], + [-60.103045, -11.991013], + [-60.103045, -13.43664], + [-67.331179, -13.43664] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -11.991013], + [-67.331179, -10.545386], + [-60.103045, -10.545386], + [-60.103045, -11.991013], + [-67.331179, -11.991013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -10.545386], + [-67.331179, -9.099759], + [-60.103045, -9.099759], + [-60.103045, -10.545386], + [-67.331179, -10.545386] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -9.099759], + [-67.331179, -7.654132], + [-60.103045, -7.654132], + [-60.103045, -9.099759], + [-67.331179, -9.099759] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -7.654132], + [-67.331179, -6.208506], + [-60.103045, -6.208506], + [-60.103045, -7.654132], + [-67.331179, -7.654132] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -6.208506], + [-67.331179, -4.762879], + [-60.103045, -4.762879], + [-60.103045, -6.208506], + [-67.331179, -6.208506] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -4.762879], + [-67.331179, -3.317252], + [-60.103045, -3.317252], + [-60.103045, -4.762879], + [-67.331179, -4.762879] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -3.317252], + [-67.331179, -1.871625], + [-60.103045, -1.871625], + [-60.103045, -3.317252], + [-67.331179, -3.317252] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -1.871625], + [-67.331179, -0.425999], + [-60.103045, -0.425999], + [-60.103045, -1.871625], + [-67.331179, -1.871625] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -0.425999], + [-67.331179, 1.019628], + [-60.103045, 1.019628], + [-60.103045, -0.425999], + [-67.331179, -0.425999] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 1.019628], + [-67.331179, 2.465255], + [-60.103045, 2.465255], + [-60.103045, 1.019628], + [-67.331179, 1.019628] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 2.465255], + [-67.331179, 3.910882], + [-60.103045, 3.910882], + [-60.103045, 2.465255], + [-67.331179, 2.465255] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 3.910882], + [-67.331179, 5.356508], + [-60.103045, 5.356508], + [-60.103045, 3.910882], + [-67.331179, 3.910882] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 5.356508], + [-67.331179, 6.802135], + [-60.103045, 6.802135], + [-60.103045, 5.356508], + [-67.331179, 5.356508] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 6.802135], + [-67.331179, 8.247762], + [-60.103045, 8.247762], + [-60.103045, 6.802135], + [-67.331179, 6.802135] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 8.247762], + [-67.331179, 9.693389], + [-60.103045, 9.693389], + [-60.103045, 8.247762], + [-67.331179, 8.247762] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 9.693389], + [-67.331179, 11.139016], + [-60.103045, 11.139016], + [-60.103045, 9.693389], + [-67.331179, 9.693389] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 11.139016], + [-67.331179, 12.584642], + [-60.103045, 12.584642], + [-60.103045, 11.139016], + [-67.331179, 11.139016] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 12.584642], + [-67.331179, 14.030269], + [-60.103045, 14.030269], + [-60.103045, 12.584642], + [-67.331179, 12.584642] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 14.030269], + [-67.331179, 15.475896], + [-60.103045, 15.475896], + [-60.103045, 14.030269], + [-67.331179, 14.030269] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 15.475896], + [-67.331179, 16.921523], + [-60.103045, 16.921523], + [-60.103045, 15.475896], + [-67.331179, 15.475896] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 16.921523], + [-67.331179, 18.367149], + [-60.103045, 18.367149], + [-60.103045, 16.921523], + [-67.331179, 16.921523] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 18.367149], + [-67.331179, 19.812776], + [-60.103045, 19.812776], + [-60.103045, 18.367149], + [-67.331179, 18.367149] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 19.812776], + [-67.331179, 21.258403], + [-60.103045, 21.258403], + [-60.103045, 19.812776], + [-67.331179, 19.812776] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 21.258403], + [-67.331179, 22.70403], + [-60.103045, 22.70403], + [-60.103045, 21.258403], + [-67.331179, 21.258403] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 22.70403], + [-67.331179, 24.149656], + [-60.103045, 24.149656], + [-60.103045, 22.70403], + [-67.331179, 22.70403] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 24.149656], + [-67.331179, 25.595283], + [-60.103045, 25.595283], + [-60.103045, 24.149656], + [-67.331179, 24.149656] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 25.595283], + [-67.331179, 27.04091], + [-60.103045, 27.04091], + [-60.103045, 25.595283], + [-67.331179, 25.595283] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 27.04091], + [-67.331179, 28.486537], + [-60.103045, 28.486537], + [-60.103045, 27.04091], + [-67.331179, 27.04091] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 28.486537], + [-67.331179, 29.932163], + [-60.103045, 29.932163], + [-60.103045, 28.486537], + [-67.331179, 28.486537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 29.932163], + [-67.331179, 31.37779], + [-60.103045, 31.37779], + [-60.103045, 29.932163], + [-67.331179, 29.932163] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 31.37779], + [-67.331179, 32.823417], + [-60.103045, 32.823417], + [-60.103045, 31.37779], + [-67.331179, 31.37779] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 32.823417], + [-67.331179, 34.269044], + [-60.103045, 34.269044], + [-60.103045, 32.823417], + [-67.331179, 32.823417] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 34.269044], + [-67.331179, 35.714671], + [-60.103045, 35.714671], + [-60.103045, 34.269044], + [-67.331179, 34.269044] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 35.714671], + [-67.331179, 37.160297], + [-60.103045, 37.160297], + [-60.103045, 35.714671], + [-67.331179, 35.714671] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 37.160297], + [-67.331179, 38.605924], + [-60.103045, 38.605924], + [-60.103045, 37.160297], + [-67.331179, 37.160297] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 38.605924], + [-67.331179, 40.051551], + [-60.103045, 40.051551], + [-60.103045, 38.605924], + [-67.331179, 38.605924] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 40.051551], + [-67.331179, 41.497178], + [-60.103045, 41.497178], + [-60.103045, 40.051551], + [-67.331179, 40.051551] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 41.497178], + [-67.331179, 42.942804], + [-60.103045, 42.942804], + [-60.103045, 41.497178], + [-67.331179, 41.497178] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 42.942804], + [-67.331179, 44.388431], + [-60.103045, 44.388431], + [-60.103045, 42.942804], + [-67.331179, 42.942804] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 44.388431], + [-67.331179, 45.834058], + [-60.103045, 45.834058], + [-60.103045, 44.388431], + [-67.331179, 44.388431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 45.834058], + [-67.331179, 47.279685], + [-60.103045, 47.279685], + [-60.103045, 45.834058], + [-67.331179, 45.834058] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 47.279685], + [-67.331179, 48.725311], + [-60.103045, 48.725311], + [-60.103045, 47.279685], + [-67.331179, 47.279685] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 48.725311], + [-67.331179, 50.170938], + [-60.103045, 50.170938], + [-60.103045, 48.725311], + [-67.331179, 48.725311] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 50.170938], + [-67.331179, 51.616565], + [-60.103045, 51.616565], + [-60.103045, 50.170938], + [-67.331179, 50.170938] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 51.616565], + [-67.331179, 53.062192], + [-60.103045, 53.062192], + [-60.103045, 51.616565], + [-67.331179, 51.616565] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 53.062192], + [-67.331179, 54.507819], + [-60.103045, 54.507819], + [-60.103045, 53.062192], + [-67.331179, 53.062192] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 54.507819], + [-67.331179, 55.953445], + [-60.103045, 55.953445], + [-60.103045, 54.507819], + [-67.331179, 54.507819] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 55.953445], + [-67.331179, 57.399072], + [-60.103045, 57.399072], + [-60.103045, 55.953445], + [-67.331179, 55.953445] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 57.399072], + [-67.331179, 58.844699], + [-60.103045, 58.844699], + [-60.103045, 57.399072], + [-67.331179, 57.399072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 58.844699], + [-67.331179, 60.290326], + [-60.103045, 60.290326], + [-60.103045, 58.844699], + [-67.331179, 58.844699] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 60.290326], + [-67.331179, 61.735952], + [-60.103045, 61.735952], + [-60.103045, 60.290326], + [-67.331179, 60.290326] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 61.735952], + [-67.331179, 63.181579], + [-60.103045, 63.181579], + [-60.103045, 61.735952], + [-67.331179, 61.735952] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 63.181579], + [-67.331179, 64.627206], + [-60.103045, 64.627206], + [-60.103045, 63.181579], + [-67.331179, 63.181579] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 64.627206], + [-67.331179, 66.072833], + [-60.103045, 66.072833], + [-60.103045, 64.627206], + [-67.331179, 64.627206] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 66.072833], + [-67.331179, 67.518459], + [-60.103045, 67.518459], + [-60.103045, 66.072833], + [-67.331179, 66.072833] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 67.518459], + [-67.331179, 68.964086], + [-60.103045, 68.964086], + [-60.103045, 67.518459], + [-67.331179, 67.518459] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 68.964086], + [-67.331179, 70.409713], + [-60.103045, 70.409713], + [-60.103045, 68.964086], + [-67.331179, 68.964086] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 70.409713], + [-67.331179, 71.85534], + [-60.103045, 71.85534], + [-60.103045, 70.409713], + [-67.331179, 70.409713] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 71.85534], + [-67.331179, 73.300967], + [-60.103045, 73.300967], + [-60.103045, 71.85534], + [-67.331179, 71.85534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 73.300967], + [-67.331179, 74.746593], + [-60.103045, 74.746593], + [-60.103045, 73.300967], + [-67.331179, 73.300967] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 74.746593], + [-67.331179, 76.19222], + [-60.103045, 76.19222], + [-60.103045, 74.746593], + [-67.331179, 74.746593] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 76.19222], + [-67.331179, 77.637847], + [-60.103045, 77.637847], + [-60.103045, 76.19222], + [-67.331179, 76.19222] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -79.935471], + [-60.103045, -78.489844], + [-52.874912, -78.489844], + [-52.874912, -79.935471], + [-60.103045, -79.935471] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -78.489844], + [-60.103045, -77.044217], + [-52.874912, -77.044217], + [-52.874912, -78.489844], + [-60.103045, -78.489844] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -77.044217], + [-60.103045, -75.598591], + [-52.874912, -75.598591], + [-52.874912, -77.044217], + [-60.103045, -77.044217] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -75.598591], + [-60.103045, -74.152964], + [-52.874912, -74.152964], + [-52.874912, -75.598591], + [-60.103045, -75.598591] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -74.152964], + [-60.103045, -72.707337], + [-52.874912, -72.707337], + [-52.874912, -74.152964], + [-60.103045, -74.152964] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -72.707337], + [-60.103045, -71.26171], + [-52.874912, -71.26171], + [-52.874912, -72.707337], + [-60.103045, -72.707337] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -71.26171], + [-60.103045, -69.816084], + [-52.874912, -69.816084], + [-52.874912, -71.26171], + [-60.103045, -71.26171] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -69.816084], + [-60.103045, -68.370457], + [-52.874912, -68.370457], + [-52.874912, -69.816084], + [-60.103045, -69.816084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -68.370457], + [-60.103045, -66.92483], + [-52.874912, -66.92483], + [-52.874912, -68.370457], + [-60.103045, -68.370457] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -66.92483], + [-60.103045, -65.479203], + [-52.874912, -65.479203], + [-52.874912, -66.92483], + [-60.103045, -66.92483] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -65.479203], + [-60.103045, -64.033576], + [-52.874912, -64.033576], + [-52.874912, -65.479203], + [-60.103045, -65.479203] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -64.033576], + [-60.103045, -62.58795], + [-52.874912, -62.58795], + [-52.874912, -64.033576], + [-60.103045, -64.033576] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -62.58795], + [-60.103045, -61.142323], + [-52.874912, -61.142323], + [-52.874912, -62.58795], + [-60.103045, -62.58795] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -61.142323], + [-60.103045, -59.696696], + [-52.874912, -59.696696], + [-52.874912, -61.142323], + [-60.103045, -61.142323] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -59.696696], + [-60.103045, -58.251069], + [-52.874912, -58.251069], + [-52.874912, -59.696696], + [-60.103045, -59.696696] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -58.251069], + [-60.103045, -56.805443], + [-52.874912, -56.805443], + [-52.874912, -58.251069], + [-60.103045, -58.251069] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -56.805443], + [-60.103045, -55.359816], + [-52.874912, -55.359816], + [-52.874912, -56.805443], + [-60.103045, -56.805443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -55.359816], + [-60.103045, -53.914189], + [-52.874912, -53.914189], + [-52.874912, -55.359816], + [-60.103045, -55.359816] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -53.914189], + [-60.103045, -52.468562], + [-52.874912, -52.468562], + [-52.874912, -53.914189], + [-60.103045, -53.914189] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -52.468562], + [-60.103045, -51.022936], + [-52.874912, -51.022936], + [-52.874912, -52.468562], + [-60.103045, -52.468562] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -51.022936], + [-60.103045, -49.577309], + [-52.874912, -49.577309], + [-52.874912, -51.022936], + [-60.103045, -51.022936] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -49.577309], + [-60.103045, -48.131682], + [-52.874912, -48.131682], + [-52.874912, -49.577309], + [-60.103045, -49.577309] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -48.131682], + [-60.103045, -46.686055], + [-52.874912, -46.686055], + [-52.874912, -48.131682], + [-60.103045, -48.131682] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -46.686055], + [-60.103045, -45.240428], + [-52.874912, -45.240428], + [-52.874912, -46.686055], + [-60.103045, -46.686055] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -45.240428], + [-60.103045, -43.794802], + [-52.874912, -43.794802], + [-52.874912, -45.240428], + [-60.103045, -45.240428] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -43.794802], + [-60.103045, -42.349175], + [-52.874912, -42.349175], + [-52.874912, -43.794802], + [-60.103045, -43.794802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -42.349175], + [-60.103045, -40.903548], + [-52.874912, -40.903548], + [-52.874912, -42.349175], + [-60.103045, -42.349175] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -40.903548], + [-60.103045, -39.457921], + [-52.874912, -39.457921], + [-52.874912, -40.903548], + [-60.103045, -40.903548] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -39.457921], + [-60.103045, -38.012295], + [-52.874912, -38.012295], + [-52.874912, -39.457921], + [-60.103045, -39.457921] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -38.012295], + [-60.103045, -36.566668], + [-52.874912, -36.566668], + [-52.874912, -38.012295], + [-60.103045, -38.012295] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -36.566668], + [-60.103045, -35.121041], + [-52.874912, -35.121041], + [-52.874912, -36.566668], + [-60.103045, -36.566668] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -35.121041], + [-60.103045, -33.675414], + [-52.874912, -33.675414], + [-52.874912, -35.121041], + [-60.103045, -35.121041] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -33.675414], + [-60.103045, -32.229788], + [-52.874912, -32.229788], + [-52.874912, -33.675414], + [-60.103045, -33.675414] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -32.229788], + [-60.103045, -30.784161], + [-52.874912, -30.784161], + [-52.874912, -32.229788], + [-60.103045, -32.229788] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -30.784161], + [-60.103045, -29.338534], + [-52.874912, -29.338534], + [-52.874912, -30.784161], + [-60.103045, -30.784161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -29.338534], + [-60.103045, -27.892907], + [-52.874912, -27.892907], + [-52.874912, -29.338534], + [-60.103045, -29.338534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -27.892907], + [-60.103045, -26.44728], + [-52.874912, -26.44728], + [-52.874912, -27.892907], + [-60.103045, -27.892907] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -26.44728], + [-60.103045, -25.001654], + [-52.874912, -25.001654], + [-52.874912, -26.44728], + [-60.103045, -26.44728] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -25.001654], + [-60.103045, -23.556027], + [-52.874912, -23.556027], + [-52.874912, -25.001654], + [-60.103045, -25.001654] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -23.556027], + [-60.103045, -22.1104], + [-52.874912, -22.1104], + [-52.874912, -23.556027], + [-60.103045, -23.556027] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -22.1104], + [-60.103045, -20.664773], + [-52.874912, -20.664773], + [-52.874912, -22.1104], + [-60.103045, -22.1104] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -20.664773], + [-60.103045, -19.219147], + [-52.874912, -19.219147], + [-52.874912, -20.664773], + [-60.103045, -20.664773] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -19.219147], + [-60.103045, -17.77352], + [-52.874912, -17.77352], + [-52.874912, -19.219147], + [-60.103045, -19.219147] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -17.77352], + [-60.103045, -16.327893], + [-52.874912, -16.327893], + [-52.874912, -17.77352], + [-60.103045, -17.77352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -16.327893], + [-60.103045, -14.882266], + [-52.874912, -14.882266], + [-52.874912, -16.327893], + [-60.103045, -16.327893] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -14.882266], + [-60.103045, -13.43664], + [-52.874912, -13.43664], + [-52.874912, -14.882266], + [-60.103045, -14.882266] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -13.43664], + [-60.103045, -11.991013], + [-52.874912, -11.991013], + [-52.874912, -13.43664], + [-60.103045, -13.43664] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -11.991013], + [-60.103045, -10.545386], + [-52.874912, -10.545386], + [-52.874912, -11.991013], + [-60.103045, -11.991013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -10.545386], + [-60.103045, -9.099759], + [-52.874912, -9.099759], + [-52.874912, -10.545386], + [-60.103045, -10.545386] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -9.099759], + [-60.103045, -7.654132], + [-52.874912, -7.654132], + [-52.874912, -9.099759], + [-60.103045, -9.099759] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -7.654132], + [-60.103045, -6.208506], + [-52.874912, -6.208506], + [-52.874912, -7.654132], + [-60.103045, -7.654132] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -6.208506], + [-60.103045, -4.762879], + [-52.874912, -4.762879], + [-52.874912, -6.208506], + [-60.103045, -6.208506] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -4.762879], + [-60.103045, -3.317252], + [-52.874912, -3.317252], + [-52.874912, -4.762879], + [-60.103045, -4.762879] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -3.317252], + [-60.103045, -1.871625], + [-52.874912, -1.871625], + [-52.874912, -3.317252], + [-60.103045, -3.317252] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -1.871625], + [-60.103045, -0.425999], + [-52.874912, -0.425999], + [-52.874912, -1.871625], + [-60.103045, -1.871625] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -0.425999], + [-60.103045, 1.019628], + [-52.874912, 1.019628], + [-52.874912, -0.425999], + [-60.103045, -0.425999] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 1.019628], + [-60.103045, 2.465255], + [-52.874912, 2.465255], + [-52.874912, 1.019628], + [-60.103045, 1.019628] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 2.465255], + [-60.103045, 3.910882], + [-52.874912, 3.910882], + [-52.874912, 2.465255], + [-60.103045, 2.465255] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 3.910882], + [-60.103045, 5.356508], + [-52.874912, 5.356508], + [-52.874912, 3.910882], + [-60.103045, 3.910882] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 5.356508], + [-60.103045, 6.802135], + [-52.874912, 6.802135], + [-52.874912, 5.356508], + [-60.103045, 5.356508] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 6.802135], + [-60.103045, 8.247762], + [-52.874912, 8.247762], + [-52.874912, 6.802135], + [-60.103045, 6.802135] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 8.247762], + [-60.103045, 9.693389], + [-52.874912, 9.693389], + [-52.874912, 8.247762], + [-60.103045, 8.247762] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 9.693389], + [-60.103045, 11.139016], + [-52.874912, 11.139016], + [-52.874912, 9.693389], + [-60.103045, 9.693389] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 11.139016], + [-60.103045, 12.584642], + [-52.874912, 12.584642], + [-52.874912, 11.139016], + [-60.103045, 11.139016] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 12.584642], + [-60.103045, 14.030269], + [-52.874912, 14.030269], + [-52.874912, 12.584642], + [-60.103045, 12.584642] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 14.030269], + [-60.103045, 15.475896], + [-52.874912, 15.475896], + [-52.874912, 14.030269], + [-60.103045, 14.030269] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 15.475896], + [-60.103045, 16.921523], + [-52.874912, 16.921523], + [-52.874912, 15.475896], + [-60.103045, 15.475896] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 16.921523], + [-60.103045, 18.367149], + [-52.874912, 18.367149], + [-52.874912, 16.921523], + [-60.103045, 16.921523] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 18.367149], + [-60.103045, 19.812776], + [-52.874912, 19.812776], + [-52.874912, 18.367149], + [-60.103045, 18.367149] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 19.812776], + [-60.103045, 21.258403], + [-52.874912, 21.258403], + [-52.874912, 19.812776], + [-60.103045, 19.812776] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 21.258403], + [-60.103045, 22.70403], + [-52.874912, 22.70403], + [-52.874912, 21.258403], + [-60.103045, 21.258403] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 22.70403], + [-60.103045, 24.149656], + [-52.874912, 24.149656], + [-52.874912, 22.70403], + [-60.103045, 22.70403] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 24.149656], + [-60.103045, 25.595283], + [-52.874912, 25.595283], + [-52.874912, 24.149656], + [-60.103045, 24.149656] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 25.595283], + [-60.103045, 27.04091], + [-52.874912, 27.04091], + [-52.874912, 25.595283], + [-60.103045, 25.595283] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 27.04091], + [-60.103045, 28.486537], + [-52.874912, 28.486537], + [-52.874912, 27.04091], + [-60.103045, 27.04091] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 28.486537], + [-60.103045, 29.932163], + [-52.874912, 29.932163], + [-52.874912, 28.486537], + [-60.103045, 28.486537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 29.932163], + [-60.103045, 31.37779], + [-52.874912, 31.37779], + [-52.874912, 29.932163], + [-60.103045, 29.932163] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 31.37779], + [-60.103045, 32.823417], + [-52.874912, 32.823417], + [-52.874912, 31.37779], + [-60.103045, 31.37779] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 32.823417], + [-60.103045, 34.269044], + [-52.874912, 34.269044], + [-52.874912, 32.823417], + [-60.103045, 32.823417] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 34.269044], + [-60.103045, 35.714671], + [-52.874912, 35.714671], + [-52.874912, 34.269044], + [-60.103045, 34.269044] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 35.714671], + [-60.103045, 37.160297], + [-52.874912, 37.160297], + [-52.874912, 35.714671], + [-60.103045, 35.714671] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 37.160297], + [-60.103045, 38.605924], + [-52.874912, 38.605924], + [-52.874912, 37.160297], + [-60.103045, 37.160297] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 38.605924], + [-60.103045, 40.051551], + [-52.874912, 40.051551], + [-52.874912, 38.605924], + [-60.103045, 38.605924] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 40.051551], + [-60.103045, 41.497178], + [-52.874912, 41.497178], + [-52.874912, 40.051551], + [-60.103045, 40.051551] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 41.497178], + [-60.103045, 42.942804], + [-52.874912, 42.942804], + [-52.874912, 41.497178], + [-60.103045, 41.497178] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 42.942804], + [-60.103045, 44.388431], + [-52.874912, 44.388431], + [-52.874912, 42.942804], + [-60.103045, 42.942804] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 44.388431], + [-60.103045, 45.834058], + [-52.874912, 45.834058], + [-52.874912, 44.388431], + [-60.103045, 44.388431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 45.834058], + [-60.103045, 47.279685], + [-52.874912, 47.279685], + [-52.874912, 45.834058], + [-60.103045, 45.834058] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 47.279685], + [-60.103045, 48.725311], + [-52.874912, 48.725311], + [-52.874912, 47.279685], + [-60.103045, 47.279685] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 48.725311], + [-60.103045, 50.170938], + [-52.874912, 50.170938], + [-52.874912, 48.725311], + [-60.103045, 48.725311] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 50.170938], + [-60.103045, 51.616565], + [-52.874912, 51.616565], + [-52.874912, 50.170938], + [-60.103045, 50.170938] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 51.616565], + [-60.103045, 53.062192], + [-52.874912, 53.062192], + [-52.874912, 51.616565], + [-60.103045, 51.616565] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 53.062192], + [-60.103045, 54.507819], + [-52.874912, 54.507819], + [-52.874912, 53.062192], + [-60.103045, 53.062192] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 54.507819], + [-60.103045, 55.953445], + [-52.874912, 55.953445], + [-52.874912, 54.507819], + [-60.103045, 54.507819] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 55.953445], + [-60.103045, 57.399072], + [-52.874912, 57.399072], + [-52.874912, 55.953445], + [-60.103045, 55.953445] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 57.399072], + [-60.103045, 58.844699], + [-52.874912, 58.844699], + [-52.874912, 57.399072], + [-60.103045, 57.399072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 58.844699], + [-60.103045, 60.290326], + [-52.874912, 60.290326], + [-52.874912, 58.844699], + [-60.103045, 58.844699] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 60.290326], + [-60.103045, 61.735952], + [-52.874912, 61.735952], + [-52.874912, 60.290326], + [-60.103045, 60.290326] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 61.735952], + [-60.103045, 63.181579], + [-52.874912, 63.181579], + [-52.874912, 61.735952], + [-60.103045, 61.735952] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 63.181579], + [-60.103045, 64.627206], + [-52.874912, 64.627206], + [-52.874912, 63.181579], + [-60.103045, 63.181579] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 64.627206], + [-60.103045, 66.072833], + [-52.874912, 66.072833], + [-52.874912, 64.627206], + [-60.103045, 64.627206] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 66.072833], + [-60.103045, 67.518459], + [-52.874912, 67.518459], + [-52.874912, 66.072833], + [-60.103045, 66.072833] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 67.518459], + [-60.103045, 68.964086], + [-52.874912, 68.964086], + [-52.874912, 67.518459], + [-60.103045, 67.518459] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 68.964086], + [-60.103045, 70.409713], + [-52.874912, 70.409713], + [-52.874912, 68.964086], + [-60.103045, 68.964086] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 70.409713], + [-60.103045, 71.85534], + [-52.874912, 71.85534], + [-52.874912, 70.409713], + [-60.103045, 70.409713] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 71.85534], + [-60.103045, 73.300967], + [-52.874912, 73.300967], + [-52.874912, 71.85534], + [-60.103045, 71.85534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 73.300967], + [-60.103045, 74.746593], + [-52.874912, 74.746593], + [-52.874912, 73.300967], + [-60.103045, 73.300967] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 74.746593], + [-60.103045, 76.19222], + [-52.874912, 76.19222], + [-52.874912, 74.746593], + [-60.103045, 74.746593] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 76.19222], + [-60.103045, 77.637847], + [-52.874912, 77.637847], + [-52.874912, 76.19222], + [-60.103045, 76.19222] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -79.935471], + [-52.874912, -78.489844], + [-45.646778, -78.489844], + [-45.646778, -79.935471], + [-52.874912, -79.935471] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -78.489844], + [-52.874912, -77.044217], + [-45.646778, -77.044217], + [-45.646778, -78.489844], + [-52.874912, -78.489844] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -77.044217], + [-52.874912, -75.598591], + [-45.646778, -75.598591], + [-45.646778, -77.044217], + [-52.874912, -77.044217] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -75.598591], + [-52.874912, -74.152964], + [-45.646778, -74.152964], + [-45.646778, -75.598591], + [-52.874912, -75.598591] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -74.152964], + [-52.874912, -72.707337], + [-45.646778, -72.707337], + [-45.646778, -74.152964], + [-52.874912, -74.152964] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -72.707337], + [-52.874912, -71.26171], + [-45.646778, -71.26171], + [-45.646778, -72.707337], + [-52.874912, -72.707337] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -71.26171], + [-52.874912, -69.816084], + [-45.646778, -69.816084], + [-45.646778, -71.26171], + [-52.874912, -71.26171] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -69.816084], + [-52.874912, -68.370457], + [-45.646778, -68.370457], + [-45.646778, -69.816084], + [-52.874912, -69.816084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -68.370457], + [-52.874912, -66.92483], + [-45.646778, -66.92483], + [-45.646778, -68.370457], + [-52.874912, -68.370457] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -66.92483], + [-52.874912, -65.479203], + [-45.646778, -65.479203], + [-45.646778, -66.92483], + [-52.874912, -66.92483] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -65.479203], + [-52.874912, -64.033576], + [-45.646778, -64.033576], + [-45.646778, -65.479203], + [-52.874912, -65.479203] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -64.033576], + [-52.874912, -62.58795], + [-45.646778, -62.58795], + [-45.646778, -64.033576], + [-52.874912, -64.033576] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -62.58795], + [-52.874912, -61.142323], + [-45.646778, -61.142323], + [-45.646778, -62.58795], + [-52.874912, -62.58795] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -61.142323], + [-52.874912, -59.696696], + [-45.646778, -59.696696], + [-45.646778, -61.142323], + [-52.874912, -61.142323] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -59.696696], + [-52.874912, -58.251069], + [-45.646778, -58.251069], + [-45.646778, -59.696696], + [-52.874912, -59.696696] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -58.251069], + [-52.874912, -56.805443], + [-45.646778, -56.805443], + [-45.646778, -58.251069], + [-52.874912, -58.251069] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -56.805443], + [-52.874912, -55.359816], + [-45.646778, -55.359816], + [-45.646778, -56.805443], + [-52.874912, -56.805443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -55.359816], + [-52.874912, -53.914189], + [-45.646778, -53.914189], + [-45.646778, -55.359816], + [-52.874912, -55.359816] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -53.914189], + [-52.874912, -52.468562], + [-45.646778, -52.468562], + [-45.646778, -53.914189], + [-52.874912, -53.914189] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -52.468562], + [-52.874912, -51.022936], + [-45.646778, -51.022936], + [-45.646778, -52.468562], + [-52.874912, -52.468562] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -51.022936], + [-52.874912, -49.577309], + [-45.646778, -49.577309], + [-45.646778, -51.022936], + [-52.874912, -51.022936] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -49.577309], + [-52.874912, -48.131682], + [-45.646778, -48.131682], + [-45.646778, -49.577309], + [-52.874912, -49.577309] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -48.131682], + [-52.874912, -46.686055], + [-45.646778, -46.686055], + [-45.646778, -48.131682], + [-52.874912, -48.131682] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -46.686055], + [-52.874912, -45.240428], + [-45.646778, -45.240428], + [-45.646778, -46.686055], + [-52.874912, -46.686055] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -45.240428], + [-52.874912, -43.794802], + [-45.646778, -43.794802], + [-45.646778, -45.240428], + [-52.874912, -45.240428] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -43.794802], + [-52.874912, -42.349175], + [-45.646778, -42.349175], + [-45.646778, -43.794802], + [-52.874912, -43.794802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -42.349175], + [-52.874912, -40.903548], + [-45.646778, -40.903548], + [-45.646778, -42.349175], + [-52.874912, -42.349175] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -40.903548], + [-52.874912, -39.457921], + [-45.646778, -39.457921], + [-45.646778, -40.903548], + [-52.874912, -40.903548] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -39.457921], + [-52.874912, -38.012295], + [-45.646778, -38.012295], + [-45.646778, -39.457921], + [-52.874912, -39.457921] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -38.012295], + [-52.874912, -36.566668], + [-45.646778, -36.566668], + [-45.646778, -38.012295], + [-52.874912, -38.012295] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -36.566668], + [-52.874912, -35.121041], + [-45.646778, -35.121041], + [-45.646778, -36.566668], + [-52.874912, -36.566668] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -35.121041], + [-52.874912, -33.675414], + [-45.646778, -33.675414], + [-45.646778, -35.121041], + [-52.874912, -35.121041] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -33.675414], + [-52.874912, -32.229788], + [-45.646778, -32.229788], + [-45.646778, -33.675414], + [-52.874912, -33.675414] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -32.229788], + [-52.874912, -30.784161], + [-45.646778, -30.784161], + [-45.646778, -32.229788], + [-52.874912, -32.229788] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -30.784161], + [-52.874912, -29.338534], + [-45.646778, -29.338534], + [-45.646778, -30.784161], + [-52.874912, -30.784161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -29.338534], + [-52.874912, -27.892907], + [-45.646778, -27.892907], + [-45.646778, -29.338534], + [-52.874912, -29.338534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -27.892907], + [-52.874912, -26.44728], + [-45.646778, -26.44728], + [-45.646778, -27.892907], + [-52.874912, -27.892907] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -26.44728], + [-52.874912, -25.001654], + [-45.646778, -25.001654], + [-45.646778, -26.44728], + [-52.874912, -26.44728] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -25.001654], + [-52.874912, -23.556027], + [-45.646778, -23.556027], + [-45.646778, -25.001654], + [-52.874912, -25.001654] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -23.556027], + [-52.874912, -22.1104], + [-45.646778, -22.1104], + [-45.646778, -23.556027], + [-52.874912, -23.556027] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -22.1104], + [-52.874912, -20.664773], + [-45.646778, -20.664773], + [-45.646778, -22.1104], + [-52.874912, -22.1104] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -20.664773], + [-52.874912, -19.219147], + [-45.646778, -19.219147], + [-45.646778, -20.664773], + [-52.874912, -20.664773] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -19.219147], + [-52.874912, -17.77352], + [-45.646778, -17.77352], + [-45.646778, -19.219147], + [-52.874912, -19.219147] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -17.77352], + [-52.874912, -16.327893], + [-45.646778, -16.327893], + [-45.646778, -17.77352], + [-52.874912, -17.77352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -16.327893], + [-52.874912, -14.882266], + [-45.646778, -14.882266], + [-45.646778, -16.327893], + [-52.874912, -16.327893] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -14.882266], + [-52.874912, -13.43664], + [-45.646778, -13.43664], + [-45.646778, -14.882266], + [-52.874912, -14.882266] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -13.43664], + [-52.874912, -11.991013], + [-45.646778, -11.991013], + [-45.646778, -13.43664], + [-52.874912, -13.43664] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -11.991013], + [-52.874912, -10.545386], + [-45.646778, -10.545386], + [-45.646778, -11.991013], + [-52.874912, -11.991013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -10.545386], + [-52.874912, -9.099759], + [-45.646778, -9.099759], + [-45.646778, -10.545386], + [-52.874912, -10.545386] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -9.099759], + [-52.874912, -7.654132], + [-45.646778, -7.654132], + [-45.646778, -9.099759], + [-52.874912, -9.099759] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -7.654132], + [-52.874912, -6.208506], + [-45.646778, -6.208506], + [-45.646778, -7.654132], + [-52.874912, -7.654132] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -6.208506], + [-52.874912, -4.762879], + [-45.646778, -4.762879], + [-45.646778, -6.208506], + [-52.874912, -6.208506] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -4.762879], + [-52.874912, -3.317252], + [-45.646778, -3.317252], + [-45.646778, -4.762879], + [-52.874912, -4.762879] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -3.317252], + [-52.874912, -1.871625], + [-45.646778, -1.871625], + [-45.646778, -3.317252], + [-52.874912, -3.317252] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -1.871625], + [-52.874912, -0.425999], + [-45.646778, -0.425999], + [-45.646778, -1.871625], + [-52.874912, -1.871625] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -0.425999], + [-52.874912, 1.019628], + [-45.646778, 1.019628], + [-45.646778, -0.425999], + [-52.874912, -0.425999] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 1.019628], + [-52.874912, 2.465255], + [-45.646778, 2.465255], + [-45.646778, 1.019628], + [-52.874912, 1.019628] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 2.465255], + [-52.874912, 3.910882], + [-45.646778, 3.910882], + [-45.646778, 2.465255], + [-52.874912, 2.465255] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 3.910882], + [-52.874912, 5.356508], + [-45.646778, 5.356508], + [-45.646778, 3.910882], + [-52.874912, 3.910882] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 5.356508], + [-52.874912, 6.802135], + [-45.646778, 6.802135], + [-45.646778, 5.356508], + [-52.874912, 5.356508] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 6.802135], + [-52.874912, 8.247762], + [-45.646778, 8.247762], + [-45.646778, 6.802135], + [-52.874912, 6.802135] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 8.247762], + [-52.874912, 9.693389], + [-45.646778, 9.693389], + [-45.646778, 8.247762], + [-52.874912, 8.247762] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 9.693389], + [-52.874912, 11.139016], + [-45.646778, 11.139016], + [-45.646778, 9.693389], + [-52.874912, 9.693389] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 11.139016], + [-52.874912, 12.584642], + [-45.646778, 12.584642], + [-45.646778, 11.139016], + [-52.874912, 11.139016] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 12.584642], + [-52.874912, 14.030269], + [-45.646778, 14.030269], + [-45.646778, 12.584642], + [-52.874912, 12.584642] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 14.030269], + [-52.874912, 15.475896], + [-45.646778, 15.475896], + [-45.646778, 14.030269], + [-52.874912, 14.030269] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 15.475896], + [-52.874912, 16.921523], + [-45.646778, 16.921523], + [-45.646778, 15.475896], + [-52.874912, 15.475896] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 16.921523], + [-52.874912, 18.367149], + [-45.646778, 18.367149], + [-45.646778, 16.921523], + [-52.874912, 16.921523] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 18.367149], + [-52.874912, 19.812776], + [-45.646778, 19.812776], + [-45.646778, 18.367149], + [-52.874912, 18.367149] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 19.812776], + [-52.874912, 21.258403], + [-45.646778, 21.258403], + [-45.646778, 19.812776], + [-52.874912, 19.812776] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 21.258403], + [-52.874912, 22.70403], + [-45.646778, 22.70403], + [-45.646778, 21.258403], + [-52.874912, 21.258403] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 22.70403], + [-52.874912, 24.149656], + [-45.646778, 24.149656], + [-45.646778, 22.70403], + [-52.874912, 22.70403] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 24.149656], + [-52.874912, 25.595283], + [-45.646778, 25.595283], + [-45.646778, 24.149656], + [-52.874912, 24.149656] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 25.595283], + [-52.874912, 27.04091], + [-45.646778, 27.04091], + [-45.646778, 25.595283], + [-52.874912, 25.595283] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 27.04091], + [-52.874912, 28.486537], + [-45.646778, 28.486537], + [-45.646778, 27.04091], + [-52.874912, 27.04091] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 28.486537], + [-52.874912, 29.932163], + [-45.646778, 29.932163], + [-45.646778, 28.486537], + [-52.874912, 28.486537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 29.932163], + [-52.874912, 31.37779], + [-45.646778, 31.37779], + [-45.646778, 29.932163], + [-52.874912, 29.932163] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 31.37779], + [-52.874912, 32.823417], + [-45.646778, 32.823417], + [-45.646778, 31.37779], + [-52.874912, 31.37779] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 32.823417], + [-52.874912, 34.269044], + [-45.646778, 34.269044], + [-45.646778, 32.823417], + [-52.874912, 32.823417] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 34.269044], + [-52.874912, 35.714671], + [-45.646778, 35.714671], + [-45.646778, 34.269044], + [-52.874912, 34.269044] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 35.714671], + [-52.874912, 37.160297], + [-45.646778, 37.160297], + [-45.646778, 35.714671], + [-52.874912, 35.714671] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 37.160297], + [-52.874912, 38.605924], + [-45.646778, 38.605924], + [-45.646778, 37.160297], + [-52.874912, 37.160297] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 38.605924], + [-52.874912, 40.051551], + [-45.646778, 40.051551], + [-45.646778, 38.605924], + [-52.874912, 38.605924] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 40.051551], + [-52.874912, 41.497178], + [-45.646778, 41.497178], + [-45.646778, 40.051551], + [-52.874912, 40.051551] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 41.497178], + [-52.874912, 42.942804], + [-45.646778, 42.942804], + [-45.646778, 41.497178], + [-52.874912, 41.497178] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 42.942804], + [-52.874912, 44.388431], + [-45.646778, 44.388431], + [-45.646778, 42.942804], + [-52.874912, 42.942804] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 44.388431], + [-52.874912, 45.834058], + [-45.646778, 45.834058], + [-45.646778, 44.388431], + [-52.874912, 44.388431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 45.834058], + [-52.874912, 47.279685], + [-45.646778, 47.279685], + [-45.646778, 45.834058], + [-52.874912, 45.834058] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 47.279685], + [-52.874912, 48.725311], + [-45.646778, 48.725311], + [-45.646778, 47.279685], + [-52.874912, 47.279685] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 48.725311], + [-52.874912, 50.170938], + [-45.646778, 50.170938], + [-45.646778, 48.725311], + [-52.874912, 48.725311] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 50.170938], + [-52.874912, 51.616565], + [-45.646778, 51.616565], + [-45.646778, 50.170938], + [-52.874912, 50.170938] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 51.616565], + [-52.874912, 53.062192], + [-45.646778, 53.062192], + [-45.646778, 51.616565], + [-52.874912, 51.616565] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 53.062192], + [-52.874912, 54.507819], + [-45.646778, 54.507819], + [-45.646778, 53.062192], + [-52.874912, 53.062192] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 54.507819], + [-52.874912, 55.953445], + [-45.646778, 55.953445], + [-45.646778, 54.507819], + [-52.874912, 54.507819] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 55.953445], + [-52.874912, 57.399072], + [-45.646778, 57.399072], + [-45.646778, 55.953445], + [-52.874912, 55.953445] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 57.399072], + [-52.874912, 58.844699], + [-45.646778, 58.844699], + [-45.646778, 57.399072], + [-52.874912, 57.399072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 58.844699], + [-52.874912, 60.290326], + [-45.646778, 60.290326], + [-45.646778, 58.844699], + [-52.874912, 58.844699] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 60.290326], + [-52.874912, 61.735952], + [-45.646778, 61.735952], + [-45.646778, 60.290326], + [-52.874912, 60.290326] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 61.735952], + [-52.874912, 63.181579], + [-45.646778, 63.181579], + [-45.646778, 61.735952], + [-52.874912, 61.735952] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 63.181579], + [-52.874912, 64.627206], + [-45.646778, 64.627206], + [-45.646778, 63.181579], + [-52.874912, 63.181579] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 64.627206], + [-52.874912, 66.072833], + [-45.646778, 66.072833], + [-45.646778, 64.627206], + [-52.874912, 64.627206] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 66.072833], + [-52.874912, 67.518459], + [-45.646778, 67.518459], + [-45.646778, 66.072833], + [-52.874912, 66.072833] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 67.518459], + [-52.874912, 68.964086], + [-45.646778, 68.964086], + [-45.646778, 67.518459], + [-52.874912, 67.518459] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 68.964086], + [-52.874912, 70.409713], + [-45.646778, 70.409713], + [-45.646778, 68.964086], + [-52.874912, 68.964086] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 70.409713], + [-52.874912, 71.85534], + [-45.646778, 71.85534], + [-45.646778, 70.409713], + [-52.874912, 70.409713] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 71.85534], + [-52.874912, 73.300967], + [-45.646778, 73.300967], + [-45.646778, 71.85534], + [-52.874912, 71.85534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 73.300967], + [-52.874912, 74.746593], + [-45.646778, 74.746593], + [-45.646778, 73.300967], + [-52.874912, 73.300967] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 74.746593], + [-52.874912, 76.19222], + [-45.646778, 76.19222], + [-45.646778, 74.746593], + [-52.874912, 74.746593] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 76.19222], + [-52.874912, 77.637847], + [-45.646778, 77.637847], + [-45.646778, 76.19222], + [-52.874912, 76.19222] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -79.935471], + [-45.646778, -78.489844], + [-38.418644, -78.489844], + [-38.418644, -79.935471], + [-45.646778, -79.935471] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -78.489844], + [-45.646778, -77.044217], + [-38.418644, -77.044217], + [-38.418644, -78.489844], + [-45.646778, -78.489844] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -77.044217], + [-45.646778, -75.598591], + [-38.418644, -75.598591], + [-38.418644, -77.044217], + [-45.646778, -77.044217] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -75.598591], + [-45.646778, -74.152964], + [-38.418644, -74.152964], + [-38.418644, -75.598591], + [-45.646778, -75.598591] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -74.152964], + [-45.646778, -72.707337], + [-38.418644, -72.707337], + [-38.418644, -74.152964], + [-45.646778, -74.152964] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -72.707337], + [-45.646778, -71.26171], + [-38.418644, -71.26171], + [-38.418644, -72.707337], + [-45.646778, -72.707337] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -71.26171], + [-45.646778, -69.816084], + [-38.418644, -69.816084], + [-38.418644, -71.26171], + [-45.646778, -71.26171] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -69.816084], + [-45.646778, -68.370457], + [-38.418644, -68.370457], + [-38.418644, -69.816084], + [-45.646778, -69.816084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -68.370457], + [-45.646778, -66.92483], + [-38.418644, -66.92483], + [-38.418644, -68.370457], + [-45.646778, -68.370457] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -66.92483], + [-45.646778, -65.479203], + [-38.418644, -65.479203], + [-38.418644, -66.92483], + [-45.646778, -66.92483] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -65.479203], + [-45.646778, -64.033576], + [-38.418644, -64.033576], + [-38.418644, -65.479203], + [-45.646778, -65.479203] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -64.033576], + [-45.646778, -62.58795], + [-38.418644, -62.58795], + [-38.418644, -64.033576], + [-45.646778, -64.033576] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -62.58795], + [-45.646778, -61.142323], + [-38.418644, -61.142323], + [-38.418644, -62.58795], + [-45.646778, -62.58795] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -61.142323], + [-45.646778, -59.696696], + [-38.418644, -59.696696], + [-38.418644, -61.142323], + [-45.646778, -61.142323] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -59.696696], + [-45.646778, -58.251069], + [-38.418644, -58.251069], + [-38.418644, -59.696696], + [-45.646778, -59.696696] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -58.251069], + [-45.646778, -56.805443], + [-38.418644, -56.805443], + [-38.418644, -58.251069], + [-45.646778, -58.251069] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -56.805443], + [-45.646778, -55.359816], + [-38.418644, -55.359816], + [-38.418644, -56.805443], + [-45.646778, -56.805443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -55.359816], + [-45.646778, -53.914189], + [-38.418644, -53.914189], + [-38.418644, -55.359816], + [-45.646778, -55.359816] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -53.914189], + [-45.646778, -52.468562], + [-38.418644, -52.468562], + [-38.418644, -53.914189], + [-45.646778, -53.914189] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -52.468562], + [-45.646778, -51.022936], + [-38.418644, -51.022936], + [-38.418644, -52.468562], + [-45.646778, -52.468562] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -51.022936], + [-45.646778, -49.577309], + [-38.418644, -49.577309], + [-38.418644, -51.022936], + [-45.646778, -51.022936] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -49.577309], + [-45.646778, -48.131682], + [-38.418644, -48.131682], + [-38.418644, -49.577309], + [-45.646778, -49.577309] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -48.131682], + [-45.646778, -46.686055], + [-38.418644, -46.686055], + [-38.418644, -48.131682], + [-45.646778, -48.131682] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -46.686055], + [-45.646778, -45.240428], + [-38.418644, -45.240428], + [-38.418644, -46.686055], + [-45.646778, -46.686055] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -45.240428], + [-45.646778, -43.794802], + [-38.418644, -43.794802], + [-38.418644, -45.240428], + [-45.646778, -45.240428] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -43.794802], + [-45.646778, -42.349175], + [-38.418644, -42.349175], + [-38.418644, -43.794802], + [-45.646778, -43.794802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -42.349175], + [-45.646778, -40.903548], + [-38.418644, -40.903548], + [-38.418644, -42.349175], + [-45.646778, -42.349175] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -40.903548], + [-45.646778, -39.457921], + [-38.418644, -39.457921], + [-38.418644, -40.903548], + [-45.646778, -40.903548] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -39.457921], + [-45.646778, -38.012295], + [-38.418644, -38.012295], + [-38.418644, -39.457921], + [-45.646778, -39.457921] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -38.012295], + [-45.646778, -36.566668], + [-38.418644, -36.566668], + [-38.418644, -38.012295], + [-45.646778, -38.012295] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -36.566668], + [-45.646778, -35.121041], + [-38.418644, -35.121041], + [-38.418644, -36.566668], + [-45.646778, -36.566668] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -35.121041], + [-45.646778, -33.675414], + [-38.418644, -33.675414], + [-38.418644, -35.121041], + [-45.646778, -35.121041] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -33.675414], + [-45.646778, -32.229788], + [-38.418644, -32.229788], + [-38.418644, -33.675414], + [-45.646778, -33.675414] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -32.229788], + [-45.646778, -30.784161], + [-38.418644, -30.784161], + [-38.418644, -32.229788], + [-45.646778, -32.229788] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -30.784161], + [-45.646778, -29.338534], + [-38.418644, -29.338534], + [-38.418644, -30.784161], + [-45.646778, -30.784161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -29.338534], + [-45.646778, -27.892907], + [-38.418644, -27.892907], + [-38.418644, -29.338534], + [-45.646778, -29.338534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -27.892907], + [-45.646778, -26.44728], + [-38.418644, -26.44728], + [-38.418644, -27.892907], + [-45.646778, -27.892907] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -26.44728], + [-45.646778, -25.001654], + [-38.418644, -25.001654], + [-38.418644, -26.44728], + [-45.646778, -26.44728] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -25.001654], + [-45.646778, -23.556027], + [-38.418644, -23.556027], + [-38.418644, -25.001654], + [-45.646778, -25.001654] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -23.556027], + [-45.646778, -22.1104], + [-38.418644, -22.1104], + [-38.418644, -23.556027], + [-45.646778, -23.556027] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -22.1104], + [-45.646778, -20.664773], + [-38.418644, -20.664773], + [-38.418644, -22.1104], + [-45.646778, -22.1104] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -20.664773], + [-45.646778, -19.219147], + [-38.418644, -19.219147], + [-38.418644, -20.664773], + [-45.646778, -20.664773] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -19.219147], + [-45.646778, -17.77352], + [-38.418644, -17.77352], + [-38.418644, -19.219147], + [-45.646778, -19.219147] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -17.77352], + [-45.646778, -16.327893], + [-38.418644, -16.327893], + [-38.418644, -17.77352], + [-45.646778, -17.77352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -16.327893], + [-45.646778, -14.882266], + [-38.418644, -14.882266], + [-38.418644, -16.327893], + [-45.646778, -16.327893] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -14.882266], + [-45.646778, -13.43664], + [-38.418644, -13.43664], + [-38.418644, -14.882266], + [-45.646778, -14.882266] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -13.43664], + [-45.646778, -11.991013], + [-38.418644, -11.991013], + [-38.418644, -13.43664], + [-45.646778, -13.43664] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -11.991013], + [-45.646778, -10.545386], + [-38.418644, -10.545386], + [-38.418644, -11.991013], + [-45.646778, -11.991013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -10.545386], + [-45.646778, -9.099759], + [-38.418644, -9.099759], + [-38.418644, -10.545386], + [-45.646778, -10.545386] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -9.099759], + [-45.646778, -7.654132], + [-38.418644, -7.654132], + [-38.418644, -9.099759], + [-45.646778, -9.099759] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -7.654132], + [-45.646778, -6.208506], + [-38.418644, -6.208506], + [-38.418644, -7.654132], + [-45.646778, -7.654132] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -6.208506], + [-45.646778, -4.762879], + [-38.418644, -4.762879], + [-38.418644, -6.208506], + [-45.646778, -6.208506] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -4.762879], + [-45.646778, -3.317252], + [-38.418644, -3.317252], + [-38.418644, -4.762879], + [-45.646778, -4.762879] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -3.317252], + [-45.646778, -1.871625], + [-38.418644, -1.871625], + [-38.418644, -3.317252], + [-45.646778, -3.317252] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -1.871625], + [-45.646778, -0.425999], + [-38.418644, -0.425999], + [-38.418644, -1.871625], + [-45.646778, -1.871625] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -0.425999], + [-45.646778, 1.019628], + [-38.418644, 1.019628], + [-38.418644, -0.425999], + [-45.646778, -0.425999] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 1.019628], + [-45.646778, 2.465255], + [-38.418644, 2.465255], + [-38.418644, 1.019628], + [-45.646778, 1.019628] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 2.465255], + [-45.646778, 3.910882], + [-38.418644, 3.910882], + [-38.418644, 2.465255], + [-45.646778, 2.465255] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 3.910882], + [-45.646778, 5.356508], + [-38.418644, 5.356508], + [-38.418644, 3.910882], + [-45.646778, 3.910882] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 5.356508], + [-45.646778, 6.802135], + [-38.418644, 6.802135], + [-38.418644, 5.356508], + [-45.646778, 5.356508] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 6.802135], + [-45.646778, 8.247762], + [-38.418644, 8.247762], + [-38.418644, 6.802135], + [-45.646778, 6.802135] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 8.247762], + [-45.646778, 9.693389], + [-38.418644, 9.693389], + [-38.418644, 8.247762], + [-45.646778, 8.247762] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 9.693389], + [-45.646778, 11.139016], + [-38.418644, 11.139016], + [-38.418644, 9.693389], + [-45.646778, 9.693389] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 11.139016], + [-45.646778, 12.584642], + [-38.418644, 12.584642], + [-38.418644, 11.139016], + [-45.646778, 11.139016] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 12.584642], + [-45.646778, 14.030269], + [-38.418644, 14.030269], + [-38.418644, 12.584642], + [-45.646778, 12.584642] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 14.030269], + [-45.646778, 15.475896], + [-38.418644, 15.475896], + [-38.418644, 14.030269], + [-45.646778, 14.030269] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 15.475896], + [-45.646778, 16.921523], + [-38.418644, 16.921523], + [-38.418644, 15.475896], + [-45.646778, 15.475896] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 16.921523], + [-45.646778, 18.367149], + [-38.418644, 18.367149], + [-38.418644, 16.921523], + [-45.646778, 16.921523] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 18.367149], + [-45.646778, 19.812776], + [-38.418644, 19.812776], + [-38.418644, 18.367149], + [-45.646778, 18.367149] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 19.812776], + [-45.646778, 21.258403], + [-38.418644, 21.258403], + [-38.418644, 19.812776], + [-45.646778, 19.812776] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 21.258403], + [-45.646778, 22.70403], + [-38.418644, 22.70403], + [-38.418644, 21.258403], + [-45.646778, 21.258403] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 22.70403], + [-45.646778, 24.149656], + [-38.418644, 24.149656], + [-38.418644, 22.70403], + [-45.646778, 22.70403] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 24.149656], + [-45.646778, 25.595283], + [-38.418644, 25.595283], + [-38.418644, 24.149656], + [-45.646778, 24.149656] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 25.595283], + [-45.646778, 27.04091], + [-38.418644, 27.04091], + [-38.418644, 25.595283], + [-45.646778, 25.595283] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 27.04091], + [-45.646778, 28.486537], + [-38.418644, 28.486537], + [-38.418644, 27.04091], + [-45.646778, 27.04091] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 28.486537], + [-45.646778, 29.932163], + [-38.418644, 29.932163], + [-38.418644, 28.486537], + [-45.646778, 28.486537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 29.932163], + [-45.646778, 31.37779], + [-38.418644, 31.37779], + [-38.418644, 29.932163], + [-45.646778, 29.932163] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 31.37779], + [-45.646778, 32.823417], + [-38.418644, 32.823417], + [-38.418644, 31.37779], + [-45.646778, 31.37779] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 32.823417], + [-45.646778, 34.269044], + [-38.418644, 34.269044], + [-38.418644, 32.823417], + [-45.646778, 32.823417] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 34.269044], + [-45.646778, 35.714671], + [-38.418644, 35.714671], + [-38.418644, 34.269044], + [-45.646778, 34.269044] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 35.714671], + [-45.646778, 37.160297], + [-38.418644, 37.160297], + [-38.418644, 35.714671], + [-45.646778, 35.714671] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 37.160297], + [-45.646778, 38.605924], + [-38.418644, 38.605924], + [-38.418644, 37.160297], + [-45.646778, 37.160297] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 38.605924], + [-45.646778, 40.051551], + [-38.418644, 40.051551], + [-38.418644, 38.605924], + [-45.646778, 38.605924] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 40.051551], + [-45.646778, 41.497178], + [-38.418644, 41.497178], + [-38.418644, 40.051551], + [-45.646778, 40.051551] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 41.497178], + [-45.646778, 42.942804], + [-38.418644, 42.942804], + [-38.418644, 41.497178], + [-45.646778, 41.497178] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 42.942804], + [-45.646778, 44.388431], + [-38.418644, 44.388431], + [-38.418644, 42.942804], + [-45.646778, 42.942804] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 44.388431], + [-45.646778, 45.834058], + [-38.418644, 45.834058], + [-38.418644, 44.388431], + [-45.646778, 44.388431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 45.834058], + [-45.646778, 47.279685], + [-38.418644, 47.279685], + [-38.418644, 45.834058], + [-45.646778, 45.834058] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 47.279685], + [-45.646778, 48.725311], + [-38.418644, 48.725311], + [-38.418644, 47.279685], + [-45.646778, 47.279685] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 48.725311], + [-45.646778, 50.170938], + [-38.418644, 50.170938], + [-38.418644, 48.725311], + [-45.646778, 48.725311] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 50.170938], + [-45.646778, 51.616565], + [-38.418644, 51.616565], + [-38.418644, 50.170938], + [-45.646778, 50.170938] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 51.616565], + [-45.646778, 53.062192], + [-38.418644, 53.062192], + [-38.418644, 51.616565], + [-45.646778, 51.616565] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 53.062192], + [-45.646778, 54.507819], + [-38.418644, 54.507819], + [-38.418644, 53.062192], + [-45.646778, 53.062192] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 54.507819], + [-45.646778, 55.953445], + [-38.418644, 55.953445], + [-38.418644, 54.507819], + [-45.646778, 54.507819] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 55.953445], + [-45.646778, 57.399072], + [-38.418644, 57.399072], + [-38.418644, 55.953445], + [-45.646778, 55.953445] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 57.399072], + [-45.646778, 58.844699], + [-38.418644, 58.844699], + [-38.418644, 57.399072], + [-45.646778, 57.399072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 58.844699], + [-45.646778, 60.290326], + [-38.418644, 60.290326], + [-38.418644, 58.844699], + [-45.646778, 58.844699] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 60.290326], + [-45.646778, 61.735952], + [-38.418644, 61.735952], + [-38.418644, 60.290326], + [-45.646778, 60.290326] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 61.735952], + [-45.646778, 63.181579], + [-38.418644, 63.181579], + [-38.418644, 61.735952], + [-45.646778, 61.735952] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 63.181579], + [-45.646778, 64.627206], + [-38.418644, 64.627206], + [-38.418644, 63.181579], + [-45.646778, 63.181579] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 64.627206], + [-45.646778, 66.072833], + [-38.418644, 66.072833], + [-38.418644, 64.627206], + [-45.646778, 64.627206] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 66.072833], + [-45.646778, 67.518459], + [-38.418644, 67.518459], + [-38.418644, 66.072833], + [-45.646778, 66.072833] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 67.518459], + [-45.646778, 68.964086], + [-38.418644, 68.964086], + [-38.418644, 67.518459], + [-45.646778, 67.518459] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 68.964086], + [-45.646778, 70.409713], + [-38.418644, 70.409713], + [-38.418644, 68.964086], + [-45.646778, 68.964086] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 70.409713], + [-45.646778, 71.85534], + [-38.418644, 71.85534], + [-38.418644, 70.409713], + [-45.646778, 70.409713] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 71.85534], + [-45.646778, 73.300967], + [-38.418644, 73.300967], + [-38.418644, 71.85534], + [-45.646778, 71.85534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 73.300967], + [-45.646778, 74.746593], + [-38.418644, 74.746593], + [-38.418644, 73.300967], + [-45.646778, 73.300967] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 74.746593], + [-45.646778, 76.19222], + [-38.418644, 76.19222], + [-38.418644, 74.746593], + [-45.646778, 74.746593] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 76.19222], + [-45.646778, 77.637847], + [-38.418644, 77.637847], + [-38.418644, 76.19222], + [-45.646778, 76.19222] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -79.935471], + [-38.418644, -78.489844], + [-31.19051, -78.489844], + [-31.19051, -79.935471], + [-38.418644, -79.935471] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -78.489844], + [-38.418644, -77.044217], + [-31.19051, -77.044217], + [-31.19051, -78.489844], + [-38.418644, -78.489844] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -77.044217], + [-38.418644, -75.598591], + [-31.19051, -75.598591], + [-31.19051, -77.044217], + [-38.418644, -77.044217] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -75.598591], + [-38.418644, -74.152964], + [-31.19051, -74.152964], + [-31.19051, -75.598591], + [-38.418644, -75.598591] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -74.152964], + [-38.418644, -72.707337], + [-31.19051, -72.707337], + [-31.19051, -74.152964], + [-38.418644, -74.152964] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -72.707337], + [-38.418644, -71.26171], + [-31.19051, -71.26171], + [-31.19051, -72.707337], + [-38.418644, -72.707337] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -71.26171], + [-38.418644, -69.816084], + [-31.19051, -69.816084], + [-31.19051, -71.26171], + [-38.418644, -71.26171] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -69.816084], + [-38.418644, -68.370457], + [-31.19051, -68.370457], + [-31.19051, -69.816084], + [-38.418644, -69.816084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -68.370457], + [-38.418644, -66.92483], + [-31.19051, -66.92483], + [-31.19051, -68.370457], + [-38.418644, -68.370457] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -66.92483], + [-38.418644, -65.479203], + [-31.19051, -65.479203], + [-31.19051, -66.92483], + [-38.418644, -66.92483] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -65.479203], + [-38.418644, -64.033576], + [-31.19051, -64.033576], + [-31.19051, -65.479203], + [-38.418644, -65.479203] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -64.033576], + [-38.418644, -62.58795], + [-31.19051, -62.58795], + [-31.19051, -64.033576], + [-38.418644, -64.033576] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -62.58795], + [-38.418644, -61.142323], + [-31.19051, -61.142323], + [-31.19051, -62.58795], + [-38.418644, -62.58795] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -61.142323], + [-38.418644, -59.696696], + [-31.19051, -59.696696], + [-31.19051, -61.142323], + [-38.418644, -61.142323] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -59.696696], + [-38.418644, -58.251069], + [-31.19051, -58.251069], + [-31.19051, -59.696696], + [-38.418644, -59.696696] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -58.251069], + [-38.418644, -56.805443], + [-31.19051, -56.805443], + [-31.19051, -58.251069], + [-38.418644, -58.251069] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -56.805443], + [-38.418644, -55.359816], + [-31.19051, -55.359816], + [-31.19051, -56.805443], + [-38.418644, -56.805443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -55.359816], + [-38.418644, -53.914189], + [-31.19051, -53.914189], + [-31.19051, -55.359816], + [-38.418644, -55.359816] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -53.914189], + [-38.418644, -52.468562], + [-31.19051, -52.468562], + [-31.19051, -53.914189], + [-38.418644, -53.914189] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -52.468562], + [-38.418644, -51.022936], + [-31.19051, -51.022936], + [-31.19051, -52.468562], + [-38.418644, -52.468562] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -51.022936], + [-38.418644, -49.577309], + [-31.19051, -49.577309], + [-31.19051, -51.022936], + [-38.418644, -51.022936] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -49.577309], + [-38.418644, -48.131682], + [-31.19051, -48.131682], + [-31.19051, -49.577309], + [-38.418644, -49.577309] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -48.131682], + [-38.418644, -46.686055], + [-31.19051, -46.686055], + [-31.19051, -48.131682], + [-38.418644, -48.131682] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -46.686055], + [-38.418644, -45.240428], + [-31.19051, -45.240428], + [-31.19051, -46.686055], + [-38.418644, -46.686055] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -45.240428], + [-38.418644, -43.794802], + [-31.19051, -43.794802], + [-31.19051, -45.240428], + [-38.418644, -45.240428] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -43.794802], + [-38.418644, -42.349175], + [-31.19051, -42.349175], + [-31.19051, -43.794802], + [-38.418644, -43.794802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -42.349175], + [-38.418644, -40.903548], + [-31.19051, -40.903548], + [-31.19051, -42.349175], + [-38.418644, -42.349175] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -40.903548], + [-38.418644, -39.457921], + [-31.19051, -39.457921], + [-31.19051, -40.903548], + [-38.418644, -40.903548] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -39.457921], + [-38.418644, -38.012295], + [-31.19051, -38.012295], + [-31.19051, -39.457921], + [-38.418644, -39.457921] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -38.012295], + [-38.418644, -36.566668], + [-31.19051, -36.566668], + [-31.19051, -38.012295], + [-38.418644, -38.012295] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -36.566668], + [-38.418644, -35.121041], + [-31.19051, -35.121041], + [-31.19051, -36.566668], + [-38.418644, -36.566668] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -35.121041], + [-38.418644, -33.675414], + [-31.19051, -33.675414], + [-31.19051, -35.121041], + [-38.418644, -35.121041] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -33.675414], + [-38.418644, -32.229788], + [-31.19051, -32.229788], + [-31.19051, -33.675414], + [-38.418644, -33.675414] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -32.229788], + [-38.418644, -30.784161], + [-31.19051, -30.784161], + [-31.19051, -32.229788], + [-38.418644, -32.229788] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -30.784161], + [-38.418644, -29.338534], + [-31.19051, -29.338534], + [-31.19051, -30.784161], + [-38.418644, -30.784161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -29.338534], + [-38.418644, -27.892907], + [-31.19051, -27.892907], + [-31.19051, -29.338534], + [-38.418644, -29.338534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -27.892907], + [-38.418644, -26.44728], + [-31.19051, -26.44728], + [-31.19051, -27.892907], + [-38.418644, -27.892907] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -26.44728], + [-38.418644, -25.001654], + [-31.19051, -25.001654], + [-31.19051, -26.44728], + [-38.418644, -26.44728] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -25.001654], + [-38.418644, -23.556027], + [-31.19051, -23.556027], + [-31.19051, -25.001654], + [-38.418644, -25.001654] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -23.556027], + [-38.418644, -22.1104], + [-31.19051, -22.1104], + [-31.19051, -23.556027], + [-38.418644, -23.556027] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -22.1104], + [-38.418644, -20.664773], + [-31.19051, -20.664773], + [-31.19051, -22.1104], + [-38.418644, -22.1104] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -20.664773], + [-38.418644, -19.219147], + [-31.19051, -19.219147], + [-31.19051, -20.664773], + [-38.418644, -20.664773] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -19.219147], + [-38.418644, -17.77352], + [-31.19051, -17.77352], + [-31.19051, -19.219147], + [-38.418644, -19.219147] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -17.77352], + [-38.418644, -16.327893], + [-31.19051, -16.327893], + [-31.19051, -17.77352], + [-38.418644, -17.77352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -16.327893], + [-38.418644, -14.882266], + [-31.19051, -14.882266], + [-31.19051, -16.327893], + [-38.418644, -16.327893] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -14.882266], + [-38.418644, -13.43664], + [-31.19051, -13.43664], + [-31.19051, -14.882266], + [-38.418644, -14.882266] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -13.43664], + [-38.418644, -11.991013], + [-31.19051, -11.991013], + [-31.19051, -13.43664], + [-38.418644, -13.43664] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -11.991013], + [-38.418644, -10.545386], + [-31.19051, -10.545386], + [-31.19051, -11.991013], + [-38.418644, -11.991013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -10.545386], + [-38.418644, -9.099759], + [-31.19051, -9.099759], + [-31.19051, -10.545386], + [-38.418644, -10.545386] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -9.099759], + [-38.418644, -7.654132], + [-31.19051, -7.654132], + [-31.19051, -9.099759], + [-38.418644, -9.099759] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -7.654132], + [-38.418644, -6.208506], + [-31.19051, -6.208506], + [-31.19051, -7.654132], + [-38.418644, -7.654132] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -6.208506], + [-38.418644, -4.762879], + [-31.19051, -4.762879], + [-31.19051, -6.208506], + [-38.418644, -6.208506] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -4.762879], + [-38.418644, -3.317252], + [-31.19051, -3.317252], + [-31.19051, -4.762879], + [-38.418644, -4.762879] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -3.317252], + [-38.418644, -1.871625], + [-31.19051, -1.871625], + [-31.19051, -3.317252], + [-38.418644, -3.317252] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -1.871625], + [-38.418644, -0.425999], + [-31.19051, -0.425999], + [-31.19051, -1.871625], + [-38.418644, -1.871625] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -0.425999], + [-38.418644, 1.019628], + [-31.19051, 1.019628], + [-31.19051, -0.425999], + [-38.418644, -0.425999] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 1.019628], + [-38.418644, 2.465255], + [-31.19051, 2.465255], + [-31.19051, 1.019628], + [-38.418644, 1.019628] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 2.465255], + [-38.418644, 3.910882], + [-31.19051, 3.910882], + [-31.19051, 2.465255], + [-38.418644, 2.465255] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 3.910882], + [-38.418644, 5.356508], + [-31.19051, 5.356508], + [-31.19051, 3.910882], + [-38.418644, 3.910882] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 5.356508], + [-38.418644, 6.802135], + [-31.19051, 6.802135], + [-31.19051, 5.356508], + [-38.418644, 5.356508] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 6.802135], + [-38.418644, 8.247762], + [-31.19051, 8.247762], + [-31.19051, 6.802135], + [-38.418644, 6.802135] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 8.247762], + [-38.418644, 9.693389], + [-31.19051, 9.693389], + [-31.19051, 8.247762], + [-38.418644, 8.247762] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 9.693389], + [-38.418644, 11.139016], + [-31.19051, 11.139016], + [-31.19051, 9.693389], + [-38.418644, 9.693389] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 11.139016], + [-38.418644, 12.584642], + [-31.19051, 12.584642], + [-31.19051, 11.139016], + [-38.418644, 11.139016] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 12.584642], + [-38.418644, 14.030269], + [-31.19051, 14.030269], + [-31.19051, 12.584642], + [-38.418644, 12.584642] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 14.030269], + [-38.418644, 15.475896], + [-31.19051, 15.475896], + [-31.19051, 14.030269], + [-38.418644, 14.030269] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 15.475896], + [-38.418644, 16.921523], + [-31.19051, 16.921523], + [-31.19051, 15.475896], + [-38.418644, 15.475896] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 16.921523], + [-38.418644, 18.367149], + [-31.19051, 18.367149], + [-31.19051, 16.921523], + [-38.418644, 16.921523] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 18.367149], + [-38.418644, 19.812776], + [-31.19051, 19.812776], + [-31.19051, 18.367149], + [-38.418644, 18.367149] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 19.812776], + [-38.418644, 21.258403], + [-31.19051, 21.258403], + [-31.19051, 19.812776], + [-38.418644, 19.812776] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 21.258403], + [-38.418644, 22.70403], + [-31.19051, 22.70403], + [-31.19051, 21.258403], + [-38.418644, 21.258403] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 22.70403], + [-38.418644, 24.149656], + [-31.19051, 24.149656], + [-31.19051, 22.70403], + [-38.418644, 22.70403] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 24.149656], + [-38.418644, 25.595283], + [-31.19051, 25.595283], + [-31.19051, 24.149656], + [-38.418644, 24.149656] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 25.595283], + [-38.418644, 27.04091], + [-31.19051, 27.04091], + [-31.19051, 25.595283], + [-38.418644, 25.595283] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 27.04091], + [-38.418644, 28.486537], + [-31.19051, 28.486537], + [-31.19051, 27.04091], + [-38.418644, 27.04091] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 28.486537], + [-38.418644, 29.932163], + [-31.19051, 29.932163], + [-31.19051, 28.486537], + [-38.418644, 28.486537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 29.932163], + [-38.418644, 31.37779], + [-31.19051, 31.37779], + [-31.19051, 29.932163], + [-38.418644, 29.932163] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 31.37779], + [-38.418644, 32.823417], + [-31.19051, 32.823417], + [-31.19051, 31.37779], + [-38.418644, 31.37779] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 32.823417], + [-38.418644, 34.269044], + [-31.19051, 34.269044], + [-31.19051, 32.823417], + [-38.418644, 32.823417] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 34.269044], + [-38.418644, 35.714671], + [-31.19051, 35.714671], + [-31.19051, 34.269044], + [-38.418644, 34.269044] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 35.714671], + [-38.418644, 37.160297], + [-31.19051, 37.160297], + [-31.19051, 35.714671], + [-38.418644, 35.714671] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 37.160297], + [-38.418644, 38.605924], + [-31.19051, 38.605924], + [-31.19051, 37.160297], + [-38.418644, 37.160297] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 38.605924], + [-38.418644, 40.051551], + [-31.19051, 40.051551], + [-31.19051, 38.605924], + [-38.418644, 38.605924] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 40.051551], + [-38.418644, 41.497178], + [-31.19051, 41.497178], + [-31.19051, 40.051551], + [-38.418644, 40.051551] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 41.497178], + [-38.418644, 42.942804], + [-31.19051, 42.942804], + [-31.19051, 41.497178], + [-38.418644, 41.497178] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 42.942804], + [-38.418644, 44.388431], + [-31.19051, 44.388431], + [-31.19051, 42.942804], + [-38.418644, 42.942804] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 44.388431], + [-38.418644, 45.834058], + [-31.19051, 45.834058], + [-31.19051, 44.388431], + [-38.418644, 44.388431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 45.834058], + [-38.418644, 47.279685], + [-31.19051, 47.279685], + [-31.19051, 45.834058], + [-38.418644, 45.834058] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 47.279685], + [-38.418644, 48.725311], + [-31.19051, 48.725311], + [-31.19051, 47.279685], + [-38.418644, 47.279685] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 48.725311], + [-38.418644, 50.170938], + [-31.19051, 50.170938], + [-31.19051, 48.725311], + [-38.418644, 48.725311] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 50.170938], + [-38.418644, 51.616565], + [-31.19051, 51.616565], + [-31.19051, 50.170938], + [-38.418644, 50.170938] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 51.616565], + [-38.418644, 53.062192], + [-31.19051, 53.062192], + [-31.19051, 51.616565], + [-38.418644, 51.616565] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 53.062192], + [-38.418644, 54.507819], + [-31.19051, 54.507819], + [-31.19051, 53.062192], + [-38.418644, 53.062192] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 54.507819], + [-38.418644, 55.953445], + [-31.19051, 55.953445], + [-31.19051, 54.507819], + [-38.418644, 54.507819] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 55.953445], + [-38.418644, 57.399072], + [-31.19051, 57.399072], + [-31.19051, 55.953445], + [-38.418644, 55.953445] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 57.399072], + [-38.418644, 58.844699], + [-31.19051, 58.844699], + [-31.19051, 57.399072], + [-38.418644, 57.399072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 58.844699], + [-38.418644, 60.290326], + [-31.19051, 60.290326], + [-31.19051, 58.844699], + [-38.418644, 58.844699] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 60.290326], + [-38.418644, 61.735952], + [-31.19051, 61.735952], + [-31.19051, 60.290326], + [-38.418644, 60.290326] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 61.735952], + [-38.418644, 63.181579], + [-31.19051, 63.181579], + [-31.19051, 61.735952], + [-38.418644, 61.735952] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 63.181579], + [-38.418644, 64.627206], + [-31.19051, 64.627206], + [-31.19051, 63.181579], + [-38.418644, 63.181579] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 64.627206], + [-38.418644, 66.072833], + [-31.19051, 66.072833], + [-31.19051, 64.627206], + [-38.418644, 64.627206] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 66.072833], + [-38.418644, 67.518459], + [-31.19051, 67.518459], + [-31.19051, 66.072833], + [-38.418644, 66.072833] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 67.518459], + [-38.418644, 68.964086], + [-31.19051, 68.964086], + [-31.19051, 67.518459], + [-38.418644, 67.518459] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 68.964086], + [-38.418644, 70.409713], + [-31.19051, 70.409713], + [-31.19051, 68.964086], + [-38.418644, 68.964086] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 70.409713], + [-38.418644, 71.85534], + [-31.19051, 71.85534], + [-31.19051, 70.409713], + [-38.418644, 70.409713] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 71.85534], + [-38.418644, 73.300967], + [-31.19051, 73.300967], + [-31.19051, 71.85534], + [-38.418644, 71.85534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 73.300967], + [-38.418644, 74.746593], + [-31.19051, 74.746593], + [-31.19051, 73.300967], + [-38.418644, 73.300967] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 74.746593], + [-38.418644, 76.19222], + [-31.19051, 76.19222], + [-31.19051, 74.746593], + [-38.418644, 74.746593] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 76.19222], + [-38.418644, 77.637847], + [-31.19051, 77.637847], + [-31.19051, 76.19222], + [-38.418644, 76.19222] ] ] } diff --git a/packages/turf-rectangle-grid/test/out/fiji-10x5-miles.geojson b/packages/turf-rectangle-grid/test/out/fiji-10x5-miles.geojson index 383ca2e066..e5494deaa1 100644 --- a/packages/turf-rectangle-grid/test/out/fiji-10x5-miles.geojson +++ b/packages/turf-rectangle-grid/test/out/fiji-10x5-miles.geojson @@ -8,11 +8,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.340249, -17.150912], - [-180.340249, -17.078546], - [-180.188768, -17.078546], - [-180.188768, -17.150912], - [-180.340249, -17.150912] + [-180.322955, -17.150532], + [-180.322955, -17.078251], + [-180.178392, -17.078251], + [-180.178392, -17.150532], + [-180.322955, -17.150532] ] ] } @@ -24,11 +24,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.340249, -17.078546], - [-180.340249, -17.00618], - [-180.188768, -17.00618], - [-180.188768, -17.078546], - [-180.340249, -17.078546] + [-180.322955, -17.078251], + [-180.322955, -17.005969], + [-180.178392, -17.005969], + [-180.178392, -17.078251], + [-180.322955, -17.078251] ] ] } @@ -40,11 +40,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.340249, -17.00618], - [-180.340249, -16.933815], - [-180.188768, -16.933815], - [-180.188768, -17.00618], - [-180.340249, -17.00618] + [-180.322955, -17.005969], + [-180.322955, -16.933688], + [-180.178392, -16.933688], + [-180.178392, -17.005969], + [-180.322955, -17.005969] ] ] } @@ -56,11 +56,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.340249, -16.933815], - [-180.340249, -16.861449], - [-180.188768, -16.861449], - [-180.188768, -16.933815], - [-180.340249, -16.933815] + [-180.322955, -16.933688], + [-180.322955, -16.861407], + [-180.178392, -16.861407], + [-180.178392, -16.933688], + [-180.322955, -16.933688] ] ] } @@ -72,11 +72,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.340249, -16.861449], - [-180.340249, -16.789083], - [-180.188768, -16.789083], - [-180.188768, -16.861449], - [-180.340249, -16.861449] + [-180.322955, -16.861407], + [-180.322955, -16.789125], + [-180.178392, -16.789125], + [-180.178392, -16.861407], + [-180.322955, -16.861407] ] ] } @@ -88,11 +88,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.340249, -16.789083], - [-180.340249, -16.716717], - [-180.188768, -16.716717], - [-180.188768, -16.789083], - [-180.340249, -16.789083] + [-180.322955, -16.789125], + [-180.322955, -16.716844], + [-180.178392, -16.716844], + [-180.178392, -16.789125], + [-180.322955, -16.789125] ] ] } @@ -104,11 +104,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.340249, -16.716717], - [-180.340249, -16.644352], - [-180.188768, -16.644352], - [-180.188768, -16.716717], - [-180.340249, -16.716717] + [-180.322955, -16.716844], + [-180.322955, -16.644563], + [-180.178392, -16.644563], + [-180.178392, -16.716844], + [-180.322955, -16.716844] ] ] } @@ -120,11 +120,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.340249, -16.644352], - [-180.340249, -16.571986], - [-180.188768, -16.571986], - [-180.188768, -16.644352], - [-180.340249, -16.644352] + [-180.322955, -16.644563], + [-180.322955, -16.572281], + [-180.178392, -16.572281], + [-180.178392, -16.644563], + [-180.322955, -16.644563] ] ] } @@ -136,11 +136,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.340249, -16.571986], - [-180.340249, -16.49962], - [-180.188768, -16.49962], - [-180.188768, -16.571986], - [-180.340249, -16.571986] + [-180.322955, -16.572281], + [-180.322955, -16.5], + [-180.178392, -16.5], + [-180.178392, -16.572281], + [-180.322955, -16.572281] ] ] } @@ -152,11 +152,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.188768, -17.150912], - [-180.188768, -17.078546], - [-180.037288, -17.078546], - [-180.037288, -17.150912], - [-180.188768, -17.150912] + [-180.178392, -17.150532], + [-180.178392, -17.078251], + [-180.033829, -17.078251], + [-180.033829, -17.150532], + [-180.178392, -17.150532] ] ] } @@ -168,11 +168,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.188768, -17.078546], - [-180.188768, -17.00618], - [-180.037288, -17.00618], - [-180.037288, -17.078546], - [-180.188768, -17.078546] + [-180.178392, -17.078251], + [-180.178392, -17.005969], + [-180.033829, -17.005969], + [-180.033829, -17.078251], + [-180.178392, -17.078251] ] ] } @@ -184,11 +184,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.188768, -17.00618], - [-180.188768, -16.933815], - [-180.037288, -16.933815], - [-180.037288, -17.00618], - [-180.188768, -17.00618] + [-180.178392, -17.005969], + [-180.178392, -16.933688], + [-180.033829, -16.933688], + [-180.033829, -17.005969], + [-180.178392, -17.005969] ] ] } @@ -200,11 +200,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.188768, -16.933815], - [-180.188768, -16.861449], - [-180.037288, -16.861449], - [-180.037288, -16.933815], - [-180.188768, -16.933815] + [-180.178392, -16.933688], + [-180.178392, -16.861407], + [-180.033829, -16.861407], + [-180.033829, -16.933688], + [-180.178392, -16.933688] ] ] } @@ -216,11 +216,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.188768, -16.861449], - [-180.188768, -16.789083], - [-180.037288, -16.789083], - [-180.037288, -16.861449], - [-180.188768, -16.861449] + [-180.178392, -16.861407], + [-180.178392, -16.789125], + [-180.033829, -16.789125], + [-180.033829, -16.861407], + [-180.178392, -16.861407] ] ] } @@ -232,11 +232,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.188768, -16.789083], - [-180.188768, -16.716717], - [-180.037288, -16.716717], - [-180.037288, -16.789083], - [-180.188768, -16.789083] + [-180.178392, -16.789125], + [-180.178392, -16.716844], + [-180.033829, -16.716844], + [-180.033829, -16.789125], + [-180.178392, -16.789125] ] ] } @@ -248,11 +248,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.188768, -16.716717], - [-180.188768, -16.644352], - [-180.037288, -16.644352], - [-180.037288, -16.716717], - [-180.188768, -16.716717] + [-180.178392, -16.716844], + [-180.178392, -16.644563], + [-180.033829, -16.644563], + [-180.033829, -16.716844], + [-180.178392, -16.716844] ] ] } @@ -264,11 +264,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.188768, -16.644352], - [-180.188768, -16.571986], - [-180.037288, -16.571986], - [-180.037288, -16.644352], - [-180.188768, -16.644352] + [-180.178392, -16.644563], + [-180.178392, -16.572281], + [-180.033829, -16.572281], + [-180.033829, -16.644563], + [-180.178392, -16.644563] ] ] } @@ -280,11 +280,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.188768, -16.571986], - [-180.188768, -16.49962], - [-180.037288, -16.49962], - [-180.037288, -16.571986], - [-180.188768, -16.571986] + [-180.178392, -16.572281], + [-180.178392, -16.5], + [-180.033829, -16.5], + [-180.033829, -16.572281], + [-180.178392, -16.572281] ] ] } @@ -296,11 +296,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.037288, -17.150912], - [-180.037288, -17.078546], - [-179.885808, -17.078546], - [-179.885808, -17.150912], - [-180.037288, -17.150912] + [-180.033829, -17.150532], + [-180.033829, -17.078251], + [-179.889267, -17.078251], + [-179.889267, -17.150532], + [-180.033829, -17.150532] ] ] } @@ -312,11 +312,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.037288, -17.078546], - [-180.037288, -17.00618], - [-179.885808, -17.00618], - [-179.885808, -17.078546], - [-180.037288, -17.078546] + [-180.033829, -17.078251], + [-180.033829, -17.005969], + [-179.889267, -17.005969], + [-179.889267, -17.078251], + [-180.033829, -17.078251] ] ] } @@ -328,11 +328,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.037288, -17.00618], - [-180.037288, -16.933815], - [-179.885808, -16.933815], - [-179.885808, -17.00618], - [-180.037288, -17.00618] + [-180.033829, -17.005969], + [-180.033829, -16.933688], + [-179.889267, -16.933688], + [-179.889267, -17.005969], + [-180.033829, -17.005969] ] ] } @@ -344,11 +344,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.037288, -16.933815], - [-180.037288, -16.861449], - [-179.885808, -16.861449], - [-179.885808, -16.933815], - [-180.037288, -16.933815] + [-180.033829, -16.933688], + [-180.033829, -16.861407], + [-179.889267, -16.861407], + [-179.889267, -16.933688], + [-180.033829, -16.933688] ] ] } @@ -360,11 +360,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.037288, -16.861449], - [-180.037288, -16.789083], - [-179.885808, -16.789083], - [-179.885808, -16.861449], - [-180.037288, -16.861449] + [-180.033829, -16.861407], + [-180.033829, -16.789125], + [-179.889267, -16.789125], + [-179.889267, -16.861407], + [-180.033829, -16.861407] ] ] } @@ -376,11 +376,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.037288, -16.789083], - [-180.037288, -16.716717], - [-179.885808, -16.716717], - [-179.885808, -16.789083], - [-180.037288, -16.789083] + [-180.033829, -16.789125], + [-180.033829, -16.716844], + [-179.889267, -16.716844], + [-179.889267, -16.789125], + [-180.033829, -16.789125] ] ] } @@ -392,11 +392,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.037288, -16.716717], - [-180.037288, -16.644352], - [-179.885808, -16.644352], - [-179.885808, -16.716717], - [-180.037288, -16.716717] + [-180.033829, -16.716844], + [-180.033829, -16.644563], + [-179.889267, -16.644563], + [-179.889267, -16.716844], + [-180.033829, -16.716844] ] ] } @@ -408,11 +408,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.037288, -16.644352], - [-180.037288, -16.571986], - [-179.885808, -16.571986], - [-179.885808, -16.644352], - [-180.037288, -16.644352] + [-180.033829, -16.644563], + [-180.033829, -16.572281], + [-179.889267, -16.572281], + [-179.889267, -16.644563], + [-180.033829, -16.644563] ] ] } @@ -424,11 +424,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.037288, -16.571986], - [-180.037288, -16.49962], - [-179.885808, -16.49962], - [-179.885808, -16.571986], - [-180.037288, -16.571986] + [-180.033829, -16.572281], + [-180.033829, -16.5], + [-179.889267, -16.5], + [-179.889267, -16.572281], + [-180.033829, -16.572281] ] ] } @@ -440,11 +440,11 @@ "type": "Polygon", "coordinates": [ [ - [-179.885808, -17.150912], - [-179.885808, -17.078546], - [-179.734327, -17.078546], - [-179.734327, -17.150912], - [-179.885808, -17.150912] + [-179.889267, -17.150532], + [-179.889267, -17.078251], + [-179.744704, -17.078251], + [-179.744704, -17.150532], + [-179.889267, -17.150532] ] ] } @@ -456,11 +456,11 @@ "type": "Polygon", "coordinates": [ [ - [-179.885808, -17.078546], - [-179.885808, -17.00618], - [-179.734327, -17.00618], - [-179.734327, -17.078546], - [-179.885808, -17.078546] + [-179.889267, -17.078251], + [-179.889267, -17.005969], + [-179.744704, -17.005969], + [-179.744704, -17.078251], + [-179.889267, -17.078251] ] ] } @@ -472,11 +472,11 @@ "type": "Polygon", "coordinates": [ [ - [-179.885808, -17.00618], - [-179.885808, -16.933815], - [-179.734327, -16.933815], - [-179.734327, -17.00618], - [-179.885808, -17.00618] + [-179.889267, -17.005969], + [-179.889267, -16.933688], + [-179.744704, -16.933688], + [-179.744704, -17.005969], + [-179.889267, -17.005969] ] ] } @@ -488,11 +488,11 @@ "type": "Polygon", "coordinates": [ [ - [-179.885808, -16.933815], - [-179.885808, -16.861449], - [-179.734327, -16.861449], - [-179.734327, -16.933815], - [-179.885808, -16.933815] + [-179.889267, -16.933688], + [-179.889267, -16.861407], + [-179.744704, -16.861407], + [-179.744704, -16.933688], + [-179.889267, -16.933688] ] ] } @@ -504,11 +504,11 @@ "type": "Polygon", "coordinates": [ [ - [-179.885808, -16.861449], - [-179.885808, -16.789083], - [-179.734327, -16.789083], - [-179.734327, -16.861449], - [-179.885808, -16.861449] + [-179.889267, -16.861407], + [-179.889267, -16.789125], + [-179.744704, -16.789125], + [-179.744704, -16.861407], + [-179.889267, -16.861407] ] ] } @@ -520,11 +520,11 @@ "type": "Polygon", "coordinates": [ [ - [-179.885808, -16.789083], - [-179.885808, -16.716717], - [-179.734327, -16.716717], - [-179.734327, -16.789083], - [-179.885808, -16.789083] + [-179.889267, -16.789125], + [-179.889267, -16.716844], + [-179.744704, -16.716844], + [-179.744704, -16.789125], + [-179.889267, -16.789125] ] ] } @@ -536,11 +536,11 @@ "type": "Polygon", "coordinates": [ [ - [-179.885808, -16.716717], - [-179.885808, -16.644352], - [-179.734327, -16.644352], - [-179.734327, -16.716717], - [-179.885808, -16.716717] + [-179.889267, -16.716844], + [-179.889267, -16.644563], + [-179.744704, -16.644563], + [-179.744704, -16.716844], + [-179.889267, -16.716844] ] ] } @@ -552,11 +552,11 @@ "type": "Polygon", "coordinates": [ [ - [-179.885808, -16.644352], - [-179.885808, -16.571986], - [-179.734327, -16.571986], - [-179.734327, -16.644352], - [-179.885808, -16.644352] + [-179.889267, -16.644563], + [-179.889267, -16.572281], + [-179.744704, -16.572281], + [-179.744704, -16.644563], + [-179.889267, -16.644563] ] ] } @@ -568,11 +568,11 @@ "type": "Polygon", "coordinates": [ [ - [-179.885808, -16.571986], - [-179.885808, -16.49962], - [-179.734327, -16.49962], - [-179.734327, -16.571986], - [-179.885808, -16.571986] + [-179.889267, -16.572281], + [-179.889267, -16.5], + [-179.744704, -16.5], + [-179.744704, -16.572281], + [-179.889267, -16.572281] ] ] } @@ -584,11 +584,11 @@ "type": "Polygon", "coordinates": [ [ - [-179.734327, -17.150912], - [-179.734327, -17.078546], - [-179.582847, -17.078546], - [-179.582847, -17.150912], - [-179.734327, -17.150912] + [-179.744704, -17.150532], + [-179.744704, -17.078251], + [-179.600141, -17.078251], + [-179.600141, -17.150532], + [-179.744704, -17.150532] ] ] } @@ -600,11 +600,11 @@ "type": "Polygon", "coordinates": [ [ - [-179.734327, -17.078546], - [-179.734327, -17.00618], - [-179.582847, -17.00618], - [-179.582847, -17.078546], - [-179.734327, -17.078546] + [-179.744704, -17.078251], + [-179.744704, -17.005969], + [-179.600141, -17.005969], + [-179.600141, -17.078251], + [-179.744704, -17.078251] ] ] } @@ -616,11 +616,11 @@ "type": "Polygon", "coordinates": [ [ - [-179.734327, -17.00618], - [-179.734327, -16.933815], - [-179.582847, -16.933815], - [-179.582847, -17.00618], - [-179.734327, -17.00618] + [-179.744704, -17.005969], + [-179.744704, -16.933688], + [-179.600141, -16.933688], + [-179.600141, -17.005969], + [-179.744704, -17.005969] ] ] } @@ -632,11 +632,11 @@ "type": "Polygon", "coordinates": [ [ - [-179.734327, -16.933815], - [-179.734327, -16.861449], - [-179.582847, -16.861449], - [-179.582847, -16.933815], - [-179.734327, -16.933815] + [-179.744704, -16.933688], + [-179.744704, -16.861407], + [-179.600141, -16.861407], + [-179.600141, -16.933688], + [-179.744704, -16.933688] ] ] } @@ -648,11 +648,11 @@ "type": "Polygon", "coordinates": [ [ - [-179.734327, -16.861449], - [-179.734327, -16.789083], - [-179.582847, -16.789083], - [-179.582847, -16.861449], - [-179.734327, -16.861449] + [-179.744704, -16.861407], + [-179.744704, -16.789125], + [-179.600141, -16.789125], + [-179.600141, -16.861407], + [-179.744704, -16.861407] ] ] } @@ -664,11 +664,11 @@ "type": "Polygon", "coordinates": [ [ - [-179.734327, -16.789083], - [-179.734327, -16.716717], - [-179.582847, -16.716717], - [-179.582847, -16.789083], - [-179.734327, -16.789083] + [-179.744704, -16.789125], + [-179.744704, -16.716844], + [-179.600141, -16.716844], + [-179.600141, -16.789125], + [-179.744704, -16.789125] ] ] } @@ -680,11 +680,11 @@ "type": "Polygon", "coordinates": [ [ - [-179.734327, -16.716717], - [-179.734327, -16.644352], - [-179.582847, -16.644352], - [-179.582847, -16.716717], - [-179.734327, -16.716717] + [-179.744704, -16.716844], + [-179.744704, -16.644563], + [-179.600141, -16.644563], + [-179.600141, -16.716844], + [-179.744704, -16.716844] ] ] } @@ -696,11 +696,11 @@ "type": "Polygon", "coordinates": [ [ - [-179.734327, -16.644352], - [-179.734327, -16.571986], - [-179.582847, -16.571986], - [-179.582847, -16.644352], - [-179.734327, -16.644352] + [-179.744704, -16.644563], + [-179.744704, -16.572281], + [-179.600141, -16.572281], + [-179.600141, -16.644563], + [-179.744704, -16.644563] ] ] } @@ -712,11 +712,11 @@ "type": "Polygon", "coordinates": [ [ - [-179.734327, -16.571986], - [-179.734327, -16.49962], - [-179.582847, -16.49962], - [-179.582847, -16.571986], - [-179.734327, -16.571986] + [-179.744704, -16.572281], + [-179.744704, -16.5], + [-179.600141, -16.5], + [-179.600141, -16.572281], + [-179.744704, -16.572281] ] ] } diff --git a/packages/turf-rectangle-grid/test/out/global-grid.geojson b/packages/turf-rectangle-grid/test/out/global-grid.geojson new file mode 100644 index 0000000000..7261620728 --- /dev/null +++ b/packages/turf-rectangle-grid/test/out/global-grid.geojson @@ -0,0 +1,10394 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-180, -90], + [-180, -80], + [-170, -80], + [-170, -90], + [-180, -90] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-180, -80], + [-180, -70], + [-170, -70], + [-170, -80], + [-180, -80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-180, -70], + [-180, -60], + [-170, -60], + [-170, -70], + [-180, -70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-180, -60], + [-180, -50], + [-170, -50], + [-170, -60], + [-180, -60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-180, -50], + [-180, -40], + [-170, -40], + [-170, -50], + [-180, -50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-180, -40], + [-180, -30], + [-170, -30], + [-170, -40], + [-180, -40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-180, -30], + [-180, -20], + [-170, -20], + [-170, -30], + [-180, -30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-180, -20], + [-180, -10], + [-170, -10], + [-170, -20], + [-180, -20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-180, -10], + [-180, 0], + [-170, 0], + [-170, -10], + [-180, -10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-180, 0], + [-180, 10], + [-170, 10], + [-170, 0], + [-180, 0] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-180, 10], + [-180, 20], + [-170, 20], + [-170, 10], + [-180, 10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-180, 20], + [-180, 30], + [-170, 30], + [-170, 20], + [-180, 20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-180, 30], + [-180, 40], + [-170, 40], + [-170, 30], + [-180, 30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-180, 40], + [-180, 50], + [-170, 50], + [-170, 40], + [-180, 40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-180, 50], + [-180, 60], + [-170, 60], + [-170, 50], + [-180, 50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-180, 60], + [-180, 70], + [-170, 70], + [-170, 60], + [-180, 60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-180, 70], + [-180, 80], + [-170, 80], + [-170, 70], + [-180, 70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-180, 80], + [-180, 90], + [-170, 90], + [-170, 80], + [-180, 80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-170, -90], + [-170, -80], + [-160, -80], + [-160, -90], + [-170, -90] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-170, -80], + [-170, -70], + [-160, -70], + [-160, -80], + [-170, -80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-170, -70], + [-170, -60], + [-160, -60], + [-160, -70], + [-170, -70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-170, -60], + [-170, -50], + [-160, -50], + [-160, -60], + [-170, -60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-170, -50], + [-170, -40], + [-160, -40], + [-160, -50], + [-170, -50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-170, -40], + [-170, -30], + [-160, -30], + [-160, -40], + [-170, -40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-170, -30], + [-170, -20], + [-160, -20], + [-160, -30], + [-170, -30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-170, -20], + [-170, -10], + [-160, -10], + [-160, -20], + [-170, -20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-170, -10], + [-170, 0], + [-160, 0], + [-160, -10], + [-170, -10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-170, 0], + [-170, 10], + [-160, 10], + [-160, 0], + [-170, 0] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-170, 10], + [-170, 20], + [-160, 20], + [-160, 10], + [-170, 10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-170, 20], + [-170, 30], + [-160, 30], + [-160, 20], + [-170, 20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-170, 30], + [-170, 40], + [-160, 40], + [-160, 30], + [-170, 30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-170, 40], + [-170, 50], + [-160, 50], + [-160, 40], + [-170, 40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-170, 50], + [-170, 60], + [-160, 60], + [-160, 50], + [-170, 50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-170, 60], + [-170, 70], + [-160, 70], + [-160, 60], + [-170, 60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-170, 70], + [-170, 80], + [-160, 80], + [-160, 70], + [-170, 70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-170, 80], + [-170, 90], + [-160, 90], + [-160, 80], + [-170, 80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-160, -90], + [-160, -80], + [-150, -80], + [-150, -90], + [-160, -90] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-160, -80], + [-160, -70], + [-150, -70], + [-150, -80], + [-160, -80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-160, -70], + [-160, -60], + [-150, -60], + [-150, -70], + [-160, -70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-160, -60], + [-160, -50], + [-150, -50], + [-150, -60], + [-160, -60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-160, -50], + [-160, -40], + [-150, -40], + [-150, -50], + [-160, -50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-160, -40], + [-160, -30], + [-150, -30], + [-150, -40], + [-160, -40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-160, -30], + [-160, -20], + [-150, -20], + [-150, -30], + [-160, -30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-160, -20], + [-160, -10], + [-150, -10], + [-150, -20], + [-160, -20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-160, -10], + [-160, 0], + [-150, 0], + [-150, -10], + [-160, -10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-160, 0], + [-160, 10], + [-150, 10], + [-150, 0], + [-160, 0] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-160, 10], + [-160, 20], + [-150, 20], + [-150, 10], + [-160, 10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-160, 20], + [-160, 30], + [-150, 30], + [-150, 20], + [-160, 20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-160, 30], + [-160, 40], + [-150, 40], + [-150, 30], + [-160, 30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-160, 40], + [-160, 50], + [-150, 50], + [-150, 40], + [-160, 40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-160, 50], + [-160, 60], + [-150, 60], + [-150, 50], + [-160, 50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-160, 60], + [-160, 70], + [-150, 70], + [-150, 60], + [-160, 60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-160, 70], + [-160, 80], + [-150, 80], + [-150, 70], + [-160, 70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-160, 80], + [-160, 90], + [-150, 90], + [-150, 80], + [-160, 80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-150, -90], + [-150, -80], + [-140, -80], + [-140, -90], + [-150, -90] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-150, -80], + [-150, -70], + [-140, -70], + [-140, -80], + [-150, -80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-150, -70], + [-150, -60], + [-140, -60], + [-140, -70], + [-150, -70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-150, -60], + [-150, -50], + [-140, -50], + [-140, -60], + [-150, -60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-150, -50], + [-150, -40], + [-140, -40], + [-140, -50], + [-150, -50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-150, -40], + [-150, -30], + [-140, -30], + [-140, -40], + [-150, -40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-150, -30], + [-150, -20], + [-140, -20], + [-140, -30], + [-150, -30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-150, -20], + [-150, -10], + [-140, -10], + [-140, -20], + [-150, -20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-150, -10], + [-150, 0], + [-140, 0], + [-140, -10], + [-150, -10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-150, 0], + [-150, 10], + [-140, 10], + [-140, 0], + [-150, 0] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-150, 10], + [-150, 20], + [-140, 20], + [-140, 10], + [-150, 10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-150, 20], + [-150, 30], + [-140, 30], + [-140, 20], + [-150, 20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-150, 30], + [-150, 40], + [-140, 40], + [-140, 30], + [-150, 30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-150, 40], + [-150, 50], + [-140, 50], + [-140, 40], + [-150, 40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-150, 50], + [-150, 60], + [-140, 60], + [-140, 50], + [-150, 50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-150, 60], + [-150, 70], + [-140, 70], + [-140, 60], + [-150, 60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-150, 70], + [-150, 80], + [-140, 80], + [-140, 70], + [-150, 70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-150, 80], + [-150, 90], + [-140, 90], + [-140, 80], + [-150, 80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-140, -90], + [-140, -80], + [-130, -80], + [-130, -90], + [-140, -90] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-140, -80], + [-140, -70], + [-130, -70], + [-130, -80], + [-140, -80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-140, -70], + [-140, -60], + [-130, -60], + [-130, -70], + [-140, -70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-140, -60], + [-140, -50], + [-130, -50], + [-130, -60], + [-140, -60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-140, -50], + [-140, -40], + [-130, -40], + [-130, -50], + [-140, -50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-140, -40], + [-140, -30], + [-130, -30], + [-130, -40], + [-140, -40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-140, -30], + [-140, -20], + [-130, -20], + [-130, -30], + [-140, -30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-140, -20], + [-140, -10], + [-130, -10], + [-130, -20], + [-140, -20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-140, -10], + [-140, 0], + [-130, 0], + [-130, -10], + [-140, -10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-140, 0], + [-140, 10], + [-130, 10], + [-130, 0], + [-140, 0] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-140, 10], + [-140, 20], + [-130, 20], + [-130, 10], + [-140, 10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-140, 20], + [-140, 30], + [-130, 30], + [-130, 20], + [-140, 20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-140, 30], + [-140, 40], + [-130, 40], + [-130, 30], + [-140, 30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-140, 40], + [-140, 50], + [-130, 50], + [-130, 40], + [-140, 40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-140, 50], + [-140, 60], + [-130, 60], + [-130, 50], + [-140, 50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-140, 60], + [-140, 70], + [-130, 70], + [-130, 60], + [-140, 60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-140, 70], + [-140, 80], + [-130, 80], + [-130, 70], + [-140, 70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-140, 80], + [-140, 90], + [-130, 90], + [-130, 80], + [-140, 80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-130, -90], + [-130, -80], + [-120, -80], + [-120, -90], + [-130, -90] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-130, -80], + [-130, -70], + [-120, -70], + [-120, -80], + [-130, -80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-130, -70], + [-130, -60], + [-120, -60], + [-120, -70], + [-130, -70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-130, -60], + [-130, -50], + [-120, -50], + [-120, -60], + [-130, -60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-130, -50], + [-130, -40], + [-120, -40], + [-120, -50], + [-130, -50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-130, -40], + [-130, -30], + [-120, -30], + [-120, -40], + [-130, -40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-130, -30], + [-130, -20], + [-120, -20], + [-120, -30], + [-130, -30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-130, -20], + [-130, -10], + [-120, -10], + [-120, -20], + [-130, -20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-130, -10], + [-130, 0], + [-120, 0], + [-120, -10], + [-130, -10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-130, 0], + [-130, 10], + [-120, 10], + [-120, 0], + [-130, 0] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-130, 10], + [-130, 20], + [-120, 20], + [-120, 10], + [-130, 10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-130, 20], + [-130, 30], + [-120, 30], + [-120, 20], + [-130, 20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-130, 30], + [-130, 40], + [-120, 40], + [-120, 30], + [-130, 30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-130, 40], + [-130, 50], + [-120, 50], + [-120, 40], + [-130, 40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-130, 50], + [-130, 60], + [-120, 60], + [-120, 50], + [-130, 50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-130, 60], + [-130, 70], + [-120, 70], + [-120, 60], + [-130, 60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-130, 70], + [-130, 80], + [-120, 80], + [-120, 70], + [-130, 70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-130, 80], + [-130, 90], + [-120, 90], + [-120, 80], + [-130, 80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-120, -90], + [-120, -80], + [-110, -80], + [-110, -90], + [-120, -90] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-120, -80], + [-120, -70], + [-110, -70], + [-110, -80], + [-120, -80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-120, -70], + [-120, -60], + [-110, -60], + [-110, -70], + [-120, -70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-120, -60], + [-120, -50], + [-110, -50], + [-110, -60], + [-120, -60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-120, -50], + [-120, -40], + [-110, -40], + [-110, -50], + [-120, -50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-120, -40], + [-120, -30], + [-110, -30], + [-110, -40], + [-120, -40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-120, -30], + [-120, -20], + [-110, -20], + [-110, -30], + [-120, -30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-120, -20], + [-120, -10], + [-110, -10], + [-110, -20], + [-120, -20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-120, -10], + [-120, 0], + [-110, 0], + [-110, -10], + [-120, -10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-120, 0], + [-120, 10], + [-110, 10], + [-110, 0], + [-120, 0] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-120, 10], + [-120, 20], + [-110, 20], + [-110, 10], + [-120, 10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-120, 20], + [-120, 30], + [-110, 30], + [-110, 20], + [-120, 20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-120, 30], + [-120, 40], + [-110, 40], + [-110, 30], + [-120, 30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-120, 40], + [-120, 50], + [-110, 50], + [-110, 40], + [-120, 40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-120, 50], + [-120, 60], + [-110, 60], + [-110, 50], + [-120, 50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-120, 60], + [-120, 70], + [-110, 70], + [-110, 60], + [-120, 60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-120, 70], + [-120, 80], + [-110, 80], + [-110, 70], + [-120, 70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-120, 80], + [-120, 90], + [-110, 90], + [-110, 80], + [-120, 80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110, -90], + [-110, -80], + [-100, -80], + [-100, -90], + [-110, -90] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110, -80], + [-110, -70], + [-100, -70], + [-100, -80], + [-110, -80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110, -70], + [-110, -60], + [-100, -60], + [-100, -70], + [-110, -70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110, -60], + [-110, -50], + [-100, -50], + [-100, -60], + [-110, -60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110, -50], + [-110, -40], + [-100, -40], + [-100, -50], + [-110, -50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110, -40], + [-110, -30], + [-100, -30], + [-100, -40], + [-110, -40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110, -30], + [-110, -20], + [-100, -20], + [-100, -30], + [-110, -30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110, -20], + [-110, -10], + [-100, -10], + [-100, -20], + [-110, -20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110, -10], + [-110, 0], + [-100, 0], + [-100, -10], + [-110, -10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110, 0], + [-110, 10], + [-100, 10], + [-100, 0], + [-110, 0] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110, 10], + [-110, 20], + [-100, 20], + [-100, 10], + [-110, 10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110, 20], + [-110, 30], + [-100, 30], + [-100, 20], + [-110, 20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110, 30], + [-110, 40], + [-100, 40], + [-100, 30], + [-110, 30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110, 40], + [-110, 50], + [-100, 50], + [-100, 40], + [-110, 40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110, 50], + [-110, 60], + [-100, 60], + [-100, 50], + [-110, 50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110, 60], + [-110, 70], + [-100, 70], + [-100, 60], + [-110, 60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110, 70], + [-110, 80], + [-100, 80], + [-100, 70], + [-110, 70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110, 80], + [-110, 90], + [-100, 90], + [-100, 80], + [-110, 80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-100, -90], + [-100, -80], + [-90, -80], + [-90, -90], + [-100, -90] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-100, -80], + [-100, -70], + [-90, -70], + [-90, -80], + [-100, -80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-100, -70], + [-100, -60], + [-90, -60], + [-90, -70], + [-100, -70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-100, -60], + [-100, -50], + [-90, -50], + [-90, -60], + [-100, -60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-100, -50], + [-100, -40], + [-90, -40], + [-90, -50], + [-100, -50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-100, -40], + [-100, -30], + [-90, -30], + [-90, -40], + [-100, -40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-100, -30], + [-100, -20], + [-90, -20], + [-90, -30], + [-100, -30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-100, -20], + [-100, -10], + [-90, -10], + [-90, -20], + [-100, -20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-100, -10], + [-100, 0], + [-90, 0], + [-90, -10], + [-100, -10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-100, 0], + [-100, 10], + [-90, 10], + [-90, 0], + [-100, 0] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-100, 10], + [-100, 20], + [-90, 20], + [-90, 10], + [-100, 10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-100, 20], + [-100, 30], + [-90, 30], + [-90, 20], + [-100, 20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-100, 30], + [-100, 40], + [-90, 40], + [-90, 30], + [-100, 30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-100, 40], + [-100, 50], + [-90, 50], + [-90, 40], + [-100, 40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-100, 50], + [-100, 60], + [-90, 60], + [-90, 50], + [-100, 50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-100, 60], + [-100, 70], + [-90, 70], + [-90, 60], + [-100, 60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-100, 70], + [-100, 80], + [-90, 80], + [-90, 70], + [-100, 70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-100, 80], + [-100, 90], + [-90, 90], + [-90, 80], + [-100, 80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-90, -90], + [-90, -80], + [-80, -80], + [-80, -90], + [-90, -90] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-90, -80], + [-90, -70], + [-80, -70], + [-80, -80], + [-90, -80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-90, -70], + [-90, -60], + [-80, -60], + [-80, -70], + [-90, -70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-90, -60], + [-90, -50], + [-80, -50], + [-80, -60], + [-90, -60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-90, -50], + [-90, -40], + [-80, -40], + [-80, -50], + [-90, -50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-90, -40], + [-90, -30], + [-80, -30], + [-80, -40], + [-90, -40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-90, -30], + [-90, -20], + [-80, -20], + [-80, -30], + [-90, -30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-90, -20], + [-90, -10], + [-80, -10], + [-80, -20], + [-90, -20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-90, -10], + [-90, 0], + [-80, 0], + [-80, -10], + [-90, -10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-90, 0], + [-90, 10], + [-80, 10], + [-80, 0], + [-90, 0] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-90, 10], + [-90, 20], + [-80, 20], + [-80, 10], + [-90, 10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-90, 20], + [-90, 30], + [-80, 30], + [-80, 20], + [-90, 20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-90, 30], + [-90, 40], + [-80, 40], + [-80, 30], + [-90, 30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-90, 40], + [-90, 50], + [-80, 50], + [-80, 40], + [-90, 40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-90, 50], + [-90, 60], + [-80, 60], + [-80, 50], + [-90, 50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-90, 60], + [-90, 70], + [-80, 70], + [-80, 60], + [-90, 60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-90, 70], + [-90, 80], + [-80, 80], + [-80, 70], + [-90, 70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-90, 80], + [-90, 90], + [-80, 90], + [-80, 80], + [-90, 80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-80, -90], + [-80, -80], + [-70, -80], + [-70, -90], + [-80, -90] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-80, -80], + [-80, -70], + [-70, -70], + [-70, -80], + [-80, -80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-80, -70], + [-80, -60], + [-70, -60], + [-70, -70], + [-80, -70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-80, -60], + [-80, -50], + [-70, -50], + [-70, -60], + [-80, -60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-80, -50], + [-80, -40], + [-70, -40], + [-70, -50], + [-80, -50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-80, -40], + [-80, -30], + [-70, -30], + [-70, -40], + [-80, -40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-80, -30], + [-80, -20], + [-70, -20], + [-70, -30], + [-80, -30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-80, -20], + [-80, -10], + [-70, -10], + [-70, -20], + [-80, -20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-80, -10], + [-80, 0], + [-70, 0], + [-70, -10], + [-80, -10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-80, 0], + [-80, 10], + [-70, 10], + [-70, 0], + [-80, 0] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-80, 10], + [-80, 20], + [-70, 20], + [-70, 10], + [-80, 10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-80, 20], + [-80, 30], + [-70, 30], + [-70, 20], + [-80, 20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-80, 30], + [-80, 40], + [-70, 40], + [-70, 30], + [-80, 30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-80, 40], + [-80, 50], + [-70, 50], + [-70, 40], + [-80, 40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-80, 50], + [-80, 60], + [-70, 60], + [-70, 50], + [-80, 50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-80, 60], + [-80, 70], + [-70, 70], + [-70, 60], + [-80, 60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-80, 70], + [-80, 80], + [-70, 80], + [-70, 70], + [-80, 70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-80, 80], + [-80, 90], + [-70, 90], + [-70, 80], + [-80, 80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-70, -90], + [-70, -80], + [-60, -80], + [-60, -90], + [-70, -90] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-70, -80], + [-70, -70], + [-60, -70], + [-60, -80], + [-70, -80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-70, -70], + [-70, -60], + [-60, -60], + [-60, -70], + [-70, -70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-70, -60], + [-70, -50], + [-60, -50], + [-60, -60], + [-70, -60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-70, -50], + [-70, -40], + [-60, -40], + [-60, -50], + [-70, -50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-70, -40], + [-70, -30], + [-60, -30], + [-60, -40], + [-70, -40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-70, -30], + [-70, -20], + [-60, -20], + [-60, -30], + [-70, -30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-70, -20], + [-70, -10], + [-60, -10], + [-60, -20], + [-70, -20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-70, -10], + [-70, 0], + [-60, 0], + [-60, -10], + [-70, -10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-70, 0], + [-70, 10], + [-60, 10], + [-60, 0], + [-70, 0] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-70, 10], + [-70, 20], + [-60, 20], + [-60, 10], + [-70, 10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-70, 20], + [-70, 30], + [-60, 30], + [-60, 20], + [-70, 20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-70, 30], + [-70, 40], + [-60, 40], + [-60, 30], + [-70, 30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-70, 40], + [-70, 50], + [-60, 50], + [-60, 40], + [-70, 40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-70, 50], + [-70, 60], + [-60, 60], + [-60, 50], + [-70, 50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-70, 60], + [-70, 70], + [-60, 70], + [-60, 60], + [-70, 60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-70, 70], + [-70, 80], + [-60, 80], + [-60, 70], + [-70, 70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-70, 80], + [-70, 90], + [-60, 90], + [-60, 80], + [-70, 80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60, -90], + [-60, -80], + [-50, -80], + [-50, -90], + [-60, -90] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60, -80], + [-60, -70], + [-50, -70], + [-50, -80], + [-60, -80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60, -70], + [-60, -60], + [-50, -60], + [-50, -70], + [-60, -70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60, -60], + [-60, -50], + [-50, -50], + [-50, -60], + [-60, -60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60, -50], + [-60, -40], + [-50, -40], + [-50, -50], + [-60, -50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60, -40], + [-60, -30], + [-50, -30], + [-50, -40], + [-60, -40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60, -30], + [-60, -20], + [-50, -20], + [-50, -30], + [-60, -30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60, -20], + [-60, -10], + [-50, -10], + [-50, -20], + [-60, -20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60, -10], + [-60, 0], + [-50, 0], + [-50, -10], + [-60, -10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60, 0], + [-60, 10], + [-50, 10], + [-50, 0], + [-60, 0] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60, 10], + [-60, 20], + [-50, 20], + [-50, 10], + [-60, 10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60, 20], + [-60, 30], + [-50, 30], + [-50, 20], + [-60, 20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60, 30], + [-60, 40], + [-50, 40], + [-50, 30], + [-60, 30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60, 40], + [-60, 50], + [-50, 50], + [-50, 40], + [-60, 40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60, 50], + [-60, 60], + [-50, 60], + [-50, 50], + [-60, 50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60, 60], + [-60, 70], + [-50, 70], + [-50, 60], + [-60, 60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60, 70], + [-60, 80], + [-50, 80], + [-50, 70], + [-60, 70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60, 80], + [-60, 90], + [-50, 90], + [-50, 80], + [-60, 80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-50, -90], + [-50, -80], + [-40, -80], + [-40, -90], + [-50, -90] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-50, -80], + [-50, -70], + [-40, -70], + [-40, -80], + [-50, -80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-50, -70], + [-50, -60], + [-40, -60], + [-40, -70], + [-50, -70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-50, -60], + [-50, -50], + [-40, -50], + [-40, -60], + [-50, -60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-50, -50], + [-50, -40], + [-40, -40], + [-40, -50], + [-50, -50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-50, -40], + [-50, -30], + [-40, -30], + [-40, -40], + [-50, -40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-50, -30], + [-50, -20], + [-40, -20], + [-40, -30], + [-50, -30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-50, -20], + [-50, -10], + [-40, -10], + [-40, -20], + [-50, -20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-50, -10], + [-50, 0], + [-40, 0], + [-40, -10], + [-50, -10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-50, 0], + [-50, 10], + [-40, 10], + [-40, 0], + [-50, 0] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-50, 10], + [-50, 20], + [-40, 20], + [-40, 10], + [-50, 10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-50, 20], + [-50, 30], + [-40, 30], + [-40, 20], + [-50, 20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-50, 30], + [-50, 40], + [-40, 40], + [-40, 30], + [-50, 30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-50, 40], + [-50, 50], + [-40, 50], + [-40, 40], + [-50, 40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-50, 50], + [-50, 60], + [-40, 60], + [-40, 50], + [-50, 50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-50, 60], + [-50, 70], + [-40, 70], + [-40, 60], + [-50, 60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-50, 70], + [-50, 80], + [-40, 80], + [-40, 70], + [-50, 70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-50, 80], + [-50, 90], + [-40, 90], + [-40, 80], + [-50, 80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-40, -90], + [-40, -80], + [-30, -80], + [-30, -90], + [-40, -90] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-40, -80], + [-40, -70], + [-30, -70], + [-30, -80], + [-40, -80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-40, -70], + [-40, -60], + [-30, -60], + [-30, -70], + [-40, -70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-40, -60], + [-40, -50], + [-30, -50], + [-30, -60], + [-40, -60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-40, -50], + [-40, -40], + [-30, -40], + [-30, -50], + [-40, -50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-40, -40], + [-40, -30], + [-30, -30], + [-30, -40], + [-40, -40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-40, -30], + [-40, -20], + [-30, -20], + [-30, -30], + [-40, -30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-40, -20], + [-40, -10], + [-30, -10], + [-30, -20], + [-40, -20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-40, -10], + [-40, 0], + [-30, 0], + [-30, -10], + [-40, -10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-40, 0], + [-40, 10], + [-30, 10], + [-30, 0], + [-40, 0] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-40, 10], + [-40, 20], + [-30, 20], + [-30, 10], + [-40, 10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-40, 20], + [-40, 30], + [-30, 30], + [-30, 20], + [-40, 20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-40, 30], + [-40, 40], + [-30, 40], + [-30, 30], + [-40, 30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-40, 40], + [-40, 50], + [-30, 50], + [-30, 40], + [-40, 40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-40, 50], + [-40, 60], + [-30, 60], + [-30, 50], + [-40, 50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-40, 60], + [-40, 70], + [-30, 70], + [-30, 60], + [-40, 60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-40, 70], + [-40, 80], + [-30, 80], + [-30, 70], + [-40, 70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-40, 80], + [-40, 90], + [-30, 90], + [-30, 80], + [-40, 80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-30, -90], + [-30, -80], + [-20, -80], + [-20, -90], + [-30, -90] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-30, -80], + [-30, -70], + [-20, -70], + [-20, -80], + [-30, -80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-30, -70], + [-30, -60], + [-20, -60], + [-20, -70], + [-30, -70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-30, -60], + [-30, -50], + [-20, -50], + [-20, -60], + [-30, -60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-30, -50], + [-30, -40], + [-20, -40], + [-20, -50], + [-30, -50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-30, -40], + [-30, -30], + [-20, -30], + [-20, -40], + [-30, -40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-30, -30], + [-30, -20], + [-20, -20], + [-20, -30], + [-30, -30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-30, -20], + [-30, -10], + [-20, -10], + [-20, -20], + [-30, -20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-30, -10], + [-30, 0], + [-20, 0], + [-20, -10], + [-30, -10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-30, 0], + [-30, 10], + [-20, 10], + [-20, 0], + [-30, 0] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-30, 10], + [-30, 20], + [-20, 20], + [-20, 10], + [-30, 10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-30, 20], + [-30, 30], + [-20, 30], + [-20, 20], + [-30, 20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-30, 30], + [-30, 40], + [-20, 40], + [-20, 30], + [-30, 30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-30, 40], + [-30, 50], + [-20, 50], + [-20, 40], + [-30, 40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-30, 50], + [-30, 60], + [-20, 60], + [-20, 50], + [-30, 50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-30, 60], + [-30, 70], + [-20, 70], + [-20, 60], + [-30, 60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-30, 70], + [-30, 80], + [-20, 80], + [-20, 70], + [-30, 70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-30, 80], + [-30, 90], + [-20, 90], + [-20, 80], + [-30, 80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-20, -90], + [-20, -80], + [-10, -80], + [-10, -90], + [-20, -90] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-20, -80], + [-20, -70], + [-10, -70], + [-10, -80], + [-20, -80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-20, -70], + [-20, -60], + [-10, -60], + [-10, -70], + [-20, -70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-20, -60], + [-20, -50], + [-10, -50], + [-10, -60], + [-20, -60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-20, -50], + [-20, -40], + [-10, -40], + [-10, -50], + [-20, -50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-20, -40], + [-20, -30], + [-10, -30], + [-10, -40], + [-20, -40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-20, -30], + [-20, -20], + [-10, -20], + [-10, -30], + [-20, -30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-20, -20], + [-20, -10], + [-10, -10], + [-10, -20], + [-20, -20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-20, -10], + [-20, 0], + [-10, 0], + [-10, -10], + [-20, -10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-20, 0], + [-20, 10], + [-10, 10], + [-10, 0], + [-20, 0] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-20, 10], + [-20, 20], + [-10, 20], + [-10, 10], + [-20, 10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-20, 20], + [-20, 30], + [-10, 30], + [-10, 20], + [-20, 20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-20, 30], + [-20, 40], + [-10, 40], + [-10, 30], + [-20, 30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-20, 40], + [-20, 50], + [-10, 50], + [-10, 40], + [-20, 40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-20, 50], + [-20, 60], + [-10, 60], + [-10, 50], + [-20, 50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-20, 60], + [-20, 70], + [-10, 70], + [-10, 60], + [-20, 60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-20, 70], + [-20, 80], + [-10, 80], + [-10, 70], + [-20, 70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-20, 80], + [-20, 90], + [-10, 90], + [-10, 80], + [-20, 80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-10, -90], + [-10, -80], + [0, -80], + [0, -90], + [-10, -90] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-10, -80], + [-10, -70], + [0, -70], + [0, -80], + [-10, -80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-10, -70], + [-10, -60], + [0, -60], + [0, -70], + [-10, -70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-10, -60], + [-10, -50], + [0, -50], + [0, -60], + [-10, -60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-10, -50], + [-10, -40], + [0, -40], + [0, -50], + [-10, -50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-10, -40], + [-10, -30], + [0, -30], + [0, -40], + [-10, -40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-10, -30], + [-10, -20], + [0, -20], + [0, -30], + [-10, -30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-10, -20], + [-10, -10], + [0, -10], + [0, -20], + [-10, -20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-10, -10], + [-10, 0], + [0, 0], + [0, -10], + [-10, -10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-10, 0], + [-10, 10], + [0, 10], + [0, 0], + [-10, 0] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-10, 10], + [-10, 20], + [0, 20], + [0, 10], + [-10, 10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-10, 20], + [-10, 30], + [0, 30], + [0, 20], + [-10, 20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-10, 30], + [-10, 40], + [0, 40], + [0, 30], + [-10, 30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-10, 40], + [-10, 50], + [0, 50], + [0, 40], + [-10, 40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-10, 50], + [-10, 60], + [0, 60], + [0, 50], + [-10, 50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-10, 60], + [-10, 70], + [0, 70], + [0, 60], + [-10, 60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-10, 70], + [-10, 80], + [0, 80], + [0, 70], + [-10, 70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-10, 80], + [-10, 90], + [0, 90], + [0, 80], + [-10, 80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [0, -90], + [0, -80], + [10, -80], + [10, -90], + [0, -90] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [0, -80], + [0, -70], + [10, -70], + [10, -80], + [0, -80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [0, -70], + [0, -60], + [10, -60], + [10, -70], + [0, -70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [0, -60], + [0, -50], + [10, -50], + [10, -60], + [0, -60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [0, -50], + [0, -40], + [10, -40], + [10, -50], + [0, -50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [0, -40], + [0, -30], + [10, -30], + [10, -40], + [0, -40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [0, -30], + [0, -20], + [10, -20], + [10, -30], + [0, -30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [0, -20], + [0, -10], + [10, -10], + [10, -20], + [0, -20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [0, -10], + [0, 0], + [10, 0], + [10, -10], + [0, -10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [0, 0], + [0, 10], + [10, 10], + [10, 0], + [0, 0] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [0, 10], + [0, 20], + [10, 20], + [10, 10], + [0, 10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [0, 20], + [0, 30], + [10, 30], + [10, 20], + [0, 20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [0, 30], + [0, 40], + [10, 40], + [10, 30], + [0, 30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [0, 40], + [0, 50], + [10, 50], + [10, 40], + [0, 40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [0, 50], + [0, 60], + [10, 60], + [10, 50], + [0, 50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [0, 60], + [0, 70], + [10, 70], + [10, 60], + [0, 60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [0, 70], + [0, 80], + [10, 80], + [10, 70], + [0, 70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [0, 80], + [0, 90], + [10, 90], + [10, 80], + [0, 80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [10, -90], + [10, -80], + [20, -80], + [20, -90], + [10, -90] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [10, -80], + [10, -70], + [20, -70], + [20, -80], + [10, -80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [10, -70], + [10, -60], + [20, -60], + [20, -70], + [10, -70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [10, -60], + [10, -50], + [20, -50], + [20, -60], + [10, -60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [10, -50], + [10, -40], + [20, -40], + [20, -50], + [10, -50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [10, -40], + [10, -30], + [20, -30], + [20, -40], + [10, -40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [10, -30], + [10, -20], + [20, -20], + [20, -30], + [10, -30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [10, -20], + [10, -10], + [20, -10], + [20, -20], + [10, -20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [10, -10], + [10, 0], + [20, 0], + [20, -10], + [10, -10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [10, 0], + [10, 10], + [20, 10], + [20, 0], + [10, 0] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [10, 10], + [10, 20], + [20, 20], + [20, 10], + [10, 10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [10, 20], + [10, 30], + [20, 30], + [20, 20], + [10, 20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [10, 30], + [10, 40], + [20, 40], + [20, 30], + [10, 30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [10, 40], + [10, 50], + [20, 50], + [20, 40], + [10, 40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [10, 50], + [10, 60], + [20, 60], + [20, 50], + [10, 50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [10, 60], + [10, 70], + [20, 70], + [20, 60], + [10, 60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [10, 70], + [10, 80], + [20, 80], + [20, 70], + [10, 70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [10, 80], + [10, 90], + [20, 90], + [20, 80], + [10, 80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [20, -90], + [20, -80], + [30, -80], + [30, -90], + [20, -90] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [20, -80], + [20, -70], + [30, -70], + [30, -80], + [20, -80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [20, -70], + [20, -60], + [30, -60], + [30, -70], + [20, -70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [20, -60], + [20, -50], + [30, -50], + [30, -60], + [20, -60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [20, -50], + [20, -40], + [30, -40], + [30, -50], + [20, -50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [20, -40], + [20, -30], + [30, -30], + [30, -40], + [20, -40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [20, -30], + [20, -20], + [30, -20], + [30, -30], + [20, -30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [20, -20], + [20, -10], + [30, -10], + [30, -20], + [20, -20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [20, -10], + [20, 0], + [30, 0], + [30, -10], + [20, -10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [20, 0], + [20, 10], + [30, 10], + [30, 0], + [20, 0] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [20, 10], + [20, 20], + [30, 20], + [30, 10], + [20, 10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [20, 20], + [20, 30], + [30, 30], + [30, 20], + [20, 20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [20, 30], + [20, 40], + [30, 40], + [30, 30], + [20, 30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [20, 40], + [20, 50], + [30, 50], + [30, 40], + [20, 40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [20, 50], + [20, 60], + [30, 60], + [30, 50], + [20, 50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [20, 60], + [20, 70], + [30, 70], + [30, 60], + [20, 60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [20, 70], + [20, 80], + [30, 80], + [30, 70], + [20, 70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [20, 80], + [20, 90], + [30, 90], + [30, 80], + [20, 80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [30, -90], + [30, -80], + [40, -80], + [40, -90], + [30, -90] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [30, -80], + [30, -70], + [40, -70], + [40, -80], + [30, -80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [30, -70], + [30, -60], + [40, -60], + [40, -70], + [30, -70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [30, -60], + [30, -50], + [40, -50], + [40, -60], + [30, -60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [30, -50], + [30, -40], + [40, -40], + [40, -50], + [30, -50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [30, -40], + [30, -30], + [40, -30], + [40, -40], + [30, -40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [30, -30], + [30, -20], + [40, -20], + [40, -30], + [30, -30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [30, -20], + [30, -10], + [40, -10], + [40, -20], + [30, -20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [30, -10], + [30, 0], + [40, 0], + [40, -10], + [30, -10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [30, 0], + [30, 10], + [40, 10], + [40, 0], + [30, 0] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [30, 10], + [30, 20], + [40, 20], + [40, 10], + [30, 10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [30, 20], + [30, 30], + [40, 30], + [40, 20], + [30, 20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [30, 30], + [30, 40], + [40, 40], + [40, 30], + [30, 30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [30, 40], + [30, 50], + [40, 50], + [40, 40], + [30, 40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [30, 50], + [30, 60], + [40, 60], + [40, 50], + [30, 50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [30, 60], + [30, 70], + [40, 70], + [40, 60], + [30, 60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [30, 70], + [30, 80], + [40, 80], + [40, 70], + [30, 70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [30, 80], + [30, 90], + [40, 90], + [40, 80], + [30, 80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [40, -90], + [40, -80], + [50, -80], + [50, -90], + [40, -90] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [40, -80], + [40, -70], + [50, -70], + [50, -80], + [40, -80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [40, -70], + [40, -60], + [50, -60], + [50, -70], + [40, -70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [40, -60], + [40, -50], + [50, -50], + [50, -60], + [40, -60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [40, -50], + [40, -40], + [50, -40], + [50, -50], + [40, -50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [40, -40], + [40, -30], + [50, -30], + [50, -40], + [40, -40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [40, -30], + [40, -20], + [50, -20], + [50, -30], + [40, -30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [40, -20], + [40, -10], + [50, -10], + [50, -20], + [40, -20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [40, -10], + [40, 0], + [50, 0], + [50, -10], + [40, -10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [40, 0], + [40, 10], + [50, 10], + [50, 0], + [40, 0] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [40, 10], + [40, 20], + [50, 20], + [50, 10], + [40, 10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [40, 20], + [40, 30], + [50, 30], + [50, 20], + [40, 20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [40, 30], + [40, 40], + [50, 40], + [50, 30], + [40, 30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [40, 40], + [40, 50], + [50, 50], + [50, 40], + [40, 40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [40, 50], + [40, 60], + [50, 60], + [50, 50], + [40, 50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [40, 60], + [40, 70], + [50, 70], + [50, 60], + [40, 60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [40, 70], + [40, 80], + [50, 80], + [50, 70], + [40, 70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [40, 80], + [40, 90], + [50, 90], + [50, 80], + [40, 80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [50, -90], + [50, -80], + [60, -80], + [60, -90], + [50, -90] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [50, -80], + [50, -70], + [60, -70], + [60, -80], + [50, -80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [50, -70], + [50, -60], + [60, -60], + [60, -70], + [50, -70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [50, -60], + [50, -50], + [60, -50], + [60, -60], + [50, -60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [50, -50], + [50, -40], + [60, -40], + [60, -50], + [50, -50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [50, -40], + [50, -30], + [60, -30], + [60, -40], + [50, -40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [50, -30], + [50, -20], + [60, -20], + [60, -30], + [50, -30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [50, -20], + [50, -10], + [60, -10], + [60, -20], + [50, -20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [50, -10], + [50, 0], + [60, 0], + [60, -10], + [50, -10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [50, 0], + [50, 10], + [60, 10], + [60, 0], + [50, 0] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [50, 10], + [50, 20], + [60, 20], + [60, 10], + [50, 10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [50, 20], + [50, 30], + [60, 30], + [60, 20], + [50, 20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [50, 30], + [50, 40], + [60, 40], + [60, 30], + [50, 30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [50, 40], + [50, 50], + [60, 50], + [60, 40], + [50, 40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [50, 50], + [50, 60], + [60, 60], + [60, 50], + [50, 50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [50, 60], + [50, 70], + [60, 70], + [60, 60], + [50, 60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [50, 70], + [50, 80], + [60, 80], + [60, 70], + [50, 70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [50, 80], + [50, 90], + [60, 90], + [60, 80], + [50, 80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [60, -90], + [60, -80], + [70, -80], + [70, -90], + [60, -90] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [60, -80], + [60, -70], + [70, -70], + [70, -80], + [60, -80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [60, -70], + [60, -60], + [70, -60], + [70, -70], + [60, -70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [60, -60], + [60, -50], + [70, -50], + [70, -60], + [60, -60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [60, -50], + [60, -40], + [70, -40], + [70, -50], + [60, -50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [60, -40], + [60, -30], + [70, -30], + [70, -40], + [60, -40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [60, -30], + [60, -20], + [70, -20], + [70, -30], + [60, -30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [60, -20], + [60, -10], + [70, -10], + [70, -20], + [60, -20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [60, -10], + [60, 0], + [70, 0], + [70, -10], + [60, -10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [60, 0], + [60, 10], + [70, 10], + [70, 0], + [60, 0] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [60, 10], + [60, 20], + [70, 20], + [70, 10], + [60, 10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [60, 20], + [60, 30], + [70, 30], + [70, 20], + [60, 20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [60, 30], + [60, 40], + [70, 40], + [70, 30], + [60, 30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [60, 40], + [60, 50], + [70, 50], + [70, 40], + [60, 40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [60, 50], + [60, 60], + [70, 60], + [70, 50], + [60, 50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [60, 60], + [60, 70], + [70, 70], + [70, 60], + [60, 60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [60, 70], + [60, 80], + [70, 80], + [70, 70], + [60, 70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [60, 80], + [60, 90], + [70, 90], + [70, 80], + [60, 80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [70, -90], + [70, -80], + [80, -80], + [80, -90], + [70, -90] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [70, -80], + [70, -70], + [80, -70], + [80, -80], + [70, -80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [70, -70], + [70, -60], + [80, -60], + [80, -70], + [70, -70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [70, -60], + [70, -50], + [80, -50], + [80, -60], + [70, -60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [70, -50], + [70, -40], + [80, -40], + [80, -50], + [70, -50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [70, -40], + [70, -30], + [80, -30], + [80, -40], + [70, -40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [70, -30], + [70, -20], + [80, -20], + [80, -30], + [70, -30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [70, -20], + [70, -10], + [80, -10], + [80, -20], + [70, -20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [70, -10], + [70, 0], + [80, 0], + [80, -10], + [70, -10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [70, 0], + [70, 10], + [80, 10], + [80, 0], + [70, 0] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [70, 10], + [70, 20], + [80, 20], + [80, 10], + [70, 10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [70, 20], + [70, 30], + [80, 30], + [80, 20], + [70, 20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [70, 30], + [70, 40], + [80, 40], + [80, 30], + [70, 30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [70, 40], + [70, 50], + [80, 50], + [80, 40], + [70, 40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [70, 50], + [70, 60], + [80, 60], + [80, 50], + [70, 50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [70, 60], + [70, 70], + [80, 70], + [80, 60], + [70, 60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [70, 70], + [70, 80], + [80, 80], + [80, 70], + [70, 70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [70, 80], + [70, 90], + [80, 90], + [80, 80], + [70, 80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [80, -90], + [80, -80], + [90, -80], + [90, -90], + [80, -90] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [80, -80], + [80, -70], + [90, -70], + [90, -80], + [80, -80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [80, -70], + [80, -60], + [90, -60], + [90, -70], + [80, -70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [80, -60], + [80, -50], + [90, -50], + [90, -60], + [80, -60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [80, -50], + [80, -40], + [90, -40], + [90, -50], + [80, -50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [80, -40], + [80, -30], + [90, -30], + [90, -40], + [80, -40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [80, -30], + [80, -20], + [90, -20], + [90, -30], + [80, -30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [80, -20], + [80, -10], + [90, -10], + [90, -20], + [80, -20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [80, -10], + [80, 0], + [90, 0], + [90, -10], + [80, -10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [80, 0], + [80, 10], + [90, 10], + [90, 0], + [80, 0] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [80, 10], + [80, 20], + [90, 20], + [90, 10], + [80, 10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [80, 20], + [80, 30], + [90, 30], + [90, 20], + [80, 20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [80, 30], + [80, 40], + [90, 40], + [90, 30], + [80, 30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [80, 40], + [80, 50], + [90, 50], + [90, 40], + [80, 40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [80, 50], + [80, 60], + [90, 60], + [90, 50], + [80, 50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [80, 60], + [80, 70], + [90, 70], + [90, 60], + [80, 60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [80, 70], + [80, 80], + [90, 80], + [90, 70], + [80, 70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [80, 80], + [80, 90], + [90, 90], + [90, 80], + [80, 80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [90, -90], + [90, -80], + [100, -80], + [100, -90], + [90, -90] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [90, -80], + [90, -70], + [100, -70], + [100, -80], + [90, -80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [90, -70], + [90, -60], + [100, -60], + [100, -70], + [90, -70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [90, -60], + [90, -50], + [100, -50], + [100, -60], + [90, -60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [90, -50], + [90, -40], + [100, -40], + [100, -50], + [90, -50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [90, -40], + [90, -30], + [100, -30], + [100, -40], + [90, -40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [90, -30], + [90, -20], + [100, -20], + [100, -30], + [90, -30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [90, -20], + [90, -10], + [100, -10], + [100, -20], + [90, -20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [90, -10], + [90, 0], + [100, 0], + [100, -10], + [90, -10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [90, 0], + [90, 10], + [100, 10], + [100, 0], + [90, 0] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [90, 10], + [90, 20], + [100, 20], + [100, 10], + [90, 10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [90, 20], + [90, 30], + [100, 30], + [100, 20], + [90, 20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [90, 30], + [90, 40], + [100, 40], + [100, 30], + [90, 30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [90, 40], + [90, 50], + [100, 50], + [100, 40], + [90, 40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [90, 50], + [90, 60], + [100, 60], + [100, 50], + [90, 50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [90, 60], + [90, 70], + [100, 70], + [100, 60], + [90, 60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [90, 70], + [90, 80], + [100, 80], + [100, 70], + [90, 70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [90, 80], + [90, 90], + [100, 90], + [100, 80], + [90, 80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [100, -90], + [100, -80], + [110, -80], + [110, -90], + [100, -90] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [100, -80], + [100, -70], + [110, -70], + [110, -80], + [100, -80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [100, -70], + [100, -60], + [110, -60], + [110, -70], + [100, -70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [100, -60], + [100, -50], + [110, -50], + [110, -60], + [100, -60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [100, -50], + [100, -40], + [110, -40], + [110, -50], + [100, -50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [100, -40], + [100, -30], + [110, -30], + [110, -40], + [100, -40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [100, -30], + [100, -20], + [110, -20], + [110, -30], + [100, -30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [100, -20], + [100, -10], + [110, -10], + [110, -20], + [100, -20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [100, -10], + [100, 0], + [110, 0], + [110, -10], + [100, -10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [100, 0], + [100, 10], + [110, 10], + [110, 0], + [100, 0] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [100, 10], + [100, 20], + [110, 20], + [110, 10], + [100, 10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [100, 20], + [100, 30], + [110, 30], + [110, 20], + [100, 20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [100, 30], + [100, 40], + [110, 40], + [110, 30], + [100, 30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [100, 40], + [100, 50], + [110, 50], + [110, 40], + [100, 40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [100, 50], + [100, 60], + [110, 60], + [110, 50], + [100, 50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [100, 60], + [100, 70], + [110, 70], + [110, 60], + [100, 60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [100, 70], + [100, 80], + [110, 80], + [110, 70], + [100, 70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [100, 80], + [100, 90], + [110, 90], + [110, 80], + [100, 80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [110, -90], + [110, -80], + [120, -80], + [120, -90], + [110, -90] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [110, -80], + [110, -70], + [120, -70], + [120, -80], + [110, -80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [110, -70], + [110, -60], + [120, -60], + [120, -70], + [110, -70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [110, -60], + [110, -50], + [120, -50], + [120, -60], + [110, -60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [110, -50], + [110, -40], + [120, -40], + [120, -50], + [110, -50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [110, -40], + [110, -30], + [120, -30], + [120, -40], + [110, -40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [110, -30], + [110, -20], + [120, -20], + [120, -30], + [110, -30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [110, -20], + [110, -10], + [120, -10], + [120, -20], + [110, -20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [110, -10], + [110, 0], + [120, 0], + [120, -10], + [110, -10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [110, 0], + [110, 10], + [120, 10], + [120, 0], + [110, 0] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [110, 10], + [110, 20], + [120, 20], + [120, 10], + [110, 10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [110, 20], + [110, 30], + [120, 30], + [120, 20], + [110, 20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [110, 30], + [110, 40], + [120, 40], + [120, 30], + [110, 30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [110, 40], + [110, 50], + [120, 50], + [120, 40], + [110, 40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [110, 50], + [110, 60], + [120, 60], + [120, 50], + [110, 50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [110, 60], + [110, 70], + [120, 70], + [120, 60], + [110, 60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [110, 70], + [110, 80], + [120, 80], + [120, 70], + [110, 70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [110, 80], + [110, 90], + [120, 90], + [120, 80], + [110, 80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [120, -90], + [120, -80], + [130, -80], + [130, -90], + [120, -90] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [120, -80], + [120, -70], + [130, -70], + [130, -80], + [120, -80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [120, -70], + [120, -60], + [130, -60], + [130, -70], + [120, -70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [120, -60], + [120, -50], + [130, -50], + [130, -60], + [120, -60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [120, -50], + [120, -40], + [130, -40], + [130, -50], + [120, -50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [120, -40], + [120, -30], + [130, -30], + [130, -40], + [120, -40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [120, -30], + [120, -20], + [130, -20], + [130, -30], + [120, -30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [120, -20], + [120, -10], + [130, -10], + [130, -20], + [120, -20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [120, -10], + [120, 0], + [130, 0], + [130, -10], + [120, -10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [120, 0], + [120, 10], + [130, 10], + [130, 0], + [120, 0] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [120, 10], + [120, 20], + [130, 20], + [130, 10], + [120, 10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [120, 20], + [120, 30], + [130, 30], + [130, 20], + [120, 20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [120, 30], + [120, 40], + [130, 40], + [130, 30], + [120, 30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [120, 40], + [120, 50], + [130, 50], + [130, 40], + [120, 40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [120, 50], + [120, 60], + [130, 60], + [130, 50], + [120, 50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [120, 60], + [120, 70], + [130, 70], + [130, 60], + [120, 60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [120, 70], + [120, 80], + [130, 80], + [130, 70], + [120, 70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [120, 80], + [120, 90], + [130, 90], + [130, 80], + [120, 80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [130, -90], + [130, -80], + [140, -80], + [140, -90], + [130, -90] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [130, -80], + [130, -70], + [140, -70], + [140, -80], + [130, -80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [130, -70], + [130, -60], + [140, -60], + [140, -70], + [130, -70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [130, -60], + [130, -50], + [140, -50], + [140, -60], + [130, -60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [130, -50], + [130, -40], + [140, -40], + [140, -50], + [130, -50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [130, -40], + [130, -30], + [140, -30], + [140, -40], + [130, -40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [130, -30], + [130, -20], + [140, -20], + [140, -30], + [130, -30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [130, -20], + [130, -10], + [140, -10], + [140, -20], + [130, -20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [130, -10], + [130, 0], + [140, 0], + [140, -10], + [130, -10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [130, 0], + [130, 10], + [140, 10], + [140, 0], + [130, 0] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [130, 10], + [130, 20], + [140, 20], + [140, 10], + [130, 10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [130, 20], + [130, 30], + [140, 30], + [140, 20], + [130, 20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [130, 30], + [130, 40], + [140, 40], + [140, 30], + [130, 30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [130, 40], + [130, 50], + [140, 50], + [140, 40], + [130, 40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [130, 50], + [130, 60], + [140, 60], + [140, 50], + [130, 50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [130, 60], + [130, 70], + [140, 70], + [140, 60], + [130, 60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [130, 70], + [130, 80], + [140, 80], + [140, 70], + [130, 70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [130, 80], + [130, 90], + [140, 90], + [140, 80], + [130, 80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [140, -90], + [140, -80], + [150, -80], + [150, -90], + [140, -90] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [140, -80], + [140, -70], + [150, -70], + [150, -80], + [140, -80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [140, -70], + [140, -60], + [150, -60], + [150, -70], + [140, -70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [140, -60], + [140, -50], + [150, -50], + [150, -60], + [140, -60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [140, -50], + [140, -40], + [150, -40], + [150, -50], + [140, -50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [140, -40], + [140, -30], + [150, -30], + [150, -40], + [140, -40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [140, -30], + [140, -20], + [150, -20], + [150, -30], + [140, -30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [140, -20], + [140, -10], + [150, -10], + [150, -20], + [140, -20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [140, -10], + [140, 0], + [150, 0], + [150, -10], + [140, -10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [140, 0], + [140, 10], + [150, 10], + [150, 0], + [140, 0] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [140, 10], + [140, 20], + [150, 20], + [150, 10], + [140, 10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [140, 20], + [140, 30], + [150, 30], + [150, 20], + [140, 20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [140, 30], + [140, 40], + [150, 40], + [150, 30], + [140, 30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [140, 40], + [140, 50], + [150, 50], + [150, 40], + [140, 40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [140, 50], + [140, 60], + [150, 60], + [150, 50], + [140, 50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [140, 60], + [140, 70], + [150, 70], + [150, 60], + [140, 60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [140, 70], + [140, 80], + [150, 80], + [150, 70], + [140, 70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [140, 80], + [140, 90], + [150, 90], + [150, 80], + [140, 80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [150, -90], + [150, -80], + [160, -80], + [160, -90], + [150, -90] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [150, -80], + [150, -70], + [160, -70], + [160, -80], + [150, -80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [150, -70], + [150, -60], + [160, -60], + [160, -70], + [150, -70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [150, -60], + [150, -50], + [160, -50], + [160, -60], + [150, -60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [150, -50], + [150, -40], + [160, -40], + [160, -50], + [150, -50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [150, -40], + [150, -30], + [160, -30], + [160, -40], + [150, -40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [150, -30], + [150, -20], + [160, -20], + [160, -30], + [150, -30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [150, -20], + [150, -10], + [160, -10], + [160, -20], + [150, -20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [150, -10], + [150, 0], + [160, 0], + [160, -10], + [150, -10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [150, 0], + [150, 10], + [160, 10], + [160, 0], + [150, 0] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [150, 10], + [150, 20], + [160, 20], + [160, 10], + [150, 10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [150, 20], + [150, 30], + [160, 30], + [160, 20], + [150, 20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [150, 30], + [150, 40], + [160, 40], + [160, 30], + [150, 30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [150, 40], + [150, 50], + [160, 50], + [160, 40], + [150, 40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [150, 50], + [150, 60], + [160, 60], + [160, 50], + [150, 50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [150, 60], + [150, 70], + [160, 70], + [160, 60], + [150, 60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [150, 70], + [150, 80], + [160, 80], + [160, 70], + [150, 70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [150, 80], + [150, 90], + [160, 90], + [160, 80], + [150, 80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [160, -90], + [160, -80], + [170, -80], + [170, -90], + [160, -90] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [160, -80], + [160, -70], + [170, -70], + [170, -80], + [160, -80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [160, -70], + [160, -60], + [170, -60], + [170, -70], + [160, -70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [160, -60], + [160, -50], + [170, -50], + [170, -60], + [160, -60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [160, -50], + [160, -40], + [170, -40], + [170, -50], + [160, -50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [160, -40], + [160, -30], + [170, -30], + [170, -40], + [160, -40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [160, -30], + [160, -20], + [170, -20], + [170, -30], + [160, -30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [160, -20], + [160, -10], + [170, -10], + [170, -20], + [160, -20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [160, -10], + [160, 0], + [170, 0], + [170, -10], + [160, -10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [160, 0], + [160, 10], + [170, 10], + [170, 0], + [160, 0] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [160, 10], + [160, 20], + [170, 20], + [170, 10], + [160, 10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [160, 20], + [160, 30], + [170, 30], + [170, 20], + [160, 20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [160, 30], + [160, 40], + [170, 40], + [170, 30], + [160, 30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [160, 40], + [160, 50], + [170, 50], + [170, 40], + [160, 40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [160, 50], + [160, 60], + [170, 60], + [170, 50], + [160, 50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [160, 60], + [160, 70], + [170, 70], + [170, 60], + [160, 60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [160, 70], + [160, 80], + [170, 80], + [170, 70], + [160, 70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [160, 80], + [160, 90], + [170, 90], + [170, 80], + [160, 80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [170, -90], + [170, -80], + [180, -80], + [180, -90], + [170, -90] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [170, -80], + [170, -70], + [180, -70], + [180, -80], + [170, -80] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [170, -70], + [170, -60], + [180, -60], + [180, -70], + [170, -70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [170, -60], + [170, -50], + [180, -50], + [180, -60], + [170, -60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [170, -50], + [170, -40], + [180, -40], + [180, -50], + [170, -50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [170, -40], + [170, -30], + [180, -30], + [180, -40], + [170, -40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [170, -30], + [170, -20], + [180, -20], + [180, -30], + [170, -30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [170, -20], + [170, -10], + [180, -10], + [180, -20], + [170, -20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [170, -10], + [170, 0], + [180, 0], + [180, -10], + [170, -10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [170, 0], + [170, 10], + [180, 10], + [180, 0], + [170, 0] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [170, 10], + [170, 20], + [180, 20], + [180, 10], + [170, 10] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [170, 20], + [170, 30], + [180, 30], + [180, 20], + [170, 20] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [170, 30], + [170, 40], + [180, 40], + [180, 30], + [170, 30] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [170, 40], + [170, 50], + [180, 50], + [180, 40], + [170, 40] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [170, 50], + [170, 60], + [180, 60], + [180, 50], + [170, 50] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [170, 60], + [170, 70], + [180, 70], + [180, 60], + [170, 60] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [170, 70], + [170, 80], + [180, 80], + [180, 70], + [170, 70] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [170, 80], + [170, 90], + [180, 90], + [180, 80], + [170, 80] + ] + ] + } + }, + { + "type": "Feature", + "bbox": [-180, -90, 180, 90], + "properties": { + "stroke": "#F00", + "stroke-width": 6, + "fill-opacity": 0 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-180, -90], + [180, -90], + [180, 90], + [-180, 90], + [-180, -90] + ] + ] + } + } + ] +} diff --git a/packages/turf-rectangle-grid/test/out/victoria-20x100-km.geojson b/packages/turf-rectangle-grid/test/out/victoria-20x100-km.geojson index 3f9fd43469..21fa41938c 100644 --- a/packages/turf-rectangle-grid/test/out/victoria-20x100-km.geojson +++ b/packages/turf-rectangle-grid/test/out/victoria-20x100-km.geojson @@ -8,11 +8,11 @@ "type": "Polygon", "coordinates": [ [ - [141.050984, -34.251699], - [141.050984, -35.151019], - [141.26801, -35.151019], - [141.26801, -34.251699], - [141.050984, -34.251699] + [141.008646, -38.745677], + [141.008646, -37.847406], + [141.1883, -37.847406], + [141.1883, -38.745677], + [141.008646, -38.745677] ] ] } @@ -24,11 +24,11 @@ "type": "Polygon", "coordinates": [ [ - [141.050984, -35.151019], - [141.050984, -36.05034], - [141.26801, -36.05034], - [141.26801, -35.151019], - [141.050984, -35.151019] + [141.008646, -37.847406], + [141.008646, -36.949135], + [141.1883, -36.949135], + [141.1883, -37.847406], + [141.008646, -37.847406] ] ] } @@ -40,11 +40,11 @@ "type": "Polygon", "coordinates": [ [ - [141.050984, -36.05034], - [141.050984, -36.94966], - [141.26801, -36.94966], - [141.26801, -36.05034], - [141.050984, -36.05034] + [141.008646, -36.949135], + [141.008646, -36.050865], + [141.1883, -36.050865], + [141.1883, -36.949135], + [141.008646, -36.949135] ] ] } @@ -56,11 +56,11 @@ "type": "Polygon", "coordinates": [ [ - [141.050984, -36.94966], - [141.050984, -37.848981], - [141.26801, -37.848981], - [141.26801, -36.94966], - [141.050984, -36.94966] + [141.008646, -36.050865], + [141.008646, -35.152594], + [141.1883, -35.152594], + [141.1883, -36.050865], + [141.008646, -36.050865] ] ] } @@ -72,11 +72,11 @@ "type": "Polygon", "coordinates": [ [ - [141.050984, -37.848981], - [141.050984, -38.748301], - [141.26801, -38.748301], - [141.26801, -37.848981], - [141.050984, -37.848981] + [141.008646, -35.152594], + [141.008646, -34.254323], + [141.1883, -34.254323], + [141.1883, -35.152594], + [141.008646, -35.152594] ] ] } @@ -88,11 +88,11 @@ "type": "Polygon", "coordinates": [ [ - [141.26801, -34.251699], - [141.26801, -35.151019], - [141.485035, -35.151019], - [141.485035, -34.251699], - [141.26801, -34.251699] + [141.1883, -38.745677], + [141.1883, -37.847406], + [141.367954, -37.847406], + [141.367954, -38.745677], + [141.1883, -38.745677] ] ] } @@ -104,11 +104,11 @@ "type": "Polygon", "coordinates": [ [ - [141.26801, -35.151019], - [141.26801, -36.05034], - [141.485035, -36.05034], - [141.485035, -35.151019], - [141.26801, -35.151019] + [141.1883, -37.847406], + [141.1883, -36.949135], + [141.367954, -36.949135], + [141.367954, -37.847406], + [141.1883, -37.847406] ] ] } @@ -120,11 +120,11 @@ "type": "Polygon", "coordinates": [ [ - [141.26801, -36.05034], - [141.26801, -36.94966], - [141.485035, -36.94966], - [141.485035, -36.05034], - [141.26801, -36.05034] + [141.1883, -36.949135], + [141.1883, -36.050865], + [141.367954, -36.050865], + [141.367954, -36.949135], + [141.1883, -36.949135] ] ] } @@ -136,11 +136,11 @@ "type": "Polygon", "coordinates": [ [ - [141.26801, -36.94966], - [141.26801, -37.848981], - [141.485035, -37.848981], - [141.485035, -36.94966], - [141.26801, -36.94966] + [141.1883, -36.050865], + [141.1883, -35.152594], + [141.367954, -35.152594], + [141.367954, -36.050865], + [141.1883, -36.050865] ] ] } @@ -152,11 +152,11 @@ "type": "Polygon", "coordinates": [ [ - [141.26801, -37.848981], - [141.26801, -38.748301], - [141.485035, -38.748301], - [141.485035, -37.848981], - [141.26801, -37.848981] + [141.1883, -35.152594], + [141.1883, -34.254323], + [141.367954, -34.254323], + [141.367954, -35.152594], + [141.1883, -35.152594] ] ] } @@ -168,11 +168,11 @@ "type": "Polygon", "coordinates": [ [ - [141.485035, -34.251699], - [141.485035, -35.151019], - [141.70206, -35.151019], - [141.70206, -34.251699], - [141.485035, -34.251699] + [141.367954, -38.745677], + [141.367954, -37.847406], + [141.547608, -37.847406], + [141.547608, -38.745677], + [141.367954, -38.745677] ] ] } @@ -184,11 +184,11 @@ "type": "Polygon", "coordinates": [ [ - [141.485035, -35.151019], - [141.485035, -36.05034], - [141.70206, -36.05034], - [141.70206, -35.151019], - [141.485035, -35.151019] + [141.367954, -37.847406], + [141.367954, -36.949135], + [141.547608, -36.949135], + [141.547608, -37.847406], + [141.367954, -37.847406] ] ] } @@ -200,11 +200,11 @@ "type": "Polygon", "coordinates": [ [ - [141.485035, -36.05034], - [141.485035, -36.94966], - [141.70206, -36.94966], - [141.70206, -36.05034], - [141.485035, -36.05034] + [141.367954, -36.949135], + [141.367954, -36.050865], + [141.547608, -36.050865], + [141.547608, -36.949135], + [141.367954, -36.949135] ] ] } @@ -216,11 +216,11 @@ "type": "Polygon", "coordinates": [ [ - [141.485035, -36.94966], - [141.485035, -37.848981], - [141.70206, -37.848981], - [141.70206, -36.94966], - [141.485035, -36.94966] + [141.367954, -36.050865], + [141.367954, -35.152594], + [141.547608, -35.152594], + [141.547608, -36.050865], + [141.367954, -36.050865] ] ] } @@ -232,11 +232,11 @@ "type": "Polygon", "coordinates": [ [ - [141.485035, -37.848981], - [141.485035, -38.748301], - [141.70206, -38.748301], - [141.70206, -37.848981], - [141.485035, -37.848981] + [141.367954, -35.152594], + [141.367954, -34.254323], + [141.547608, -34.254323], + [141.547608, -35.152594], + [141.367954, -35.152594] ] ] } @@ -248,11 +248,11 @@ "type": "Polygon", "coordinates": [ [ - [141.70206, -34.251699], - [141.70206, -35.151019], - [141.919085, -35.151019], - [141.919085, -34.251699], - [141.70206, -34.251699] + [141.547608, -38.745677], + [141.547608, -37.847406], + [141.727263, -37.847406], + [141.727263, -38.745677], + [141.547608, -38.745677] ] ] } @@ -264,11 +264,11 @@ "type": "Polygon", "coordinates": [ [ - [141.70206, -35.151019], - [141.70206, -36.05034], - [141.919085, -36.05034], - [141.919085, -35.151019], - [141.70206, -35.151019] + [141.547608, -37.847406], + [141.547608, -36.949135], + [141.727263, -36.949135], + [141.727263, -37.847406], + [141.547608, -37.847406] ] ] } @@ -280,11 +280,11 @@ "type": "Polygon", "coordinates": [ [ - [141.70206, -36.05034], - [141.70206, -36.94966], - [141.919085, -36.94966], - [141.919085, -36.05034], - [141.70206, -36.05034] + [141.547608, -36.949135], + [141.547608, -36.050865], + [141.727263, -36.050865], + [141.727263, -36.949135], + [141.547608, -36.949135] ] ] } @@ -296,11 +296,11 @@ "type": "Polygon", "coordinates": [ [ - [141.70206, -36.94966], - [141.70206, -37.848981], - [141.919085, -37.848981], - [141.919085, -36.94966], - [141.70206, -36.94966] + [141.547608, -36.050865], + [141.547608, -35.152594], + [141.727263, -35.152594], + [141.727263, -36.050865], + [141.547608, -36.050865] ] ] } @@ -312,11 +312,11 @@ "type": "Polygon", "coordinates": [ [ - [141.70206, -37.848981], - [141.70206, -38.748301], - [141.919085, -38.748301], - [141.919085, -37.848981], - [141.70206, -37.848981] + [141.547608, -35.152594], + [141.547608, -34.254323], + [141.727263, -34.254323], + [141.727263, -35.152594], + [141.547608, -35.152594] ] ] } @@ -328,11 +328,11 @@ "type": "Polygon", "coordinates": [ [ - [141.919085, -34.251699], - [141.919085, -35.151019], - [142.13611, -35.151019], - [142.13611, -34.251699], - [141.919085, -34.251699] + [141.727263, -38.745677], + [141.727263, -37.847406], + [141.906917, -37.847406], + [141.906917, -38.745677], + [141.727263, -38.745677] ] ] } @@ -344,11 +344,11 @@ "type": "Polygon", "coordinates": [ [ - [141.919085, -35.151019], - [141.919085, -36.05034], - [142.13611, -36.05034], - [142.13611, -35.151019], - [141.919085, -35.151019] + [141.727263, -37.847406], + [141.727263, -36.949135], + [141.906917, -36.949135], + [141.906917, -37.847406], + [141.727263, -37.847406] ] ] } @@ -360,11 +360,11 @@ "type": "Polygon", "coordinates": [ [ - [141.919085, -36.05034], - [141.919085, -36.94966], - [142.13611, -36.94966], - [142.13611, -36.05034], - [141.919085, -36.05034] + [141.727263, -36.949135], + [141.727263, -36.050865], + [141.906917, -36.050865], + [141.906917, -36.949135], + [141.727263, -36.949135] ] ] } @@ -376,11 +376,11 @@ "type": "Polygon", "coordinates": [ [ - [141.919085, -36.94966], - [141.919085, -37.848981], - [142.13611, -37.848981], - [142.13611, -36.94966], - [141.919085, -36.94966] + [141.727263, -36.050865], + [141.727263, -35.152594], + [141.906917, -35.152594], + [141.906917, -36.050865], + [141.727263, -36.050865] ] ] } @@ -392,11 +392,11 @@ "type": "Polygon", "coordinates": [ [ - [141.919085, -37.848981], - [141.919085, -38.748301], - [142.13611, -38.748301], - [142.13611, -37.848981], - [141.919085, -37.848981] + [141.727263, -35.152594], + [141.727263, -34.254323], + [141.906917, -34.254323], + [141.906917, -35.152594], + [141.727263, -35.152594] ] ] } @@ -408,11 +408,11 @@ "type": "Polygon", "coordinates": [ [ - [142.13611, -34.251699], - [142.13611, -35.151019], - [142.353135, -35.151019], - [142.353135, -34.251699], - [142.13611, -34.251699] + [141.906917, -38.745677], + [141.906917, -37.847406], + [142.086571, -37.847406], + [142.086571, -38.745677], + [141.906917, -38.745677] ] ] } @@ -424,11 +424,11 @@ "type": "Polygon", "coordinates": [ [ - [142.13611, -35.151019], - [142.13611, -36.05034], - [142.353135, -36.05034], - [142.353135, -35.151019], - [142.13611, -35.151019] + [141.906917, -37.847406], + [141.906917, -36.949135], + [142.086571, -36.949135], + [142.086571, -37.847406], + [141.906917, -37.847406] ] ] } @@ -440,11 +440,11 @@ "type": "Polygon", "coordinates": [ [ - [142.13611, -36.05034], - [142.13611, -36.94966], - [142.353135, -36.94966], - [142.353135, -36.05034], - [142.13611, -36.05034] + [141.906917, -36.949135], + [141.906917, -36.050865], + [142.086571, -36.050865], + [142.086571, -36.949135], + [141.906917, -36.949135] ] ] } @@ -456,11 +456,11 @@ "type": "Polygon", "coordinates": [ [ - [142.13611, -36.94966], - [142.13611, -37.848981], - [142.353135, -37.848981], - [142.353135, -36.94966], - [142.13611, -36.94966] + [141.906917, -36.050865], + [141.906917, -35.152594], + [142.086571, -35.152594], + [142.086571, -36.050865], + [141.906917, -36.050865] ] ] } @@ -472,11 +472,11 @@ "type": "Polygon", "coordinates": [ [ - [142.13611, -37.848981], - [142.13611, -38.748301], - [142.353135, -38.748301], - [142.353135, -37.848981], - [142.13611, -37.848981] + [141.906917, -35.152594], + [141.906917, -34.254323], + [142.086571, -34.254323], + [142.086571, -35.152594], + [141.906917, -35.152594] ] ] } @@ -488,11 +488,11 @@ "type": "Polygon", "coordinates": [ [ - [142.353135, -34.251699], - [142.353135, -35.151019], - [142.57016, -35.151019], - [142.57016, -34.251699], - [142.353135, -34.251699] + [142.086571, -38.745677], + [142.086571, -37.847406], + [142.266225, -37.847406], + [142.266225, -38.745677], + [142.086571, -38.745677] ] ] } @@ -504,11 +504,11 @@ "type": "Polygon", "coordinates": [ [ - [142.353135, -35.151019], - [142.353135, -36.05034], - [142.57016, -36.05034], - [142.57016, -35.151019], - [142.353135, -35.151019] + [142.086571, -37.847406], + [142.086571, -36.949135], + [142.266225, -36.949135], + [142.266225, -37.847406], + [142.086571, -37.847406] ] ] } @@ -520,11 +520,11 @@ "type": "Polygon", "coordinates": [ [ - [142.353135, -36.05034], - [142.353135, -36.94966], - [142.57016, -36.94966], - [142.57016, -36.05034], - [142.353135, -36.05034] + [142.086571, -36.949135], + [142.086571, -36.050865], + [142.266225, -36.050865], + [142.266225, -36.949135], + [142.086571, -36.949135] ] ] } @@ -536,11 +536,11 @@ "type": "Polygon", "coordinates": [ [ - [142.353135, -36.94966], - [142.353135, -37.848981], - [142.57016, -37.848981], - [142.57016, -36.94966], - [142.353135, -36.94966] + [142.086571, -36.050865], + [142.086571, -35.152594], + [142.266225, -35.152594], + [142.266225, -36.050865], + [142.086571, -36.050865] ] ] } @@ -552,11 +552,11 @@ "type": "Polygon", "coordinates": [ [ - [142.353135, -37.848981], - [142.353135, -38.748301], - [142.57016, -38.748301], - [142.57016, -37.848981], - [142.353135, -37.848981] + [142.086571, -35.152594], + [142.086571, -34.254323], + [142.266225, -34.254323], + [142.266225, -35.152594], + [142.086571, -35.152594] ] ] } @@ -568,11 +568,11 @@ "type": "Polygon", "coordinates": [ [ - [142.57016, -34.251699], - [142.57016, -35.151019], - [142.787186, -35.151019], - [142.787186, -34.251699], - [142.57016, -34.251699] + [142.266225, -38.745677], + [142.266225, -37.847406], + [142.445879, -37.847406], + [142.445879, -38.745677], + [142.266225, -38.745677] ] ] } @@ -584,11 +584,11 @@ "type": "Polygon", "coordinates": [ [ - [142.57016, -35.151019], - [142.57016, -36.05034], - [142.787186, -36.05034], - [142.787186, -35.151019], - [142.57016, -35.151019] + [142.266225, -37.847406], + [142.266225, -36.949135], + [142.445879, -36.949135], + [142.445879, -37.847406], + [142.266225, -37.847406] ] ] } @@ -600,11 +600,11 @@ "type": "Polygon", "coordinates": [ [ - [142.57016, -36.05034], - [142.57016, -36.94966], - [142.787186, -36.94966], - [142.787186, -36.05034], - [142.57016, -36.05034] + [142.266225, -36.949135], + [142.266225, -36.050865], + [142.445879, -36.050865], + [142.445879, -36.949135], + [142.266225, -36.949135] ] ] } @@ -616,11 +616,11 @@ "type": "Polygon", "coordinates": [ [ - [142.57016, -36.94966], - [142.57016, -37.848981], - [142.787186, -37.848981], - [142.787186, -36.94966], - [142.57016, -36.94966] + [142.266225, -36.050865], + [142.266225, -35.152594], + [142.445879, -35.152594], + [142.445879, -36.050865], + [142.266225, -36.050865] ] ] } @@ -632,11 +632,11 @@ "type": "Polygon", "coordinates": [ [ - [142.57016, -37.848981], - [142.57016, -38.748301], - [142.787186, -38.748301], - [142.787186, -37.848981], - [142.57016, -37.848981] + [142.266225, -35.152594], + [142.266225, -34.254323], + [142.445879, -34.254323], + [142.445879, -35.152594], + [142.266225, -35.152594] ] ] } @@ -648,11 +648,11 @@ "type": "Polygon", "coordinates": [ [ - [142.787186, -34.251699], - [142.787186, -35.151019], - [143.004211, -35.151019], - [143.004211, -34.251699], - [142.787186, -34.251699] + [142.445879, -38.745677], + [142.445879, -37.847406], + [142.625533, -37.847406], + [142.625533, -38.745677], + [142.445879, -38.745677] ] ] } @@ -664,11 +664,11 @@ "type": "Polygon", "coordinates": [ [ - [142.787186, -35.151019], - [142.787186, -36.05034], - [143.004211, -36.05034], - [143.004211, -35.151019], - [142.787186, -35.151019] + [142.445879, -37.847406], + [142.445879, -36.949135], + [142.625533, -36.949135], + [142.625533, -37.847406], + [142.445879, -37.847406] ] ] } @@ -680,11 +680,11 @@ "type": "Polygon", "coordinates": [ [ - [142.787186, -36.05034], - [142.787186, -36.94966], - [143.004211, -36.94966], - [143.004211, -36.05034], - [142.787186, -36.05034] + [142.445879, -36.949135], + [142.445879, -36.050865], + [142.625533, -36.050865], + [142.625533, -36.949135], + [142.445879, -36.949135] ] ] } @@ -696,11 +696,11 @@ "type": "Polygon", "coordinates": [ [ - [142.787186, -36.94966], - [142.787186, -37.848981], - [143.004211, -37.848981], - [143.004211, -36.94966], - [142.787186, -36.94966] + [142.445879, -36.050865], + [142.445879, -35.152594], + [142.625533, -35.152594], + [142.625533, -36.050865], + [142.445879, -36.050865] ] ] } @@ -712,11 +712,11 @@ "type": "Polygon", "coordinates": [ [ - [142.787186, -37.848981], - [142.787186, -38.748301], - [143.004211, -38.748301], - [143.004211, -37.848981], - [142.787186, -37.848981] + [142.445879, -35.152594], + [142.445879, -34.254323], + [142.625533, -34.254323], + [142.625533, -35.152594], + [142.445879, -35.152594] ] ] } @@ -728,11 +728,11 @@ "type": "Polygon", "coordinates": [ [ - [143.004211, -34.251699], - [143.004211, -35.151019], - [143.221236, -35.151019], - [143.221236, -34.251699], - [143.004211, -34.251699] + [142.625533, -38.745677], + [142.625533, -37.847406], + [142.805188, -37.847406], + [142.805188, -38.745677], + [142.625533, -38.745677] ] ] } @@ -744,11 +744,11 @@ "type": "Polygon", "coordinates": [ [ - [143.004211, -35.151019], - [143.004211, -36.05034], - [143.221236, -36.05034], - [143.221236, -35.151019], - [143.004211, -35.151019] + [142.625533, -37.847406], + [142.625533, -36.949135], + [142.805188, -36.949135], + [142.805188, -37.847406], + [142.625533, -37.847406] ] ] } @@ -760,11 +760,11 @@ "type": "Polygon", "coordinates": [ [ - [143.004211, -36.05034], - [143.004211, -36.94966], - [143.221236, -36.94966], - [143.221236, -36.05034], - [143.004211, -36.05034] + [142.625533, -36.949135], + [142.625533, -36.050865], + [142.805188, -36.050865], + [142.805188, -36.949135], + [142.625533, -36.949135] ] ] } @@ -776,11 +776,11 @@ "type": "Polygon", "coordinates": [ [ - [143.004211, -36.94966], - [143.004211, -37.848981], - [143.221236, -37.848981], - [143.221236, -36.94966], - [143.004211, -36.94966] + [142.625533, -36.050865], + [142.625533, -35.152594], + [142.805188, -35.152594], + [142.805188, -36.050865], + [142.625533, -36.050865] ] ] } @@ -792,11 +792,11 @@ "type": "Polygon", "coordinates": [ [ - [143.004211, -37.848981], - [143.004211, -38.748301], - [143.221236, -38.748301], - [143.221236, -37.848981], - [143.004211, -37.848981] + [142.625533, -35.152594], + [142.625533, -34.254323], + [142.805188, -34.254323], + [142.805188, -35.152594], + [142.625533, -35.152594] ] ] } @@ -808,11 +808,11 @@ "type": "Polygon", "coordinates": [ [ - [143.221236, -34.251699], - [143.221236, -35.151019], - [143.438261, -35.151019], - [143.438261, -34.251699], - [143.221236, -34.251699] + [142.805188, -38.745677], + [142.805188, -37.847406], + [142.984842, -37.847406], + [142.984842, -38.745677], + [142.805188, -38.745677] ] ] } @@ -824,11 +824,11 @@ "type": "Polygon", "coordinates": [ [ - [143.221236, -35.151019], - [143.221236, -36.05034], - [143.438261, -36.05034], - [143.438261, -35.151019], - [143.221236, -35.151019] + [142.805188, -37.847406], + [142.805188, -36.949135], + [142.984842, -36.949135], + [142.984842, -37.847406], + [142.805188, -37.847406] ] ] } @@ -840,11 +840,11 @@ "type": "Polygon", "coordinates": [ [ - [143.221236, -36.05034], - [143.221236, -36.94966], - [143.438261, -36.94966], - [143.438261, -36.05034], - [143.221236, -36.05034] + [142.805188, -36.949135], + [142.805188, -36.050865], + [142.984842, -36.050865], + [142.984842, -36.949135], + [142.805188, -36.949135] ] ] } @@ -856,11 +856,11 @@ "type": "Polygon", "coordinates": [ [ - [143.221236, -36.94966], - [143.221236, -37.848981], - [143.438261, -37.848981], - [143.438261, -36.94966], - [143.221236, -36.94966] + [142.805188, -36.050865], + [142.805188, -35.152594], + [142.984842, -35.152594], + [142.984842, -36.050865], + [142.805188, -36.050865] ] ] } @@ -872,11 +872,11 @@ "type": "Polygon", "coordinates": [ [ - [143.221236, -37.848981], - [143.221236, -38.748301], - [143.438261, -38.748301], - [143.438261, -37.848981], - [143.221236, -37.848981] + [142.805188, -35.152594], + [142.805188, -34.254323], + [142.984842, -34.254323], + [142.984842, -35.152594], + [142.805188, -35.152594] ] ] } @@ -888,11 +888,11 @@ "type": "Polygon", "coordinates": [ [ - [143.438261, -34.251699], - [143.438261, -35.151019], - [143.655286, -35.151019], - [143.655286, -34.251699], - [143.438261, -34.251699] + [142.984842, -38.745677], + [142.984842, -37.847406], + [143.164496, -37.847406], + [143.164496, -38.745677], + [142.984842, -38.745677] ] ] } @@ -904,11 +904,11 @@ "type": "Polygon", "coordinates": [ [ - [143.438261, -35.151019], - [143.438261, -36.05034], - [143.655286, -36.05034], - [143.655286, -35.151019], - [143.438261, -35.151019] + [142.984842, -37.847406], + [142.984842, -36.949135], + [143.164496, -36.949135], + [143.164496, -37.847406], + [142.984842, -37.847406] ] ] } @@ -920,11 +920,11 @@ "type": "Polygon", "coordinates": [ [ - [143.438261, -36.05034], - [143.438261, -36.94966], - [143.655286, -36.94966], - [143.655286, -36.05034], - [143.438261, -36.05034] + [142.984842, -36.949135], + [142.984842, -36.050865], + [143.164496, -36.050865], + [143.164496, -36.949135], + [142.984842, -36.949135] ] ] } @@ -936,11 +936,11 @@ "type": "Polygon", "coordinates": [ [ - [143.438261, -36.94966], - [143.438261, -37.848981], - [143.655286, -37.848981], - [143.655286, -36.94966], - [143.438261, -36.94966] + [142.984842, -36.050865], + [142.984842, -35.152594], + [143.164496, -35.152594], + [143.164496, -36.050865], + [142.984842, -36.050865] ] ] } @@ -952,11 +952,11 @@ "type": "Polygon", "coordinates": [ [ - [143.438261, -37.848981], - [143.438261, -38.748301], - [143.655286, -38.748301], - [143.655286, -37.848981], - [143.438261, -37.848981] + [142.984842, -35.152594], + [142.984842, -34.254323], + [143.164496, -34.254323], + [143.164496, -35.152594], + [142.984842, -35.152594] ] ] } @@ -968,11 +968,11 @@ "type": "Polygon", "coordinates": [ [ - [143.655286, -34.251699], - [143.655286, -35.151019], - [143.872311, -35.151019], - [143.872311, -34.251699], - [143.655286, -34.251699] + [143.164496, -38.745677], + [143.164496, -37.847406], + [143.34415, -37.847406], + [143.34415, -38.745677], + [143.164496, -38.745677] ] ] } @@ -984,11 +984,11 @@ "type": "Polygon", "coordinates": [ [ - [143.655286, -35.151019], - [143.655286, -36.05034], - [143.872311, -36.05034], - [143.872311, -35.151019], - [143.655286, -35.151019] + [143.164496, -37.847406], + [143.164496, -36.949135], + [143.34415, -36.949135], + [143.34415, -37.847406], + [143.164496, -37.847406] ] ] } @@ -1000,11 +1000,11 @@ "type": "Polygon", "coordinates": [ [ - [143.655286, -36.05034], - [143.655286, -36.94966], - [143.872311, -36.94966], - [143.872311, -36.05034], - [143.655286, -36.05034] + [143.164496, -36.949135], + [143.164496, -36.050865], + [143.34415, -36.050865], + [143.34415, -36.949135], + [143.164496, -36.949135] ] ] } @@ -1016,11 +1016,11 @@ "type": "Polygon", "coordinates": [ [ - [143.655286, -36.94966], - [143.655286, -37.848981], - [143.872311, -37.848981], - [143.872311, -36.94966], - [143.655286, -36.94966] + [143.164496, -36.050865], + [143.164496, -35.152594], + [143.34415, -35.152594], + [143.34415, -36.050865], + [143.164496, -36.050865] ] ] } @@ -1032,11 +1032,11 @@ "type": "Polygon", "coordinates": [ [ - [143.655286, -37.848981], - [143.655286, -38.748301], - [143.872311, -38.748301], - [143.872311, -37.848981], - [143.655286, -37.848981] + [143.164496, -35.152594], + [143.164496, -34.254323], + [143.34415, -34.254323], + [143.34415, -35.152594], + [143.164496, -35.152594] ] ] } @@ -1048,11 +1048,11 @@ "type": "Polygon", "coordinates": [ [ - [143.872311, -34.251699], - [143.872311, -35.151019], - [144.089337, -35.151019], - [144.089337, -34.251699], - [143.872311, -34.251699] + [143.34415, -38.745677], + [143.34415, -37.847406], + [143.523804, -37.847406], + [143.523804, -38.745677], + [143.34415, -38.745677] ] ] } @@ -1064,11 +1064,11 @@ "type": "Polygon", "coordinates": [ [ - [143.872311, -35.151019], - [143.872311, -36.05034], - [144.089337, -36.05034], - [144.089337, -35.151019], - [143.872311, -35.151019] + [143.34415, -37.847406], + [143.34415, -36.949135], + [143.523804, -36.949135], + [143.523804, -37.847406], + [143.34415, -37.847406] ] ] } @@ -1080,11 +1080,11 @@ "type": "Polygon", "coordinates": [ [ - [143.872311, -36.05034], - [143.872311, -36.94966], - [144.089337, -36.94966], - [144.089337, -36.05034], - [143.872311, -36.05034] + [143.34415, -36.949135], + [143.34415, -36.050865], + [143.523804, -36.050865], + [143.523804, -36.949135], + [143.34415, -36.949135] ] ] } @@ -1096,11 +1096,11 @@ "type": "Polygon", "coordinates": [ [ - [143.872311, -36.94966], - [143.872311, -37.848981], - [144.089337, -37.848981], - [144.089337, -36.94966], - [143.872311, -36.94966] + [143.34415, -36.050865], + [143.34415, -35.152594], + [143.523804, -35.152594], + [143.523804, -36.050865], + [143.34415, -36.050865] ] ] } @@ -1112,11 +1112,11 @@ "type": "Polygon", "coordinates": [ [ - [143.872311, -37.848981], - [143.872311, -38.748301], - [144.089337, -38.748301], - [144.089337, -37.848981], - [143.872311, -37.848981] + [143.34415, -35.152594], + [143.34415, -34.254323], + [143.523804, -34.254323], + [143.523804, -35.152594], + [143.34415, -35.152594] ] ] } @@ -1128,11 +1128,11 @@ "type": "Polygon", "coordinates": [ [ - [144.089337, -34.251699], - [144.089337, -35.151019], - [144.306362, -35.151019], - [144.306362, -34.251699], - [144.089337, -34.251699] + [143.523804, -38.745677], + [143.523804, -37.847406], + [143.703458, -37.847406], + [143.703458, -38.745677], + [143.523804, -38.745677] ] ] } @@ -1144,11 +1144,11 @@ "type": "Polygon", "coordinates": [ [ - [144.089337, -35.151019], - [144.089337, -36.05034], - [144.306362, -36.05034], - [144.306362, -35.151019], - [144.089337, -35.151019] + [143.523804, -37.847406], + [143.523804, -36.949135], + [143.703458, -36.949135], + [143.703458, -37.847406], + [143.523804, -37.847406] ] ] } @@ -1160,11 +1160,11 @@ "type": "Polygon", "coordinates": [ [ - [144.089337, -36.05034], - [144.089337, -36.94966], - [144.306362, -36.94966], - [144.306362, -36.05034], - [144.089337, -36.05034] + [143.523804, -36.949135], + [143.523804, -36.050865], + [143.703458, -36.050865], + [143.703458, -36.949135], + [143.523804, -36.949135] ] ] } @@ -1176,11 +1176,11 @@ "type": "Polygon", "coordinates": [ [ - [144.089337, -36.94966], - [144.089337, -37.848981], - [144.306362, -37.848981], - [144.306362, -36.94966], - [144.089337, -36.94966] + [143.523804, -36.050865], + [143.523804, -35.152594], + [143.703458, -35.152594], + [143.703458, -36.050865], + [143.523804, -36.050865] ] ] } @@ -1192,11 +1192,11 @@ "type": "Polygon", "coordinates": [ [ - [144.089337, -37.848981], - [144.089337, -38.748301], - [144.306362, -38.748301], - [144.306362, -37.848981], - [144.089337, -37.848981] + [143.523804, -35.152594], + [143.523804, -34.254323], + [143.703458, -34.254323], + [143.703458, -35.152594], + [143.523804, -35.152594] ] ] } @@ -1208,11 +1208,11 @@ "type": "Polygon", "coordinates": [ [ - [144.306362, -34.251699], - [144.306362, -35.151019], - [144.523387, -35.151019], - [144.523387, -34.251699], - [144.306362, -34.251699] + [143.703458, -38.745677], + [143.703458, -37.847406], + [143.883113, -37.847406], + [143.883113, -38.745677], + [143.703458, -38.745677] ] ] } @@ -1224,11 +1224,11 @@ "type": "Polygon", "coordinates": [ [ - [144.306362, -35.151019], - [144.306362, -36.05034], - [144.523387, -36.05034], - [144.523387, -35.151019], - [144.306362, -35.151019] + [143.703458, -37.847406], + [143.703458, -36.949135], + [143.883113, -36.949135], + [143.883113, -37.847406], + [143.703458, -37.847406] ] ] } @@ -1240,11 +1240,11 @@ "type": "Polygon", "coordinates": [ [ - [144.306362, -36.05034], - [144.306362, -36.94966], - [144.523387, -36.94966], - [144.523387, -36.05034], - [144.306362, -36.05034] + [143.703458, -36.949135], + [143.703458, -36.050865], + [143.883113, -36.050865], + [143.883113, -36.949135], + [143.703458, -36.949135] ] ] } @@ -1256,11 +1256,11 @@ "type": "Polygon", "coordinates": [ [ - [144.306362, -36.94966], - [144.306362, -37.848981], - [144.523387, -37.848981], - [144.523387, -36.94966], - [144.306362, -36.94966] + [143.703458, -36.050865], + [143.703458, -35.152594], + [143.883113, -35.152594], + [143.883113, -36.050865], + [143.703458, -36.050865] ] ] } @@ -1272,11 +1272,11 @@ "type": "Polygon", "coordinates": [ [ - [144.306362, -37.848981], - [144.306362, -38.748301], - [144.523387, -38.748301], - [144.523387, -37.848981], - [144.306362, -37.848981] + [143.703458, -35.152594], + [143.703458, -34.254323], + [143.883113, -34.254323], + [143.883113, -35.152594], + [143.703458, -35.152594] ] ] } @@ -1288,11 +1288,11 @@ "type": "Polygon", "coordinates": [ [ - [144.523387, -34.251699], - [144.523387, -35.151019], - [144.740412, -35.151019], - [144.740412, -34.251699], - [144.523387, -34.251699] + [143.883113, -38.745677], + [143.883113, -37.847406], + [144.062767, -37.847406], + [144.062767, -38.745677], + [143.883113, -38.745677] ] ] } @@ -1304,11 +1304,11 @@ "type": "Polygon", "coordinates": [ [ - [144.523387, -35.151019], - [144.523387, -36.05034], - [144.740412, -36.05034], - [144.740412, -35.151019], - [144.523387, -35.151019] + [143.883113, -37.847406], + [143.883113, -36.949135], + [144.062767, -36.949135], + [144.062767, -37.847406], + [143.883113, -37.847406] ] ] } @@ -1320,11 +1320,11 @@ "type": "Polygon", "coordinates": [ [ - [144.523387, -36.05034], - [144.523387, -36.94966], - [144.740412, -36.94966], - [144.740412, -36.05034], - [144.523387, -36.05034] + [143.883113, -36.949135], + [143.883113, -36.050865], + [144.062767, -36.050865], + [144.062767, -36.949135], + [143.883113, -36.949135] ] ] } @@ -1336,11 +1336,11 @@ "type": "Polygon", "coordinates": [ [ - [144.523387, -36.94966], - [144.523387, -37.848981], - [144.740412, -37.848981], - [144.740412, -36.94966], - [144.523387, -36.94966] + [143.883113, -36.050865], + [143.883113, -35.152594], + [144.062767, -35.152594], + [144.062767, -36.050865], + [143.883113, -36.050865] ] ] } @@ -1352,11 +1352,11 @@ "type": "Polygon", "coordinates": [ [ - [144.523387, -37.848981], - [144.523387, -38.748301], - [144.740412, -38.748301], - [144.740412, -37.848981], - [144.523387, -37.848981] + [143.883113, -35.152594], + [143.883113, -34.254323], + [144.062767, -34.254323], + [144.062767, -35.152594], + [143.883113, -35.152594] ] ] } @@ -1368,11 +1368,11 @@ "type": "Polygon", "coordinates": [ [ - [144.740412, -34.251699], - [144.740412, -35.151019], - [144.957437, -35.151019], - [144.957437, -34.251699], - [144.740412, -34.251699] + [144.062767, -38.745677], + [144.062767, -37.847406], + [144.242421, -37.847406], + [144.242421, -38.745677], + [144.062767, -38.745677] ] ] } @@ -1384,11 +1384,11 @@ "type": "Polygon", "coordinates": [ [ - [144.740412, -35.151019], - [144.740412, -36.05034], - [144.957437, -36.05034], - [144.957437, -35.151019], - [144.740412, -35.151019] + [144.062767, -37.847406], + [144.062767, -36.949135], + [144.242421, -36.949135], + [144.242421, -37.847406], + [144.062767, -37.847406] ] ] } @@ -1400,11 +1400,11 @@ "type": "Polygon", "coordinates": [ [ - [144.740412, -36.05034], - [144.740412, -36.94966], - [144.957437, -36.94966], - [144.957437, -36.05034], - [144.740412, -36.05034] + [144.062767, -36.949135], + [144.062767, -36.050865], + [144.242421, -36.050865], + [144.242421, -36.949135], + [144.062767, -36.949135] ] ] } @@ -1416,11 +1416,11 @@ "type": "Polygon", "coordinates": [ [ - [144.740412, -36.94966], - [144.740412, -37.848981], - [144.957437, -37.848981], - [144.957437, -36.94966], - [144.740412, -36.94966] + [144.062767, -36.050865], + [144.062767, -35.152594], + [144.242421, -35.152594], + [144.242421, -36.050865], + [144.062767, -36.050865] ] ] } @@ -1432,11 +1432,11 @@ "type": "Polygon", "coordinates": [ [ - [144.740412, -37.848981], - [144.740412, -38.748301], - [144.957437, -38.748301], - [144.957437, -37.848981], - [144.740412, -37.848981] + [144.062767, -35.152594], + [144.062767, -34.254323], + [144.242421, -34.254323], + [144.242421, -35.152594], + [144.062767, -35.152594] ] ] } @@ -1448,11 +1448,11 @@ "type": "Polygon", "coordinates": [ [ - [144.957437, -34.251699], - [144.957437, -35.151019], - [145.174462, -35.151019], - [145.174462, -34.251699], - [144.957437, -34.251699] + [144.242421, -38.745677], + [144.242421, -37.847406], + [144.422075, -37.847406], + [144.422075, -38.745677], + [144.242421, -38.745677] ] ] } @@ -1464,11 +1464,11 @@ "type": "Polygon", "coordinates": [ [ - [144.957437, -35.151019], - [144.957437, -36.05034], - [145.174462, -36.05034], - [145.174462, -35.151019], - [144.957437, -35.151019] + [144.242421, -37.847406], + [144.242421, -36.949135], + [144.422075, -36.949135], + [144.422075, -37.847406], + [144.242421, -37.847406] ] ] } @@ -1480,11 +1480,11 @@ "type": "Polygon", "coordinates": [ [ - [144.957437, -36.05034], - [144.957437, -36.94966], - [145.174462, -36.94966], - [145.174462, -36.05034], - [144.957437, -36.05034] + [144.242421, -36.949135], + [144.242421, -36.050865], + [144.422075, -36.050865], + [144.422075, -36.949135], + [144.242421, -36.949135] ] ] } @@ -1496,11 +1496,11 @@ "type": "Polygon", "coordinates": [ [ - [144.957437, -36.94966], - [144.957437, -37.848981], - [145.174462, -37.848981], - [145.174462, -36.94966], - [144.957437, -36.94966] + [144.242421, -36.050865], + [144.242421, -35.152594], + [144.422075, -35.152594], + [144.422075, -36.050865], + [144.242421, -36.050865] ] ] } @@ -1512,11 +1512,11 @@ "type": "Polygon", "coordinates": [ [ - [144.957437, -37.848981], - [144.957437, -38.748301], - [145.174462, -38.748301], - [145.174462, -37.848981], - [144.957437, -37.848981] + [144.242421, -35.152594], + [144.242421, -34.254323], + [144.422075, -34.254323], + [144.422075, -35.152594], + [144.242421, -35.152594] ] ] } @@ -1528,11 +1528,11 @@ "type": "Polygon", "coordinates": [ [ - [145.174462, -34.251699], - [145.174462, -35.151019], - [145.391487, -35.151019], - [145.391487, -34.251699], - [145.174462, -34.251699] + [144.422075, -38.745677], + [144.422075, -37.847406], + [144.601729, -37.847406], + [144.601729, -38.745677], + [144.422075, -38.745677] ] ] } @@ -1544,11 +1544,11 @@ "type": "Polygon", "coordinates": [ [ - [145.174462, -35.151019], - [145.174462, -36.05034], - [145.391487, -36.05034], - [145.391487, -35.151019], - [145.174462, -35.151019] + [144.422075, -37.847406], + [144.422075, -36.949135], + [144.601729, -36.949135], + [144.601729, -37.847406], + [144.422075, -37.847406] ] ] } @@ -1560,11 +1560,11 @@ "type": "Polygon", "coordinates": [ [ - [145.174462, -36.05034], - [145.174462, -36.94966], - [145.391487, -36.94966], - [145.391487, -36.05034], - [145.174462, -36.05034] + [144.422075, -36.949135], + [144.422075, -36.050865], + [144.601729, -36.050865], + [144.601729, -36.949135], + [144.422075, -36.949135] ] ] } @@ -1576,11 +1576,11 @@ "type": "Polygon", "coordinates": [ [ - [145.174462, -36.94966], - [145.174462, -37.848981], - [145.391487, -37.848981], - [145.391487, -36.94966], - [145.174462, -36.94966] + [144.422075, -36.050865], + [144.422075, -35.152594], + [144.601729, -35.152594], + [144.601729, -36.050865], + [144.422075, -36.050865] ] ] } @@ -1592,11 +1592,11 @@ "type": "Polygon", "coordinates": [ [ - [145.174462, -37.848981], - [145.174462, -38.748301], - [145.391487, -38.748301], - [145.391487, -37.848981], - [145.174462, -37.848981] + [144.422075, -35.152594], + [144.422075, -34.254323], + [144.601729, -34.254323], + [144.601729, -35.152594], + [144.422075, -35.152594] ] ] } @@ -1608,11 +1608,11 @@ "type": "Polygon", "coordinates": [ [ - [145.391487, -34.251699], - [145.391487, -35.151019], - [145.608513, -35.151019], - [145.608513, -34.251699], - [145.391487, -34.251699] + [144.601729, -38.745677], + [144.601729, -37.847406], + [144.781383, -37.847406], + [144.781383, -38.745677], + [144.601729, -38.745677] ] ] } @@ -1624,11 +1624,11 @@ "type": "Polygon", "coordinates": [ [ - [145.391487, -35.151019], - [145.391487, -36.05034], - [145.608513, -36.05034], - [145.608513, -35.151019], - [145.391487, -35.151019] + [144.601729, -37.847406], + [144.601729, -36.949135], + [144.781383, -36.949135], + [144.781383, -37.847406], + [144.601729, -37.847406] ] ] } @@ -1640,11 +1640,11 @@ "type": "Polygon", "coordinates": [ [ - [145.391487, -36.05034], - [145.391487, -36.94966], - [145.608513, -36.94966], - [145.608513, -36.05034], - [145.391487, -36.05034] + [144.601729, -36.949135], + [144.601729, -36.050865], + [144.781383, -36.050865], + [144.781383, -36.949135], + [144.601729, -36.949135] ] ] } @@ -1656,11 +1656,11 @@ "type": "Polygon", "coordinates": [ [ - [145.391487, -36.94966], - [145.391487, -37.848981], - [145.608513, -37.848981], - [145.608513, -36.94966], - [145.391487, -36.94966] + [144.601729, -36.050865], + [144.601729, -35.152594], + [144.781383, -35.152594], + [144.781383, -36.050865], + [144.601729, -36.050865] ] ] } @@ -1672,11 +1672,11 @@ "type": "Polygon", "coordinates": [ [ - [145.391487, -37.848981], - [145.391487, -38.748301], - [145.608513, -38.748301], - [145.608513, -37.848981], - [145.391487, -37.848981] + [144.601729, -35.152594], + [144.601729, -34.254323], + [144.781383, -34.254323], + [144.781383, -35.152594], + [144.601729, -35.152594] ] ] } @@ -1688,11 +1688,11 @@ "type": "Polygon", "coordinates": [ [ - [145.608513, -34.251699], - [145.608513, -35.151019], - [145.825538, -35.151019], - [145.825538, -34.251699], - [145.608513, -34.251699] + [144.781383, -38.745677], + [144.781383, -37.847406], + [144.961038, -37.847406], + [144.961038, -38.745677], + [144.781383, -38.745677] ] ] } @@ -1704,11 +1704,11 @@ "type": "Polygon", "coordinates": [ [ - [145.608513, -35.151019], - [145.608513, -36.05034], - [145.825538, -36.05034], - [145.825538, -35.151019], - [145.608513, -35.151019] + [144.781383, -37.847406], + [144.781383, -36.949135], + [144.961038, -36.949135], + [144.961038, -37.847406], + [144.781383, -37.847406] ] ] } @@ -1720,11 +1720,11 @@ "type": "Polygon", "coordinates": [ [ - [145.608513, -36.05034], - [145.608513, -36.94966], - [145.825538, -36.94966], - [145.825538, -36.05034], - [145.608513, -36.05034] + [144.781383, -36.949135], + [144.781383, -36.050865], + [144.961038, -36.050865], + [144.961038, -36.949135], + [144.781383, -36.949135] ] ] } @@ -1736,11 +1736,11 @@ "type": "Polygon", "coordinates": [ [ - [145.608513, -36.94966], - [145.608513, -37.848981], - [145.825538, -37.848981], - [145.825538, -36.94966], - [145.608513, -36.94966] + [144.781383, -36.050865], + [144.781383, -35.152594], + [144.961038, -35.152594], + [144.961038, -36.050865], + [144.781383, -36.050865] ] ] } @@ -1752,11 +1752,11 @@ "type": "Polygon", "coordinates": [ [ - [145.608513, -37.848981], - [145.608513, -38.748301], - [145.825538, -38.748301], - [145.825538, -37.848981], - [145.608513, -37.848981] + [144.781383, -35.152594], + [144.781383, -34.254323], + [144.961038, -34.254323], + [144.961038, -35.152594], + [144.781383, -35.152594] ] ] } @@ -1768,11 +1768,11 @@ "type": "Polygon", "coordinates": [ [ - [145.825538, -34.251699], - [145.825538, -35.151019], - [146.042563, -35.151019], - [146.042563, -34.251699], - [145.825538, -34.251699] + [144.961038, -38.745677], + [144.961038, -37.847406], + [145.140692, -37.847406], + [145.140692, -38.745677], + [144.961038, -38.745677] ] ] } @@ -1784,11 +1784,11 @@ "type": "Polygon", "coordinates": [ [ - [145.825538, -35.151019], - [145.825538, -36.05034], - [146.042563, -36.05034], - [146.042563, -35.151019], - [145.825538, -35.151019] + [144.961038, -37.847406], + [144.961038, -36.949135], + [145.140692, -36.949135], + [145.140692, -37.847406], + [144.961038, -37.847406] ] ] } @@ -1800,11 +1800,11 @@ "type": "Polygon", "coordinates": [ [ - [145.825538, -36.05034], - [145.825538, -36.94966], - [146.042563, -36.94966], - [146.042563, -36.05034], - [145.825538, -36.05034] + [144.961038, -36.949135], + [144.961038, -36.050865], + [145.140692, -36.050865], + [145.140692, -36.949135], + [144.961038, -36.949135] ] ] } @@ -1816,11 +1816,11 @@ "type": "Polygon", "coordinates": [ [ - [145.825538, -36.94966], - [145.825538, -37.848981], - [146.042563, -37.848981], - [146.042563, -36.94966], - [145.825538, -36.94966] + [144.961038, -36.050865], + [144.961038, -35.152594], + [145.140692, -35.152594], + [145.140692, -36.050865], + [144.961038, -36.050865] ] ] } @@ -1832,11 +1832,11 @@ "type": "Polygon", "coordinates": [ [ - [145.825538, -37.848981], - [145.825538, -38.748301], - [146.042563, -38.748301], - [146.042563, -37.848981], - [145.825538, -37.848981] + [144.961038, -35.152594], + [144.961038, -34.254323], + [145.140692, -34.254323], + [145.140692, -35.152594], + [144.961038, -35.152594] ] ] } @@ -1848,11 +1848,11 @@ "type": "Polygon", "coordinates": [ [ - [146.042563, -34.251699], - [146.042563, -35.151019], - [146.259588, -35.151019], - [146.259588, -34.251699], - [146.042563, -34.251699] + [145.140692, -38.745677], + [145.140692, -37.847406], + [145.320346, -37.847406], + [145.320346, -38.745677], + [145.140692, -38.745677] ] ] } @@ -1864,11 +1864,11 @@ "type": "Polygon", "coordinates": [ [ - [146.042563, -35.151019], - [146.042563, -36.05034], - [146.259588, -36.05034], - [146.259588, -35.151019], - [146.042563, -35.151019] + [145.140692, -37.847406], + [145.140692, -36.949135], + [145.320346, -36.949135], + [145.320346, -37.847406], + [145.140692, -37.847406] ] ] } @@ -1880,11 +1880,11 @@ "type": "Polygon", "coordinates": [ [ - [146.042563, -36.05034], - [146.042563, -36.94966], - [146.259588, -36.94966], - [146.259588, -36.05034], - [146.042563, -36.05034] + [145.140692, -36.949135], + [145.140692, -36.050865], + [145.320346, -36.050865], + [145.320346, -36.949135], + [145.140692, -36.949135] ] ] } @@ -1896,11 +1896,11 @@ "type": "Polygon", "coordinates": [ [ - [146.042563, -36.94966], - [146.042563, -37.848981], - [146.259588, -37.848981], - [146.259588, -36.94966], - [146.042563, -36.94966] + [145.140692, -36.050865], + [145.140692, -35.152594], + [145.320346, -35.152594], + [145.320346, -36.050865], + [145.140692, -36.050865] ] ] } @@ -1912,11 +1912,11 @@ "type": "Polygon", "coordinates": [ [ - [146.042563, -37.848981], - [146.042563, -38.748301], - [146.259588, -38.748301], - [146.259588, -37.848981], - [146.042563, -37.848981] + [145.140692, -35.152594], + [145.140692, -34.254323], + [145.320346, -34.254323], + [145.320346, -35.152594], + [145.140692, -35.152594] ] ] } @@ -1928,11 +1928,11 @@ "type": "Polygon", "coordinates": [ [ - [146.259588, -34.251699], - [146.259588, -35.151019], - [146.476613, -35.151019], - [146.476613, -34.251699], - [146.259588, -34.251699] + [145.320346, -38.745677], + [145.320346, -37.847406], + [145.5, -37.847406], + [145.5, -38.745677], + [145.320346, -38.745677] ] ] } @@ -1944,11 +1944,11 @@ "type": "Polygon", "coordinates": [ [ - [146.259588, -35.151019], - [146.259588, -36.05034], - [146.476613, -36.05034], - [146.476613, -35.151019], - [146.259588, -35.151019] + [145.320346, -37.847406], + [145.320346, -36.949135], + [145.5, -36.949135], + [145.5, -37.847406], + [145.320346, -37.847406] ] ] } @@ -1960,11 +1960,11 @@ "type": "Polygon", "coordinates": [ [ - [146.259588, -36.05034], - [146.259588, -36.94966], - [146.476613, -36.94966], - [146.476613, -36.05034], - [146.259588, -36.05034] + [145.320346, -36.949135], + [145.320346, -36.050865], + [145.5, -36.050865], + [145.5, -36.949135], + [145.320346, -36.949135] ] ] } @@ -1976,11 +1976,11 @@ "type": "Polygon", "coordinates": [ [ - [146.259588, -36.94966], - [146.259588, -37.848981], - [146.476613, -37.848981], - [146.476613, -36.94966], - [146.259588, -36.94966] + [145.320346, -36.050865], + [145.320346, -35.152594], + [145.5, -35.152594], + [145.5, -36.050865], + [145.320346, -36.050865] ] ] } @@ -1992,11 +1992,11 @@ "type": "Polygon", "coordinates": [ [ - [146.259588, -37.848981], - [146.259588, -38.748301], - [146.476613, -38.748301], - [146.476613, -37.848981], - [146.259588, -37.848981] + [145.320346, -35.152594], + [145.320346, -34.254323], + [145.5, -34.254323], + [145.5, -35.152594], + [145.320346, -35.152594] ] ] } @@ -2008,11 +2008,11 @@ "type": "Polygon", "coordinates": [ [ - [146.476613, -34.251699], - [146.476613, -35.151019], - [146.693638, -35.151019], - [146.693638, -34.251699], - [146.476613, -34.251699] + [145.5, -38.745677], + [145.5, -37.847406], + [145.679654, -37.847406], + [145.679654, -38.745677], + [145.5, -38.745677] ] ] } @@ -2024,11 +2024,11 @@ "type": "Polygon", "coordinates": [ [ - [146.476613, -35.151019], - [146.476613, -36.05034], - [146.693638, -36.05034], - [146.693638, -35.151019], - [146.476613, -35.151019] + [145.5, -37.847406], + [145.5, -36.949135], + [145.679654, -36.949135], + [145.679654, -37.847406], + [145.5, -37.847406] ] ] } @@ -2040,11 +2040,11 @@ "type": "Polygon", "coordinates": [ [ - [146.476613, -36.05034], - [146.476613, -36.94966], - [146.693638, -36.94966], - [146.693638, -36.05034], - [146.476613, -36.05034] + [145.5, -36.949135], + [145.5, -36.050865], + [145.679654, -36.050865], + [145.679654, -36.949135], + [145.5, -36.949135] ] ] } @@ -2056,11 +2056,11 @@ "type": "Polygon", "coordinates": [ [ - [146.476613, -36.94966], - [146.476613, -37.848981], - [146.693638, -37.848981], - [146.693638, -36.94966], - [146.476613, -36.94966] + [145.5, -36.050865], + [145.5, -35.152594], + [145.679654, -35.152594], + [145.679654, -36.050865], + [145.5, -36.050865] ] ] } @@ -2072,11 +2072,11 @@ "type": "Polygon", "coordinates": [ [ - [146.476613, -37.848981], - [146.476613, -38.748301], - [146.693638, -38.748301], - [146.693638, -37.848981], - [146.476613, -37.848981] + [145.5, -35.152594], + [145.5, -34.254323], + [145.679654, -34.254323], + [145.679654, -35.152594], + [145.5, -35.152594] ] ] } @@ -2088,11 +2088,11 @@ "type": "Polygon", "coordinates": [ [ - [146.693638, -34.251699], - [146.693638, -35.151019], - [146.910663, -35.151019], - [146.910663, -34.251699], - [146.693638, -34.251699] + [145.679654, -38.745677], + [145.679654, -37.847406], + [145.859308, -37.847406], + [145.859308, -38.745677], + [145.679654, -38.745677] ] ] } @@ -2104,11 +2104,11 @@ "type": "Polygon", "coordinates": [ [ - [146.693638, -35.151019], - [146.693638, -36.05034], - [146.910663, -36.05034], - [146.910663, -35.151019], - [146.693638, -35.151019] + [145.679654, -37.847406], + [145.679654, -36.949135], + [145.859308, -36.949135], + [145.859308, -37.847406], + [145.679654, -37.847406] ] ] } @@ -2120,11 +2120,11 @@ "type": "Polygon", "coordinates": [ [ - [146.693638, -36.05034], - [146.693638, -36.94966], - [146.910663, -36.94966], - [146.910663, -36.05034], - [146.693638, -36.05034] + [145.679654, -36.949135], + [145.679654, -36.050865], + [145.859308, -36.050865], + [145.859308, -36.949135], + [145.679654, -36.949135] ] ] } @@ -2136,11 +2136,11 @@ "type": "Polygon", "coordinates": [ [ - [146.693638, -36.94966], - [146.693638, -37.848981], - [146.910663, -37.848981], - [146.910663, -36.94966], - [146.693638, -36.94966] + [145.679654, -36.050865], + [145.679654, -35.152594], + [145.859308, -35.152594], + [145.859308, -36.050865], + [145.679654, -36.050865] ] ] } @@ -2152,11 +2152,11 @@ "type": "Polygon", "coordinates": [ [ - [146.693638, -37.848981], - [146.693638, -38.748301], - [146.910663, -38.748301], - [146.910663, -37.848981], - [146.693638, -37.848981] + [145.679654, -35.152594], + [145.679654, -34.254323], + [145.859308, -34.254323], + [145.859308, -35.152594], + [145.679654, -35.152594] ] ] } @@ -2168,11 +2168,11 @@ "type": "Polygon", "coordinates": [ [ - [146.910663, -34.251699], - [146.910663, -35.151019], - [147.127689, -35.151019], - [147.127689, -34.251699], - [146.910663, -34.251699] + [145.859308, -38.745677], + [145.859308, -37.847406], + [146.038962, -37.847406], + [146.038962, -38.745677], + [145.859308, -38.745677] ] ] } @@ -2184,11 +2184,11 @@ "type": "Polygon", "coordinates": [ [ - [146.910663, -35.151019], - [146.910663, -36.05034], - [147.127689, -36.05034], - [147.127689, -35.151019], - [146.910663, -35.151019] + [145.859308, -37.847406], + [145.859308, -36.949135], + [146.038962, -36.949135], + [146.038962, -37.847406], + [145.859308, -37.847406] ] ] } @@ -2200,11 +2200,11 @@ "type": "Polygon", "coordinates": [ [ - [146.910663, -36.05034], - [146.910663, -36.94966], - [147.127689, -36.94966], - [147.127689, -36.05034], - [146.910663, -36.05034] + [145.859308, -36.949135], + [145.859308, -36.050865], + [146.038962, -36.050865], + [146.038962, -36.949135], + [145.859308, -36.949135] ] ] } @@ -2216,11 +2216,11 @@ "type": "Polygon", "coordinates": [ [ - [146.910663, -36.94966], - [146.910663, -37.848981], - [147.127689, -37.848981], - [147.127689, -36.94966], - [146.910663, -36.94966] + [145.859308, -36.050865], + [145.859308, -35.152594], + [146.038962, -35.152594], + [146.038962, -36.050865], + [145.859308, -36.050865] ] ] } @@ -2232,11 +2232,11 @@ "type": "Polygon", "coordinates": [ [ - [146.910663, -37.848981], - [146.910663, -38.748301], - [147.127689, -38.748301], - [147.127689, -37.848981], - [146.910663, -37.848981] + [145.859308, -35.152594], + [145.859308, -34.254323], + [146.038962, -34.254323], + [146.038962, -35.152594], + [145.859308, -35.152594] ] ] } @@ -2248,11 +2248,11 @@ "type": "Polygon", "coordinates": [ [ - [147.127689, -34.251699], - [147.127689, -35.151019], - [147.344714, -35.151019], - [147.344714, -34.251699], - [147.127689, -34.251699] + [146.038962, -38.745677], + [146.038962, -37.847406], + [146.218617, -37.847406], + [146.218617, -38.745677], + [146.038962, -38.745677] ] ] } @@ -2264,11 +2264,11 @@ "type": "Polygon", "coordinates": [ [ - [147.127689, -35.151019], - [147.127689, -36.05034], - [147.344714, -36.05034], - [147.344714, -35.151019], - [147.127689, -35.151019] + [146.038962, -37.847406], + [146.038962, -36.949135], + [146.218617, -36.949135], + [146.218617, -37.847406], + [146.038962, -37.847406] ] ] } @@ -2280,11 +2280,11 @@ "type": "Polygon", "coordinates": [ [ - [147.127689, -36.05034], - [147.127689, -36.94966], - [147.344714, -36.94966], - [147.344714, -36.05034], - [147.127689, -36.05034] + [146.038962, -36.949135], + [146.038962, -36.050865], + [146.218617, -36.050865], + [146.218617, -36.949135], + [146.038962, -36.949135] ] ] } @@ -2296,11 +2296,11 @@ "type": "Polygon", "coordinates": [ [ - [147.127689, -36.94966], - [147.127689, -37.848981], - [147.344714, -37.848981], - [147.344714, -36.94966], - [147.127689, -36.94966] + [146.038962, -36.050865], + [146.038962, -35.152594], + [146.218617, -35.152594], + [146.218617, -36.050865], + [146.038962, -36.050865] ] ] } @@ -2312,11 +2312,11 @@ "type": "Polygon", "coordinates": [ [ - [147.127689, -37.848981], - [147.127689, -38.748301], - [147.344714, -38.748301], - [147.344714, -37.848981], - [147.127689, -37.848981] + [146.038962, -35.152594], + [146.038962, -34.254323], + [146.218617, -34.254323], + [146.218617, -35.152594], + [146.038962, -35.152594] ] ] } @@ -2328,11 +2328,11 @@ "type": "Polygon", "coordinates": [ [ - [147.344714, -34.251699], - [147.344714, -35.151019], - [147.561739, -35.151019], - [147.561739, -34.251699], - [147.344714, -34.251699] + [146.218617, -38.745677], + [146.218617, -37.847406], + [146.398271, -37.847406], + [146.398271, -38.745677], + [146.218617, -38.745677] ] ] } @@ -2344,11 +2344,11 @@ "type": "Polygon", "coordinates": [ [ - [147.344714, -35.151019], - [147.344714, -36.05034], - [147.561739, -36.05034], - [147.561739, -35.151019], - [147.344714, -35.151019] + [146.218617, -37.847406], + [146.218617, -36.949135], + [146.398271, -36.949135], + [146.398271, -37.847406], + [146.218617, -37.847406] ] ] } @@ -2360,11 +2360,11 @@ "type": "Polygon", "coordinates": [ [ - [147.344714, -36.05034], - [147.344714, -36.94966], - [147.561739, -36.94966], - [147.561739, -36.05034], - [147.344714, -36.05034] + [146.218617, -36.949135], + [146.218617, -36.050865], + [146.398271, -36.050865], + [146.398271, -36.949135], + [146.218617, -36.949135] ] ] } @@ -2376,11 +2376,11 @@ "type": "Polygon", "coordinates": [ [ - [147.344714, -36.94966], - [147.344714, -37.848981], - [147.561739, -37.848981], - [147.561739, -36.94966], - [147.344714, -36.94966] + [146.218617, -36.050865], + [146.218617, -35.152594], + [146.398271, -35.152594], + [146.398271, -36.050865], + [146.218617, -36.050865] ] ] } @@ -2392,11 +2392,11 @@ "type": "Polygon", "coordinates": [ [ - [147.344714, -37.848981], - [147.344714, -38.748301], - [147.561739, -38.748301], - [147.561739, -37.848981], - [147.344714, -37.848981] + [146.218617, -35.152594], + [146.218617, -34.254323], + [146.398271, -34.254323], + [146.398271, -35.152594], + [146.218617, -35.152594] ] ] } @@ -2408,11 +2408,11 @@ "type": "Polygon", "coordinates": [ [ - [147.561739, -34.251699], - [147.561739, -35.151019], - [147.778764, -35.151019], - [147.778764, -34.251699], - [147.561739, -34.251699] + [146.398271, -38.745677], + [146.398271, -37.847406], + [146.577925, -37.847406], + [146.577925, -38.745677], + [146.398271, -38.745677] ] ] } @@ -2424,11 +2424,11 @@ "type": "Polygon", "coordinates": [ [ - [147.561739, -35.151019], - [147.561739, -36.05034], - [147.778764, -36.05034], - [147.778764, -35.151019], - [147.561739, -35.151019] + [146.398271, -37.847406], + [146.398271, -36.949135], + [146.577925, -36.949135], + [146.577925, -37.847406], + [146.398271, -37.847406] ] ] } @@ -2440,11 +2440,11 @@ "type": "Polygon", "coordinates": [ [ - [147.561739, -36.05034], - [147.561739, -36.94966], - [147.778764, -36.94966], - [147.778764, -36.05034], - [147.561739, -36.05034] + [146.398271, -36.949135], + [146.398271, -36.050865], + [146.577925, -36.050865], + [146.577925, -36.949135], + [146.398271, -36.949135] ] ] } @@ -2456,11 +2456,11 @@ "type": "Polygon", "coordinates": [ [ - [147.561739, -36.94966], - [147.561739, -37.848981], - [147.778764, -37.848981], - [147.778764, -36.94966], - [147.561739, -36.94966] + [146.398271, -36.050865], + [146.398271, -35.152594], + [146.577925, -35.152594], + [146.577925, -36.050865], + [146.398271, -36.050865] ] ] } @@ -2472,11 +2472,11 @@ "type": "Polygon", "coordinates": [ [ - [147.561739, -37.848981], - [147.561739, -38.748301], - [147.778764, -38.748301], - [147.778764, -37.848981], - [147.561739, -37.848981] + [146.398271, -35.152594], + [146.398271, -34.254323], + [146.577925, -34.254323], + [146.577925, -35.152594], + [146.398271, -35.152594] ] ] } @@ -2488,11 +2488,11 @@ "type": "Polygon", "coordinates": [ [ - [147.778764, -34.251699], - [147.778764, -35.151019], - [147.995789, -35.151019], - [147.995789, -34.251699], - [147.778764, -34.251699] + [146.577925, -38.745677], + [146.577925, -37.847406], + [146.757579, -37.847406], + [146.757579, -38.745677], + [146.577925, -38.745677] ] ] } @@ -2504,11 +2504,11 @@ "type": "Polygon", "coordinates": [ [ - [147.778764, -35.151019], - [147.778764, -36.05034], - [147.995789, -36.05034], - [147.995789, -35.151019], - [147.778764, -35.151019] + [146.577925, -37.847406], + [146.577925, -36.949135], + [146.757579, -36.949135], + [146.757579, -37.847406], + [146.577925, -37.847406] ] ] } @@ -2520,11 +2520,11 @@ "type": "Polygon", "coordinates": [ [ - [147.778764, -36.05034], - [147.778764, -36.94966], - [147.995789, -36.94966], - [147.995789, -36.05034], - [147.778764, -36.05034] + [146.577925, -36.949135], + [146.577925, -36.050865], + [146.757579, -36.050865], + [146.757579, -36.949135], + [146.577925, -36.949135] ] ] } @@ -2536,11 +2536,11 @@ "type": "Polygon", "coordinates": [ [ - [147.778764, -36.94966], - [147.778764, -37.848981], - [147.995789, -37.848981], - [147.995789, -36.94966], - [147.778764, -36.94966] + [146.577925, -36.050865], + [146.577925, -35.152594], + [146.757579, -35.152594], + [146.757579, -36.050865], + [146.577925, -36.050865] ] ] } @@ -2552,11 +2552,11 @@ "type": "Polygon", "coordinates": [ [ - [147.778764, -37.848981], - [147.778764, -38.748301], - [147.995789, -38.748301], - [147.995789, -37.848981], - [147.778764, -37.848981] + [146.577925, -35.152594], + [146.577925, -34.254323], + [146.757579, -34.254323], + [146.757579, -35.152594], + [146.577925, -35.152594] ] ] } @@ -2568,11 +2568,11 @@ "type": "Polygon", "coordinates": [ [ - [147.995789, -34.251699], - [147.995789, -35.151019], - [148.212814, -35.151019], - [148.212814, -34.251699], - [147.995789, -34.251699] + [146.757579, -38.745677], + [146.757579, -37.847406], + [146.937233, -37.847406], + [146.937233, -38.745677], + [146.757579, -38.745677] ] ] } @@ -2584,11 +2584,11 @@ "type": "Polygon", "coordinates": [ [ - [147.995789, -35.151019], - [147.995789, -36.05034], - [148.212814, -36.05034], - [148.212814, -35.151019], - [147.995789, -35.151019] + [146.757579, -37.847406], + [146.757579, -36.949135], + [146.937233, -36.949135], + [146.937233, -37.847406], + [146.757579, -37.847406] ] ] } @@ -2600,11 +2600,11 @@ "type": "Polygon", "coordinates": [ [ - [147.995789, -36.05034], - [147.995789, -36.94966], - [148.212814, -36.94966], - [148.212814, -36.05034], - [147.995789, -36.05034] + [146.757579, -36.949135], + [146.757579, -36.050865], + [146.937233, -36.050865], + [146.937233, -36.949135], + [146.757579, -36.949135] ] ] } @@ -2616,11 +2616,11 @@ "type": "Polygon", "coordinates": [ [ - [147.995789, -36.94966], - [147.995789, -37.848981], - [148.212814, -37.848981], - [148.212814, -36.94966], - [147.995789, -36.94966] + [146.757579, -36.050865], + [146.757579, -35.152594], + [146.937233, -35.152594], + [146.937233, -36.050865], + [146.757579, -36.050865] ] ] } @@ -2632,11 +2632,11 @@ "type": "Polygon", "coordinates": [ [ - [147.995789, -37.848981], - [147.995789, -38.748301], - [148.212814, -38.748301], - [148.212814, -37.848981], - [147.995789, -37.848981] + [146.757579, -35.152594], + [146.757579, -34.254323], + [146.937233, -34.254323], + [146.937233, -35.152594], + [146.757579, -35.152594] ] ] } @@ -2648,11 +2648,11 @@ "type": "Polygon", "coordinates": [ [ - [148.212814, -34.251699], - [148.212814, -35.151019], - [148.42984, -35.151019], - [148.42984, -34.251699], - [148.212814, -34.251699] + [146.937233, -38.745677], + [146.937233, -37.847406], + [147.116887, -37.847406], + [147.116887, -38.745677], + [146.937233, -38.745677] ] ] } @@ -2664,11 +2664,11 @@ "type": "Polygon", "coordinates": [ [ - [148.212814, -35.151019], - [148.212814, -36.05034], - [148.42984, -36.05034], - [148.42984, -35.151019], - [148.212814, -35.151019] + [146.937233, -37.847406], + [146.937233, -36.949135], + [147.116887, -36.949135], + [147.116887, -37.847406], + [146.937233, -37.847406] ] ] } @@ -2680,11 +2680,11 @@ "type": "Polygon", "coordinates": [ [ - [148.212814, -36.05034], - [148.212814, -36.94966], - [148.42984, -36.94966], - [148.42984, -36.05034], - [148.212814, -36.05034] + [146.937233, -36.949135], + [146.937233, -36.050865], + [147.116887, -36.050865], + [147.116887, -36.949135], + [146.937233, -36.949135] ] ] } @@ -2696,11 +2696,11 @@ "type": "Polygon", "coordinates": [ [ - [148.212814, -36.94966], - [148.212814, -37.848981], - [148.42984, -37.848981], - [148.42984, -36.94966], - [148.212814, -36.94966] + [146.937233, -36.050865], + [146.937233, -35.152594], + [147.116887, -35.152594], + [147.116887, -36.050865], + [146.937233, -36.050865] ] ] } @@ -2712,11 +2712,11 @@ "type": "Polygon", "coordinates": [ [ - [148.212814, -37.848981], - [148.212814, -38.748301], - [148.42984, -38.748301], - [148.42984, -37.848981], - [148.212814, -37.848981] + [146.937233, -35.152594], + [146.937233, -34.254323], + [147.116887, -34.254323], + [147.116887, -35.152594], + [146.937233, -35.152594] ] ] } @@ -2728,11 +2728,11 @@ "type": "Polygon", "coordinates": [ [ - [148.42984, -34.251699], - [148.42984, -35.151019], - [148.646865, -35.151019], - [148.646865, -34.251699], - [148.42984, -34.251699] + [147.116887, -38.745677], + [147.116887, -37.847406], + [147.296542, -37.847406], + [147.296542, -38.745677], + [147.116887, -38.745677] ] ] } @@ -2744,11 +2744,11 @@ "type": "Polygon", "coordinates": [ [ - [148.42984, -35.151019], - [148.42984, -36.05034], - [148.646865, -36.05034], - [148.646865, -35.151019], - [148.42984, -35.151019] + [147.116887, -37.847406], + [147.116887, -36.949135], + [147.296542, -36.949135], + [147.296542, -37.847406], + [147.116887, -37.847406] ] ] } @@ -2760,11 +2760,11 @@ "type": "Polygon", "coordinates": [ [ - [148.42984, -36.05034], - [148.42984, -36.94966], - [148.646865, -36.94966], - [148.646865, -36.05034], - [148.42984, -36.05034] + [147.116887, -36.949135], + [147.116887, -36.050865], + [147.296542, -36.050865], + [147.296542, -36.949135], + [147.116887, -36.949135] ] ] } @@ -2776,11 +2776,11 @@ "type": "Polygon", "coordinates": [ [ - [148.42984, -36.94966], - [148.42984, -37.848981], - [148.646865, -37.848981], - [148.646865, -36.94966], - [148.42984, -36.94966] + [147.116887, -36.050865], + [147.116887, -35.152594], + [147.296542, -35.152594], + [147.296542, -36.050865], + [147.116887, -36.050865] ] ] } @@ -2792,11 +2792,11 @@ "type": "Polygon", "coordinates": [ [ - [148.42984, -37.848981], - [148.42984, -38.748301], - [148.646865, -38.748301], - [148.646865, -37.848981], - [148.42984, -37.848981] + [147.116887, -35.152594], + [147.116887, -34.254323], + [147.296542, -34.254323], + [147.296542, -35.152594], + [147.116887, -35.152594] ] ] } @@ -2808,11 +2808,11 @@ "type": "Polygon", "coordinates": [ [ - [148.646865, -34.251699], - [148.646865, -35.151019], - [148.86389, -35.151019], - [148.86389, -34.251699], - [148.646865, -34.251699] + [147.296542, -38.745677], + [147.296542, -37.847406], + [147.476196, -37.847406], + [147.476196, -38.745677], + [147.296542, -38.745677] ] ] } @@ -2824,11 +2824,11 @@ "type": "Polygon", "coordinates": [ [ - [148.646865, -35.151019], - [148.646865, -36.05034], - [148.86389, -36.05034], - [148.86389, -35.151019], - [148.646865, -35.151019] + [147.296542, -37.847406], + [147.296542, -36.949135], + [147.476196, -36.949135], + [147.476196, -37.847406], + [147.296542, -37.847406] ] ] } @@ -2840,11 +2840,11 @@ "type": "Polygon", "coordinates": [ [ - [148.646865, -36.05034], - [148.646865, -36.94966], - [148.86389, -36.94966], - [148.86389, -36.05034], - [148.646865, -36.05034] + [147.296542, -36.949135], + [147.296542, -36.050865], + [147.476196, -36.050865], + [147.476196, -36.949135], + [147.296542, -36.949135] ] ] } @@ -2856,11 +2856,11 @@ "type": "Polygon", "coordinates": [ [ - [148.646865, -36.94966], - [148.646865, -37.848981], - [148.86389, -37.848981], - [148.86389, -36.94966], - [148.646865, -36.94966] + [147.296542, -36.050865], + [147.296542, -35.152594], + [147.476196, -35.152594], + [147.476196, -36.050865], + [147.296542, -36.050865] ] ] } @@ -2872,11 +2872,11 @@ "type": "Polygon", "coordinates": [ [ - [148.646865, -37.848981], - [148.646865, -38.748301], - [148.86389, -38.748301], - [148.86389, -37.848981], - [148.646865, -37.848981] + [147.296542, -35.152594], + [147.296542, -34.254323], + [147.476196, -34.254323], + [147.476196, -35.152594], + [147.296542, -35.152594] ] ] } @@ -2888,11 +2888,11 @@ "type": "Polygon", "coordinates": [ [ - [148.86389, -34.251699], - [148.86389, -35.151019], - [149.080915, -35.151019], - [149.080915, -34.251699], - [148.86389, -34.251699] + [147.476196, -38.745677], + [147.476196, -37.847406], + [147.65585, -37.847406], + [147.65585, -38.745677], + [147.476196, -38.745677] ] ] } @@ -2904,11 +2904,11 @@ "type": "Polygon", "coordinates": [ [ - [148.86389, -35.151019], - [148.86389, -36.05034], - [149.080915, -36.05034], - [149.080915, -35.151019], - [148.86389, -35.151019] + [147.476196, -37.847406], + [147.476196, -36.949135], + [147.65585, -36.949135], + [147.65585, -37.847406], + [147.476196, -37.847406] ] ] } @@ -2920,11 +2920,11 @@ "type": "Polygon", "coordinates": [ [ - [148.86389, -36.05034], - [148.86389, -36.94966], - [149.080915, -36.94966], - [149.080915, -36.05034], - [148.86389, -36.05034] + [147.476196, -36.949135], + [147.476196, -36.050865], + [147.65585, -36.050865], + [147.65585, -36.949135], + [147.476196, -36.949135] ] ] } @@ -2936,11 +2936,11 @@ "type": "Polygon", "coordinates": [ [ - [148.86389, -36.94966], - [148.86389, -37.848981], - [149.080915, -37.848981], - [149.080915, -36.94966], - [148.86389, -36.94966] + [147.476196, -36.050865], + [147.476196, -35.152594], + [147.65585, -35.152594], + [147.65585, -36.050865], + [147.476196, -36.050865] ] ] } @@ -2952,11 +2952,11 @@ "type": "Polygon", "coordinates": [ [ - [148.86389, -37.848981], - [148.86389, -38.748301], - [149.080915, -38.748301], - [149.080915, -37.848981], - [148.86389, -37.848981] + [147.476196, -35.152594], + [147.476196, -34.254323], + [147.65585, -34.254323], + [147.65585, -35.152594], + [147.476196, -35.152594] ] ] } @@ -2968,11 +2968,11 @@ "type": "Polygon", "coordinates": [ [ - [149.080915, -34.251699], - [149.080915, -35.151019], - [149.29794, -35.151019], - [149.29794, -34.251699], - [149.080915, -34.251699] + [147.65585, -38.745677], + [147.65585, -37.847406], + [147.835504, -37.847406], + [147.835504, -38.745677], + [147.65585, -38.745677] ] ] } @@ -2984,11 +2984,11 @@ "type": "Polygon", "coordinates": [ [ - [149.080915, -35.151019], - [149.080915, -36.05034], - [149.29794, -36.05034], - [149.29794, -35.151019], - [149.080915, -35.151019] + [147.65585, -37.847406], + [147.65585, -36.949135], + [147.835504, -36.949135], + [147.835504, -37.847406], + [147.65585, -37.847406] ] ] } @@ -3000,11 +3000,11 @@ "type": "Polygon", "coordinates": [ [ - [149.080915, -36.05034], - [149.080915, -36.94966], - [149.29794, -36.94966], - [149.29794, -36.05034], - [149.080915, -36.05034] + [147.65585, -36.949135], + [147.65585, -36.050865], + [147.835504, -36.050865], + [147.835504, -36.949135], + [147.65585, -36.949135] ] ] } @@ -3016,11 +3016,11 @@ "type": "Polygon", "coordinates": [ [ - [149.080915, -36.94966], - [149.080915, -37.848981], - [149.29794, -37.848981], - [149.29794, -36.94966], - [149.080915, -36.94966] + [147.65585, -36.050865], + [147.65585, -35.152594], + [147.835504, -35.152594], + [147.835504, -36.050865], + [147.65585, -36.050865] ] ] } @@ -3032,11 +3032,11 @@ "type": "Polygon", "coordinates": [ [ - [149.080915, -37.848981], - [149.080915, -38.748301], - [149.29794, -38.748301], - [149.29794, -37.848981], - [149.080915, -37.848981] + [147.65585, -35.152594], + [147.65585, -34.254323], + [147.835504, -34.254323], + [147.835504, -35.152594], + [147.65585, -35.152594] ] ] } @@ -3048,11 +3048,11 @@ "type": "Polygon", "coordinates": [ [ - [149.29794, -34.251699], - [149.29794, -35.151019], - [149.514965, -35.151019], - [149.514965, -34.251699], - [149.29794, -34.251699] + [147.835504, -38.745677], + [147.835504, -37.847406], + [148.015158, -37.847406], + [148.015158, -38.745677], + [147.835504, -38.745677] ] ] } @@ -3064,11 +3064,11 @@ "type": "Polygon", "coordinates": [ [ - [149.29794, -35.151019], - [149.29794, -36.05034], - [149.514965, -36.05034], - [149.514965, -35.151019], - [149.29794, -35.151019] + [147.835504, -37.847406], + [147.835504, -36.949135], + [148.015158, -36.949135], + [148.015158, -37.847406], + [147.835504, -37.847406] ] ] } @@ -3080,11 +3080,11 @@ "type": "Polygon", "coordinates": [ [ - [149.29794, -36.05034], - [149.29794, -36.94966], - [149.514965, -36.94966], - [149.514965, -36.05034], - [149.29794, -36.05034] + [147.835504, -36.949135], + [147.835504, -36.050865], + [148.015158, -36.050865], + [148.015158, -36.949135], + [147.835504, -36.949135] ] ] } @@ -3096,11 +3096,11 @@ "type": "Polygon", "coordinates": [ [ - [149.29794, -36.94966], - [149.29794, -37.848981], - [149.514965, -37.848981], - [149.514965, -36.94966], - [149.29794, -36.94966] + [147.835504, -36.050865], + [147.835504, -35.152594], + [148.015158, -35.152594], + [148.015158, -36.050865], + [147.835504, -36.050865] ] ] } @@ -3112,11 +3112,11 @@ "type": "Polygon", "coordinates": [ [ - [149.29794, -37.848981], - [149.29794, -38.748301], - [149.514965, -38.748301], - [149.514965, -37.848981], - [149.29794, -37.848981] + [147.835504, -35.152594], + [147.835504, -34.254323], + [148.015158, -34.254323], + [148.015158, -35.152594], + [147.835504, -35.152594] ] ] } @@ -3128,11 +3128,11 @@ "type": "Polygon", "coordinates": [ [ - [149.514965, -34.251699], - [149.514965, -35.151019], - [149.73199, -35.151019], - [149.73199, -34.251699], - [149.514965, -34.251699] + [148.015158, -38.745677], + [148.015158, -37.847406], + [148.194812, -37.847406], + [148.194812, -38.745677], + [148.015158, -38.745677] ] ] } @@ -3144,11 +3144,11 @@ "type": "Polygon", "coordinates": [ [ - [149.514965, -35.151019], - [149.514965, -36.05034], - [149.73199, -36.05034], - [149.73199, -35.151019], - [149.514965, -35.151019] + [148.015158, -37.847406], + [148.015158, -36.949135], + [148.194812, -36.949135], + [148.194812, -37.847406], + [148.015158, -37.847406] ] ] } @@ -3160,11 +3160,11 @@ "type": "Polygon", "coordinates": [ [ - [149.514965, -36.05034], - [149.514965, -36.94966], - [149.73199, -36.94966], - [149.73199, -36.05034], - [149.514965, -36.05034] + [148.015158, -36.949135], + [148.015158, -36.050865], + [148.194812, -36.050865], + [148.194812, -36.949135], + [148.015158, -36.949135] ] ] } @@ -3176,11 +3176,11 @@ "type": "Polygon", "coordinates": [ [ - [149.514965, -36.94966], - [149.514965, -37.848981], - [149.73199, -37.848981], - [149.73199, -36.94966], - [149.514965, -36.94966] + [148.015158, -36.050865], + [148.015158, -35.152594], + [148.194812, -35.152594], + [148.194812, -36.050865], + [148.015158, -36.050865] ] ] } @@ -3192,11 +3192,11 @@ "type": "Polygon", "coordinates": [ [ - [149.514965, -37.848981], - [149.514965, -38.748301], - [149.73199, -38.748301], - [149.73199, -37.848981], - [149.514965, -37.848981] + [148.015158, -35.152594], + [148.015158, -34.254323], + [148.194812, -34.254323], + [148.194812, -35.152594], + [148.015158, -35.152594] ] ] } @@ -3208,11 +3208,11 @@ "type": "Polygon", "coordinates": [ [ - [149.73199, -34.251699], - [149.73199, -35.151019], - [149.949016, -35.151019], - [149.949016, -34.251699], - [149.73199, -34.251699] + [148.194812, -38.745677], + [148.194812, -37.847406], + [148.374467, -37.847406], + [148.374467, -38.745677], + [148.194812, -38.745677] ] ] } @@ -3224,11 +3224,11 @@ "type": "Polygon", "coordinates": [ [ - [149.73199, -35.151019], - [149.73199, -36.05034], - [149.949016, -36.05034], - [149.949016, -35.151019], - [149.73199, -35.151019] + [148.194812, -37.847406], + [148.194812, -36.949135], + [148.374467, -36.949135], + [148.374467, -37.847406], + [148.194812, -37.847406] ] ] } @@ -3240,11 +3240,11 @@ "type": "Polygon", "coordinates": [ [ - [149.73199, -36.05034], - [149.73199, -36.94966], - [149.949016, -36.94966], - [149.949016, -36.05034], - [149.73199, -36.05034] + [148.194812, -36.949135], + [148.194812, -36.050865], + [148.374467, -36.050865], + [148.374467, -36.949135], + [148.194812, -36.949135] ] ] } @@ -3256,11 +3256,11 @@ "type": "Polygon", "coordinates": [ [ - [149.73199, -36.94966], - [149.73199, -37.848981], - [149.949016, -37.848981], - [149.949016, -36.94966], - [149.73199, -36.94966] + [148.194812, -36.050865], + [148.194812, -35.152594], + [148.374467, -35.152594], + [148.374467, -36.050865], + [148.194812, -36.050865] ] ] } @@ -3272,18 +3272,738 @@ "type": "Polygon", "coordinates": [ [ - [149.73199, -37.848981], - [149.73199, -38.748301], - [149.949016, -38.748301], - [149.949016, -37.848981], - [149.73199, -37.848981] + [148.194812, -35.152594], + [148.194812, -34.254323], + [148.374467, -34.254323], + [148.374467, -35.152594], + [148.194812, -35.152594] ] ] } }, { "type": "Feature", - "bbox": [141, -34, 150, -39], + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [148.374467, -38.745677], + [148.374467, -37.847406], + [148.554121, -37.847406], + [148.554121, -38.745677], + [148.374467, -38.745677] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [148.374467, -37.847406], + [148.374467, -36.949135], + [148.554121, -36.949135], + [148.554121, -37.847406], + [148.374467, -37.847406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [148.374467, -36.949135], + [148.374467, -36.050865], + [148.554121, -36.050865], + [148.554121, -36.949135], + [148.374467, -36.949135] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [148.374467, -36.050865], + [148.374467, -35.152594], + [148.554121, -35.152594], + [148.554121, -36.050865], + [148.374467, -36.050865] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [148.374467, -35.152594], + [148.374467, -34.254323], + [148.554121, -34.254323], + [148.554121, -35.152594], + [148.374467, -35.152594] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [148.554121, -38.745677], + [148.554121, -37.847406], + [148.733775, -37.847406], + [148.733775, -38.745677], + [148.554121, -38.745677] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [148.554121, -37.847406], + [148.554121, -36.949135], + [148.733775, -36.949135], + [148.733775, -37.847406], + [148.554121, -37.847406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [148.554121, -36.949135], + [148.554121, -36.050865], + [148.733775, -36.050865], + [148.733775, -36.949135], + [148.554121, -36.949135] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [148.554121, -36.050865], + [148.554121, -35.152594], + [148.733775, -35.152594], + [148.733775, -36.050865], + [148.554121, -36.050865] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [148.554121, -35.152594], + [148.554121, -34.254323], + [148.733775, -34.254323], + [148.733775, -35.152594], + [148.554121, -35.152594] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [148.733775, -38.745677], + [148.733775, -37.847406], + [148.913429, -37.847406], + [148.913429, -38.745677], + [148.733775, -38.745677] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [148.733775, -37.847406], + [148.733775, -36.949135], + [148.913429, -36.949135], + [148.913429, -37.847406], + [148.733775, -37.847406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [148.733775, -36.949135], + [148.733775, -36.050865], + [148.913429, -36.050865], + [148.913429, -36.949135], + [148.733775, -36.949135] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [148.733775, -36.050865], + [148.733775, -35.152594], + [148.913429, -35.152594], + [148.913429, -36.050865], + [148.733775, -36.050865] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [148.733775, -35.152594], + [148.733775, -34.254323], + [148.913429, -34.254323], + [148.913429, -35.152594], + [148.733775, -35.152594] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [148.913429, -38.745677], + [148.913429, -37.847406], + [149.093083, -37.847406], + [149.093083, -38.745677], + [148.913429, -38.745677] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [148.913429, -37.847406], + [148.913429, -36.949135], + [149.093083, -36.949135], + [149.093083, -37.847406], + [148.913429, -37.847406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [148.913429, -36.949135], + [148.913429, -36.050865], + [149.093083, -36.050865], + [149.093083, -36.949135], + [148.913429, -36.949135] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [148.913429, -36.050865], + [148.913429, -35.152594], + [149.093083, -35.152594], + [149.093083, -36.050865], + [148.913429, -36.050865] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [148.913429, -35.152594], + [148.913429, -34.254323], + [149.093083, -34.254323], + [149.093083, -35.152594], + [148.913429, -35.152594] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [149.093083, -38.745677], + [149.093083, -37.847406], + [149.272737, -37.847406], + [149.272737, -38.745677], + [149.093083, -38.745677] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [149.093083, -37.847406], + [149.093083, -36.949135], + [149.272737, -36.949135], + [149.272737, -37.847406], + [149.093083, -37.847406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [149.093083, -36.949135], + [149.093083, -36.050865], + [149.272737, -36.050865], + [149.272737, -36.949135], + [149.093083, -36.949135] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [149.093083, -36.050865], + [149.093083, -35.152594], + [149.272737, -35.152594], + [149.272737, -36.050865], + [149.093083, -36.050865] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [149.093083, -35.152594], + [149.093083, -34.254323], + [149.272737, -34.254323], + [149.272737, -35.152594], + [149.093083, -35.152594] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [149.272737, -38.745677], + [149.272737, -37.847406], + [149.452392, -37.847406], + [149.452392, -38.745677], + [149.272737, -38.745677] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [149.272737, -37.847406], + [149.272737, -36.949135], + [149.452392, -36.949135], + [149.452392, -37.847406], + [149.272737, -37.847406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [149.272737, -36.949135], + [149.272737, -36.050865], + [149.452392, -36.050865], + [149.452392, -36.949135], + [149.272737, -36.949135] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [149.272737, -36.050865], + [149.272737, -35.152594], + [149.452392, -35.152594], + [149.452392, -36.050865], + [149.272737, -36.050865] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [149.272737, -35.152594], + [149.272737, -34.254323], + [149.452392, -34.254323], + [149.452392, -35.152594], + [149.272737, -35.152594] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [149.452392, -38.745677], + [149.452392, -37.847406], + [149.632046, -37.847406], + [149.632046, -38.745677], + [149.452392, -38.745677] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [149.452392, -37.847406], + [149.452392, -36.949135], + [149.632046, -36.949135], + [149.632046, -37.847406], + [149.452392, -37.847406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [149.452392, -36.949135], + [149.452392, -36.050865], + [149.632046, -36.050865], + [149.632046, -36.949135], + [149.452392, -36.949135] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [149.452392, -36.050865], + [149.452392, -35.152594], + [149.632046, -35.152594], + [149.632046, -36.050865], + [149.452392, -36.050865] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [149.452392, -35.152594], + [149.452392, -34.254323], + [149.632046, -34.254323], + [149.632046, -35.152594], + [149.452392, -35.152594] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [149.632046, -38.745677], + [149.632046, -37.847406], + [149.8117, -37.847406], + [149.8117, -38.745677], + [149.632046, -38.745677] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [149.632046, -37.847406], + [149.632046, -36.949135], + [149.8117, -36.949135], + [149.8117, -37.847406], + [149.632046, -37.847406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [149.632046, -36.949135], + [149.632046, -36.050865], + [149.8117, -36.050865], + [149.8117, -36.949135], + [149.632046, -36.949135] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [149.632046, -36.050865], + [149.632046, -35.152594], + [149.8117, -35.152594], + [149.8117, -36.050865], + [149.632046, -36.050865] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [149.632046, -35.152594], + [149.632046, -34.254323], + [149.8117, -34.254323], + [149.8117, -35.152594], + [149.632046, -35.152594] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [149.8117, -38.745677], + [149.8117, -37.847406], + [149.991354, -37.847406], + [149.991354, -38.745677], + [149.8117, -38.745677] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [149.8117, -37.847406], + [149.8117, -36.949135], + [149.991354, -36.949135], + [149.991354, -37.847406], + [149.8117, -37.847406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [149.8117, -36.949135], + [149.8117, -36.050865], + [149.991354, -36.050865], + [149.991354, -36.949135], + [149.8117, -36.949135] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [149.8117, -36.050865], + [149.8117, -35.152594], + [149.991354, -35.152594], + [149.991354, -36.050865], + [149.8117, -36.050865] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [149.8117, -35.152594], + [149.8117, -34.254323], + [149.991354, -34.254323], + [149.991354, -35.152594], + [149.8117, -35.152594] + ] + ] + } + }, + { + "type": "Feature", + "bbox": [141, -39, 150, -34], "properties": { "stroke": "#F00", "stroke-width": 6, @@ -3293,11 +4013,11 @@ "type": "Polygon", "coordinates": [ [ - [141, -34], - [150, -34], - [150, -39], [141, -39], - [141, -34] + [150, -39], + [150, -34], + [141, -34], + [141, -39] ] ] } From 3c99098f57b5422a98d3df0512f20a7748796cc5 Mon Sep 17 00:00:00 2001 From: Rowan Winsemius Date: Fri, 18 Jun 2021 15:43:02 +1000 Subject: [PATCH 2/9] remove unused import --- packages/turf-rectangle-grid/index.ts | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/packages/turf-rectangle-grid/index.ts b/packages/turf-rectangle-grid/index.ts index 412d3e9041..4b6061bc28 100644 --- a/packages/turf-rectangle-grid/index.ts +++ b/packages/turf-rectangle-grid/index.ts @@ -1,5 +1,4 @@ import intersect from "@turf/boolean-intersects"; -import distance from "@turf/distance"; import { BBox, convertLength, @@ -55,10 +54,14 @@ function rectangleGrid

( const east = bbox[2]; const north = bbox[3]; - const bboxWidth = east - west; + const bboxWidth = distance([west, south], [east, south], { + units: degrees + }) const cellWidthDeg = convertLength(cellWidth, options.units, "degrees"); - const bboxHeight = north - south; + const bboxHeight = distance([west, south], [east,north], { + units: degrees + }) const cellHeightDeg = convertLength(cellHeight, options.units, "degrees"); const columns = Math.floor(Math.abs(bboxWidth) / cellWidthDeg); From 70a2fe2adc174425a949c797860da2ab93ce3e2e Mon Sep 17 00:00:00 2001 From: Rowan Winsemius Date: Fri, 18 Jun 2021 23:02:21 +1000 Subject: [PATCH 3/9] fix up non-haversine --- packages/turf-rectangle-grid/index.ts | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/packages/turf-rectangle-grid/index.ts b/packages/turf-rectangle-grid/index.ts index 4b6061bc28..babf9d03b2 100644 --- a/packages/turf-rectangle-grid/index.ts +++ b/packages/turf-rectangle-grid/index.ts @@ -54,14 +54,10 @@ function rectangleGrid

( const east = bbox[2]; const north = bbox[3]; - const bboxWidth = distance([west, south], [east, south], { - units: degrees - }) + const bboxWidth = east - west; const cellWidthDeg = convertLength(cellWidth, options.units, "degrees"); - const bboxHeight = distance([west, south], [east,north], { - units: degrees - }) + const bboxHeight = north - south; const cellHeightDeg = convertLength(cellHeight, options.units, "degrees"); const columns = Math.floor(Math.abs(bboxWidth) / cellWidthDeg); From 8ecf6954e360d73a447cdd596f4fa4eae7ff9b8f Mon Sep 17 00:00:00 2001 From: Rowan Winsemius Date: Sat, 31 Jul 2021 15:15:01 +1000 Subject: [PATCH 4/9] Update turf/squareGrid test files as well --- .../test/out/big-bbox.geojson | 2042 +- .../test/out/fiji-10-miles.geojson | 1013 +- .../test/out/issue-1215.geojson | 78064 ++++++++++------ .../test/out/london-20-miles.geojson | 167 +- .../test/out/piedemont-mask.geojson | 4827 +- .../test/out/properties.geojson | 1867 +- .../test/out/resolute.geojson | 261 +- 7 files changed, 58205 insertions(+), 30036 deletions(-) diff --git a/packages/turf-square-grid/test/out/big-bbox.geojson b/packages/turf-square-grid/test/out/big-bbox.geojson index fcbcbed7ed..3f9885c95b 100644 --- a/packages/turf-square-grid/test/out/big-bbox.geojson +++ b/packages/turf-square-grid/test/out/big-bbox.geojson @@ -1,698 +1,1348 @@ { - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-199.504452, -77.132893], - [-199.504452, -69.896314], - [-125.15625, -69.896314], - [-125.15625, -77.132893], - [-199.504452, -77.132893] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-199.504452, -69.896314], - [-199.504452, -62.659735], - [-125.15625, -62.659735], - [-125.15625, -69.896314], - [-199.504452, -69.896314] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-199.504452, -62.659735], - [-199.504452, -55.423156], - [-125.15625, -55.423156], - [-125.15625, -62.659735], - [-199.504452, -62.659735] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-199.504452, -55.423156], - [-199.504452, -48.186577], - [-125.15625, -48.186577], - [-125.15625, -55.423156], - [-199.504452, -55.423156] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-199.504452, -48.186577], - [-199.504452, -40.949997], - [-125.15625, -40.949997], - [-125.15625, -48.186577], - [-199.504452, -48.186577] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-199.504452, -40.949997], - [-199.504452, -33.713418], - [-125.15625, -33.713418], - [-125.15625, -40.949997], - [-199.504452, -40.949997] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-199.504452, -33.713418], - [-199.504452, -26.476839], - [-125.15625, -26.476839], - [-125.15625, -33.713418], - [-199.504452, -33.713418] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-199.504452, -26.476839], - [-199.504452, -19.24026], - [-125.15625, -19.24026], - [-125.15625, -26.476839], - [-199.504452, -26.476839] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-199.504452, -19.24026], - [-199.504452, -12.003681], - [-125.15625, -12.003681], - [-125.15625, -19.24026], - [-199.504452, -19.24026] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-199.504452, -12.003681], - [-199.504452, -4.767102], - [-125.15625, -4.767102], - [-125.15625, -12.003681], - [-199.504452, -12.003681] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-199.504452, -4.767102], - [-199.504452, 2.469478], - [-125.15625, 2.469478], - [-125.15625, -4.767102], - [-199.504452, -4.767102] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-199.504452, 2.469478], - [-199.504452, 9.706057], - [-125.15625, 9.706057], - [-125.15625, 2.469478], - [-199.504452, 2.469478] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-199.504452, 9.706057], - [-199.504452, 16.942636], - [-125.15625, 16.942636], - [-125.15625, 9.706057], - [-199.504452, 9.706057] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-199.504452, 16.942636], - [-199.504452, 24.179215], - [-125.15625, 24.179215], - [-125.15625, 16.942636], - [-199.504452, 16.942636] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-199.504452, 24.179215], - [-199.504452, 31.415794], - [-125.15625, 31.415794], - [-125.15625, 24.179215], - [-199.504452, 24.179215] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-199.504452, 31.415794], - [-199.504452, 38.652373], - [-125.15625, 38.652373], - [-125.15625, 31.415794], - [-199.504452, 31.415794] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-199.504452, 38.652373], - [-199.504452, 45.888952], - [-125.15625, 45.888952], - [-125.15625, 38.652373], - [-199.504452, 38.652373] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-199.504452, 45.888952], - [-199.504452, 53.125532], - [-125.15625, 53.125532], - [-125.15625, 45.888952], - [-199.504452, 45.888952] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-199.504452, 53.125532], - [-199.504452, 60.362111], - [-125.15625, 60.362111], - [-125.15625, 53.125532], - [-199.504452, 53.125532] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-199.504452, 60.362111], - [-199.504452, 67.59869], - [-125.15625, 67.59869], - [-125.15625, 60.362111], - [-199.504452, 60.362111] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-199.504452, 67.59869], - [-199.504452, 74.835269], - [-125.15625, 74.835269], - [-125.15625, 67.59869], - [-199.504452, 67.59869] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-125.15625, -77.132893], - [-125.15625, -69.896314], - [-50.808048, -69.896314], - [-50.808048, -77.132893], - [-125.15625, -77.132893] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-125.15625, -69.896314], - [-125.15625, -62.659735], - [-50.808048, -62.659735], - [-50.808048, -69.896314], - [-125.15625, -69.896314] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-125.15625, -62.659735], - [-125.15625, -55.423156], - [-50.808048, -55.423156], - [-50.808048, -62.659735], - [-125.15625, -62.659735] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-125.15625, -55.423156], - [-125.15625, -48.186577], - [-50.808048, -48.186577], - [-50.808048, -55.423156], - [-125.15625, -55.423156] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-125.15625, -48.186577], - [-125.15625, -40.949997], - [-50.808048, -40.949997], - [-50.808048, -48.186577], - [-125.15625, -48.186577] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-125.15625, -40.949997], - [-125.15625, -33.713418], - [-50.808048, -33.713418], - [-50.808048, -40.949997], - [-125.15625, -40.949997] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-125.15625, -33.713418], - [-125.15625, -26.476839], - [-50.808048, -26.476839], - [-50.808048, -33.713418], - [-125.15625, -33.713418] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-125.15625, -26.476839], - [-125.15625, -19.24026], - [-50.808048, -19.24026], - [-50.808048, -26.476839], - [-125.15625, -26.476839] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-125.15625, -19.24026], - [-125.15625, -12.003681], - [-50.808048, -12.003681], - [-50.808048, -19.24026], - [-125.15625, -19.24026] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-125.15625, -12.003681], - [-125.15625, -4.767102], - [-50.808048, -4.767102], - [-50.808048, -12.003681], - [-125.15625, -12.003681] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-125.15625, -4.767102], - [-125.15625, 2.469478], - [-50.808048, 2.469478], - [-50.808048, -4.767102], - [-125.15625, -4.767102] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-125.15625, 2.469478], - [-125.15625, 9.706057], - [-50.808048, 9.706057], - [-50.808048, 2.469478], - [-125.15625, 2.469478] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-125.15625, 9.706057], - [-125.15625, 16.942636], - [-50.808048, 16.942636], - [-50.808048, 9.706057], - [-125.15625, 9.706057] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-125.15625, 16.942636], - [-125.15625, 24.179215], - [-50.808048, 24.179215], - [-50.808048, 16.942636], - [-125.15625, 16.942636] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-125.15625, 24.179215], - [-125.15625, 31.415794], - [-50.808048, 31.415794], - [-50.808048, 24.179215], - [-125.15625, 24.179215] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-125.15625, 31.415794], - [-125.15625, 38.652373], - [-50.808048, 38.652373], - [-50.808048, 31.415794], - [-125.15625, 31.415794] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-125.15625, 38.652373], - [-125.15625, 45.888952], - [-50.808048, 45.888952], - [-50.808048, 38.652373], - [-125.15625, 38.652373] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-125.15625, 45.888952], - [-125.15625, 53.125532], - [-50.808048, 53.125532], - [-50.808048, 45.888952], - [-125.15625, 45.888952] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-125.15625, 53.125532], - [-125.15625, 60.362111], - [-50.808048, 60.362111], - [-50.808048, 53.125532], - [-125.15625, 53.125532] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-125.15625, 60.362111], - [-125.15625, 67.59869], - [-50.808048, 67.59869], - [-50.808048, 60.362111], - [-125.15625, 60.362111] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-125.15625, 67.59869], - [-125.15625, 74.835269], - [-50.808048, 74.835269], - [-50.808048, 67.59869], - [-125.15625, 67.59869] - ] - ] - } - }, - { - "type": "Feature", - "bbox": [-220.78125, -80.64703474739618, -29.53125, 78.34941069014629], - "properties": { - "stroke": "#F00", - "stroke-width": 6, - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-220.78125, -80.64703474739618], - [-29.53125, -80.64703474739618], - [-29.53125, 78.34941069014629], - [-220.78125, 78.34941069014629], - [-220.78125, -80.64703474739618] - ] - ] - } - } - ] + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -199.504452, + -77.132893 + ], + [ + -199.504452, + -69.896314 + ], + [ + -125.15625, + -69.896314 + ], + [ + -125.15625, + -77.132893 + ], + [ + -199.504452, + -77.132893 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -199.504452, + -69.896314 + ], + [ + -199.504452, + -62.659735 + ], + [ + -125.15625, + -62.659735 + ], + [ + -125.15625, + -69.896314 + ], + [ + -199.504452, + -69.896314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -199.504452, + -62.659735 + ], + [ + -199.504452, + -55.423156 + ], + [ + -125.15625, + -55.423156 + ], + [ + -125.15625, + -62.659735 + ], + [ + -199.504452, + -62.659735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -199.504452, + -55.423156 + ], + [ + -199.504452, + -48.186577 + ], + [ + -125.15625, + -48.186577 + ], + [ + -125.15625, + -55.423156 + ], + [ + -199.504452, + -55.423156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -199.504452, + -48.186577 + ], + [ + -199.504452, + -40.949997 + ], + [ + -125.15625, + -40.949997 + ], + [ + -125.15625, + -48.186577 + ], + [ + -199.504452, + -48.186577 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -199.504452, + -40.949997 + ], + [ + -199.504452, + -33.713418 + ], + [ + -125.15625, + -33.713418 + ], + [ + -125.15625, + -40.949997 + ], + [ + -199.504452, + -40.949997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -199.504452, + -33.713418 + ], + [ + -199.504452, + -26.476839 + ], + [ + -125.15625, + -26.476839 + ], + [ + -125.15625, + -33.713418 + ], + [ + -199.504452, + -33.713418 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -199.504452, + -26.476839 + ], + [ + -199.504452, + -19.24026 + ], + [ + -125.15625, + -19.24026 + ], + [ + -125.15625, + -26.476839 + ], + [ + -199.504452, + -26.476839 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -199.504452, + -19.24026 + ], + [ + -199.504452, + -12.003681 + ], + [ + -125.15625, + -12.003681 + ], + [ + -125.15625, + -19.24026 + ], + [ + -199.504452, + -19.24026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -199.504452, + -12.003681 + ], + [ + -199.504452, + -4.767102 + ], + [ + -125.15625, + -4.767102 + ], + [ + -125.15625, + -12.003681 + ], + [ + -199.504452, + -12.003681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -199.504452, + -4.767102 + ], + [ + -199.504452, + 2.469478 + ], + [ + -125.15625, + 2.469478 + ], + [ + -125.15625, + -4.767102 + ], + [ + -199.504452, + -4.767102 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -199.504452, + 2.469478 + ], + [ + -199.504452, + 9.706057 + ], + [ + -125.15625, + 9.706057 + ], + [ + -125.15625, + 2.469478 + ], + [ + -199.504452, + 2.469478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -199.504452, + 9.706057 + ], + [ + -199.504452, + 16.942636 + ], + [ + -125.15625, + 16.942636 + ], + [ + -125.15625, + 9.706057 + ], + [ + -199.504452, + 9.706057 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -199.504452, + 16.942636 + ], + [ + -199.504452, + 24.179215 + ], + [ + -125.15625, + 24.179215 + ], + [ + -125.15625, + 16.942636 + ], + [ + -199.504452, + 16.942636 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -199.504452, + 24.179215 + ], + [ + -199.504452, + 31.415794 + ], + [ + -125.15625, + 31.415794 + ], + [ + -125.15625, + 24.179215 + ], + [ + -199.504452, + 24.179215 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -199.504452, + 31.415794 + ], + [ + -199.504452, + 38.652373 + ], + [ + -125.15625, + 38.652373 + ], + [ + -125.15625, + 31.415794 + ], + [ + -199.504452, + 31.415794 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -199.504452, + 38.652373 + ], + [ + -199.504452, + 45.888952 + ], + [ + -125.15625, + 45.888952 + ], + [ + -125.15625, + 38.652373 + ], + [ + -199.504452, + 38.652373 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -199.504452, + 45.888952 + ], + [ + -199.504452, + 53.125532 + ], + [ + -125.15625, + 53.125532 + ], + [ + -125.15625, + 45.888952 + ], + [ + -199.504452, + 45.888952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -199.504452, + 53.125532 + ], + [ + -199.504452, + 60.362111 + ], + [ + -125.15625, + 60.362111 + ], + [ + -125.15625, + 53.125532 + ], + [ + -199.504452, + 53.125532 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -199.504452, + 60.362111 + ], + [ + -199.504452, + 67.59869 + ], + [ + -125.15625, + 67.59869 + ], + [ + -125.15625, + 60.362111 + ], + [ + -199.504452, + 60.362111 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -199.504452, + 67.59869 + ], + [ + -199.504452, + 74.835269 + ], + [ + -125.15625, + 74.835269 + ], + [ + -125.15625, + 67.59869 + ], + [ + -199.504452, + 67.59869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -125.15625, + -77.132893 + ], + [ + -125.15625, + -69.896314 + ], + [ + -50.808048, + -69.896314 + ], + [ + -50.808048, + -77.132893 + ], + [ + -125.15625, + -77.132893 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -125.15625, + -69.896314 + ], + [ + -125.15625, + -62.659735 + ], + [ + -50.808048, + -62.659735 + ], + [ + -50.808048, + -69.896314 + ], + [ + -125.15625, + -69.896314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -125.15625, + -62.659735 + ], + [ + -125.15625, + -55.423156 + ], + [ + -50.808048, + -55.423156 + ], + [ + -50.808048, + -62.659735 + ], + [ + -125.15625, + -62.659735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -125.15625, + -55.423156 + ], + [ + -125.15625, + -48.186577 + ], + [ + -50.808048, + -48.186577 + ], + [ + -50.808048, + -55.423156 + ], + [ + -125.15625, + -55.423156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -125.15625, + -48.186577 + ], + [ + -125.15625, + -40.949997 + ], + [ + -50.808048, + -40.949997 + ], + [ + -50.808048, + -48.186577 + ], + [ + -125.15625, + -48.186577 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -125.15625, + -40.949997 + ], + [ + -125.15625, + -33.713418 + ], + [ + -50.808048, + -33.713418 + ], + [ + -50.808048, + -40.949997 + ], + [ + -125.15625, + -40.949997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -125.15625, + -33.713418 + ], + [ + -125.15625, + -26.476839 + ], + [ + -50.808048, + -26.476839 + ], + [ + -50.808048, + -33.713418 + ], + [ + -125.15625, + -33.713418 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -125.15625, + -26.476839 + ], + [ + -125.15625, + -19.24026 + ], + [ + -50.808048, + -19.24026 + ], + [ + -50.808048, + -26.476839 + ], + [ + -125.15625, + -26.476839 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -125.15625, + -19.24026 + ], + [ + -125.15625, + -12.003681 + ], + [ + -50.808048, + -12.003681 + ], + [ + -50.808048, + -19.24026 + ], + [ + -125.15625, + -19.24026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -125.15625, + -12.003681 + ], + [ + -125.15625, + -4.767102 + ], + [ + -50.808048, + -4.767102 + ], + [ + -50.808048, + -12.003681 + ], + [ + -125.15625, + -12.003681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -125.15625, + -4.767102 + ], + [ + -125.15625, + 2.469478 + ], + [ + -50.808048, + 2.469478 + ], + [ + -50.808048, + -4.767102 + ], + [ + -125.15625, + -4.767102 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -125.15625, + 2.469478 + ], + [ + -125.15625, + 9.706057 + ], + [ + -50.808048, + 9.706057 + ], + [ + -50.808048, + 2.469478 + ], + [ + -125.15625, + 2.469478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -125.15625, + 9.706057 + ], + [ + -125.15625, + 16.942636 + ], + [ + -50.808048, + 16.942636 + ], + [ + -50.808048, + 9.706057 + ], + [ + -125.15625, + 9.706057 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -125.15625, + 16.942636 + ], + [ + -125.15625, + 24.179215 + ], + [ + -50.808048, + 24.179215 + ], + [ + -50.808048, + 16.942636 + ], + [ + -125.15625, + 16.942636 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -125.15625, + 24.179215 + ], + [ + -125.15625, + 31.415794 + ], + [ + -50.808048, + 31.415794 + ], + [ + -50.808048, + 24.179215 + ], + [ + -125.15625, + 24.179215 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -125.15625, + 31.415794 + ], + [ + -125.15625, + 38.652373 + ], + [ + -50.808048, + 38.652373 + ], + [ + -50.808048, + 31.415794 + ], + [ + -125.15625, + 31.415794 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -125.15625, + 38.652373 + ], + [ + -125.15625, + 45.888952 + ], + [ + -50.808048, + 45.888952 + ], + [ + -50.808048, + 38.652373 + ], + [ + -125.15625, + 38.652373 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -125.15625, + 45.888952 + ], + [ + -125.15625, + 53.125532 + ], + [ + -50.808048, + 53.125532 + ], + [ + -50.808048, + 45.888952 + ], + [ + -125.15625, + 45.888952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -125.15625, + 53.125532 + ], + [ + -125.15625, + 60.362111 + ], + [ + -50.808048, + 60.362111 + ], + [ + -50.808048, + 53.125532 + ], + [ + -125.15625, + 53.125532 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -125.15625, + 60.362111 + ], + [ + -125.15625, + 67.59869 + ], + [ + -50.808048, + 67.59869 + ], + [ + -50.808048, + 60.362111 + ], + [ + -125.15625, + 60.362111 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -125.15625, + 67.59869 + ], + [ + -125.15625, + 74.835269 + ], + [ + -50.808048, + 74.835269 + ], + [ + -50.808048, + 67.59869 + ], + [ + -125.15625, + 67.59869 + ] + ] + ] + } + }, + { + "type": "Feature", + "bbox": [ + -220.78125, + -80.64703474739618, + -29.53125, + 78.34941069014629 + ], + "properties": { + "stroke": "#F00", + "stroke-width": 6, + "fill-opacity": 0 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -220.78125, + -80.64703474739618 + ], + [ + -29.53125, + -80.64703474739618 + ], + [ + -29.53125, + 78.34941069014629 + ], + [ + -220.78125, + 78.34941069014629 + ], + [ + -220.78125, + -80.64703474739618 + ] + ] + ] + } + } + ] } diff --git a/packages/turf-square-grid/test/out/fiji-10-miles.geojson b/packages/turf-square-grid/test/out/fiji-10-miles.geojson index 151ba92f0d..a31c9ccf44 100644 --- a/packages/turf-square-grid/test/out/fiji-10-miles.geojson +++ b/packages/turf-square-grid/test/out/fiji-10-miles.geojson @@ -1,351 +1,666 @@ { - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-180.340249, -17.114729], - [-180.340249, -16.969998], - [-180.188768, -16.969998], - [-180.188768, -17.114729], - [-180.340249, -17.114729] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-180.340249, -16.969998], - [-180.340249, -16.825266], - [-180.188768, -16.825266], - [-180.188768, -16.969998], - [-180.340249, -16.969998] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-180.340249, -16.825266], - [-180.340249, -16.680534], - [-180.188768, -16.680534], - [-180.188768, -16.825266], - [-180.340249, -16.825266] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-180.340249, -16.680534], - [-180.340249, -16.535803], - [-180.188768, -16.535803], - [-180.188768, -16.680534], - [-180.340249, -16.680534] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-180.188768, -17.114729], - [-180.188768, -16.969998], - [-180.037288, -16.969998], - [-180.037288, -17.114729], - [-180.188768, -17.114729] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-180.188768, -16.969998], - [-180.188768, -16.825266], - [-180.037288, -16.825266], - [-180.037288, -16.969998], - [-180.188768, -16.969998] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-180.188768, -16.825266], - [-180.188768, -16.680534], - [-180.037288, -16.680534], - [-180.037288, -16.825266], - [-180.188768, -16.825266] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-180.188768, -16.680534], - [-180.188768, -16.535803], - [-180.037288, -16.535803], - [-180.037288, -16.680534], - [-180.188768, -16.680534] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-180.037288, -17.114729], - [-180.037288, -16.969998], - [-179.885808, -16.969998], - [-179.885808, -17.114729], - [-180.037288, -17.114729] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-180.037288, -16.969998], - [-180.037288, -16.825266], - [-179.885808, -16.825266], - [-179.885808, -16.969998], - [-180.037288, -16.969998] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-180.037288, -16.825266], - [-180.037288, -16.680534], - [-179.885808, -16.680534], - [-179.885808, -16.825266], - [-180.037288, -16.825266] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-180.037288, -16.680534], - [-180.037288, -16.535803], - [-179.885808, -16.535803], - [-179.885808, -16.680534], - [-180.037288, -16.680534] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-179.885808, -17.114729], - [-179.885808, -16.969998], - [-179.734327, -16.969998], - [-179.734327, -17.114729], - [-179.885808, -17.114729] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-179.885808, -16.969998], - [-179.885808, -16.825266], - [-179.734327, -16.825266], - [-179.734327, -16.969998], - [-179.885808, -16.969998] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-179.885808, -16.825266], - [-179.885808, -16.680534], - [-179.734327, -16.680534], - [-179.734327, -16.825266], - [-179.885808, -16.825266] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-179.885808, -16.680534], - [-179.885808, -16.535803], - [-179.734327, -16.535803], - [-179.734327, -16.680534], - [-179.885808, -16.680534] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-179.734327, -17.114729], - [-179.734327, -16.969998], - [-179.582847, -16.969998], - [-179.582847, -17.114729], - [-179.734327, -17.114729] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-179.734327, -16.969998], - [-179.734327, -16.825266], - [-179.582847, -16.825266], - [-179.582847, -16.969998], - [-179.734327, -16.969998] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-179.734327, -16.825266], - [-179.734327, -16.680534], - [-179.582847, -16.680534], - [-179.582847, -16.825266], - [-179.734327, -16.825266] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-179.734327, -16.680534], - [-179.734327, -16.535803], - [-179.582847, -16.535803], - [-179.582847, -16.680534], - [-179.734327, -16.680534] - ] - ] - } - }, - { - "type": "Feature", - "bbox": [ - -180.3460693359375, - -17.16703442146408, - -179.5770263671875, - -16.48349760264812 - ], - "properties": { - "stroke": "#F00", - "stroke-width": 6, - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-180.3460693359375, -17.16703442146408], - [-179.5770263671875, -17.16703442146408], - [-179.5770263671875, -16.48349760264812], - [-180.3460693359375, -16.48349760264812], - [-180.3460693359375, -17.16703442146408] - ] - ] - } - } - ] + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -180.340249, + -17.114729 + ], + [ + -180.340249, + -16.969998 + ], + [ + -180.188768, + -16.969998 + ], + [ + -180.188768, + -17.114729 + ], + [ + -180.340249, + -17.114729 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -180.340249, + -16.969998 + ], + [ + -180.340249, + -16.825266 + ], + [ + -180.188768, + -16.825266 + ], + [ + -180.188768, + -16.969998 + ], + [ + -180.340249, + -16.969998 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -180.340249, + -16.825266 + ], + [ + -180.340249, + -16.680534 + ], + [ + -180.188768, + -16.680534 + ], + [ + -180.188768, + -16.825266 + ], + [ + -180.340249, + -16.825266 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -180.340249, + -16.680534 + ], + [ + -180.340249, + -16.535803 + ], + [ + -180.188768, + -16.535803 + ], + [ + -180.188768, + -16.680534 + ], + [ + -180.340249, + -16.680534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -180.188768, + -17.114729 + ], + [ + -180.188768, + -16.969998 + ], + [ + -180.037288, + -16.969998 + ], + [ + -180.037288, + -17.114729 + ], + [ + -180.188768, + -17.114729 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -180.188768, + -16.969998 + ], + [ + -180.188768, + -16.825266 + ], + [ + -180.037288, + -16.825266 + ], + [ + -180.037288, + -16.969998 + ], + [ + -180.188768, + -16.969998 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -180.188768, + -16.825266 + ], + [ + -180.188768, + -16.680534 + ], + [ + -180.037288, + -16.680534 + ], + [ + -180.037288, + -16.825266 + ], + [ + -180.188768, + -16.825266 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -180.188768, + -16.680534 + ], + [ + -180.188768, + -16.535803 + ], + [ + -180.037288, + -16.535803 + ], + [ + -180.037288, + -16.680534 + ], + [ + -180.188768, + -16.680534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -180.037288, + -17.114729 + ], + [ + -180.037288, + -16.969998 + ], + [ + -179.885808, + -16.969998 + ], + [ + -179.885808, + -17.114729 + ], + [ + -180.037288, + -17.114729 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -180.037288, + -16.969998 + ], + [ + -180.037288, + -16.825266 + ], + [ + -179.885808, + -16.825266 + ], + [ + -179.885808, + -16.969998 + ], + [ + -180.037288, + -16.969998 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -180.037288, + -16.825266 + ], + [ + -180.037288, + -16.680534 + ], + [ + -179.885808, + -16.680534 + ], + [ + -179.885808, + -16.825266 + ], + [ + -180.037288, + -16.825266 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -180.037288, + -16.680534 + ], + [ + -180.037288, + -16.535803 + ], + [ + -179.885808, + -16.535803 + ], + [ + -179.885808, + -16.680534 + ], + [ + -180.037288, + -16.680534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -179.885808, + -17.114729 + ], + [ + -179.885808, + -16.969998 + ], + [ + -179.734327, + -16.969998 + ], + [ + -179.734327, + -17.114729 + ], + [ + -179.885808, + -17.114729 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -179.885808, + -16.969998 + ], + [ + -179.885808, + -16.825266 + ], + [ + -179.734327, + -16.825266 + ], + [ + -179.734327, + -16.969998 + ], + [ + -179.885808, + -16.969998 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -179.885808, + -16.825266 + ], + [ + -179.885808, + -16.680534 + ], + [ + -179.734327, + -16.680534 + ], + [ + -179.734327, + -16.825266 + ], + [ + -179.885808, + -16.825266 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -179.885808, + -16.680534 + ], + [ + -179.885808, + -16.535803 + ], + [ + -179.734327, + -16.535803 + ], + [ + -179.734327, + -16.680534 + ], + [ + -179.885808, + -16.680534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -179.734327, + -17.114729 + ], + [ + -179.734327, + -16.969998 + ], + [ + -179.582847, + -16.969998 + ], + [ + -179.582847, + -17.114729 + ], + [ + -179.734327, + -17.114729 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -179.734327, + -16.969998 + ], + [ + -179.734327, + -16.825266 + ], + [ + -179.582847, + -16.825266 + ], + [ + -179.582847, + -16.969998 + ], + [ + -179.734327, + -16.969998 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -179.734327, + -16.825266 + ], + [ + -179.734327, + -16.680534 + ], + [ + -179.582847, + -16.680534 + ], + [ + -179.582847, + -16.825266 + ], + [ + -179.734327, + -16.825266 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -179.734327, + -16.680534 + ], + [ + -179.734327, + -16.535803 + ], + [ + -179.582847, + -16.535803 + ], + [ + -179.582847, + -16.680534 + ], + [ + -179.734327, + -16.680534 + ] + ] + ] + } + }, + { + "type": "Feature", + "bbox": [ + -180.3460693359375, + -17.16703442146408, + -179.5770263671875, + -16.48349760264812 + ], + "properties": { + "stroke": "#F00", + "stroke-width": 6, + "fill-opacity": 0 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -180.3460693359375, + -17.16703442146408 + ], + [ + -179.5770263671875, + -17.16703442146408 + ], + [ + -179.5770263671875, + -16.48349760264812 + ], + [ + -180.3460693359375, + -16.48349760264812 + ], + [ + -180.3460693359375, + -17.16703442146408 + ] + ] + ] + } + } + ] } diff --git a/packages/turf-square-grid/test/out/issue-1215.geojson b/packages/turf-square-grid/test/out/issue-1215.geojson index a858b77e6b..df5e2af9f6 100644 --- a/packages/turf-square-grid/test/out/issue-1215.geojson +++ b/packages/turf-square-grid/test/out/issue-1215.geojson @@ -1,26581 +1,51487 @@ { - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.699821, 55.553161], - [37.699821, 55.553251], - [37.69998, 55.553251], - [37.69998, 55.553161], - [37.699821, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.699821, 55.553251], - [37.699821, 55.553341], - [37.69998, 55.553341], - [37.69998, 55.553251], - [37.699821, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.699821, 55.553341], - [37.699821, 55.553431], - [37.69998, 55.553431], - [37.69998, 55.553341], - [37.699821, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.699821, 55.553431], - [37.699821, 55.55352], - [37.69998, 55.55352], - [37.69998, 55.553431], - [37.699821, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.699821, 55.55352], - [37.699821, 55.55361], - [37.69998, 55.55361], - [37.69998, 55.55352], - [37.699821, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.69998, 55.553161], - [37.69998, 55.553251], - [37.700139, 55.553251], - [37.700139, 55.553161], - [37.69998, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.69998, 55.553251], - [37.69998, 55.553341], - [37.700139, 55.553341], - [37.700139, 55.553251], - [37.69998, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.69998, 55.553341], - [37.69998, 55.553431], - [37.700139, 55.553431], - [37.700139, 55.553341], - [37.69998, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.69998, 55.553431], - [37.69998, 55.55352], - [37.700139, 55.55352], - [37.700139, 55.553431], - [37.69998, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.69998, 55.55352], - [37.69998, 55.55361], - [37.700139, 55.55361], - [37.700139, 55.55352], - [37.69998, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.69998, 55.55361], - [37.69998, 55.5537], - [37.700139, 55.5537], - [37.700139, 55.55361], - [37.69998, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.69998, 55.5537], - [37.69998, 55.55379], - [37.700139, 55.55379], - [37.700139, 55.5537], - [37.69998, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700139, 55.553071], - [37.700139, 55.553161], - [37.700298, 55.553161], - [37.700298, 55.553071], - [37.700139, 55.553071] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700139, 55.553161], - [37.700139, 55.553251], - [37.700298, 55.553251], - [37.700298, 55.553161], - [37.700139, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700139, 55.553251], - [37.700139, 55.553341], - [37.700298, 55.553341], - [37.700298, 55.553251], - [37.700139, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700139, 55.553341], - [37.700139, 55.553431], - [37.700298, 55.553431], - [37.700298, 55.553341], - [37.700139, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700139, 55.553431], - [37.700139, 55.55352], - [37.700298, 55.55352], - [37.700298, 55.553431], - [37.700139, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700139, 55.55352], - [37.700139, 55.55361], - [37.700298, 55.55361], - [37.700298, 55.55352], - [37.700139, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700139, 55.55361], - [37.700139, 55.5537], - [37.700298, 55.5537], - [37.700298, 55.55361], - [37.700139, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700139, 55.5537], - [37.700139, 55.55379], - [37.700298, 55.55379], - [37.700298, 55.5537], - [37.700139, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700139, 55.55379], - [37.700139, 55.55388], - [37.700298, 55.55388], - [37.700298, 55.55379], - [37.700139, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700298, 55.553071], - [37.700298, 55.553161], - [37.700457, 55.553161], - [37.700457, 55.553071], - [37.700298, 55.553071] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700298, 55.553161], - [37.700298, 55.553251], - [37.700457, 55.553251], - [37.700457, 55.553161], - [37.700298, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700298, 55.553251], - [37.700298, 55.553341], - [37.700457, 55.553341], - [37.700457, 55.553251], - [37.700298, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700298, 55.553341], - [37.700298, 55.553431], - [37.700457, 55.553431], - [37.700457, 55.553341], - [37.700298, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700298, 55.553431], - [37.700298, 55.55352], - [37.700457, 55.55352], - [37.700457, 55.553431], - [37.700298, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700298, 55.55352], - [37.700298, 55.55361], - [37.700457, 55.55361], - [37.700457, 55.55352], - [37.700298, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700298, 55.55361], - [37.700298, 55.5537], - [37.700457, 55.5537], - [37.700457, 55.55361], - [37.700298, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700298, 55.5537], - [37.700298, 55.55379], - [37.700457, 55.55379], - [37.700457, 55.5537], - [37.700298, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700298, 55.55379], - [37.700298, 55.55388], - [37.700457, 55.55388], - [37.700457, 55.55379], - [37.700298, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700457, 55.552981], - [37.700457, 55.553071], - [37.700616, 55.553071], - [37.700616, 55.552981], - [37.700457, 55.552981] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700457, 55.553071], - [37.700457, 55.553161], - [37.700616, 55.553161], - [37.700616, 55.553071], - [37.700457, 55.553071] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700457, 55.553161], - [37.700457, 55.553251], - [37.700616, 55.553251], - [37.700616, 55.553161], - [37.700457, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700457, 55.553251], - [37.700457, 55.553341], - [37.700616, 55.553341], - [37.700616, 55.553251], - [37.700457, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700457, 55.553341], - [37.700457, 55.553431], - [37.700616, 55.553431], - [37.700616, 55.553341], - [37.700457, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700457, 55.553431], - [37.700457, 55.55352], - [37.700616, 55.55352], - [37.700616, 55.553431], - [37.700457, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700457, 55.55352], - [37.700457, 55.55361], - [37.700616, 55.55361], - [37.700616, 55.55352], - [37.700457, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700457, 55.55361], - [37.700457, 55.5537], - [37.700616, 55.5537], - [37.700616, 55.55361], - [37.700457, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700457, 55.5537], - [37.700457, 55.55379], - [37.700616, 55.55379], - [37.700616, 55.5537], - [37.700457, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700457, 55.55379], - [37.700457, 55.55388], - [37.700616, 55.55388], - [37.700616, 55.55379], - [37.700457, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700457, 55.55388], - [37.700457, 55.55397], - [37.700616, 55.55397], - [37.700616, 55.55388], - [37.700457, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700616, 55.552981], - [37.700616, 55.553071], - [37.700775, 55.553071], - [37.700775, 55.552981], - [37.700616, 55.552981] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700616, 55.553071], - [37.700616, 55.553161], - [37.700775, 55.553161], - [37.700775, 55.553071], - [37.700616, 55.553071] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700616, 55.553161], - [37.700616, 55.553251], - [37.700775, 55.553251], - [37.700775, 55.553161], - [37.700616, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700616, 55.553251], - [37.700616, 55.553341], - [37.700775, 55.553341], - [37.700775, 55.553251], - [37.700616, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700616, 55.553341], - [37.700616, 55.553431], - [37.700775, 55.553431], - [37.700775, 55.553341], - [37.700616, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700616, 55.553431], - [37.700616, 55.55352], - [37.700775, 55.55352], - [37.700775, 55.553431], - [37.700616, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700616, 55.55352], - [37.700616, 55.55361], - [37.700775, 55.55361], - [37.700775, 55.55352], - [37.700616, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700616, 55.55361], - [37.700616, 55.5537], - [37.700775, 55.5537], - [37.700775, 55.55361], - [37.700616, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700616, 55.5537], - [37.700616, 55.55379], - [37.700775, 55.55379], - [37.700775, 55.5537], - [37.700616, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700616, 55.55379], - [37.700616, 55.55388], - [37.700775, 55.55388], - [37.700775, 55.55379], - [37.700616, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700616, 55.55388], - [37.700616, 55.55397], - [37.700775, 55.55397], - [37.700775, 55.55388], - [37.700616, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700775, 55.552981], - [37.700775, 55.553071], - [37.700934, 55.553071], - [37.700934, 55.552981], - [37.700775, 55.552981] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700775, 55.553071], - [37.700775, 55.553161], - [37.700934, 55.553161], - [37.700934, 55.553071], - [37.700775, 55.553071] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700775, 55.553161], - [37.700775, 55.553251], - [37.700934, 55.553251], - [37.700934, 55.553161], - [37.700775, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700775, 55.553251], - [37.700775, 55.553341], - [37.700934, 55.553341], - [37.700934, 55.553251], - [37.700775, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700775, 55.553341], - [37.700775, 55.553431], - [37.700934, 55.553431], - [37.700934, 55.553341], - [37.700775, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700775, 55.553431], - [37.700775, 55.55352], - [37.700934, 55.55352], - [37.700934, 55.553431], - [37.700775, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700775, 55.55352], - [37.700775, 55.55361], - [37.700934, 55.55361], - [37.700934, 55.55352], - [37.700775, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700775, 55.55361], - [37.700775, 55.5537], - [37.700934, 55.5537], - [37.700934, 55.55361], - [37.700775, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700775, 55.5537], - [37.700775, 55.55379], - [37.700934, 55.55379], - [37.700934, 55.5537], - [37.700775, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700775, 55.55379], - [37.700775, 55.55388], - [37.700934, 55.55388], - [37.700934, 55.55379], - [37.700775, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700775, 55.55388], - [37.700775, 55.55397], - [37.700934, 55.55397], - [37.700934, 55.55388], - [37.700775, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700775, 55.55397], - [37.700775, 55.55406], - [37.700934, 55.55406], - [37.700934, 55.55397], - [37.700775, 55.55397] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700934, 55.552891], - [37.700934, 55.552981], - [37.701093, 55.552981], - [37.701093, 55.552891], - [37.700934, 55.552891] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700934, 55.552981], - [37.700934, 55.553071], - [37.701093, 55.553071], - [37.701093, 55.552981], - [37.700934, 55.552981] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700934, 55.553071], - [37.700934, 55.553161], - [37.701093, 55.553161], - [37.701093, 55.553071], - [37.700934, 55.553071] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700934, 55.553161], - [37.700934, 55.553251], - [37.701093, 55.553251], - [37.701093, 55.553161], - [37.700934, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700934, 55.553251], - [37.700934, 55.553341], - [37.701093, 55.553341], - [37.701093, 55.553251], - [37.700934, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700934, 55.553341], - [37.700934, 55.553431], - [37.701093, 55.553431], - [37.701093, 55.553341], - [37.700934, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700934, 55.553431], - [37.700934, 55.55352], - [37.701093, 55.55352], - [37.701093, 55.553431], - [37.700934, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700934, 55.55352], - [37.700934, 55.55361], - [37.701093, 55.55361], - [37.701093, 55.55352], - [37.700934, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700934, 55.55361], - [37.700934, 55.5537], - [37.701093, 55.5537], - [37.701093, 55.55361], - [37.700934, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700934, 55.5537], - [37.700934, 55.55379], - [37.701093, 55.55379], - [37.701093, 55.5537], - [37.700934, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700934, 55.55379], - [37.700934, 55.55388], - [37.701093, 55.55388], - [37.701093, 55.55379], - [37.700934, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700934, 55.55388], - [37.700934, 55.55397], - [37.701093, 55.55397], - [37.701093, 55.55388], - [37.700934, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.700934, 55.55397], - [37.700934, 55.55406], - [37.701093, 55.55406], - [37.701093, 55.55397], - [37.700934, 55.55397] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701093, 55.552891], - [37.701093, 55.552981], - [37.701252, 55.552981], - [37.701252, 55.552891], - [37.701093, 55.552891] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701093, 55.552981], - [37.701093, 55.553071], - [37.701252, 55.553071], - [37.701252, 55.552981], - [37.701093, 55.552981] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701093, 55.553071], - [37.701093, 55.553161], - [37.701252, 55.553161], - [37.701252, 55.553071], - [37.701093, 55.553071] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701093, 55.553161], - [37.701093, 55.553251], - [37.701252, 55.553251], - [37.701252, 55.553161], - [37.701093, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701093, 55.553251], - [37.701093, 55.553341], - [37.701252, 55.553341], - [37.701252, 55.553251], - [37.701093, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701093, 55.553341], - [37.701093, 55.553431], - [37.701252, 55.553431], - [37.701252, 55.553341], - [37.701093, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701093, 55.553431], - [37.701093, 55.55352], - [37.701252, 55.55352], - [37.701252, 55.553431], - [37.701093, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701093, 55.55352], - [37.701093, 55.55361], - [37.701252, 55.55361], - [37.701252, 55.55352], - [37.701093, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701093, 55.55361], - [37.701093, 55.5537], - [37.701252, 55.5537], - [37.701252, 55.55361], - [37.701093, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701093, 55.5537], - [37.701093, 55.55379], - [37.701252, 55.55379], - [37.701252, 55.5537], - [37.701093, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701093, 55.55379], - [37.701093, 55.55388], - [37.701252, 55.55388], - [37.701252, 55.55379], - [37.701093, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701093, 55.55388], - [37.701093, 55.55397], - [37.701252, 55.55397], - [37.701252, 55.55388], - [37.701093, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701093, 55.55397], - [37.701093, 55.55406], - [37.701252, 55.55406], - [37.701252, 55.55397], - [37.701093, 55.55397] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701093, 55.55406], - [37.701093, 55.55415], - [37.701252, 55.55415], - [37.701252, 55.55406], - [37.701093, 55.55406] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701252, 55.552801], - [37.701252, 55.552891], - [37.701411, 55.552891], - [37.701411, 55.552801], - [37.701252, 55.552801] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701252, 55.552891], - [37.701252, 55.552981], - [37.701411, 55.552981], - [37.701411, 55.552891], - [37.701252, 55.552891] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701252, 55.552981], - [37.701252, 55.553071], - [37.701411, 55.553071], - [37.701411, 55.552981], - [37.701252, 55.552981] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701252, 55.553071], - [37.701252, 55.553161], - [37.701411, 55.553161], - [37.701411, 55.553071], - [37.701252, 55.553071] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701252, 55.553161], - [37.701252, 55.553251], - [37.701411, 55.553251], - [37.701411, 55.553161], - [37.701252, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701252, 55.553251], - [37.701252, 55.553341], - [37.701411, 55.553341], - [37.701411, 55.553251], - [37.701252, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701252, 55.553341], - [37.701252, 55.553431], - [37.701411, 55.553431], - [37.701411, 55.553341], - [37.701252, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701252, 55.553431], - [37.701252, 55.55352], - [37.701411, 55.55352], - [37.701411, 55.553431], - [37.701252, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701252, 55.55352], - [37.701252, 55.55361], - [37.701411, 55.55361], - [37.701411, 55.55352], - [37.701252, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701252, 55.55361], - [37.701252, 55.5537], - [37.701411, 55.5537], - [37.701411, 55.55361], - [37.701252, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701252, 55.5537], - [37.701252, 55.55379], - [37.701411, 55.55379], - [37.701411, 55.5537], - [37.701252, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701252, 55.55379], - [37.701252, 55.55388], - [37.701411, 55.55388], - [37.701411, 55.55379], - [37.701252, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701252, 55.55388], - [37.701252, 55.55397], - [37.701411, 55.55397], - [37.701411, 55.55388], - [37.701252, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701252, 55.55397], - [37.701252, 55.55406], - [37.701411, 55.55406], - [37.701411, 55.55397], - [37.701252, 55.55397] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701252, 55.55406], - [37.701252, 55.55415], - [37.701411, 55.55415], - [37.701411, 55.55406], - [37.701252, 55.55406] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701411, 55.552801], - [37.701411, 55.552891], - [37.70157, 55.552891], - [37.70157, 55.552801], - [37.701411, 55.552801] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701411, 55.552891], - [37.701411, 55.552981], - [37.70157, 55.552981], - [37.70157, 55.552891], - [37.701411, 55.552891] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701411, 55.552981], - [37.701411, 55.553071], - [37.70157, 55.553071], - [37.70157, 55.552981], - [37.701411, 55.552981] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701411, 55.553071], - [37.701411, 55.553161], - [37.70157, 55.553161], - [37.70157, 55.553071], - [37.701411, 55.553071] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701411, 55.553161], - [37.701411, 55.553251], - [37.70157, 55.553251], - [37.70157, 55.553161], - [37.701411, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701411, 55.553251], - [37.701411, 55.553341], - [37.70157, 55.553341], - [37.70157, 55.553251], - [37.701411, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701411, 55.553341], - [37.701411, 55.553431], - [37.70157, 55.553431], - [37.70157, 55.553341], - [37.701411, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701411, 55.553431], - [37.701411, 55.55352], - [37.70157, 55.55352], - [37.70157, 55.553431], - [37.701411, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701411, 55.55352], - [37.701411, 55.55361], - [37.70157, 55.55361], - [37.70157, 55.55352], - [37.701411, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701411, 55.55361], - [37.701411, 55.5537], - [37.70157, 55.5537], - [37.70157, 55.55361], - [37.701411, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701411, 55.5537], - [37.701411, 55.55379], - [37.70157, 55.55379], - [37.70157, 55.5537], - [37.701411, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701411, 55.55379], - [37.701411, 55.55388], - [37.70157, 55.55388], - [37.70157, 55.55379], - [37.701411, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701411, 55.55388], - [37.701411, 55.55397], - [37.70157, 55.55397], - [37.70157, 55.55388], - [37.701411, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701411, 55.55397], - [37.701411, 55.55406], - [37.70157, 55.55406], - [37.70157, 55.55397], - [37.701411, 55.55397] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701411, 55.55406], - [37.701411, 55.55415], - [37.70157, 55.55415], - [37.70157, 55.55406], - [37.701411, 55.55406] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701411, 55.55415], - [37.701411, 55.55424], - [37.70157, 55.55424], - [37.70157, 55.55415], - [37.701411, 55.55415] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70157, 55.552711], - [37.70157, 55.552801], - [37.701729, 55.552801], - [37.701729, 55.552711], - [37.70157, 55.552711] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70157, 55.552801], - [37.70157, 55.552891], - [37.701729, 55.552891], - [37.701729, 55.552801], - [37.70157, 55.552801] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70157, 55.552891], - [37.70157, 55.552981], - [37.701729, 55.552981], - [37.701729, 55.552891], - [37.70157, 55.552891] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70157, 55.552981], - [37.70157, 55.553071], - [37.701729, 55.553071], - [37.701729, 55.552981], - [37.70157, 55.552981] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70157, 55.553071], - [37.70157, 55.553161], - [37.701729, 55.553161], - [37.701729, 55.553071], - [37.70157, 55.553071] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70157, 55.553161], - [37.70157, 55.553251], - [37.701729, 55.553251], - [37.701729, 55.553161], - [37.70157, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70157, 55.553251], - [37.70157, 55.553341], - [37.701729, 55.553341], - [37.701729, 55.553251], - [37.70157, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70157, 55.553341], - [37.70157, 55.553431], - [37.701729, 55.553431], - [37.701729, 55.553341], - [37.70157, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70157, 55.553431], - [37.70157, 55.55352], - [37.701729, 55.55352], - [37.701729, 55.553431], - [37.70157, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70157, 55.55352], - [37.70157, 55.55361], - [37.701729, 55.55361], - [37.701729, 55.55352], - [37.70157, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70157, 55.55361], - [37.70157, 55.5537], - [37.701729, 55.5537], - [37.701729, 55.55361], - [37.70157, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70157, 55.5537], - [37.70157, 55.55379], - [37.701729, 55.55379], - [37.701729, 55.5537], - [37.70157, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70157, 55.55379], - [37.70157, 55.55388], - [37.701729, 55.55388], - [37.701729, 55.55379], - [37.70157, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70157, 55.55388], - [37.70157, 55.55397], - [37.701729, 55.55397], - [37.701729, 55.55388], - [37.70157, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70157, 55.55397], - [37.70157, 55.55406], - [37.701729, 55.55406], - [37.701729, 55.55397], - [37.70157, 55.55397] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70157, 55.55406], - [37.70157, 55.55415], - [37.701729, 55.55415], - [37.701729, 55.55406], - [37.70157, 55.55406] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70157, 55.55415], - [37.70157, 55.55424], - [37.701729, 55.55424], - [37.701729, 55.55415], - [37.70157, 55.55415] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701729, 55.552711], - [37.701729, 55.552801], - [37.701888, 55.552801], - [37.701888, 55.552711], - [37.701729, 55.552711] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701729, 55.552801], - [37.701729, 55.552891], - [37.701888, 55.552891], - [37.701888, 55.552801], - [37.701729, 55.552801] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701729, 55.552891], - [37.701729, 55.552981], - [37.701888, 55.552981], - [37.701888, 55.552891], - [37.701729, 55.552891] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701729, 55.552981], - [37.701729, 55.553071], - [37.701888, 55.553071], - [37.701888, 55.552981], - [37.701729, 55.552981] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701729, 55.553071], - [37.701729, 55.553161], - [37.701888, 55.553161], - [37.701888, 55.553071], - [37.701729, 55.553071] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701729, 55.553161], - [37.701729, 55.553251], - [37.701888, 55.553251], - [37.701888, 55.553161], - [37.701729, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701729, 55.553251], - [37.701729, 55.553341], - [37.701888, 55.553341], - [37.701888, 55.553251], - [37.701729, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701729, 55.553341], - [37.701729, 55.553431], - [37.701888, 55.553431], - [37.701888, 55.553341], - [37.701729, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701729, 55.553431], - [37.701729, 55.55352], - [37.701888, 55.55352], - [37.701888, 55.553431], - [37.701729, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701729, 55.55352], - [37.701729, 55.55361], - [37.701888, 55.55361], - [37.701888, 55.55352], - [37.701729, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701729, 55.55361], - [37.701729, 55.5537], - [37.701888, 55.5537], - [37.701888, 55.55361], - [37.701729, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701729, 55.5537], - [37.701729, 55.55379], - [37.701888, 55.55379], - [37.701888, 55.5537], - [37.701729, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701729, 55.55379], - [37.701729, 55.55388], - [37.701888, 55.55388], - [37.701888, 55.55379], - [37.701729, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701729, 55.55388], - [37.701729, 55.55397], - [37.701888, 55.55397], - [37.701888, 55.55388], - [37.701729, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701729, 55.55397], - [37.701729, 55.55406], - [37.701888, 55.55406], - [37.701888, 55.55397], - [37.701729, 55.55397] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701729, 55.55406], - [37.701729, 55.55415], - [37.701888, 55.55415], - [37.701888, 55.55406], - [37.701729, 55.55406] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701729, 55.55415], - [37.701729, 55.55424], - [37.701888, 55.55424], - [37.701888, 55.55415], - [37.701729, 55.55415] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701729, 55.55424], - [37.701729, 55.55433], - [37.701888, 55.55433], - [37.701888, 55.55424], - [37.701729, 55.55424] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701888, 55.552621], - [37.701888, 55.552711], - [37.702047, 55.552711], - [37.702047, 55.552621], - [37.701888, 55.552621] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701888, 55.552711], - [37.701888, 55.552801], - [37.702047, 55.552801], - [37.702047, 55.552711], - [37.701888, 55.552711] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701888, 55.552801], - [37.701888, 55.552891], - [37.702047, 55.552891], - [37.702047, 55.552801], - [37.701888, 55.552801] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701888, 55.552891], - [37.701888, 55.552981], - [37.702047, 55.552981], - [37.702047, 55.552891], - [37.701888, 55.552891] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701888, 55.552981], - [37.701888, 55.553071], - [37.702047, 55.553071], - [37.702047, 55.552981], - [37.701888, 55.552981] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701888, 55.553071], - [37.701888, 55.553161], - [37.702047, 55.553161], - [37.702047, 55.553071], - [37.701888, 55.553071] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701888, 55.553161], - [37.701888, 55.553251], - [37.702047, 55.553251], - [37.702047, 55.553161], - [37.701888, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701888, 55.553251], - [37.701888, 55.553341], - [37.702047, 55.553341], - [37.702047, 55.553251], - [37.701888, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701888, 55.553341], - [37.701888, 55.553431], - [37.702047, 55.553431], - [37.702047, 55.553341], - [37.701888, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701888, 55.553431], - [37.701888, 55.55352], - [37.702047, 55.55352], - [37.702047, 55.553431], - [37.701888, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701888, 55.55352], - [37.701888, 55.55361], - [37.702047, 55.55361], - [37.702047, 55.55352], - [37.701888, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701888, 55.55361], - [37.701888, 55.5537], - [37.702047, 55.5537], - [37.702047, 55.55361], - [37.701888, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701888, 55.5537], - [37.701888, 55.55379], - [37.702047, 55.55379], - [37.702047, 55.5537], - [37.701888, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701888, 55.55379], - [37.701888, 55.55388], - [37.702047, 55.55388], - [37.702047, 55.55379], - [37.701888, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701888, 55.55388], - [37.701888, 55.55397], - [37.702047, 55.55397], - [37.702047, 55.55388], - [37.701888, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701888, 55.55397], - [37.701888, 55.55406], - [37.702047, 55.55406], - [37.702047, 55.55397], - [37.701888, 55.55397] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701888, 55.55406], - [37.701888, 55.55415], - [37.702047, 55.55415], - [37.702047, 55.55406], - [37.701888, 55.55406] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701888, 55.55415], - [37.701888, 55.55424], - [37.702047, 55.55424], - [37.702047, 55.55415], - [37.701888, 55.55415] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.701888, 55.55424], - [37.701888, 55.55433], - [37.702047, 55.55433], - [37.702047, 55.55424], - [37.701888, 55.55424] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702047, 55.552621], - [37.702047, 55.552711], - [37.702206, 55.552711], - [37.702206, 55.552621], - [37.702047, 55.552621] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702047, 55.552711], - [37.702047, 55.552801], - [37.702206, 55.552801], - [37.702206, 55.552711], - [37.702047, 55.552711] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702047, 55.552801], - [37.702047, 55.552891], - [37.702206, 55.552891], - [37.702206, 55.552801], - [37.702047, 55.552801] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702047, 55.552891], - [37.702047, 55.552981], - [37.702206, 55.552981], - [37.702206, 55.552891], - [37.702047, 55.552891] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702047, 55.552981], - [37.702047, 55.553071], - [37.702206, 55.553071], - [37.702206, 55.552981], - [37.702047, 55.552981] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702047, 55.553071], - [37.702047, 55.553161], - [37.702206, 55.553161], - [37.702206, 55.553071], - [37.702047, 55.553071] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702047, 55.553161], - [37.702047, 55.553251], - [37.702206, 55.553251], - [37.702206, 55.553161], - [37.702047, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702047, 55.553251], - [37.702047, 55.553341], - [37.702206, 55.553341], - [37.702206, 55.553251], - [37.702047, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702047, 55.553341], - [37.702047, 55.553431], - [37.702206, 55.553431], - [37.702206, 55.553341], - [37.702047, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702047, 55.553431], - [37.702047, 55.55352], - [37.702206, 55.55352], - [37.702206, 55.553431], - [37.702047, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702047, 55.55352], - [37.702047, 55.55361], - [37.702206, 55.55361], - [37.702206, 55.55352], - [37.702047, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702047, 55.55361], - [37.702047, 55.5537], - [37.702206, 55.5537], - [37.702206, 55.55361], - [37.702047, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702047, 55.5537], - [37.702047, 55.55379], - [37.702206, 55.55379], - [37.702206, 55.5537], - [37.702047, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702047, 55.55379], - [37.702047, 55.55388], - [37.702206, 55.55388], - [37.702206, 55.55379], - [37.702047, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702047, 55.55388], - [37.702047, 55.55397], - [37.702206, 55.55397], - [37.702206, 55.55388], - [37.702047, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702047, 55.55397], - [37.702047, 55.55406], - [37.702206, 55.55406], - [37.702206, 55.55397], - [37.702047, 55.55397] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702047, 55.55406], - [37.702047, 55.55415], - [37.702206, 55.55415], - [37.702206, 55.55406], - [37.702047, 55.55406] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702047, 55.55415], - [37.702047, 55.55424], - [37.702206, 55.55424], - [37.702206, 55.55415], - [37.702047, 55.55415] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702047, 55.55424], - [37.702047, 55.55433], - [37.702206, 55.55433], - [37.702206, 55.55424], - [37.702047, 55.55424] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702047, 55.55433], - [37.702047, 55.55442], - [37.702206, 55.55442], - [37.702206, 55.55433], - [37.702047, 55.55433] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702206, 55.552531], - [37.702206, 55.552621], - [37.702365, 55.552621], - [37.702365, 55.552531], - [37.702206, 55.552531] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702206, 55.552621], - [37.702206, 55.552711], - [37.702365, 55.552711], - [37.702365, 55.552621], - [37.702206, 55.552621] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702206, 55.552711], - [37.702206, 55.552801], - [37.702365, 55.552801], - [37.702365, 55.552711], - [37.702206, 55.552711] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702206, 55.552801], - [37.702206, 55.552891], - [37.702365, 55.552891], - [37.702365, 55.552801], - [37.702206, 55.552801] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702206, 55.552891], - [37.702206, 55.552981], - [37.702365, 55.552981], - [37.702365, 55.552891], - [37.702206, 55.552891] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702206, 55.552981], - [37.702206, 55.553071], - [37.702365, 55.553071], - [37.702365, 55.552981], - [37.702206, 55.552981] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702206, 55.553071], - [37.702206, 55.553161], - [37.702365, 55.553161], - [37.702365, 55.553071], - [37.702206, 55.553071] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702206, 55.553161], - [37.702206, 55.553251], - [37.702365, 55.553251], - [37.702365, 55.553161], - [37.702206, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702206, 55.553251], - [37.702206, 55.553341], - [37.702365, 55.553341], - [37.702365, 55.553251], - [37.702206, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702206, 55.553341], - [37.702206, 55.553431], - [37.702365, 55.553431], - [37.702365, 55.553341], - [37.702206, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702206, 55.553431], - [37.702206, 55.55352], - [37.702365, 55.55352], - [37.702365, 55.553431], - [37.702206, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702206, 55.55352], - [37.702206, 55.55361], - [37.702365, 55.55361], - [37.702365, 55.55352], - [37.702206, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702206, 55.55361], - [37.702206, 55.5537], - [37.702365, 55.5537], - [37.702365, 55.55361], - [37.702206, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702206, 55.5537], - [37.702206, 55.55379], - [37.702365, 55.55379], - [37.702365, 55.5537], - [37.702206, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702206, 55.55379], - [37.702206, 55.55388], - [37.702365, 55.55388], - [37.702365, 55.55379], - [37.702206, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702206, 55.55388], - [37.702206, 55.55397], - [37.702365, 55.55397], - [37.702365, 55.55388], - [37.702206, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702206, 55.55397], - [37.702206, 55.55406], - [37.702365, 55.55406], - [37.702365, 55.55397], - [37.702206, 55.55397] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702206, 55.55406], - [37.702206, 55.55415], - [37.702365, 55.55415], - [37.702365, 55.55406], - [37.702206, 55.55406] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702206, 55.55415], - [37.702206, 55.55424], - [37.702365, 55.55424], - [37.702365, 55.55415], - [37.702206, 55.55415] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702206, 55.55424], - [37.702206, 55.55433], - [37.702365, 55.55433], - [37.702365, 55.55424], - [37.702206, 55.55424] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702206, 55.55433], - [37.702206, 55.55442], - [37.702365, 55.55442], - [37.702365, 55.55433], - [37.702206, 55.55433] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702365, 55.552531], - [37.702365, 55.552621], - [37.702524, 55.552621], - [37.702524, 55.552531], - [37.702365, 55.552531] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702365, 55.552621], - [37.702365, 55.552711], - [37.702524, 55.552711], - [37.702524, 55.552621], - [37.702365, 55.552621] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702365, 55.552711], - [37.702365, 55.552801], - [37.702524, 55.552801], - [37.702524, 55.552711], - [37.702365, 55.552711] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702365, 55.552801], - [37.702365, 55.552891], - [37.702524, 55.552891], - [37.702524, 55.552801], - [37.702365, 55.552801] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702365, 55.552891], - [37.702365, 55.552981], - [37.702524, 55.552981], - [37.702524, 55.552891], - [37.702365, 55.552891] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702365, 55.552981], - [37.702365, 55.553071], - [37.702524, 55.553071], - [37.702524, 55.552981], - [37.702365, 55.552981] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702365, 55.553071], - [37.702365, 55.553161], - [37.702524, 55.553161], - [37.702524, 55.553071], - [37.702365, 55.553071] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702365, 55.553161], - [37.702365, 55.553251], - [37.702524, 55.553251], - [37.702524, 55.553161], - [37.702365, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702365, 55.553251], - [37.702365, 55.553341], - [37.702524, 55.553341], - [37.702524, 55.553251], - [37.702365, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702365, 55.553341], - [37.702365, 55.553431], - [37.702524, 55.553431], - [37.702524, 55.553341], - [37.702365, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702365, 55.553431], - [37.702365, 55.55352], - [37.702524, 55.55352], - [37.702524, 55.553431], - [37.702365, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702365, 55.55352], - [37.702365, 55.55361], - [37.702524, 55.55361], - [37.702524, 55.55352], - [37.702365, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702365, 55.55361], - [37.702365, 55.5537], - [37.702524, 55.5537], - [37.702524, 55.55361], - [37.702365, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702365, 55.5537], - [37.702365, 55.55379], - [37.702524, 55.55379], - [37.702524, 55.5537], - [37.702365, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702365, 55.55379], - [37.702365, 55.55388], - [37.702524, 55.55388], - [37.702524, 55.55379], - [37.702365, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702365, 55.55388], - [37.702365, 55.55397], - [37.702524, 55.55397], - [37.702524, 55.55388], - [37.702365, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702365, 55.55397], - [37.702365, 55.55406], - [37.702524, 55.55406], - [37.702524, 55.55397], - [37.702365, 55.55397] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702365, 55.55406], - [37.702365, 55.55415], - [37.702524, 55.55415], - [37.702524, 55.55406], - [37.702365, 55.55406] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702365, 55.55415], - [37.702365, 55.55424], - [37.702524, 55.55424], - [37.702524, 55.55415], - [37.702365, 55.55415] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702365, 55.55424], - [37.702365, 55.55433], - [37.702524, 55.55433], - [37.702524, 55.55424], - [37.702365, 55.55424] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702365, 55.55433], - [37.702365, 55.55442], - [37.702524, 55.55442], - [37.702524, 55.55433], - [37.702365, 55.55433] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702365, 55.55442], - [37.702365, 55.55451], - [37.702524, 55.55451], - [37.702524, 55.55442], - [37.702365, 55.55442] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702524, 55.552441], - [37.702524, 55.552531], - [37.702683, 55.552531], - [37.702683, 55.552441], - [37.702524, 55.552441] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702524, 55.552531], - [37.702524, 55.552621], - [37.702683, 55.552621], - [37.702683, 55.552531], - [37.702524, 55.552531] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702524, 55.552621], - [37.702524, 55.552711], - [37.702683, 55.552711], - [37.702683, 55.552621], - [37.702524, 55.552621] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702524, 55.552711], - [37.702524, 55.552801], - [37.702683, 55.552801], - [37.702683, 55.552711], - [37.702524, 55.552711] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702524, 55.552801], - [37.702524, 55.552891], - [37.702683, 55.552891], - [37.702683, 55.552801], - [37.702524, 55.552801] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702524, 55.552891], - [37.702524, 55.552981], - [37.702683, 55.552981], - [37.702683, 55.552891], - [37.702524, 55.552891] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702524, 55.552981], - [37.702524, 55.553071], - [37.702683, 55.553071], - [37.702683, 55.552981], - [37.702524, 55.552981] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702524, 55.553071], - [37.702524, 55.553161], - [37.702683, 55.553161], - [37.702683, 55.553071], - [37.702524, 55.553071] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702524, 55.553161], - [37.702524, 55.553251], - [37.702683, 55.553251], - [37.702683, 55.553161], - [37.702524, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702524, 55.553251], - [37.702524, 55.553341], - [37.702683, 55.553341], - [37.702683, 55.553251], - [37.702524, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702524, 55.553341], - [37.702524, 55.553431], - [37.702683, 55.553431], - [37.702683, 55.553341], - [37.702524, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702524, 55.553431], - [37.702524, 55.55352], - [37.702683, 55.55352], - [37.702683, 55.553431], - [37.702524, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702524, 55.55352], - [37.702524, 55.55361], - [37.702683, 55.55361], - [37.702683, 55.55352], - [37.702524, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702524, 55.55361], - [37.702524, 55.5537], - [37.702683, 55.5537], - [37.702683, 55.55361], - [37.702524, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702524, 55.5537], - [37.702524, 55.55379], - [37.702683, 55.55379], - [37.702683, 55.5537], - [37.702524, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702524, 55.55379], - [37.702524, 55.55388], - [37.702683, 55.55388], - [37.702683, 55.55379], - [37.702524, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702524, 55.55388], - [37.702524, 55.55397], - [37.702683, 55.55397], - [37.702683, 55.55388], - [37.702524, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702524, 55.55397], - [37.702524, 55.55406], - [37.702683, 55.55406], - [37.702683, 55.55397], - [37.702524, 55.55397] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702524, 55.55406], - [37.702524, 55.55415], - [37.702683, 55.55415], - [37.702683, 55.55406], - [37.702524, 55.55406] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702524, 55.55415], - [37.702524, 55.55424], - [37.702683, 55.55424], - [37.702683, 55.55415], - [37.702524, 55.55415] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702524, 55.55424], - [37.702524, 55.55433], - [37.702683, 55.55433], - [37.702683, 55.55424], - [37.702524, 55.55424] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702524, 55.55433], - [37.702524, 55.55442], - [37.702683, 55.55442], - [37.702683, 55.55433], - [37.702524, 55.55433] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702524, 55.55442], - [37.702524, 55.55451], - [37.702683, 55.55451], - [37.702683, 55.55442], - [37.702524, 55.55442] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702683, 55.552441], - [37.702683, 55.552531], - [37.702842, 55.552531], - [37.702842, 55.552441], - [37.702683, 55.552441] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702683, 55.552531], - [37.702683, 55.552621], - [37.702842, 55.552621], - [37.702842, 55.552531], - [37.702683, 55.552531] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702683, 55.552621], - [37.702683, 55.552711], - [37.702842, 55.552711], - [37.702842, 55.552621], - [37.702683, 55.552621] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702683, 55.552711], - [37.702683, 55.552801], - [37.702842, 55.552801], - [37.702842, 55.552711], - [37.702683, 55.552711] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702683, 55.552801], - [37.702683, 55.552891], - [37.702842, 55.552891], - [37.702842, 55.552801], - [37.702683, 55.552801] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702683, 55.552891], - [37.702683, 55.552981], - [37.702842, 55.552981], - [37.702842, 55.552891], - [37.702683, 55.552891] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702683, 55.552981], - [37.702683, 55.553071], - [37.702842, 55.553071], - [37.702842, 55.552981], - [37.702683, 55.552981] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702683, 55.553071], - [37.702683, 55.553161], - [37.702842, 55.553161], - [37.702842, 55.553071], - [37.702683, 55.553071] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702683, 55.553161], - [37.702683, 55.553251], - [37.702842, 55.553251], - [37.702842, 55.553161], - [37.702683, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702683, 55.553251], - [37.702683, 55.553341], - [37.702842, 55.553341], - [37.702842, 55.553251], - [37.702683, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702683, 55.553341], - [37.702683, 55.553431], - [37.702842, 55.553431], - [37.702842, 55.553341], - [37.702683, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702683, 55.553431], - [37.702683, 55.55352], - [37.702842, 55.55352], - [37.702842, 55.553431], - [37.702683, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702683, 55.55352], - [37.702683, 55.55361], - [37.702842, 55.55361], - [37.702842, 55.55352], - [37.702683, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702683, 55.55361], - [37.702683, 55.5537], - [37.702842, 55.5537], - [37.702842, 55.55361], - [37.702683, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702683, 55.5537], - [37.702683, 55.55379], - [37.702842, 55.55379], - [37.702842, 55.5537], - [37.702683, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702683, 55.55379], - [37.702683, 55.55388], - [37.702842, 55.55388], - [37.702842, 55.55379], - [37.702683, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702683, 55.55388], - [37.702683, 55.55397], - [37.702842, 55.55397], - [37.702842, 55.55388], - [37.702683, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702683, 55.55397], - [37.702683, 55.55406], - [37.702842, 55.55406], - [37.702842, 55.55397], - [37.702683, 55.55397] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702683, 55.55406], - [37.702683, 55.55415], - [37.702842, 55.55415], - [37.702842, 55.55406], - [37.702683, 55.55406] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702683, 55.55415], - [37.702683, 55.55424], - [37.702842, 55.55424], - [37.702842, 55.55415], - [37.702683, 55.55415] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702683, 55.55424], - [37.702683, 55.55433], - [37.702842, 55.55433], - [37.702842, 55.55424], - [37.702683, 55.55424] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702683, 55.55433], - [37.702683, 55.55442], - [37.702842, 55.55442], - [37.702842, 55.55433], - [37.702683, 55.55433] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702683, 55.55442], - [37.702683, 55.55451], - [37.702842, 55.55451], - [37.702842, 55.55442], - [37.702683, 55.55442] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702842, 55.552351], - [37.702842, 55.552441], - [37.703001, 55.552441], - [37.703001, 55.552351], - [37.702842, 55.552351] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702842, 55.552441], - [37.702842, 55.552531], - [37.703001, 55.552531], - [37.703001, 55.552441], - [37.702842, 55.552441] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702842, 55.552531], - [37.702842, 55.552621], - [37.703001, 55.552621], - [37.703001, 55.552531], - [37.702842, 55.552531] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702842, 55.552621], - [37.702842, 55.552711], - [37.703001, 55.552711], - [37.703001, 55.552621], - [37.702842, 55.552621] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702842, 55.552711], - [37.702842, 55.552801], - [37.703001, 55.552801], - [37.703001, 55.552711], - [37.702842, 55.552711] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702842, 55.552801], - [37.702842, 55.552891], - [37.703001, 55.552891], - [37.703001, 55.552801], - [37.702842, 55.552801] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702842, 55.552891], - [37.702842, 55.552981], - [37.703001, 55.552981], - [37.703001, 55.552891], - [37.702842, 55.552891] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702842, 55.552981], - [37.702842, 55.553071], - [37.703001, 55.553071], - [37.703001, 55.552981], - [37.702842, 55.552981] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702842, 55.553071], - [37.702842, 55.553161], - [37.703001, 55.553161], - [37.703001, 55.553071], - [37.702842, 55.553071] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702842, 55.553161], - [37.702842, 55.553251], - [37.703001, 55.553251], - [37.703001, 55.553161], - [37.702842, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702842, 55.553251], - [37.702842, 55.553341], - [37.703001, 55.553341], - [37.703001, 55.553251], - [37.702842, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702842, 55.553341], - [37.702842, 55.553431], - [37.703001, 55.553431], - [37.703001, 55.553341], - [37.702842, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702842, 55.553431], - [37.702842, 55.55352], - [37.703001, 55.55352], - [37.703001, 55.553431], - [37.702842, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702842, 55.55352], - [37.702842, 55.55361], - [37.703001, 55.55361], - [37.703001, 55.55352], - [37.702842, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702842, 55.55361], - [37.702842, 55.5537], - [37.703001, 55.5537], - [37.703001, 55.55361], - [37.702842, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702842, 55.5537], - [37.702842, 55.55379], - [37.703001, 55.55379], - [37.703001, 55.5537], - [37.702842, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702842, 55.55379], - [37.702842, 55.55388], - [37.703001, 55.55388], - [37.703001, 55.55379], - [37.702842, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702842, 55.55388], - [37.702842, 55.55397], - [37.703001, 55.55397], - [37.703001, 55.55388], - [37.702842, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702842, 55.55397], - [37.702842, 55.55406], - [37.703001, 55.55406], - [37.703001, 55.55397], - [37.702842, 55.55397] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702842, 55.55406], - [37.702842, 55.55415], - [37.703001, 55.55415], - [37.703001, 55.55406], - [37.702842, 55.55406] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702842, 55.55415], - [37.702842, 55.55424], - [37.703001, 55.55424], - [37.703001, 55.55415], - [37.702842, 55.55415] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702842, 55.55424], - [37.702842, 55.55433], - [37.703001, 55.55433], - [37.703001, 55.55424], - [37.702842, 55.55424] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702842, 55.55433], - [37.702842, 55.55442], - [37.703001, 55.55442], - [37.703001, 55.55433], - [37.702842, 55.55433] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702842, 55.55442], - [37.702842, 55.55451], - [37.703001, 55.55451], - [37.703001, 55.55442], - [37.702842, 55.55442] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.702842, 55.55451], - [37.702842, 55.5546], - [37.703001, 55.5546], - [37.703001, 55.55451], - [37.702842, 55.55451] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703001, 55.552351], - [37.703001, 55.552441], - [37.70316, 55.552441], - [37.70316, 55.552351], - [37.703001, 55.552351] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703001, 55.552441], - [37.703001, 55.552531], - [37.70316, 55.552531], - [37.70316, 55.552441], - [37.703001, 55.552441] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703001, 55.552531], - [37.703001, 55.552621], - [37.70316, 55.552621], - [37.70316, 55.552531], - [37.703001, 55.552531] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703001, 55.552621], - [37.703001, 55.552711], - [37.70316, 55.552711], - [37.70316, 55.552621], - [37.703001, 55.552621] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703001, 55.552711], - [37.703001, 55.552801], - [37.70316, 55.552801], - [37.70316, 55.552711], - [37.703001, 55.552711] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703001, 55.552801], - [37.703001, 55.552891], - [37.70316, 55.552891], - [37.70316, 55.552801], - [37.703001, 55.552801] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703001, 55.552891], - [37.703001, 55.552981], - [37.70316, 55.552981], - [37.70316, 55.552891], - [37.703001, 55.552891] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703001, 55.552981], - [37.703001, 55.553071], - [37.70316, 55.553071], - [37.70316, 55.552981], - [37.703001, 55.552981] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703001, 55.553071], - [37.703001, 55.553161], - [37.70316, 55.553161], - [37.70316, 55.553071], - [37.703001, 55.553071] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703001, 55.553161], - [37.703001, 55.553251], - [37.70316, 55.553251], - [37.70316, 55.553161], - [37.703001, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703001, 55.553251], - [37.703001, 55.553341], - [37.70316, 55.553341], - [37.70316, 55.553251], - [37.703001, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703001, 55.553341], - [37.703001, 55.553431], - [37.70316, 55.553431], - [37.70316, 55.553341], - [37.703001, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703001, 55.553431], - [37.703001, 55.55352], - [37.70316, 55.55352], - [37.70316, 55.553431], - [37.703001, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703001, 55.55352], - [37.703001, 55.55361], - [37.70316, 55.55361], - [37.70316, 55.55352], - [37.703001, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703001, 55.55361], - [37.703001, 55.5537], - [37.70316, 55.5537], - [37.70316, 55.55361], - [37.703001, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703001, 55.5537], - [37.703001, 55.55379], - [37.70316, 55.55379], - [37.70316, 55.5537], - [37.703001, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703001, 55.55379], - [37.703001, 55.55388], - [37.70316, 55.55388], - [37.70316, 55.55379], - [37.703001, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703001, 55.55388], - [37.703001, 55.55397], - [37.70316, 55.55397], - [37.70316, 55.55388], - [37.703001, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703001, 55.55397], - [37.703001, 55.55406], - [37.70316, 55.55406], - [37.70316, 55.55397], - [37.703001, 55.55397] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703001, 55.55406], - [37.703001, 55.55415], - [37.70316, 55.55415], - [37.70316, 55.55406], - [37.703001, 55.55406] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703001, 55.55415], - [37.703001, 55.55424], - [37.70316, 55.55424], - [37.70316, 55.55415], - [37.703001, 55.55415] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703001, 55.55424], - [37.703001, 55.55433], - [37.70316, 55.55433], - [37.70316, 55.55424], - [37.703001, 55.55424] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703001, 55.55433], - [37.703001, 55.55442], - [37.70316, 55.55442], - [37.70316, 55.55433], - [37.703001, 55.55433] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703001, 55.55442], - [37.703001, 55.55451], - [37.70316, 55.55451], - [37.70316, 55.55442], - [37.703001, 55.55442] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703001, 55.55451], - [37.703001, 55.5546], - [37.70316, 55.5546], - [37.70316, 55.55451], - [37.703001, 55.55451] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70316, 55.552351], - [37.70316, 55.552441], - [37.703319, 55.552441], - [37.703319, 55.552351], - [37.70316, 55.552351] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70316, 55.552441], - [37.70316, 55.552531], - [37.703319, 55.552531], - [37.703319, 55.552441], - [37.70316, 55.552441] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70316, 55.552531], - [37.70316, 55.552621], - [37.703319, 55.552621], - [37.703319, 55.552531], - [37.70316, 55.552531] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70316, 55.552621], - [37.70316, 55.552711], - [37.703319, 55.552711], - [37.703319, 55.552621], - [37.70316, 55.552621] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70316, 55.552711], - [37.70316, 55.552801], - [37.703319, 55.552801], - [37.703319, 55.552711], - [37.70316, 55.552711] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70316, 55.552801], - [37.70316, 55.552891], - [37.703319, 55.552891], - [37.703319, 55.552801], - [37.70316, 55.552801] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70316, 55.552891], - [37.70316, 55.552981], - [37.703319, 55.552981], - [37.703319, 55.552891], - [37.70316, 55.552891] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70316, 55.552981], - [37.70316, 55.553071], - [37.703319, 55.553071], - [37.703319, 55.552981], - [37.70316, 55.552981] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70316, 55.553071], - [37.70316, 55.553161], - [37.703319, 55.553161], - [37.703319, 55.553071], - [37.70316, 55.553071] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70316, 55.553161], - [37.70316, 55.553251], - [37.703319, 55.553251], - [37.703319, 55.553161], - [37.70316, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70316, 55.553251], - [37.70316, 55.553341], - [37.703319, 55.553341], - [37.703319, 55.553251], - [37.70316, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70316, 55.553341], - [37.70316, 55.553431], - [37.703319, 55.553431], - [37.703319, 55.553341], - [37.70316, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70316, 55.553431], - [37.70316, 55.55352], - [37.703319, 55.55352], - [37.703319, 55.553431], - [37.70316, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70316, 55.55352], - [37.70316, 55.55361], - [37.703319, 55.55361], - [37.703319, 55.55352], - [37.70316, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70316, 55.55361], - [37.70316, 55.5537], - [37.703319, 55.5537], - [37.703319, 55.55361], - [37.70316, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70316, 55.5537], - [37.70316, 55.55379], - [37.703319, 55.55379], - [37.703319, 55.5537], - [37.70316, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70316, 55.55379], - [37.70316, 55.55388], - [37.703319, 55.55388], - [37.703319, 55.55379], - [37.70316, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70316, 55.55388], - [37.70316, 55.55397], - [37.703319, 55.55397], - [37.703319, 55.55388], - [37.70316, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70316, 55.55397], - [37.70316, 55.55406], - [37.703319, 55.55406], - [37.703319, 55.55397], - [37.70316, 55.55397] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70316, 55.55406], - [37.70316, 55.55415], - [37.703319, 55.55415], - [37.703319, 55.55406], - [37.70316, 55.55406] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70316, 55.55415], - [37.70316, 55.55424], - [37.703319, 55.55424], - [37.703319, 55.55415], - [37.70316, 55.55415] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70316, 55.55424], - [37.70316, 55.55433], - [37.703319, 55.55433], - [37.703319, 55.55424], - [37.70316, 55.55424] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70316, 55.55433], - [37.70316, 55.55442], - [37.703319, 55.55442], - [37.703319, 55.55433], - [37.70316, 55.55433] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70316, 55.55442], - [37.70316, 55.55451], - [37.703319, 55.55451], - [37.703319, 55.55442], - [37.70316, 55.55442] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70316, 55.55451], - [37.70316, 55.5546], - [37.703319, 55.5546], - [37.703319, 55.55451], - [37.70316, 55.55451] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70316, 55.5546], - [37.70316, 55.55469], - [37.703319, 55.55469], - [37.703319, 55.5546], - [37.70316, 55.5546] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703319, 55.552261], - [37.703319, 55.552351], - [37.703478, 55.552351], - [37.703478, 55.552261], - [37.703319, 55.552261] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703319, 55.552351], - [37.703319, 55.552441], - [37.703478, 55.552441], - [37.703478, 55.552351], - [37.703319, 55.552351] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703319, 55.552441], - [37.703319, 55.552531], - [37.703478, 55.552531], - [37.703478, 55.552441], - [37.703319, 55.552441] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703319, 55.552531], - [37.703319, 55.552621], - [37.703478, 55.552621], - [37.703478, 55.552531], - [37.703319, 55.552531] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703319, 55.552621], - [37.703319, 55.552711], - [37.703478, 55.552711], - [37.703478, 55.552621], - [37.703319, 55.552621] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703319, 55.552711], - [37.703319, 55.552801], - [37.703478, 55.552801], - [37.703478, 55.552711], - [37.703319, 55.552711] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703319, 55.552801], - [37.703319, 55.552891], - [37.703478, 55.552891], - [37.703478, 55.552801], - [37.703319, 55.552801] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703319, 55.552891], - [37.703319, 55.552981], - [37.703478, 55.552981], - [37.703478, 55.552891], - [37.703319, 55.552891] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703319, 55.552981], - [37.703319, 55.553071], - [37.703478, 55.553071], - [37.703478, 55.552981], - [37.703319, 55.552981] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703319, 55.553071], - [37.703319, 55.553161], - [37.703478, 55.553161], - [37.703478, 55.553071], - [37.703319, 55.553071] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703319, 55.553161], - [37.703319, 55.553251], - [37.703478, 55.553251], - [37.703478, 55.553161], - [37.703319, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703319, 55.553251], - [37.703319, 55.553341], - [37.703478, 55.553341], - [37.703478, 55.553251], - [37.703319, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703319, 55.553341], - [37.703319, 55.553431], - [37.703478, 55.553431], - [37.703478, 55.553341], - [37.703319, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703319, 55.553431], - [37.703319, 55.55352], - [37.703478, 55.55352], - [37.703478, 55.553431], - [37.703319, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703319, 55.55352], - [37.703319, 55.55361], - [37.703478, 55.55361], - [37.703478, 55.55352], - [37.703319, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703319, 55.55361], - [37.703319, 55.5537], - [37.703478, 55.5537], - [37.703478, 55.55361], - [37.703319, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703319, 55.5537], - [37.703319, 55.55379], - [37.703478, 55.55379], - [37.703478, 55.5537], - [37.703319, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703319, 55.55379], - [37.703319, 55.55388], - [37.703478, 55.55388], - [37.703478, 55.55379], - [37.703319, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703319, 55.55388], - [37.703319, 55.55397], - [37.703478, 55.55397], - [37.703478, 55.55388], - [37.703319, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703319, 55.55397], - [37.703319, 55.55406], - [37.703478, 55.55406], - [37.703478, 55.55397], - [37.703319, 55.55397] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703319, 55.55406], - [37.703319, 55.55415], - [37.703478, 55.55415], - [37.703478, 55.55406], - [37.703319, 55.55406] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703319, 55.55415], - [37.703319, 55.55424], - [37.703478, 55.55424], - [37.703478, 55.55415], - [37.703319, 55.55415] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703319, 55.55424], - [37.703319, 55.55433], - [37.703478, 55.55433], - [37.703478, 55.55424], - [37.703319, 55.55424] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703319, 55.55433], - [37.703319, 55.55442], - [37.703478, 55.55442], - [37.703478, 55.55433], - [37.703319, 55.55433] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703319, 55.55442], - [37.703319, 55.55451], - [37.703478, 55.55451], - [37.703478, 55.55442], - [37.703319, 55.55442] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703319, 55.55451], - [37.703319, 55.5546], - [37.703478, 55.5546], - [37.703478, 55.55451], - [37.703319, 55.55451] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703319, 55.5546], - [37.703319, 55.55469], - [37.703478, 55.55469], - [37.703478, 55.5546], - [37.703319, 55.5546] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703478, 55.552261], - [37.703478, 55.552351], - [37.703637, 55.552351], - [37.703637, 55.552261], - [37.703478, 55.552261] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703478, 55.552351], - [37.703478, 55.552441], - [37.703637, 55.552441], - [37.703637, 55.552351], - [37.703478, 55.552351] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703478, 55.552441], - [37.703478, 55.552531], - [37.703637, 55.552531], - [37.703637, 55.552441], - [37.703478, 55.552441] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703478, 55.552531], - [37.703478, 55.552621], - [37.703637, 55.552621], - [37.703637, 55.552531], - [37.703478, 55.552531] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703478, 55.552621], - [37.703478, 55.552711], - [37.703637, 55.552711], - [37.703637, 55.552621], - [37.703478, 55.552621] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703478, 55.552711], - [37.703478, 55.552801], - [37.703637, 55.552801], - [37.703637, 55.552711], - [37.703478, 55.552711] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703478, 55.552801], - [37.703478, 55.552891], - [37.703637, 55.552891], - [37.703637, 55.552801], - [37.703478, 55.552801] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703478, 55.552891], - [37.703478, 55.552981], - [37.703637, 55.552981], - [37.703637, 55.552891], - [37.703478, 55.552891] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703478, 55.552981], - [37.703478, 55.553071], - [37.703637, 55.553071], - [37.703637, 55.552981], - [37.703478, 55.552981] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703478, 55.553071], - [37.703478, 55.553161], - [37.703637, 55.553161], - [37.703637, 55.553071], - [37.703478, 55.553071] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703478, 55.553161], - [37.703478, 55.553251], - [37.703637, 55.553251], - [37.703637, 55.553161], - [37.703478, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703478, 55.553251], - [37.703478, 55.553341], - [37.703637, 55.553341], - [37.703637, 55.553251], - [37.703478, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703478, 55.553341], - [37.703478, 55.553431], - [37.703637, 55.553431], - [37.703637, 55.553341], - [37.703478, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703478, 55.553431], - [37.703478, 55.55352], - [37.703637, 55.55352], - [37.703637, 55.553431], - [37.703478, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703478, 55.55352], - [37.703478, 55.55361], - [37.703637, 55.55361], - [37.703637, 55.55352], - [37.703478, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703478, 55.55361], - [37.703478, 55.5537], - [37.703637, 55.5537], - [37.703637, 55.55361], - [37.703478, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703478, 55.5537], - [37.703478, 55.55379], - [37.703637, 55.55379], - [37.703637, 55.5537], - [37.703478, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703478, 55.55379], - [37.703478, 55.55388], - [37.703637, 55.55388], - [37.703637, 55.55379], - [37.703478, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703478, 55.55388], - [37.703478, 55.55397], - [37.703637, 55.55397], - [37.703637, 55.55388], - [37.703478, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703478, 55.55397], - [37.703478, 55.55406], - [37.703637, 55.55406], - [37.703637, 55.55397], - [37.703478, 55.55397] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703478, 55.55406], - [37.703478, 55.55415], - [37.703637, 55.55415], - [37.703637, 55.55406], - [37.703478, 55.55406] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703478, 55.55415], - [37.703478, 55.55424], - [37.703637, 55.55424], - [37.703637, 55.55415], - [37.703478, 55.55415] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703478, 55.55424], - [37.703478, 55.55433], - [37.703637, 55.55433], - [37.703637, 55.55424], - [37.703478, 55.55424] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703478, 55.55433], - [37.703478, 55.55442], - [37.703637, 55.55442], - [37.703637, 55.55433], - [37.703478, 55.55433] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703478, 55.55442], - [37.703478, 55.55451], - [37.703637, 55.55451], - [37.703637, 55.55442], - [37.703478, 55.55442] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703478, 55.55451], - [37.703478, 55.5546], - [37.703637, 55.5546], - [37.703637, 55.55451], - [37.703478, 55.55451] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703478, 55.5546], - [37.703478, 55.55469], - [37.703637, 55.55469], - [37.703637, 55.5546], - [37.703478, 55.5546] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703478, 55.55469], - [37.703478, 55.55478], - [37.703637, 55.55478], - [37.703637, 55.55469], - [37.703478, 55.55469] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703637, 55.552171], - [37.703637, 55.552261], - [37.703796, 55.552261], - [37.703796, 55.552171], - [37.703637, 55.552171] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703637, 55.552261], - [37.703637, 55.552351], - [37.703796, 55.552351], - [37.703796, 55.552261], - [37.703637, 55.552261] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703637, 55.552351], - [37.703637, 55.552441], - [37.703796, 55.552441], - [37.703796, 55.552351], - [37.703637, 55.552351] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703637, 55.552441], - [37.703637, 55.552531], - [37.703796, 55.552531], - [37.703796, 55.552441], - [37.703637, 55.552441] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703637, 55.552531], - [37.703637, 55.552621], - [37.703796, 55.552621], - [37.703796, 55.552531], - [37.703637, 55.552531] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703637, 55.552621], - [37.703637, 55.552711], - [37.703796, 55.552711], - [37.703796, 55.552621], - [37.703637, 55.552621] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703637, 55.552711], - [37.703637, 55.552801], - [37.703796, 55.552801], - [37.703796, 55.552711], - [37.703637, 55.552711] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703637, 55.552801], - [37.703637, 55.552891], - [37.703796, 55.552891], - [37.703796, 55.552801], - [37.703637, 55.552801] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703637, 55.552891], - [37.703637, 55.552981], - [37.703796, 55.552981], - [37.703796, 55.552891], - [37.703637, 55.552891] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703637, 55.552981], - [37.703637, 55.553071], - [37.703796, 55.553071], - [37.703796, 55.552981], - [37.703637, 55.552981] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703637, 55.553071], - [37.703637, 55.553161], - [37.703796, 55.553161], - [37.703796, 55.553071], - [37.703637, 55.553071] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703637, 55.553161], - [37.703637, 55.553251], - [37.703796, 55.553251], - [37.703796, 55.553161], - [37.703637, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703637, 55.553251], - [37.703637, 55.553341], - [37.703796, 55.553341], - [37.703796, 55.553251], - [37.703637, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703637, 55.553341], - [37.703637, 55.553431], - [37.703796, 55.553431], - [37.703796, 55.553341], - [37.703637, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703637, 55.553431], - [37.703637, 55.55352], - [37.703796, 55.55352], - [37.703796, 55.553431], - [37.703637, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703637, 55.55352], - [37.703637, 55.55361], - [37.703796, 55.55361], - [37.703796, 55.55352], - [37.703637, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703637, 55.55361], - [37.703637, 55.5537], - [37.703796, 55.5537], - [37.703796, 55.55361], - [37.703637, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703637, 55.5537], - [37.703637, 55.55379], - [37.703796, 55.55379], - [37.703796, 55.5537], - [37.703637, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703637, 55.55379], - [37.703637, 55.55388], - [37.703796, 55.55388], - [37.703796, 55.55379], - [37.703637, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703637, 55.55388], - [37.703637, 55.55397], - [37.703796, 55.55397], - [37.703796, 55.55388], - [37.703637, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703637, 55.55397], - [37.703637, 55.55406], - [37.703796, 55.55406], - [37.703796, 55.55397], - [37.703637, 55.55397] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703637, 55.55406], - [37.703637, 55.55415], - [37.703796, 55.55415], - [37.703796, 55.55406], - [37.703637, 55.55406] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703637, 55.55415], - [37.703637, 55.55424], - [37.703796, 55.55424], - [37.703796, 55.55415], - [37.703637, 55.55415] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703637, 55.55424], - [37.703637, 55.55433], - [37.703796, 55.55433], - [37.703796, 55.55424], - [37.703637, 55.55424] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703637, 55.55433], - [37.703637, 55.55442], - [37.703796, 55.55442], - [37.703796, 55.55433], - [37.703637, 55.55433] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703637, 55.55442], - [37.703637, 55.55451], - [37.703796, 55.55451], - [37.703796, 55.55442], - [37.703637, 55.55442] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703637, 55.55451], - [37.703637, 55.5546], - [37.703796, 55.5546], - [37.703796, 55.55451], - [37.703637, 55.55451] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703637, 55.5546], - [37.703637, 55.55469], - [37.703796, 55.55469], - [37.703796, 55.5546], - [37.703637, 55.5546] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703637, 55.55469], - [37.703637, 55.55478], - [37.703796, 55.55478], - [37.703796, 55.55469], - [37.703637, 55.55469] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703796, 55.552171], - [37.703796, 55.552261], - [37.703955, 55.552261], - [37.703955, 55.552171], - [37.703796, 55.552171] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703796, 55.552261], - [37.703796, 55.552351], - [37.703955, 55.552351], - [37.703955, 55.552261], - [37.703796, 55.552261] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703796, 55.552351], - [37.703796, 55.552441], - [37.703955, 55.552441], - [37.703955, 55.552351], - [37.703796, 55.552351] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703796, 55.552441], - [37.703796, 55.552531], - [37.703955, 55.552531], - [37.703955, 55.552441], - [37.703796, 55.552441] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703796, 55.552531], - [37.703796, 55.552621], - [37.703955, 55.552621], - [37.703955, 55.552531], - [37.703796, 55.552531] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703796, 55.552621], - [37.703796, 55.552711], - [37.703955, 55.552711], - [37.703955, 55.552621], - [37.703796, 55.552621] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703796, 55.552711], - [37.703796, 55.552801], - [37.703955, 55.552801], - [37.703955, 55.552711], - [37.703796, 55.552711] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703796, 55.552801], - [37.703796, 55.552891], - [37.703955, 55.552891], - [37.703955, 55.552801], - [37.703796, 55.552801] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703796, 55.552891], - [37.703796, 55.552981], - [37.703955, 55.552981], - [37.703955, 55.552891], - [37.703796, 55.552891] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703796, 55.552981], - [37.703796, 55.553071], - [37.703955, 55.553071], - [37.703955, 55.552981], - [37.703796, 55.552981] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703796, 55.553071], - [37.703796, 55.553161], - [37.703955, 55.553161], - [37.703955, 55.553071], - [37.703796, 55.553071] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703796, 55.553161], - [37.703796, 55.553251], - [37.703955, 55.553251], - [37.703955, 55.553161], - [37.703796, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703796, 55.553251], - [37.703796, 55.553341], - [37.703955, 55.553341], - [37.703955, 55.553251], - [37.703796, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703796, 55.553341], - [37.703796, 55.553431], - [37.703955, 55.553431], - [37.703955, 55.553341], - [37.703796, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703796, 55.553431], - [37.703796, 55.55352], - [37.703955, 55.55352], - [37.703955, 55.553431], - [37.703796, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703796, 55.55352], - [37.703796, 55.55361], - [37.703955, 55.55361], - [37.703955, 55.55352], - [37.703796, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703796, 55.55361], - [37.703796, 55.5537], - [37.703955, 55.5537], - [37.703955, 55.55361], - [37.703796, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703796, 55.5537], - [37.703796, 55.55379], - [37.703955, 55.55379], - [37.703955, 55.5537], - [37.703796, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703796, 55.55379], - [37.703796, 55.55388], - [37.703955, 55.55388], - [37.703955, 55.55379], - [37.703796, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703796, 55.55388], - [37.703796, 55.55397], - [37.703955, 55.55397], - [37.703955, 55.55388], - [37.703796, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703796, 55.55397], - [37.703796, 55.55406], - [37.703955, 55.55406], - [37.703955, 55.55397], - [37.703796, 55.55397] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703796, 55.55406], - [37.703796, 55.55415], - [37.703955, 55.55415], - [37.703955, 55.55406], - [37.703796, 55.55406] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703796, 55.55415], - [37.703796, 55.55424], - [37.703955, 55.55424], - [37.703955, 55.55415], - [37.703796, 55.55415] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703796, 55.55424], - [37.703796, 55.55433], - [37.703955, 55.55433], - [37.703955, 55.55424], - [37.703796, 55.55424] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703796, 55.55433], - [37.703796, 55.55442], - [37.703955, 55.55442], - [37.703955, 55.55433], - [37.703796, 55.55433] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703796, 55.55442], - [37.703796, 55.55451], - [37.703955, 55.55451], - [37.703955, 55.55442], - [37.703796, 55.55442] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703796, 55.55451], - [37.703796, 55.5546], - [37.703955, 55.5546], - [37.703955, 55.55451], - [37.703796, 55.55451] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703796, 55.5546], - [37.703796, 55.55469], - [37.703955, 55.55469], - [37.703955, 55.5546], - [37.703796, 55.5546] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703796, 55.55469], - [37.703796, 55.55478], - [37.703955, 55.55478], - [37.703955, 55.55469], - [37.703796, 55.55469] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703796, 55.55478], - [37.703796, 55.554869], - [37.703955, 55.554869], - [37.703955, 55.55478], - [37.703796, 55.55478] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703955, 55.552082], - [37.703955, 55.552171], - [37.704114, 55.552171], - [37.704114, 55.552082], - [37.703955, 55.552082] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703955, 55.552171], - [37.703955, 55.552261], - [37.704114, 55.552261], - [37.704114, 55.552171], - [37.703955, 55.552171] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703955, 55.552261], - [37.703955, 55.552351], - [37.704114, 55.552351], - [37.704114, 55.552261], - [37.703955, 55.552261] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703955, 55.552351], - [37.703955, 55.552441], - [37.704114, 55.552441], - [37.704114, 55.552351], - [37.703955, 55.552351] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703955, 55.552441], - [37.703955, 55.552531], - [37.704114, 55.552531], - [37.704114, 55.552441], - [37.703955, 55.552441] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703955, 55.552531], - [37.703955, 55.552621], - [37.704114, 55.552621], - [37.704114, 55.552531], - [37.703955, 55.552531] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703955, 55.552621], - [37.703955, 55.552711], - [37.704114, 55.552711], - [37.704114, 55.552621], - [37.703955, 55.552621] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703955, 55.552711], - [37.703955, 55.552801], - [37.704114, 55.552801], - [37.704114, 55.552711], - [37.703955, 55.552711] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703955, 55.552801], - [37.703955, 55.552891], - [37.704114, 55.552891], - [37.704114, 55.552801], - [37.703955, 55.552801] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703955, 55.552891], - [37.703955, 55.552981], - [37.704114, 55.552981], - [37.704114, 55.552891], - [37.703955, 55.552891] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703955, 55.552981], - [37.703955, 55.553071], - [37.704114, 55.553071], - [37.704114, 55.552981], - [37.703955, 55.552981] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703955, 55.553071], - [37.703955, 55.553161], - [37.704114, 55.553161], - [37.704114, 55.553071], - [37.703955, 55.553071] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703955, 55.553161], - [37.703955, 55.553251], - [37.704114, 55.553251], - [37.704114, 55.553161], - [37.703955, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703955, 55.553251], - [37.703955, 55.553341], - [37.704114, 55.553341], - [37.704114, 55.553251], - [37.703955, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703955, 55.553341], - [37.703955, 55.553431], - [37.704114, 55.553431], - [37.704114, 55.553341], - [37.703955, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703955, 55.553431], - [37.703955, 55.55352], - [37.704114, 55.55352], - [37.704114, 55.553431], - [37.703955, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703955, 55.55352], - [37.703955, 55.55361], - [37.704114, 55.55361], - [37.704114, 55.55352], - [37.703955, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703955, 55.55361], - [37.703955, 55.5537], - [37.704114, 55.5537], - [37.704114, 55.55361], - [37.703955, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703955, 55.5537], - [37.703955, 55.55379], - [37.704114, 55.55379], - [37.704114, 55.5537], - [37.703955, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703955, 55.55379], - [37.703955, 55.55388], - [37.704114, 55.55388], - [37.704114, 55.55379], - [37.703955, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703955, 55.55388], - [37.703955, 55.55397], - [37.704114, 55.55397], - [37.704114, 55.55388], - [37.703955, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703955, 55.55397], - [37.703955, 55.55406], - [37.704114, 55.55406], - [37.704114, 55.55397], - [37.703955, 55.55397] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703955, 55.55406], - [37.703955, 55.55415], - [37.704114, 55.55415], - [37.704114, 55.55406], - [37.703955, 55.55406] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703955, 55.55415], - [37.703955, 55.55424], - [37.704114, 55.55424], - [37.704114, 55.55415], - [37.703955, 55.55415] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703955, 55.55424], - [37.703955, 55.55433], - [37.704114, 55.55433], - [37.704114, 55.55424], - [37.703955, 55.55424] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703955, 55.55433], - [37.703955, 55.55442], - [37.704114, 55.55442], - [37.704114, 55.55433], - [37.703955, 55.55433] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703955, 55.55442], - [37.703955, 55.55451], - [37.704114, 55.55451], - [37.704114, 55.55442], - [37.703955, 55.55442] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703955, 55.55451], - [37.703955, 55.5546], - [37.704114, 55.5546], - [37.704114, 55.55451], - [37.703955, 55.55451] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703955, 55.5546], - [37.703955, 55.55469], - [37.704114, 55.55469], - [37.704114, 55.5546], - [37.703955, 55.5546] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703955, 55.55469], - [37.703955, 55.55478], - [37.704114, 55.55478], - [37.704114, 55.55469], - [37.703955, 55.55469] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.703955, 55.55478], - [37.703955, 55.554869], - [37.704114, 55.554869], - [37.704114, 55.55478], - [37.703955, 55.55478] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704114, 55.552082], - [37.704114, 55.552171], - [37.704273, 55.552171], - [37.704273, 55.552082], - [37.704114, 55.552082] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704114, 55.552171], - [37.704114, 55.552261], - [37.704273, 55.552261], - [37.704273, 55.552171], - [37.704114, 55.552171] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704114, 55.552261], - [37.704114, 55.552351], - [37.704273, 55.552351], - [37.704273, 55.552261], - [37.704114, 55.552261] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704114, 55.552351], - [37.704114, 55.552441], - [37.704273, 55.552441], - [37.704273, 55.552351], - [37.704114, 55.552351] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704114, 55.552441], - [37.704114, 55.552531], - [37.704273, 55.552531], - [37.704273, 55.552441], - [37.704114, 55.552441] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704114, 55.552531], - [37.704114, 55.552621], - [37.704273, 55.552621], - [37.704273, 55.552531], - [37.704114, 55.552531] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704114, 55.552621], - [37.704114, 55.552711], - [37.704273, 55.552711], - [37.704273, 55.552621], - [37.704114, 55.552621] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704114, 55.552711], - [37.704114, 55.552801], - [37.704273, 55.552801], - [37.704273, 55.552711], - [37.704114, 55.552711] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704114, 55.552801], - [37.704114, 55.552891], - [37.704273, 55.552891], - [37.704273, 55.552801], - [37.704114, 55.552801] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704114, 55.552891], - [37.704114, 55.552981], - [37.704273, 55.552981], - [37.704273, 55.552891], - [37.704114, 55.552891] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704114, 55.552981], - [37.704114, 55.553071], - [37.704273, 55.553071], - [37.704273, 55.552981], - [37.704114, 55.552981] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704114, 55.553071], - [37.704114, 55.553161], - [37.704273, 55.553161], - [37.704273, 55.553071], - [37.704114, 55.553071] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704114, 55.553161], - [37.704114, 55.553251], - [37.704273, 55.553251], - [37.704273, 55.553161], - [37.704114, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704114, 55.553251], - [37.704114, 55.553341], - [37.704273, 55.553341], - [37.704273, 55.553251], - [37.704114, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704114, 55.553341], - [37.704114, 55.553431], - [37.704273, 55.553431], - [37.704273, 55.553341], - [37.704114, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704114, 55.553431], - [37.704114, 55.55352], - [37.704273, 55.55352], - [37.704273, 55.553431], - [37.704114, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704114, 55.55352], - [37.704114, 55.55361], - [37.704273, 55.55361], - [37.704273, 55.55352], - [37.704114, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704114, 55.55361], - [37.704114, 55.5537], - [37.704273, 55.5537], - [37.704273, 55.55361], - [37.704114, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704114, 55.5537], - [37.704114, 55.55379], - [37.704273, 55.55379], - [37.704273, 55.5537], - [37.704114, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704114, 55.55379], - [37.704114, 55.55388], - [37.704273, 55.55388], - [37.704273, 55.55379], - [37.704114, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704114, 55.55388], - [37.704114, 55.55397], - [37.704273, 55.55397], - [37.704273, 55.55388], - [37.704114, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704114, 55.55397], - [37.704114, 55.55406], - [37.704273, 55.55406], - [37.704273, 55.55397], - [37.704114, 55.55397] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704114, 55.55406], - [37.704114, 55.55415], - [37.704273, 55.55415], - [37.704273, 55.55406], - [37.704114, 55.55406] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704114, 55.55415], - [37.704114, 55.55424], - [37.704273, 55.55424], - [37.704273, 55.55415], - [37.704114, 55.55415] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704114, 55.55424], - [37.704114, 55.55433], - [37.704273, 55.55433], - [37.704273, 55.55424], - [37.704114, 55.55424] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704114, 55.55433], - [37.704114, 55.55442], - [37.704273, 55.55442], - [37.704273, 55.55433], - [37.704114, 55.55433] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704114, 55.55442], - [37.704114, 55.55451], - [37.704273, 55.55451], - [37.704273, 55.55442], - [37.704114, 55.55442] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704114, 55.55451], - [37.704114, 55.5546], - [37.704273, 55.5546], - [37.704273, 55.55451], - [37.704114, 55.55451] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704114, 55.5546], - [37.704114, 55.55469], - [37.704273, 55.55469], - [37.704273, 55.5546], - [37.704114, 55.5546] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704114, 55.55469], - [37.704114, 55.55478], - [37.704273, 55.55478], - [37.704273, 55.55469], - [37.704114, 55.55469] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704114, 55.55478], - [37.704114, 55.554869], - [37.704273, 55.554869], - [37.704273, 55.55478], - [37.704114, 55.55478] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704114, 55.554869], - [37.704114, 55.554959], - [37.704273, 55.554959], - [37.704273, 55.554869], - [37.704114, 55.554869] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704273, 55.551992], - [37.704273, 55.552082], - [37.704432, 55.552082], - [37.704432, 55.551992], - [37.704273, 55.551992] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704273, 55.552082], - [37.704273, 55.552171], - [37.704432, 55.552171], - [37.704432, 55.552082], - [37.704273, 55.552082] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704273, 55.552171], - [37.704273, 55.552261], - [37.704432, 55.552261], - [37.704432, 55.552171], - [37.704273, 55.552171] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704273, 55.552261], - [37.704273, 55.552351], - [37.704432, 55.552351], - [37.704432, 55.552261], - [37.704273, 55.552261] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704273, 55.552351], - [37.704273, 55.552441], - [37.704432, 55.552441], - [37.704432, 55.552351], - [37.704273, 55.552351] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704273, 55.552441], - [37.704273, 55.552531], - [37.704432, 55.552531], - [37.704432, 55.552441], - [37.704273, 55.552441] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704273, 55.552531], - [37.704273, 55.552621], - [37.704432, 55.552621], - [37.704432, 55.552531], - [37.704273, 55.552531] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704273, 55.552621], - [37.704273, 55.552711], - [37.704432, 55.552711], - [37.704432, 55.552621], - [37.704273, 55.552621] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704273, 55.552711], - [37.704273, 55.552801], - [37.704432, 55.552801], - [37.704432, 55.552711], - [37.704273, 55.552711] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704273, 55.552801], - [37.704273, 55.552891], - [37.704432, 55.552891], - [37.704432, 55.552801], - [37.704273, 55.552801] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704273, 55.552891], - [37.704273, 55.552981], - [37.704432, 55.552981], - [37.704432, 55.552891], - [37.704273, 55.552891] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704273, 55.552981], - [37.704273, 55.553071], - [37.704432, 55.553071], - [37.704432, 55.552981], - [37.704273, 55.552981] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704273, 55.553071], - [37.704273, 55.553161], - [37.704432, 55.553161], - [37.704432, 55.553071], - [37.704273, 55.553071] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704273, 55.553161], - [37.704273, 55.553251], - [37.704432, 55.553251], - [37.704432, 55.553161], - [37.704273, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704273, 55.553251], - [37.704273, 55.553341], - [37.704432, 55.553341], - [37.704432, 55.553251], - [37.704273, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704273, 55.553341], - [37.704273, 55.553431], - [37.704432, 55.553431], - [37.704432, 55.553341], - [37.704273, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704273, 55.553431], - [37.704273, 55.55352], - [37.704432, 55.55352], - [37.704432, 55.553431], - [37.704273, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704273, 55.55352], - [37.704273, 55.55361], - [37.704432, 55.55361], - [37.704432, 55.55352], - [37.704273, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704273, 55.55361], - [37.704273, 55.5537], - [37.704432, 55.5537], - [37.704432, 55.55361], - [37.704273, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704273, 55.5537], - [37.704273, 55.55379], - [37.704432, 55.55379], - [37.704432, 55.5537], - [37.704273, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704273, 55.55379], - [37.704273, 55.55388], - [37.704432, 55.55388], - [37.704432, 55.55379], - [37.704273, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704273, 55.55388], - [37.704273, 55.55397], - [37.704432, 55.55397], - [37.704432, 55.55388], - [37.704273, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704273, 55.55397], - [37.704273, 55.55406], - [37.704432, 55.55406], - [37.704432, 55.55397], - [37.704273, 55.55397] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704273, 55.55406], - [37.704273, 55.55415], - [37.704432, 55.55415], - [37.704432, 55.55406], - [37.704273, 55.55406] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704273, 55.55415], - [37.704273, 55.55424], - [37.704432, 55.55424], - [37.704432, 55.55415], - [37.704273, 55.55415] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704273, 55.55424], - [37.704273, 55.55433], - [37.704432, 55.55433], - [37.704432, 55.55424], - [37.704273, 55.55424] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704273, 55.55433], - [37.704273, 55.55442], - [37.704432, 55.55442], - [37.704432, 55.55433], - [37.704273, 55.55433] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704273, 55.55442], - [37.704273, 55.55451], - [37.704432, 55.55451], - [37.704432, 55.55442], - [37.704273, 55.55442] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704273, 55.55451], - [37.704273, 55.5546], - [37.704432, 55.5546], - [37.704432, 55.55451], - [37.704273, 55.55451] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704273, 55.5546], - [37.704273, 55.55469], - [37.704432, 55.55469], - [37.704432, 55.5546], - [37.704273, 55.5546] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704273, 55.55469], - [37.704273, 55.55478], - [37.704432, 55.55478], - [37.704432, 55.55469], - [37.704273, 55.55469] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704273, 55.55478], - [37.704273, 55.554869], - [37.704432, 55.554869], - [37.704432, 55.55478], - [37.704273, 55.55478] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704273, 55.554869], - [37.704273, 55.554959], - [37.704432, 55.554959], - [37.704432, 55.554869], - [37.704273, 55.554869] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704432, 55.551992], - [37.704432, 55.552082], - [37.704591, 55.552082], - [37.704591, 55.551992], - [37.704432, 55.551992] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704432, 55.552082], - [37.704432, 55.552171], - [37.704591, 55.552171], - [37.704591, 55.552082], - [37.704432, 55.552082] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704432, 55.552171], - [37.704432, 55.552261], - [37.704591, 55.552261], - [37.704591, 55.552171], - [37.704432, 55.552171] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704432, 55.552261], - [37.704432, 55.552351], - [37.704591, 55.552351], - [37.704591, 55.552261], - [37.704432, 55.552261] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704432, 55.552351], - [37.704432, 55.552441], - [37.704591, 55.552441], - [37.704591, 55.552351], - [37.704432, 55.552351] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704432, 55.552441], - [37.704432, 55.552531], - [37.704591, 55.552531], - [37.704591, 55.552441], - [37.704432, 55.552441] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704432, 55.552531], - [37.704432, 55.552621], - [37.704591, 55.552621], - [37.704591, 55.552531], - [37.704432, 55.552531] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704432, 55.552621], - [37.704432, 55.552711], - [37.704591, 55.552711], - [37.704591, 55.552621], - [37.704432, 55.552621] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704432, 55.552711], - [37.704432, 55.552801], - [37.704591, 55.552801], - [37.704591, 55.552711], - [37.704432, 55.552711] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704432, 55.552801], - [37.704432, 55.552891], - [37.704591, 55.552891], - [37.704591, 55.552801], - [37.704432, 55.552801] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704432, 55.552891], - [37.704432, 55.552981], - [37.704591, 55.552981], - [37.704591, 55.552891], - [37.704432, 55.552891] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704432, 55.552981], - [37.704432, 55.553071], - [37.704591, 55.553071], - [37.704591, 55.552981], - [37.704432, 55.552981] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704432, 55.553071], - [37.704432, 55.553161], - [37.704591, 55.553161], - [37.704591, 55.553071], - [37.704432, 55.553071] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704432, 55.553161], - [37.704432, 55.553251], - [37.704591, 55.553251], - [37.704591, 55.553161], - [37.704432, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704432, 55.553251], - [37.704432, 55.553341], - [37.704591, 55.553341], - [37.704591, 55.553251], - [37.704432, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704432, 55.553341], - [37.704432, 55.553431], - [37.704591, 55.553431], - [37.704591, 55.553341], - [37.704432, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704432, 55.553431], - [37.704432, 55.55352], - [37.704591, 55.55352], - [37.704591, 55.553431], - [37.704432, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704432, 55.55352], - [37.704432, 55.55361], - [37.704591, 55.55361], - [37.704591, 55.55352], - [37.704432, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704432, 55.55361], - [37.704432, 55.5537], - [37.704591, 55.5537], - [37.704591, 55.55361], - [37.704432, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704432, 55.5537], - [37.704432, 55.55379], - [37.704591, 55.55379], - [37.704591, 55.5537], - [37.704432, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704432, 55.55379], - [37.704432, 55.55388], - [37.704591, 55.55388], - [37.704591, 55.55379], - [37.704432, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704432, 55.55388], - [37.704432, 55.55397], - [37.704591, 55.55397], - [37.704591, 55.55388], - [37.704432, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704432, 55.55397], - [37.704432, 55.55406], - [37.704591, 55.55406], - [37.704591, 55.55397], - [37.704432, 55.55397] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704432, 55.55406], - [37.704432, 55.55415], - [37.704591, 55.55415], - [37.704591, 55.55406], - [37.704432, 55.55406] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704432, 55.55415], - [37.704432, 55.55424], - [37.704591, 55.55424], - [37.704591, 55.55415], - [37.704432, 55.55415] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704432, 55.55424], - [37.704432, 55.55433], - [37.704591, 55.55433], - [37.704591, 55.55424], - [37.704432, 55.55424] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704432, 55.55433], - [37.704432, 55.55442], - [37.704591, 55.55442], - [37.704591, 55.55433], - [37.704432, 55.55433] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704432, 55.55442], - [37.704432, 55.55451], - [37.704591, 55.55451], - [37.704591, 55.55442], - [37.704432, 55.55442] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704432, 55.55451], - [37.704432, 55.5546], - [37.704591, 55.5546], - [37.704591, 55.55451], - [37.704432, 55.55451] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704432, 55.5546], - [37.704432, 55.55469], - [37.704591, 55.55469], - [37.704591, 55.5546], - [37.704432, 55.5546] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704432, 55.55469], - [37.704432, 55.55478], - [37.704591, 55.55478], - [37.704591, 55.55469], - [37.704432, 55.55469] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704432, 55.55478], - [37.704432, 55.554869], - [37.704591, 55.554869], - [37.704591, 55.55478], - [37.704432, 55.55478] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704432, 55.554869], - [37.704432, 55.554959], - [37.704591, 55.554959], - [37.704591, 55.554869], - [37.704432, 55.554869] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704432, 55.554959], - [37.704432, 55.555049], - [37.704591, 55.555049], - [37.704591, 55.554959], - [37.704432, 55.554959] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704591, 55.551902], - [37.704591, 55.551992], - [37.70475, 55.551992], - [37.70475, 55.551902], - [37.704591, 55.551902] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704591, 55.551992], - [37.704591, 55.552082], - [37.70475, 55.552082], - [37.70475, 55.551992], - [37.704591, 55.551992] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704591, 55.552082], - [37.704591, 55.552171], - [37.70475, 55.552171], - [37.70475, 55.552082], - [37.704591, 55.552082] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704591, 55.552171], - [37.704591, 55.552261], - [37.70475, 55.552261], - [37.70475, 55.552171], - [37.704591, 55.552171] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704591, 55.552261], - [37.704591, 55.552351], - [37.70475, 55.552351], - [37.70475, 55.552261], - [37.704591, 55.552261] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704591, 55.552351], - [37.704591, 55.552441], - [37.70475, 55.552441], - [37.70475, 55.552351], - [37.704591, 55.552351] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704591, 55.552441], - [37.704591, 55.552531], - [37.70475, 55.552531], - [37.70475, 55.552441], - [37.704591, 55.552441] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704591, 55.552531], - [37.704591, 55.552621], - [37.70475, 55.552621], - [37.70475, 55.552531], - [37.704591, 55.552531] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704591, 55.552621], - [37.704591, 55.552711], - [37.70475, 55.552711], - [37.70475, 55.552621], - [37.704591, 55.552621] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704591, 55.552711], - [37.704591, 55.552801], - [37.70475, 55.552801], - [37.70475, 55.552711], - [37.704591, 55.552711] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704591, 55.552801], - [37.704591, 55.552891], - [37.70475, 55.552891], - [37.70475, 55.552801], - [37.704591, 55.552801] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704591, 55.552891], - [37.704591, 55.552981], - [37.70475, 55.552981], - [37.70475, 55.552891], - [37.704591, 55.552891] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704591, 55.552981], - [37.704591, 55.553071], - [37.70475, 55.553071], - [37.70475, 55.552981], - [37.704591, 55.552981] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704591, 55.553071], - [37.704591, 55.553161], - [37.70475, 55.553161], - [37.70475, 55.553071], - [37.704591, 55.553071] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704591, 55.553161], - [37.704591, 55.553251], - [37.70475, 55.553251], - [37.70475, 55.553161], - [37.704591, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704591, 55.553251], - [37.704591, 55.553341], - [37.70475, 55.553341], - [37.70475, 55.553251], - [37.704591, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704591, 55.553341], - [37.704591, 55.553431], - [37.70475, 55.553431], - [37.70475, 55.553341], - [37.704591, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704591, 55.553431], - [37.704591, 55.55352], - [37.70475, 55.55352], - [37.70475, 55.553431], - [37.704591, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704591, 55.55352], - [37.704591, 55.55361], - [37.70475, 55.55361], - [37.70475, 55.55352], - [37.704591, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704591, 55.55361], - [37.704591, 55.5537], - [37.70475, 55.5537], - [37.70475, 55.55361], - [37.704591, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704591, 55.5537], - [37.704591, 55.55379], - [37.70475, 55.55379], - [37.70475, 55.5537], - [37.704591, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704591, 55.55379], - [37.704591, 55.55388], - [37.70475, 55.55388], - [37.70475, 55.55379], - [37.704591, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704591, 55.55388], - [37.704591, 55.55397], - [37.70475, 55.55397], - [37.70475, 55.55388], - [37.704591, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704591, 55.55397], - [37.704591, 55.55406], - [37.70475, 55.55406], - [37.70475, 55.55397], - [37.704591, 55.55397] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704591, 55.55406], - [37.704591, 55.55415], - [37.70475, 55.55415], - [37.70475, 55.55406], - [37.704591, 55.55406] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704591, 55.55415], - [37.704591, 55.55424], - [37.70475, 55.55424], - [37.70475, 55.55415], - [37.704591, 55.55415] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704591, 55.55424], - [37.704591, 55.55433], - [37.70475, 55.55433], - [37.70475, 55.55424], - [37.704591, 55.55424] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704591, 55.55433], - [37.704591, 55.55442], - [37.70475, 55.55442], - [37.70475, 55.55433], - [37.704591, 55.55433] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704591, 55.55442], - [37.704591, 55.55451], - [37.70475, 55.55451], - [37.70475, 55.55442], - [37.704591, 55.55442] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704591, 55.55451], - [37.704591, 55.5546], - [37.70475, 55.5546], - [37.70475, 55.55451], - [37.704591, 55.55451] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704591, 55.5546], - [37.704591, 55.55469], - [37.70475, 55.55469], - [37.70475, 55.5546], - [37.704591, 55.5546] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704591, 55.55469], - [37.704591, 55.55478], - [37.70475, 55.55478], - [37.70475, 55.55469], - [37.704591, 55.55469] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704591, 55.55478], - [37.704591, 55.554869], - [37.70475, 55.554869], - [37.70475, 55.55478], - [37.704591, 55.55478] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704591, 55.554869], - [37.704591, 55.554959], - [37.70475, 55.554959], - [37.70475, 55.554869], - [37.704591, 55.554869] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704591, 55.554959], - [37.704591, 55.555049], - [37.70475, 55.555049], - [37.70475, 55.554959], - [37.704591, 55.554959] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70475, 55.551902], - [37.70475, 55.551992], - [37.704909, 55.551992], - [37.704909, 55.551902], - [37.70475, 55.551902] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70475, 55.551992], - [37.70475, 55.552082], - [37.704909, 55.552082], - [37.704909, 55.551992], - [37.70475, 55.551992] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70475, 55.552082], - [37.70475, 55.552171], - [37.704909, 55.552171], - [37.704909, 55.552082], - [37.70475, 55.552082] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70475, 55.552171], - [37.70475, 55.552261], - [37.704909, 55.552261], - [37.704909, 55.552171], - [37.70475, 55.552171] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70475, 55.552261], - [37.70475, 55.552351], - [37.704909, 55.552351], - [37.704909, 55.552261], - [37.70475, 55.552261] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70475, 55.552351], - [37.70475, 55.552441], - [37.704909, 55.552441], - [37.704909, 55.552351], - [37.70475, 55.552351] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70475, 55.552441], - [37.70475, 55.552531], - [37.704909, 55.552531], - [37.704909, 55.552441], - [37.70475, 55.552441] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70475, 55.552531], - [37.70475, 55.552621], - [37.704909, 55.552621], - [37.704909, 55.552531], - [37.70475, 55.552531] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70475, 55.552621], - [37.70475, 55.552711], - [37.704909, 55.552711], - [37.704909, 55.552621], - [37.70475, 55.552621] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70475, 55.552711], - [37.70475, 55.552801], - [37.704909, 55.552801], - [37.704909, 55.552711], - [37.70475, 55.552711] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70475, 55.552801], - [37.70475, 55.552891], - [37.704909, 55.552891], - [37.704909, 55.552801], - [37.70475, 55.552801] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70475, 55.552891], - [37.70475, 55.552981], - [37.704909, 55.552981], - [37.704909, 55.552891], - [37.70475, 55.552891] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70475, 55.552981], - [37.70475, 55.553071], - [37.704909, 55.553071], - [37.704909, 55.552981], - [37.70475, 55.552981] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70475, 55.553071], - [37.70475, 55.553161], - [37.704909, 55.553161], - [37.704909, 55.553071], - [37.70475, 55.553071] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70475, 55.553161], - [37.70475, 55.553251], - [37.704909, 55.553251], - [37.704909, 55.553161], - [37.70475, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70475, 55.553251], - [37.70475, 55.553341], - [37.704909, 55.553341], - [37.704909, 55.553251], - [37.70475, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70475, 55.553341], - [37.70475, 55.553431], - [37.704909, 55.553431], - [37.704909, 55.553341], - [37.70475, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70475, 55.553431], - [37.70475, 55.55352], - [37.704909, 55.55352], - [37.704909, 55.553431], - [37.70475, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70475, 55.55352], - [37.70475, 55.55361], - [37.704909, 55.55361], - [37.704909, 55.55352], - [37.70475, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70475, 55.55361], - [37.70475, 55.5537], - [37.704909, 55.5537], - [37.704909, 55.55361], - [37.70475, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70475, 55.5537], - [37.70475, 55.55379], - [37.704909, 55.55379], - [37.704909, 55.5537], - [37.70475, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70475, 55.55379], - [37.70475, 55.55388], - [37.704909, 55.55388], - [37.704909, 55.55379], - [37.70475, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70475, 55.55388], - [37.70475, 55.55397], - [37.704909, 55.55397], - [37.704909, 55.55388], - [37.70475, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70475, 55.55397], - [37.70475, 55.55406], - [37.704909, 55.55406], - [37.704909, 55.55397], - [37.70475, 55.55397] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70475, 55.55406], - [37.70475, 55.55415], - [37.704909, 55.55415], - [37.704909, 55.55406], - [37.70475, 55.55406] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70475, 55.55415], - [37.70475, 55.55424], - [37.704909, 55.55424], - [37.704909, 55.55415], - [37.70475, 55.55415] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70475, 55.55424], - [37.70475, 55.55433], - [37.704909, 55.55433], - [37.704909, 55.55424], - [37.70475, 55.55424] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70475, 55.55433], - [37.70475, 55.55442], - [37.704909, 55.55442], - [37.704909, 55.55433], - [37.70475, 55.55433] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70475, 55.55442], - [37.70475, 55.55451], - [37.704909, 55.55451], - [37.704909, 55.55442], - [37.70475, 55.55442] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70475, 55.55451], - [37.70475, 55.5546], - [37.704909, 55.5546], - [37.704909, 55.55451], - [37.70475, 55.55451] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70475, 55.5546], - [37.70475, 55.55469], - [37.704909, 55.55469], - [37.704909, 55.5546], - [37.70475, 55.5546] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70475, 55.55469], - [37.70475, 55.55478], - [37.704909, 55.55478], - [37.704909, 55.55469], - [37.70475, 55.55469] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70475, 55.55478], - [37.70475, 55.554869], - [37.704909, 55.554869], - [37.704909, 55.55478], - [37.70475, 55.55478] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70475, 55.554869], - [37.70475, 55.554959], - [37.704909, 55.554959], - [37.704909, 55.554869], - [37.70475, 55.554869] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70475, 55.554959], - [37.70475, 55.555049], - [37.704909, 55.555049], - [37.704909, 55.554959], - [37.70475, 55.554959] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70475, 55.555049], - [37.70475, 55.555139], - [37.704909, 55.555139], - [37.704909, 55.555049], - [37.70475, 55.555049] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704909, 55.551812], - [37.704909, 55.551902], - [37.705068, 55.551902], - [37.705068, 55.551812], - [37.704909, 55.551812] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704909, 55.551902], - [37.704909, 55.551992], - [37.705068, 55.551992], - [37.705068, 55.551902], - [37.704909, 55.551902] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704909, 55.551992], - [37.704909, 55.552082], - [37.705068, 55.552082], - [37.705068, 55.551992], - [37.704909, 55.551992] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704909, 55.552082], - [37.704909, 55.552171], - [37.705068, 55.552171], - [37.705068, 55.552082], - [37.704909, 55.552082] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704909, 55.552171], - [37.704909, 55.552261], - [37.705068, 55.552261], - [37.705068, 55.552171], - [37.704909, 55.552171] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704909, 55.552261], - [37.704909, 55.552351], - [37.705068, 55.552351], - [37.705068, 55.552261], - [37.704909, 55.552261] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704909, 55.552351], - [37.704909, 55.552441], - [37.705068, 55.552441], - [37.705068, 55.552351], - [37.704909, 55.552351] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704909, 55.552441], - [37.704909, 55.552531], - [37.705068, 55.552531], - [37.705068, 55.552441], - [37.704909, 55.552441] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704909, 55.552531], - [37.704909, 55.552621], - [37.705068, 55.552621], - [37.705068, 55.552531], - [37.704909, 55.552531] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704909, 55.552621], - [37.704909, 55.552711], - [37.705068, 55.552711], - [37.705068, 55.552621], - [37.704909, 55.552621] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704909, 55.552711], - [37.704909, 55.552801], - [37.705068, 55.552801], - [37.705068, 55.552711], - [37.704909, 55.552711] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704909, 55.552801], - [37.704909, 55.552891], - [37.705068, 55.552891], - [37.705068, 55.552801], - [37.704909, 55.552801] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704909, 55.552891], - [37.704909, 55.552981], - [37.705068, 55.552981], - [37.705068, 55.552891], - [37.704909, 55.552891] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704909, 55.552981], - [37.704909, 55.553071], - [37.705068, 55.553071], - [37.705068, 55.552981], - [37.704909, 55.552981] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704909, 55.553071], - [37.704909, 55.553161], - [37.705068, 55.553161], - [37.705068, 55.553071], - [37.704909, 55.553071] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704909, 55.553161], - [37.704909, 55.553251], - [37.705068, 55.553251], - [37.705068, 55.553161], - [37.704909, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704909, 55.553251], - [37.704909, 55.553341], - [37.705068, 55.553341], - [37.705068, 55.553251], - [37.704909, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704909, 55.553341], - [37.704909, 55.553431], - [37.705068, 55.553431], - [37.705068, 55.553341], - [37.704909, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704909, 55.553431], - [37.704909, 55.55352], - [37.705068, 55.55352], - [37.705068, 55.553431], - [37.704909, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704909, 55.55352], - [37.704909, 55.55361], - [37.705068, 55.55361], - [37.705068, 55.55352], - [37.704909, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704909, 55.55361], - [37.704909, 55.5537], - [37.705068, 55.5537], - [37.705068, 55.55361], - [37.704909, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704909, 55.5537], - [37.704909, 55.55379], - [37.705068, 55.55379], - [37.705068, 55.5537], - [37.704909, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704909, 55.55379], - [37.704909, 55.55388], - [37.705068, 55.55388], - [37.705068, 55.55379], - [37.704909, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704909, 55.55388], - [37.704909, 55.55397], - [37.705068, 55.55397], - [37.705068, 55.55388], - [37.704909, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704909, 55.55397], - [37.704909, 55.55406], - [37.705068, 55.55406], - [37.705068, 55.55397], - [37.704909, 55.55397] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704909, 55.55406], - [37.704909, 55.55415], - [37.705068, 55.55415], - [37.705068, 55.55406], - [37.704909, 55.55406] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704909, 55.55415], - [37.704909, 55.55424], - [37.705068, 55.55424], - [37.705068, 55.55415], - [37.704909, 55.55415] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704909, 55.55424], - [37.704909, 55.55433], - [37.705068, 55.55433], - [37.705068, 55.55424], - [37.704909, 55.55424] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704909, 55.55433], - [37.704909, 55.55442], - [37.705068, 55.55442], - [37.705068, 55.55433], - [37.704909, 55.55433] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704909, 55.55442], - [37.704909, 55.55451], - [37.705068, 55.55451], - [37.705068, 55.55442], - [37.704909, 55.55442] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704909, 55.55451], - [37.704909, 55.5546], - [37.705068, 55.5546], - [37.705068, 55.55451], - [37.704909, 55.55451] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704909, 55.5546], - [37.704909, 55.55469], - [37.705068, 55.55469], - [37.705068, 55.5546], - [37.704909, 55.5546] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704909, 55.55469], - [37.704909, 55.55478], - [37.705068, 55.55478], - [37.705068, 55.55469], - [37.704909, 55.55469] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704909, 55.55478], - [37.704909, 55.554869], - [37.705068, 55.554869], - [37.705068, 55.55478], - [37.704909, 55.55478] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704909, 55.554869], - [37.704909, 55.554959], - [37.705068, 55.554959], - [37.705068, 55.554869], - [37.704909, 55.554869] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704909, 55.554959], - [37.704909, 55.555049], - [37.705068, 55.555049], - [37.705068, 55.554959], - [37.704909, 55.554959] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704909, 55.555049], - [37.704909, 55.555139], - [37.705068, 55.555139], - [37.705068, 55.555049], - [37.704909, 55.555049] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705068, 55.551812], - [37.705068, 55.551902], - [37.705227, 55.551902], - [37.705227, 55.551812], - [37.705068, 55.551812] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705068, 55.551902], - [37.705068, 55.551992], - [37.705227, 55.551992], - [37.705227, 55.551902], - [37.705068, 55.551902] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705068, 55.551992], - [37.705068, 55.552082], - [37.705227, 55.552082], - [37.705227, 55.551992], - [37.705068, 55.551992] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705068, 55.552082], - [37.705068, 55.552171], - [37.705227, 55.552171], - [37.705227, 55.552082], - [37.705068, 55.552082] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705068, 55.552171], - [37.705068, 55.552261], - [37.705227, 55.552261], - [37.705227, 55.552171], - [37.705068, 55.552171] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705068, 55.552261], - [37.705068, 55.552351], - [37.705227, 55.552351], - [37.705227, 55.552261], - [37.705068, 55.552261] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705068, 55.552351], - [37.705068, 55.552441], - [37.705227, 55.552441], - [37.705227, 55.552351], - [37.705068, 55.552351] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705068, 55.552441], - [37.705068, 55.552531], - [37.705227, 55.552531], - [37.705227, 55.552441], - [37.705068, 55.552441] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705068, 55.552531], - [37.705068, 55.552621], - [37.705227, 55.552621], - [37.705227, 55.552531], - [37.705068, 55.552531] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705068, 55.552621], - [37.705068, 55.552711], - [37.705227, 55.552711], - [37.705227, 55.552621], - [37.705068, 55.552621] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705068, 55.552711], - [37.705068, 55.552801], - [37.705227, 55.552801], - [37.705227, 55.552711], - [37.705068, 55.552711] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705068, 55.552801], - [37.705068, 55.552891], - [37.705227, 55.552891], - [37.705227, 55.552801], - [37.705068, 55.552801] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705068, 55.552891], - [37.705068, 55.552981], - [37.705227, 55.552981], - [37.705227, 55.552891], - [37.705068, 55.552891] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705068, 55.552981], - [37.705068, 55.553071], - [37.705227, 55.553071], - [37.705227, 55.552981], - [37.705068, 55.552981] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705068, 55.553071], - [37.705068, 55.553161], - [37.705227, 55.553161], - [37.705227, 55.553071], - [37.705068, 55.553071] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705068, 55.553161], - [37.705068, 55.553251], - [37.705227, 55.553251], - [37.705227, 55.553161], - [37.705068, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705068, 55.553251], - [37.705068, 55.553341], - [37.705227, 55.553341], - [37.705227, 55.553251], - [37.705068, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705068, 55.553341], - [37.705068, 55.553431], - [37.705227, 55.553431], - [37.705227, 55.553341], - [37.705068, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705068, 55.553431], - [37.705068, 55.55352], - [37.705227, 55.55352], - [37.705227, 55.553431], - [37.705068, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705068, 55.55352], - [37.705068, 55.55361], - [37.705227, 55.55361], - [37.705227, 55.55352], - [37.705068, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705068, 55.55361], - [37.705068, 55.5537], - [37.705227, 55.5537], - [37.705227, 55.55361], - [37.705068, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705068, 55.5537], - [37.705068, 55.55379], - [37.705227, 55.55379], - [37.705227, 55.5537], - [37.705068, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705068, 55.55379], - [37.705068, 55.55388], - [37.705227, 55.55388], - [37.705227, 55.55379], - [37.705068, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705068, 55.55388], - [37.705068, 55.55397], - [37.705227, 55.55397], - [37.705227, 55.55388], - [37.705068, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705068, 55.55397], - [37.705068, 55.55406], - [37.705227, 55.55406], - [37.705227, 55.55397], - [37.705068, 55.55397] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705068, 55.55406], - [37.705068, 55.55415], - [37.705227, 55.55415], - [37.705227, 55.55406], - [37.705068, 55.55406] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705068, 55.55415], - [37.705068, 55.55424], - [37.705227, 55.55424], - [37.705227, 55.55415], - [37.705068, 55.55415] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705068, 55.55424], - [37.705068, 55.55433], - [37.705227, 55.55433], - [37.705227, 55.55424], - [37.705068, 55.55424] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705068, 55.55433], - [37.705068, 55.55442], - [37.705227, 55.55442], - [37.705227, 55.55433], - [37.705068, 55.55433] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705068, 55.55442], - [37.705068, 55.55451], - [37.705227, 55.55451], - [37.705227, 55.55442], - [37.705068, 55.55442] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705068, 55.55451], - [37.705068, 55.5546], - [37.705227, 55.5546], - [37.705227, 55.55451], - [37.705068, 55.55451] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705068, 55.5546], - [37.705068, 55.55469], - [37.705227, 55.55469], - [37.705227, 55.5546], - [37.705068, 55.5546] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705068, 55.55469], - [37.705068, 55.55478], - [37.705227, 55.55478], - [37.705227, 55.55469], - [37.705068, 55.55469] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705068, 55.55478], - [37.705068, 55.554869], - [37.705227, 55.554869], - [37.705227, 55.55478], - [37.705068, 55.55478] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705068, 55.554869], - [37.705068, 55.554959], - [37.705227, 55.554959], - [37.705227, 55.554869], - [37.705068, 55.554869] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705068, 55.554959], - [37.705068, 55.555049], - [37.705227, 55.555049], - [37.705227, 55.554959], - [37.705068, 55.554959] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705068, 55.555049], - [37.705068, 55.555139], - [37.705227, 55.555139], - [37.705227, 55.555049], - [37.705068, 55.555049] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705068, 55.555139], - [37.705068, 55.555229], - [37.705227, 55.555229], - [37.705227, 55.555139], - [37.705068, 55.555139] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705227, 55.551722], - [37.705227, 55.551812], - [37.705386, 55.551812], - [37.705386, 55.551722], - [37.705227, 55.551722] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705227, 55.551812], - [37.705227, 55.551902], - [37.705386, 55.551902], - [37.705386, 55.551812], - [37.705227, 55.551812] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705227, 55.551902], - [37.705227, 55.551992], - [37.705386, 55.551992], - [37.705386, 55.551902], - [37.705227, 55.551902] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705227, 55.551992], - [37.705227, 55.552082], - [37.705386, 55.552082], - [37.705386, 55.551992], - [37.705227, 55.551992] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705227, 55.552082], - [37.705227, 55.552171], - [37.705386, 55.552171], - [37.705386, 55.552082], - [37.705227, 55.552082] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705227, 55.552171], - [37.705227, 55.552261], - [37.705386, 55.552261], - [37.705386, 55.552171], - [37.705227, 55.552171] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705227, 55.552261], - [37.705227, 55.552351], - [37.705386, 55.552351], - [37.705386, 55.552261], - [37.705227, 55.552261] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705227, 55.552351], - [37.705227, 55.552441], - [37.705386, 55.552441], - [37.705386, 55.552351], - [37.705227, 55.552351] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705227, 55.552441], - [37.705227, 55.552531], - [37.705386, 55.552531], - [37.705386, 55.552441], - [37.705227, 55.552441] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705227, 55.552531], - [37.705227, 55.552621], - [37.705386, 55.552621], - [37.705386, 55.552531], - [37.705227, 55.552531] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705227, 55.552621], - [37.705227, 55.552711], - [37.705386, 55.552711], - [37.705386, 55.552621], - [37.705227, 55.552621] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705227, 55.552711], - [37.705227, 55.552801], - [37.705386, 55.552801], - [37.705386, 55.552711], - [37.705227, 55.552711] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705227, 55.552801], - [37.705227, 55.552891], - [37.705386, 55.552891], - [37.705386, 55.552801], - [37.705227, 55.552801] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705227, 55.552891], - [37.705227, 55.552981], - [37.705386, 55.552981], - [37.705386, 55.552891], - [37.705227, 55.552891] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705227, 55.552981], - [37.705227, 55.553071], - [37.705386, 55.553071], - [37.705386, 55.552981], - [37.705227, 55.552981] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705227, 55.553071], - [37.705227, 55.553161], - [37.705386, 55.553161], - [37.705386, 55.553071], - [37.705227, 55.553071] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705227, 55.553161], - [37.705227, 55.553251], - [37.705386, 55.553251], - [37.705386, 55.553161], - [37.705227, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705227, 55.553251], - [37.705227, 55.553341], - [37.705386, 55.553341], - [37.705386, 55.553251], - [37.705227, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705227, 55.553341], - [37.705227, 55.553431], - [37.705386, 55.553431], - [37.705386, 55.553341], - [37.705227, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705227, 55.553431], - [37.705227, 55.55352], - [37.705386, 55.55352], - [37.705386, 55.553431], - [37.705227, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705227, 55.55352], - [37.705227, 55.55361], - [37.705386, 55.55361], - [37.705386, 55.55352], - [37.705227, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705227, 55.55361], - [37.705227, 55.5537], - [37.705386, 55.5537], - [37.705386, 55.55361], - [37.705227, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705227, 55.5537], - [37.705227, 55.55379], - [37.705386, 55.55379], - [37.705386, 55.5537], - [37.705227, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705227, 55.55379], - [37.705227, 55.55388], - [37.705386, 55.55388], - [37.705386, 55.55379], - [37.705227, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705227, 55.55388], - [37.705227, 55.55397], - [37.705386, 55.55397], - [37.705386, 55.55388], - [37.705227, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705227, 55.55397], - [37.705227, 55.55406], - [37.705386, 55.55406], - [37.705386, 55.55397], - [37.705227, 55.55397] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705227, 55.55406], - [37.705227, 55.55415], - [37.705386, 55.55415], - [37.705386, 55.55406], - [37.705227, 55.55406] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705227, 55.55415], - [37.705227, 55.55424], - [37.705386, 55.55424], - [37.705386, 55.55415], - [37.705227, 55.55415] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705227, 55.55424], - [37.705227, 55.55433], - [37.705386, 55.55433], - [37.705386, 55.55424], - [37.705227, 55.55424] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705227, 55.55433], - [37.705227, 55.55442], - [37.705386, 55.55442], - [37.705386, 55.55433], - [37.705227, 55.55433] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705227, 55.55442], - [37.705227, 55.55451], - [37.705386, 55.55451], - [37.705386, 55.55442], - [37.705227, 55.55442] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705227, 55.55451], - [37.705227, 55.5546], - [37.705386, 55.5546], - [37.705386, 55.55451], - [37.705227, 55.55451] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705227, 55.5546], - [37.705227, 55.55469], - [37.705386, 55.55469], - [37.705386, 55.5546], - [37.705227, 55.5546] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705227, 55.55469], - [37.705227, 55.55478], - [37.705386, 55.55478], - [37.705386, 55.55469], - [37.705227, 55.55469] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705227, 55.55478], - [37.705227, 55.554869], - [37.705386, 55.554869], - [37.705386, 55.55478], - [37.705227, 55.55478] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705227, 55.554869], - [37.705227, 55.554959], - [37.705386, 55.554959], - [37.705386, 55.554869], - [37.705227, 55.554869] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705227, 55.554959], - [37.705227, 55.555049], - [37.705386, 55.555049], - [37.705386, 55.554959], - [37.705227, 55.554959] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705227, 55.555049], - [37.705227, 55.555139], - [37.705386, 55.555139], - [37.705386, 55.555049], - [37.705227, 55.555049] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705227, 55.555139], - [37.705227, 55.555229], - [37.705386, 55.555229], - [37.705386, 55.555139], - [37.705227, 55.555139] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705386, 55.551722], - [37.705386, 55.551812], - [37.705545, 55.551812], - [37.705545, 55.551722], - [37.705386, 55.551722] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705386, 55.551812], - [37.705386, 55.551902], - [37.705545, 55.551902], - [37.705545, 55.551812], - [37.705386, 55.551812] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705386, 55.551902], - [37.705386, 55.551992], - [37.705545, 55.551992], - [37.705545, 55.551902], - [37.705386, 55.551902] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705386, 55.551992], - [37.705386, 55.552082], - [37.705545, 55.552082], - [37.705545, 55.551992], - [37.705386, 55.551992] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705386, 55.552082], - [37.705386, 55.552171], - [37.705545, 55.552171], - [37.705545, 55.552082], - [37.705386, 55.552082] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705386, 55.552171], - [37.705386, 55.552261], - [37.705545, 55.552261], - [37.705545, 55.552171], - [37.705386, 55.552171] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705386, 55.552261], - [37.705386, 55.552351], - [37.705545, 55.552351], - [37.705545, 55.552261], - [37.705386, 55.552261] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705386, 55.552351], - [37.705386, 55.552441], - [37.705545, 55.552441], - [37.705545, 55.552351], - [37.705386, 55.552351] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705386, 55.552441], - [37.705386, 55.552531], - [37.705545, 55.552531], - [37.705545, 55.552441], - [37.705386, 55.552441] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705386, 55.552531], - [37.705386, 55.552621], - [37.705545, 55.552621], - [37.705545, 55.552531], - [37.705386, 55.552531] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705386, 55.552621], - [37.705386, 55.552711], - [37.705545, 55.552711], - [37.705545, 55.552621], - [37.705386, 55.552621] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705386, 55.552711], - [37.705386, 55.552801], - [37.705545, 55.552801], - [37.705545, 55.552711], - [37.705386, 55.552711] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705386, 55.552801], - [37.705386, 55.552891], - [37.705545, 55.552891], - [37.705545, 55.552801], - [37.705386, 55.552801] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705386, 55.552891], - [37.705386, 55.552981], - [37.705545, 55.552981], - [37.705545, 55.552891], - [37.705386, 55.552891] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705386, 55.552981], - [37.705386, 55.553071], - [37.705545, 55.553071], - [37.705545, 55.552981], - [37.705386, 55.552981] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705386, 55.553071], - [37.705386, 55.553161], - [37.705545, 55.553161], - [37.705545, 55.553071], - [37.705386, 55.553071] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705386, 55.553161], - [37.705386, 55.553251], - [37.705545, 55.553251], - [37.705545, 55.553161], - [37.705386, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705386, 55.553251], - [37.705386, 55.553341], - [37.705545, 55.553341], - [37.705545, 55.553251], - [37.705386, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705386, 55.553341], - [37.705386, 55.553431], - [37.705545, 55.553431], - [37.705545, 55.553341], - [37.705386, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705386, 55.553431], - [37.705386, 55.55352], - [37.705545, 55.55352], - [37.705545, 55.553431], - [37.705386, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705386, 55.55352], - [37.705386, 55.55361], - [37.705545, 55.55361], - [37.705545, 55.55352], - [37.705386, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705386, 55.55361], - [37.705386, 55.5537], - [37.705545, 55.5537], - [37.705545, 55.55361], - [37.705386, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705386, 55.5537], - [37.705386, 55.55379], - [37.705545, 55.55379], - [37.705545, 55.5537], - [37.705386, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705386, 55.55379], - [37.705386, 55.55388], - [37.705545, 55.55388], - [37.705545, 55.55379], - [37.705386, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705386, 55.55388], - [37.705386, 55.55397], - [37.705545, 55.55397], - [37.705545, 55.55388], - [37.705386, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705386, 55.55397], - [37.705386, 55.55406], - [37.705545, 55.55406], - [37.705545, 55.55397], - [37.705386, 55.55397] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705386, 55.55406], - [37.705386, 55.55415], - [37.705545, 55.55415], - [37.705545, 55.55406], - [37.705386, 55.55406] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705386, 55.55415], - [37.705386, 55.55424], - [37.705545, 55.55424], - [37.705545, 55.55415], - [37.705386, 55.55415] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705386, 55.55424], - [37.705386, 55.55433], - [37.705545, 55.55433], - [37.705545, 55.55424], - [37.705386, 55.55424] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705386, 55.55433], - [37.705386, 55.55442], - [37.705545, 55.55442], - [37.705545, 55.55433], - [37.705386, 55.55433] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705386, 55.55442], - [37.705386, 55.55451], - [37.705545, 55.55451], - [37.705545, 55.55442], - [37.705386, 55.55442] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705386, 55.55451], - [37.705386, 55.5546], - [37.705545, 55.5546], - [37.705545, 55.55451], - [37.705386, 55.55451] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705386, 55.5546], - [37.705386, 55.55469], - [37.705545, 55.55469], - [37.705545, 55.5546], - [37.705386, 55.5546] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705386, 55.55469], - [37.705386, 55.55478], - [37.705545, 55.55478], - [37.705545, 55.55469], - [37.705386, 55.55469] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705386, 55.55478], - [37.705386, 55.554869], - [37.705545, 55.554869], - [37.705545, 55.55478], - [37.705386, 55.55478] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705386, 55.554869], - [37.705386, 55.554959], - [37.705545, 55.554959], - [37.705545, 55.554869], - [37.705386, 55.554869] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705386, 55.554959], - [37.705386, 55.555049], - [37.705545, 55.555049], - [37.705545, 55.554959], - [37.705386, 55.554959] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705386, 55.555049], - [37.705386, 55.555139], - [37.705545, 55.555139], - [37.705545, 55.555049], - [37.705386, 55.555049] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705386, 55.555139], - [37.705386, 55.555229], - [37.705545, 55.555229], - [37.705545, 55.555139], - [37.705386, 55.555139] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705386, 55.555229], - [37.705386, 55.555319], - [37.705545, 55.555319], - [37.705545, 55.555229], - [37.705386, 55.555229] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705545, 55.551722], - [37.705545, 55.551812], - [37.705704, 55.551812], - [37.705704, 55.551722], - [37.705545, 55.551722] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705545, 55.551812], - [37.705545, 55.551902], - [37.705704, 55.551902], - [37.705704, 55.551812], - [37.705545, 55.551812] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705545, 55.551902], - [37.705545, 55.551992], - [37.705704, 55.551992], - [37.705704, 55.551902], - [37.705545, 55.551902] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705545, 55.551992], - [37.705545, 55.552082], - [37.705704, 55.552082], - [37.705704, 55.551992], - [37.705545, 55.551992] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705545, 55.552082], - [37.705545, 55.552171], - [37.705704, 55.552171], - [37.705704, 55.552082], - [37.705545, 55.552082] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705545, 55.552171], - [37.705545, 55.552261], - [37.705704, 55.552261], - [37.705704, 55.552171], - [37.705545, 55.552171] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705545, 55.552261], - [37.705545, 55.552351], - [37.705704, 55.552351], - [37.705704, 55.552261], - [37.705545, 55.552261] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705545, 55.552351], - [37.705545, 55.552441], - [37.705704, 55.552441], - [37.705704, 55.552351], - [37.705545, 55.552351] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705545, 55.552441], - [37.705545, 55.552531], - [37.705704, 55.552531], - [37.705704, 55.552441], - [37.705545, 55.552441] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705545, 55.552531], - [37.705545, 55.552621], - [37.705704, 55.552621], - [37.705704, 55.552531], - [37.705545, 55.552531] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705545, 55.552621], - [37.705545, 55.552711], - [37.705704, 55.552711], - [37.705704, 55.552621], - [37.705545, 55.552621] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705545, 55.552711], - [37.705545, 55.552801], - [37.705704, 55.552801], - [37.705704, 55.552711], - [37.705545, 55.552711] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705545, 55.552801], - [37.705545, 55.552891], - [37.705704, 55.552891], - [37.705704, 55.552801], - [37.705545, 55.552801] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705545, 55.552891], - [37.705545, 55.552981], - [37.705704, 55.552981], - [37.705704, 55.552891], - [37.705545, 55.552891] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705545, 55.552981], - [37.705545, 55.553071], - [37.705704, 55.553071], - [37.705704, 55.552981], - [37.705545, 55.552981] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705545, 55.553071], - [37.705545, 55.553161], - [37.705704, 55.553161], - [37.705704, 55.553071], - [37.705545, 55.553071] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705545, 55.553161], - [37.705545, 55.553251], - [37.705704, 55.553251], - [37.705704, 55.553161], - [37.705545, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705545, 55.553251], - [37.705545, 55.553341], - [37.705704, 55.553341], - [37.705704, 55.553251], - [37.705545, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705545, 55.553341], - [37.705545, 55.553431], - [37.705704, 55.553431], - [37.705704, 55.553341], - [37.705545, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705545, 55.553431], - [37.705545, 55.55352], - [37.705704, 55.55352], - [37.705704, 55.553431], - [37.705545, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705545, 55.55352], - [37.705545, 55.55361], - [37.705704, 55.55361], - [37.705704, 55.55352], - [37.705545, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705545, 55.55361], - [37.705545, 55.5537], - [37.705704, 55.5537], - [37.705704, 55.55361], - [37.705545, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705545, 55.5537], - [37.705545, 55.55379], - [37.705704, 55.55379], - [37.705704, 55.5537], - [37.705545, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705545, 55.55379], - [37.705545, 55.55388], - [37.705704, 55.55388], - [37.705704, 55.55379], - [37.705545, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705545, 55.55388], - [37.705545, 55.55397], - [37.705704, 55.55397], - [37.705704, 55.55388], - [37.705545, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705545, 55.55397], - [37.705545, 55.55406], - [37.705704, 55.55406], - [37.705704, 55.55397], - [37.705545, 55.55397] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705545, 55.55406], - [37.705545, 55.55415], - [37.705704, 55.55415], - [37.705704, 55.55406], - [37.705545, 55.55406] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705545, 55.55415], - [37.705545, 55.55424], - [37.705704, 55.55424], - [37.705704, 55.55415], - [37.705545, 55.55415] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705545, 55.55424], - [37.705545, 55.55433], - [37.705704, 55.55433], - [37.705704, 55.55424], - [37.705545, 55.55424] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705545, 55.55433], - [37.705545, 55.55442], - [37.705704, 55.55442], - [37.705704, 55.55433], - [37.705545, 55.55433] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705545, 55.55442], - [37.705545, 55.55451], - [37.705704, 55.55451], - [37.705704, 55.55442], - [37.705545, 55.55442] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705545, 55.55451], - [37.705545, 55.5546], - [37.705704, 55.5546], - [37.705704, 55.55451], - [37.705545, 55.55451] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705545, 55.5546], - [37.705545, 55.55469], - [37.705704, 55.55469], - [37.705704, 55.5546], - [37.705545, 55.5546] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705545, 55.55469], - [37.705545, 55.55478], - [37.705704, 55.55478], - [37.705704, 55.55469], - [37.705545, 55.55469] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705545, 55.55478], - [37.705545, 55.554869], - [37.705704, 55.554869], - [37.705704, 55.55478], - [37.705545, 55.55478] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705545, 55.554869], - [37.705545, 55.554959], - [37.705704, 55.554959], - [37.705704, 55.554869], - [37.705545, 55.554869] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705545, 55.554959], - [37.705545, 55.555049], - [37.705704, 55.555049], - [37.705704, 55.554959], - [37.705545, 55.554959] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705545, 55.555049], - [37.705545, 55.555139], - [37.705704, 55.555139], - [37.705704, 55.555049], - [37.705545, 55.555049] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705545, 55.555139], - [37.705545, 55.555229], - [37.705704, 55.555229], - [37.705704, 55.555139], - [37.705545, 55.555139] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705545, 55.555229], - [37.705545, 55.555319], - [37.705704, 55.555319], - [37.705704, 55.555229], - [37.705545, 55.555229] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705704, 55.551632], - [37.705704, 55.551722], - [37.705863, 55.551722], - [37.705863, 55.551632], - [37.705704, 55.551632] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705704, 55.551722], - [37.705704, 55.551812], - [37.705863, 55.551812], - [37.705863, 55.551722], - [37.705704, 55.551722] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705704, 55.551812], - [37.705704, 55.551902], - [37.705863, 55.551902], - [37.705863, 55.551812], - [37.705704, 55.551812] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705704, 55.551902], - [37.705704, 55.551992], - [37.705863, 55.551992], - [37.705863, 55.551902], - [37.705704, 55.551902] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705704, 55.551992], - [37.705704, 55.552082], - [37.705863, 55.552082], - [37.705863, 55.551992], - [37.705704, 55.551992] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705704, 55.552082], - [37.705704, 55.552171], - [37.705863, 55.552171], - [37.705863, 55.552082], - [37.705704, 55.552082] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705704, 55.552171], - [37.705704, 55.552261], - [37.705863, 55.552261], - [37.705863, 55.552171], - [37.705704, 55.552171] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705704, 55.552261], - [37.705704, 55.552351], - [37.705863, 55.552351], - [37.705863, 55.552261], - [37.705704, 55.552261] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705704, 55.552351], - [37.705704, 55.552441], - [37.705863, 55.552441], - [37.705863, 55.552351], - [37.705704, 55.552351] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705704, 55.552441], - [37.705704, 55.552531], - [37.705863, 55.552531], - [37.705863, 55.552441], - [37.705704, 55.552441] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705704, 55.552531], - [37.705704, 55.552621], - [37.705863, 55.552621], - [37.705863, 55.552531], - [37.705704, 55.552531] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705704, 55.552621], - [37.705704, 55.552711], - [37.705863, 55.552711], - [37.705863, 55.552621], - [37.705704, 55.552621] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705704, 55.552711], - [37.705704, 55.552801], - [37.705863, 55.552801], - [37.705863, 55.552711], - [37.705704, 55.552711] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705704, 55.552801], - [37.705704, 55.552891], - [37.705863, 55.552891], - [37.705863, 55.552801], - [37.705704, 55.552801] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705704, 55.552891], - [37.705704, 55.552981], - [37.705863, 55.552981], - [37.705863, 55.552891], - [37.705704, 55.552891] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705704, 55.552981], - [37.705704, 55.553071], - [37.705863, 55.553071], - [37.705863, 55.552981], - [37.705704, 55.552981] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705704, 55.553071], - [37.705704, 55.553161], - [37.705863, 55.553161], - [37.705863, 55.553071], - [37.705704, 55.553071] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705704, 55.553161], - [37.705704, 55.553251], - [37.705863, 55.553251], - [37.705863, 55.553161], - [37.705704, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705704, 55.553251], - [37.705704, 55.553341], - [37.705863, 55.553341], - [37.705863, 55.553251], - [37.705704, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705704, 55.553341], - [37.705704, 55.553431], - [37.705863, 55.553431], - [37.705863, 55.553341], - [37.705704, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705704, 55.553431], - [37.705704, 55.55352], - [37.705863, 55.55352], - [37.705863, 55.553431], - [37.705704, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705704, 55.55352], - [37.705704, 55.55361], - [37.705863, 55.55361], - [37.705863, 55.55352], - [37.705704, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705704, 55.55361], - [37.705704, 55.5537], - [37.705863, 55.5537], - [37.705863, 55.55361], - [37.705704, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705704, 55.5537], - [37.705704, 55.55379], - [37.705863, 55.55379], - [37.705863, 55.5537], - [37.705704, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705704, 55.55379], - [37.705704, 55.55388], - [37.705863, 55.55388], - [37.705863, 55.55379], - [37.705704, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705704, 55.55388], - [37.705704, 55.55397], - [37.705863, 55.55397], - [37.705863, 55.55388], - [37.705704, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705704, 55.55397], - [37.705704, 55.55406], - [37.705863, 55.55406], - [37.705863, 55.55397], - [37.705704, 55.55397] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705704, 55.55406], - [37.705704, 55.55415], - [37.705863, 55.55415], - [37.705863, 55.55406], - [37.705704, 55.55406] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705704, 55.55415], - [37.705704, 55.55424], - [37.705863, 55.55424], - [37.705863, 55.55415], - [37.705704, 55.55415] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705704, 55.55424], - [37.705704, 55.55433], - [37.705863, 55.55433], - [37.705863, 55.55424], - [37.705704, 55.55424] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705704, 55.55433], - [37.705704, 55.55442], - [37.705863, 55.55442], - [37.705863, 55.55433], - [37.705704, 55.55433] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705704, 55.55442], - [37.705704, 55.55451], - [37.705863, 55.55451], - [37.705863, 55.55442], - [37.705704, 55.55442] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705704, 55.55451], - [37.705704, 55.5546], - [37.705863, 55.5546], - [37.705863, 55.55451], - [37.705704, 55.55451] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705704, 55.5546], - [37.705704, 55.55469], - [37.705863, 55.55469], - [37.705863, 55.5546], - [37.705704, 55.5546] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705704, 55.55469], - [37.705704, 55.55478], - [37.705863, 55.55478], - [37.705863, 55.55469], - [37.705704, 55.55469] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705704, 55.55478], - [37.705704, 55.554869], - [37.705863, 55.554869], - [37.705863, 55.55478], - [37.705704, 55.55478] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705704, 55.554869], - [37.705704, 55.554959], - [37.705863, 55.554959], - [37.705863, 55.554869], - [37.705704, 55.554869] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705704, 55.554959], - [37.705704, 55.555049], - [37.705863, 55.555049], - [37.705863, 55.554959], - [37.705704, 55.554959] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705704, 55.555049], - [37.705704, 55.555139], - [37.705863, 55.555139], - [37.705863, 55.555049], - [37.705704, 55.555049] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705704, 55.555139], - [37.705704, 55.555229], - [37.705863, 55.555229], - [37.705863, 55.555139], - [37.705704, 55.555139] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705704, 55.555229], - [37.705704, 55.555319], - [37.705863, 55.555319], - [37.705863, 55.555229], - [37.705704, 55.555229] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705704, 55.555319], - [37.705704, 55.555409], - [37.705863, 55.555409], - [37.705863, 55.555319], - [37.705704, 55.555319] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705863, 55.551632], - [37.705863, 55.551722], - [37.706022, 55.551722], - [37.706022, 55.551632], - [37.705863, 55.551632] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705863, 55.551722], - [37.705863, 55.551812], - [37.706022, 55.551812], - [37.706022, 55.551722], - [37.705863, 55.551722] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705863, 55.551812], - [37.705863, 55.551902], - [37.706022, 55.551902], - [37.706022, 55.551812], - [37.705863, 55.551812] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705863, 55.551902], - [37.705863, 55.551992], - [37.706022, 55.551992], - [37.706022, 55.551902], - [37.705863, 55.551902] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705863, 55.551992], - [37.705863, 55.552082], - [37.706022, 55.552082], - [37.706022, 55.551992], - [37.705863, 55.551992] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705863, 55.552082], - [37.705863, 55.552171], - [37.706022, 55.552171], - [37.706022, 55.552082], - [37.705863, 55.552082] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705863, 55.552171], - [37.705863, 55.552261], - [37.706022, 55.552261], - [37.706022, 55.552171], - [37.705863, 55.552171] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705863, 55.552261], - [37.705863, 55.552351], - [37.706022, 55.552351], - [37.706022, 55.552261], - [37.705863, 55.552261] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705863, 55.552351], - [37.705863, 55.552441], - [37.706022, 55.552441], - [37.706022, 55.552351], - [37.705863, 55.552351] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705863, 55.552441], - [37.705863, 55.552531], - [37.706022, 55.552531], - [37.706022, 55.552441], - [37.705863, 55.552441] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705863, 55.552531], - [37.705863, 55.552621], - [37.706022, 55.552621], - [37.706022, 55.552531], - [37.705863, 55.552531] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705863, 55.552621], - [37.705863, 55.552711], - [37.706022, 55.552711], - [37.706022, 55.552621], - [37.705863, 55.552621] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705863, 55.552711], - [37.705863, 55.552801], - [37.706022, 55.552801], - [37.706022, 55.552711], - [37.705863, 55.552711] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705863, 55.552801], - [37.705863, 55.552891], - [37.706022, 55.552891], - [37.706022, 55.552801], - [37.705863, 55.552801] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705863, 55.552891], - [37.705863, 55.552981], - [37.706022, 55.552981], - [37.706022, 55.552891], - [37.705863, 55.552891] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705863, 55.552981], - [37.705863, 55.553071], - [37.706022, 55.553071], - [37.706022, 55.552981], - [37.705863, 55.552981] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705863, 55.553071], - [37.705863, 55.553161], - [37.706022, 55.553161], - [37.706022, 55.553071], - [37.705863, 55.553071] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705863, 55.553161], - [37.705863, 55.553251], - [37.706022, 55.553251], - [37.706022, 55.553161], - [37.705863, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705863, 55.553251], - [37.705863, 55.553341], - [37.706022, 55.553341], - [37.706022, 55.553251], - [37.705863, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705863, 55.553341], - [37.705863, 55.553431], - [37.706022, 55.553431], - [37.706022, 55.553341], - [37.705863, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705863, 55.553431], - [37.705863, 55.55352], - [37.706022, 55.55352], - [37.706022, 55.553431], - [37.705863, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705863, 55.55352], - [37.705863, 55.55361], - [37.706022, 55.55361], - [37.706022, 55.55352], - [37.705863, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705863, 55.55361], - [37.705863, 55.5537], - [37.706022, 55.5537], - [37.706022, 55.55361], - [37.705863, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705863, 55.5537], - [37.705863, 55.55379], - [37.706022, 55.55379], - [37.706022, 55.5537], - [37.705863, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705863, 55.55379], - [37.705863, 55.55388], - [37.706022, 55.55388], - [37.706022, 55.55379], - [37.705863, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705863, 55.55388], - [37.705863, 55.55397], - [37.706022, 55.55397], - [37.706022, 55.55388], - [37.705863, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705863, 55.55397], - [37.705863, 55.55406], - [37.706022, 55.55406], - [37.706022, 55.55397], - [37.705863, 55.55397] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705863, 55.55406], - [37.705863, 55.55415], - [37.706022, 55.55415], - [37.706022, 55.55406], - [37.705863, 55.55406] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705863, 55.55415], - [37.705863, 55.55424], - [37.706022, 55.55424], - [37.706022, 55.55415], - [37.705863, 55.55415] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705863, 55.55424], - [37.705863, 55.55433], - [37.706022, 55.55433], - [37.706022, 55.55424], - [37.705863, 55.55424] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705863, 55.55433], - [37.705863, 55.55442], - [37.706022, 55.55442], - [37.706022, 55.55433], - [37.705863, 55.55433] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705863, 55.55442], - [37.705863, 55.55451], - [37.706022, 55.55451], - [37.706022, 55.55442], - [37.705863, 55.55442] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705863, 55.55451], - [37.705863, 55.5546], - [37.706022, 55.5546], - [37.706022, 55.55451], - [37.705863, 55.55451] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705863, 55.5546], - [37.705863, 55.55469], - [37.706022, 55.55469], - [37.706022, 55.5546], - [37.705863, 55.5546] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705863, 55.55469], - [37.705863, 55.55478], - [37.706022, 55.55478], - [37.706022, 55.55469], - [37.705863, 55.55469] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705863, 55.55478], - [37.705863, 55.554869], - [37.706022, 55.554869], - [37.706022, 55.55478], - [37.705863, 55.55478] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705863, 55.554869], - [37.705863, 55.554959], - [37.706022, 55.554959], - [37.706022, 55.554869], - [37.705863, 55.554869] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705863, 55.554959], - [37.705863, 55.555049], - [37.706022, 55.555049], - [37.706022, 55.554959], - [37.705863, 55.554959] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705863, 55.555049], - [37.705863, 55.555139], - [37.706022, 55.555139], - [37.706022, 55.555049], - [37.705863, 55.555049] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705863, 55.555139], - [37.705863, 55.555229], - [37.706022, 55.555229], - [37.706022, 55.555139], - [37.705863, 55.555139] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705863, 55.555229], - [37.705863, 55.555319], - [37.706022, 55.555319], - [37.706022, 55.555229], - [37.705863, 55.555229] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705863, 55.555319], - [37.705863, 55.555409], - [37.706022, 55.555409], - [37.706022, 55.555319], - [37.705863, 55.555319] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706022, 55.551542], - [37.706022, 55.551632], - [37.706181, 55.551632], - [37.706181, 55.551542], - [37.706022, 55.551542] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706022, 55.551632], - [37.706022, 55.551722], - [37.706181, 55.551722], - [37.706181, 55.551632], - [37.706022, 55.551632] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706022, 55.551722], - [37.706022, 55.551812], - [37.706181, 55.551812], - [37.706181, 55.551722], - [37.706022, 55.551722] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706022, 55.551812], - [37.706022, 55.551902], - [37.706181, 55.551902], - [37.706181, 55.551812], - [37.706022, 55.551812] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706022, 55.551902], - [37.706022, 55.551992], - [37.706181, 55.551992], - [37.706181, 55.551902], - [37.706022, 55.551902] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706022, 55.551992], - [37.706022, 55.552082], - [37.706181, 55.552082], - [37.706181, 55.551992], - [37.706022, 55.551992] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706022, 55.552082], - [37.706022, 55.552171], - [37.706181, 55.552171], - [37.706181, 55.552082], - [37.706022, 55.552082] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706022, 55.552171], - [37.706022, 55.552261], - [37.706181, 55.552261], - [37.706181, 55.552171], - [37.706022, 55.552171] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706022, 55.552261], - [37.706022, 55.552351], - [37.706181, 55.552351], - [37.706181, 55.552261], - [37.706022, 55.552261] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706022, 55.552351], - [37.706022, 55.552441], - [37.706181, 55.552441], - [37.706181, 55.552351], - [37.706022, 55.552351] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706022, 55.552441], - [37.706022, 55.552531], - [37.706181, 55.552531], - [37.706181, 55.552441], - [37.706022, 55.552441] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706022, 55.552531], - [37.706022, 55.552621], - [37.706181, 55.552621], - [37.706181, 55.552531], - [37.706022, 55.552531] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706022, 55.552621], - [37.706022, 55.552711], - [37.706181, 55.552711], - [37.706181, 55.552621], - [37.706022, 55.552621] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706022, 55.552711], - [37.706022, 55.552801], - [37.706181, 55.552801], - [37.706181, 55.552711], - [37.706022, 55.552711] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706022, 55.552801], - [37.706022, 55.552891], - [37.706181, 55.552891], - [37.706181, 55.552801], - [37.706022, 55.552801] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706022, 55.552891], - [37.706022, 55.552981], - [37.706181, 55.552981], - [37.706181, 55.552891], - [37.706022, 55.552891] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706022, 55.552981], - [37.706022, 55.553071], - [37.706181, 55.553071], - [37.706181, 55.552981], - [37.706022, 55.552981] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706022, 55.553071], - [37.706022, 55.553161], - [37.706181, 55.553161], - [37.706181, 55.553071], - [37.706022, 55.553071] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706022, 55.553161], - [37.706022, 55.553251], - [37.706181, 55.553251], - [37.706181, 55.553161], - [37.706022, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706022, 55.553251], - [37.706022, 55.553341], - [37.706181, 55.553341], - [37.706181, 55.553251], - [37.706022, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706022, 55.553341], - [37.706022, 55.553431], - [37.706181, 55.553431], - [37.706181, 55.553341], - [37.706022, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706022, 55.553431], - [37.706022, 55.55352], - [37.706181, 55.55352], - [37.706181, 55.553431], - [37.706022, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706022, 55.55352], - [37.706022, 55.55361], - [37.706181, 55.55361], - [37.706181, 55.55352], - [37.706022, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706022, 55.55361], - [37.706022, 55.5537], - [37.706181, 55.5537], - [37.706181, 55.55361], - [37.706022, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706022, 55.5537], - [37.706022, 55.55379], - [37.706181, 55.55379], - [37.706181, 55.5537], - [37.706022, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706022, 55.55379], - [37.706022, 55.55388], - [37.706181, 55.55388], - [37.706181, 55.55379], - [37.706022, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706022, 55.55388], - [37.706022, 55.55397], - [37.706181, 55.55397], - [37.706181, 55.55388], - [37.706022, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706022, 55.55397], - [37.706022, 55.55406], - [37.706181, 55.55406], - [37.706181, 55.55397], - [37.706022, 55.55397] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706022, 55.55406], - [37.706022, 55.55415], - [37.706181, 55.55415], - [37.706181, 55.55406], - [37.706022, 55.55406] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706022, 55.55415], - [37.706022, 55.55424], - [37.706181, 55.55424], - [37.706181, 55.55415], - [37.706022, 55.55415] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706022, 55.55424], - [37.706022, 55.55433], - [37.706181, 55.55433], - [37.706181, 55.55424], - [37.706022, 55.55424] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706022, 55.55433], - [37.706022, 55.55442], - [37.706181, 55.55442], - [37.706181, 55.55433], - [37.706022, 55.55433] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706022, 55.55442], - [37.706022, 55.55451], - [37.706181, 55.55451], - [37.706181, 55.55442], - [37.706022, 55.55442] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706022, 55.55451], - [37.706022, 55.5546], - [37.706181, 55.5546], - [37.706181, 55.55451], - [37.706022, 55.55451] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706022, 55.5546], - [37.706022, 55.55469], - [37.706181, 55.55469], - [37.706181, 55.5546], - [37.706022, 55.5546] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706022, 55.55469], - [37.706022, 55.55478], - [37.706181, 55.55478], - [37.706181, 55.55469], - [37.706022, 55.55469] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706022, 55.55478], - [37.706022, 55.554869], - [37.706181, 55.554869], - [37.706181, 55.55478], - [37.706022, 55.55478] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706022, 55.554869], - [37.706022, 55.554959], - [37.706181, 55.554959], - [37.706181, 55.554869], - [37.706022, 55.554869] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706022, 55.554959], - [37.706022, 55.555049], - [37.706181, 55.555049], - [37.706181, 55.554959], - [37.706022, 55.554959] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706022, 55.555049], - [37.706022, 55.555139], - [37.706181, 55.555139], - [37.706181, 55.555049], - [37.706022, 55.555049] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706022, 55.555139], - [37.706022, 55.555229], - [37.706181, 55.555229], - [37.706181, 55.555139], - [37.706022, 55.555139] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706022, 55.555229], - [37.706022, 55.555319], - [37.706181, 55.555319], - [37.706181, 55.555229], - [37.706022, 55.555229] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706022, 55.555319], - [37.706022, 55.555409], - [37.706181, 55.555409], - [37.706181, 55.555319], - [37.706022, 55.555319] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706022, 55.555409], - [37.706022, 55.555499], - [37.706181, 55.555499], - [37.706181, 55.555409], - [37.706022, 55.555409] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706181, 55.551542], - [37.706181, 55.551632], - [37.70634, 55.551632], - [37.70634, 55.551542], - [37.706181, 55.551542] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706181, 55.551632], - [37.706181, 55.551722], - [37.70634, 55.551722], - [37.70634, 55.551632], - [37.706181, 55.551632] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706181, 55.551722], - [37.706181, 55.551812], - [37.70634, 55.551812], - [37.70634, 55.551722], - [37.706181, 55.551722] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706181, 55.551812], - [37.706181, 55.551902], - [37.70634, 55.551902], - [37.70634, 55.551812], - [37.706181, 55.551812] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706181, 55.551902], - [37.706181, 55.551992], - [37.70634, 55.551992], - [37.70634, 55.551902], - [37.706181, 55.551902] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706181, 55.551992], - [37.706181, 55.552082], - [37.70634, 55.552082], - [37.70634, 55.551992], - [37.706181, 55.551992] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706181, 55.552082], - [37.706181, 55.552171], - [37.70634, 55.552171], - [37.70634, 55.552082], - [37.706181, 55.552082] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706181, 55.552171], - [37.706181, 55.552261], - [37.70634, 55.552261], - [37.70634, 55.552171], - [37.706181, 55.552171] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706181, 55.552261], - [37.706181, 55.552351], - [37.70634, 55.552351], - [37.70634, 55.552261], - [37.706181, 55.552261] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706181, 55.552351], - [37.706181, 55.552441], - [37.70634, 55.552441], - [37.70634, 55.552351], - [37.706181, 55.552351] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706181, 55.552441], - [37.706181, 55.552531], - [37.70634, 55.552531], - [37.70634, 55.552441], - [37.706181, 55.552441] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706181, 55.552531], - [37.706181, 55.552621], - [37.70634, 55.552621], - [37.70634, 55.552531], - [37.706181, 55.552531] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706181, 55.552621], - [37.706181, 55.552711], - [37.70634, 55.552711], - [37.70634, 55.552621], - [37.706181, 55.552621] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706181, 55.552711], - [37.706181, 55.552801], - [37.70634, 55.552801], - [37.70634, 55.552711], - [37.706181, 55.552711] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706181, 55.552801], - [37.706181, 55.552891], - [37.70634, 55.552891], - [37.70634, 55.552801], - [37.706181, 55.552801] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706181, 55.552891], - [37.706181, 55.552981], - [37.70634, 55.552981], - [37.70634, 55.552891], - [37.706181, 55.552891] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706181, 55.552981], - [37.706181, 55.553071], - [37.70634, 55.553071], - [37.70634, 55.552981], - [37.706181, 55.552981] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706181, 55.553071], - [37.706181, 55.553161], - [37.70634, 55.553161], - [37.70634, 55.553071], - [37.706181, 55.553071] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706181, 55.553161], - [37.706181, 55.553251], - [37.70634, 55.553251], - [37.70634, 55.553161], - [37.706181, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706181, 55.553251], - [37.706181, 55.553341], - [37.70634, 55.553341], - [37.70634, 55.553251], - [37.706181, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706181, 55.553341], - [37.706181, 55.553431], - [37.70634, 55.553431], - [37.70634, 55.553341], - [37.706181, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706181, 55.553431], - [37.706181, 55.55352], - [37.70634, 55.55352], - [37.70634, 55.553431], - [37.706181, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706181, 55.55352], - [37.706181, 55.55361], - [37.70634, 55.55361], - [37.70634, 55.55352], - [37.706181, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706181, 55.55361], - [37.706181, 55.5537], - [37.70634, 55.5537], - [37.70634, 55.55361], - [37.706181, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706181, 55.5537], - [37.706181, 55.55379], - [37.70634, 55.55379], - [37.70634, 55.5537], - [37.706181, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706181, 55.55379], - [37.706181, 55.55388], - [37.70634, 55.55388], - [37.70634, 55.55379], - [37.706181, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706181, 55.55388], - [37.706181, 55.55397], - [37.70634, 55.55397], - [37.70634, 55.55388], - [37.706181, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706181, 55.55397], - [37.706181, 55.55406], - [37.70634, 55.55406], - [37.70634, 55.55397], - [37.706181, 55.55397] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706181, 55.55406], - [37.706181, 55.55415], - [37.70634, 55.55415], - [37.70634, 55.55406], - [37.706181, 55.55406] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706181, 55.55415], - [37.706181, 55.55424], - [37.70634, 55.55424], - [37.70634, 55.55415], - [37.706181, 55.55415] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706181, 55.55424], - [37.706181, 55.55433], - [37.70634, 55.55433], - [37.70634, 55.55424], - [37.706181, 55.55424] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706181, 55.55433], - [37.706181, 55.55442], - [37.70634, 55.55442], - [37.70634, 55.55433], - [37.706181, 55.55433] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706181, 55.55442], - [37.706181, 55.55451], - [37.70634, 55.55451], - [37.70634, 55.55442], - [37.706181, 55.55442] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706181, 55.55451], - [37.706181, 55.5546], - [37.70634, 55.5546], - [37.70634, 55.55451], - [37.706181, 55.55451] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706181, 55.5546], - [37.706181, 55.55469], - [37.70634, 55.55469], - [37.70634, 55.5546], - [37.706181, 55.5546] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706181, 55.55469], - [37.706181, 55.55478], - [37.70634, 55.55478], - [37.70634, 55.55469], - [37.706181, 55.55469] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706181, 55.55478], - [37.706181, 55.554869], - [37.70634, 55.554869], - [37.70634, 55.55478], - [37.706181, 55.55478] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706181, 55.554869], - [37.706181, 55.554959], - [37.70634, 55.554959], - [37.70634, 55.554869], - [37.706181, 55.554869] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706181, 55.554959], - [37.706181, 55.555049], - [37.70634, 55.555049], - [37.70634, 55.554959], - [37.706181, 55.554959] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706181, 55.555049], - [37.706181, 55.555139], - [37.70634, 55.555139], - [37.70634, 55.555049], - [37.706181, 55.555049] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706181, 55.555139], - [37.706181, 55.555229], - [37.70634, 55.555229], - [37.70634, 55.555139], - [37.706181, 55.555139] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706181, 55.555229], - [37.706181, 55.555319], - [37.70634, 55.555319], - [37.70634, 55.555229], - [37.706181, 55.555229] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706181, 55.555319], - [37.706181, 55.555409], - [37.70634, 55.555409], - [37.70634, 55.555319], - [37.706181, 55.555319] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706181, 55.555409], - [37.706181, 55.555499], - [37.70634, 55.555499], - [37.70634, 55.555409], - [37.706181, 55.555409] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70634, 55.551542], - [37.70634, 55.551632], - [37.706499, 55.551632], - [37.706499, 55.551542], - [37.70634, 55.551542] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70634, 55.551632], - [37.70634, 55.551722], - [37.706499, 55.551722], - [37.706499, 55.551632], - [37.70634, 55.551632] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70634, 55.551722], - [37.70634, 55.551812], - [37.706499, 55.551812], - [37.706499, 55.551722], - [37.70634, 55.551722] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70634, 55.551812], - [37.70634, 55.551902], - [37.706499, 55.551902], - [37.706499, 55.551812], - [37.70634, 55.551812] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70634, 55.551902], - [37.70634, 55.551992], - [37.706499, 55.551992], - [37.706499, 55.551902], - [37.70634, 55.551902] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70634, 55.551992], - [37.70634, 55.552082], - [37.706499, 55.552082], - [37.706499, 55.551992], - [37.70634, 55.551992] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70634, 55.552082], - [37.70634, 55.552171], - [37.706499, 55.552171], - [37.706499, 55.552082], - [37.70634, 55.552082] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70634, 55.552171], - [37.70634, 55.552261], - [37.706499, 55.552261], - [37.706499, 55.552171], - [37.70634, 55.552171] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70634, 55.552261], - [37.70634, 55.552351], - [37.706499, 55.552351], - [37.706499, 55.552261], - [37.70634, 55.552261] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70634, 55.552351], - [37.70634, 55.552441], - [37.706499, 55.552441], - [37.706499, 55.552351], - [37.70634, 55.552351] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70634, 55.552441], - [37.70634, 55.552531], - [37.706499, 55.552531], - [37.706499, 55.552441], - [37.70634, 55.552441] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70634, 55.552531], - [37.70634, 55.552621], - [37.706499, 55.552621], - [37.706499, 55.552531], - [37.70634, 55.552531] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70634, 55.552621], - [37.70634, 55.552711], - [37.706499, 55.552711], - [37.706499, 55.552621], - [37.70634, 55.552621] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70634, 55.552711], - [37.70634, 55.552801], - [37.706499, 55.552801], - [37.706499, 55.552711], - [37.70634, 55.552711] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70634, 55.552801], - [37.70634, 55.552891], - [37.706499, 55.552891], - [37.706499, 55.552801], - [37.70634, 55.552801] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70634, 55.552891], - [37.70634, 55.552981], - [37.706499, 55.552981], - [37.706499, 55.552891], - [37.70634, 55.552891] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70634, 55.552981], - [37.70634, 55.553071], - [37.706499, 55.553071], - [37.706499, 55.552981], - [37.70634, 55.552981] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70634, 55.553071], - [37.70634, 55.553161], - [37.706499, 55.553161], - [37.706499, 55.553071], - [37.70634, 55.553071] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70634, 55.553161], - [37.70634, 55.553251], - [37.706499, 55.553251], - [37.706499, 55.553161], - [37.70634, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70634, 55.553251], - [37.70634, 55.553341], - [37.706499, 55.553341], - [37.706499, 55.553251], - [37.70634, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70634, 55.553341], - [37.70634, 55.553431], - [37.706499, 55.553431], - [37.706499, 55.553341], - [37.70634, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70634, 55.553431], - [37.70634, 55.55352], - [37.706499, 55.55352], - [37.706499, 55.553431], - [37.70634, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70634, 55.55352], - [37.70634, 55.55361], - [37.706499, 55.55361], - [37.706499, 55.55352], - [37.70634, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70634, 55.55361], - [37.70634, 55.5537], - [37.706499, 55.5537], - [37.706499, 55.55361], - [37.70634, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70634, 55.5537], - [37.70634, 55.55379], - [37.706499, 55.55379], - [37.706499, 55.5537], - [37.70634, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70634, 55.55379], - [37.70634, 55.55388], - [37.706499, 55.55388], - [37.706499, 55.55379], - [37.70634, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70634, 55.55388], - [37.70634, 55.55397], - [37.706499, 55.55397], - [37.706499, 55.55388], - [37.70634, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70634, 55.55397], - [37.70634, 55.55406], - [37.706499, 55.55406], - [37.706499, 55.55397], - [37.70634, 55.55397] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70634, 55.55406], - [37.70634, 55.55415], - [37.706499, 55.55415], - [37.706499, 55.55406], - [37.70634, 55.55406] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70634, 55.55415], - [37.70634, 55.55424], - [37.706499, 55.55424], - [37.706499, 55.55415], - [37.70634, 55.55415] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70634, 55.55424], - [37.70634, 55.55433], - [37.706499, 55.55433], - [37.706499, 55.55424], - [37.70634, 55.55424] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70634, 55.55433], - [37.70634, 55.55442], - [37.706499, 55.55442], - [37.706499, 55.55433], - [37.70634, 55.55433] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70634, 55.55442], - [37.70634, 55.55451], - [37.706499, 55.55451], - [37.706499, 55.55442], - [37.70634, 55.55442] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70634, 55.55451], - [37.70634, 55.5546], - [37.706499, 55.5546], - [37.706499, 55.55451], - [37.70634, 55.55451] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70634, 55.5546], - [37.70634, 55.55469], - [37.706499, 55.55469], - [37.706499, 55.5546], - [37.70634, 55.5546] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70634, 55.55469], - [37.70634, 55.55478], - [37.706499, 55.55478], - [37.706499, 55.55469], - [37.70634, 55.55469] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70634, 55.55478], - [37.70634, 55.554869], - [37.706499, 55.554869], - [37.706499, 55.55478], - [37.70634, 55.55478] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70634, 55.554869], - [37.70634, 55.554959], - [37.706499, 55.554959], - [37.706499, 55.554869], - [37.70634, 55.554869] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70634, 55.554959], - [37.70634, 55.555049], - [37.706499, 55.555049], - [37.706499, 55.554959], - [37.70634, 55.554959] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70634, 55.555049], - [37.70634, 55.555139], - [37.706499, 55.555139], - [37.706499, 55.555049], - [37.70634, 55.555049] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70634, 55.555139], - [37.70634, 55.555229], - [37.706499, 55.555229], - [37.706499, 55.555139], - [37.70634, 55.555139] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70634, 55.555229], - [37.70634, 55.555319], - [37.706499, 55.555319], - [37.706499, 55.555229], - [37.70634, 55.555229] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70634, 55.555319], - [37.70634, 55.555409], - [37.706499, 55.555409], - [37.706499, 55.555319], - [37.70634, 55.555319] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70634, 55.555409], - [37.70634, 55.555499], - [37.706499, 55.555499], - [37.706499, 55.555409], - [37.70634, 55.555409] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70634, 55.555499], - [37.70634, 55.555589], - [37.706499, 55.555589], - [37.706499, 55.555499], - [37.70634, 55.555499] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706499, 55.551542], - [37.706499, 55.551632], - [37.706658, 55.551632], - [37.706658, 55.551542], - [37.706499, 55.551542] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706499, 55.551632], - [37.706499, 55.551722], - [37.706658, 55.551722], - [37.706658, 55.551632], - [37.706499, 55.551632] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706499, 55.551722], - [37.706499, 55.551812], - [37.706658, 55.551812], - [37.706658, 55.551722], - [37.706499, 55.551722] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706499, 55.551812], - [37.706499, 55.551902], - [37.706658, 55.551902], - [37.706658, 55.551812], - [37.706499, 55.551812] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706499, 55.551902], - [37.706499, 55.551992], - [37.706658, 55.551992], - [37.706658, 55.551902], - [37.706499, 55.551902] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706499, 55.551992], - [37.706499, 55.552082], - [37.706658, 55.552082], - [37.706658, 55.551992], - [37.706499, 55.551992] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706499, 55.552082], - [37.706499, 55.552171], - [37.706658, 55.552171], - [37.706658, 55.552082], - [37.706499, 55.552082] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706499, 55.552171], - [37.706499, 55.552261], - [37.706658, 55.552261], - [37.706658, 55.552171], - [37.706499, 55.552171] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706499, 55.552261], - [37.706499, 55.552351], - [37.706658, 55.552351], - [37.706658, 55.552261], - [37.706499, 55.552261] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706499, 55.552351], - [37.706499, 55.552441], - [37.706658, 55.552441], - [37.706658, 55.552351], - [37.706499, 55.552351] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706499, 55.552441], - [37.706499, 55.552531], - [37.706658, 55.552531], - [37.706658, 55.552441], - [37.706499, 55.552441] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706499, 55.552531], - [37.706499, 55.552621], - [37.706658, 55.552621], - [37.706658, 55.552531], - [37.706499, 55.552531] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706499, 55.552621], - [37.706499, 55.552711], - [37.706658, 55.552711], - [37.706658, 55.552621], - [37.706499, 55.552621] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706499, 55.552711], - [37.706499, 55.552801], - [37.706658, 55.552801], - [37.706658, 55.552711], - [37.706499, 55.552711] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706499, 55.552801], - [37.706499, 55.552891], - [37.706658, 55.552891], - [37.706658, 55.552801], - [37.706499, 55.552801] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706499, 55.552891], - [37.706499, 55.552981], - [37.706658, 55.552981], - [37.706658, 55.552891], - [37.706499, 55.552891] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706499, 55.552981], - [37.706499, 55.553071], - [37.706658, 55.553071], - [37.706658, 55.552981], - [37.706499, 55.552981] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706499, 55.553071], - [37.706499, 55.553161], - [37.706658, 55.553161], - [37.706658, 55.553071], - [37.706499, 55.553071] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706499, 55.553161], - [37.706499, 55.553251], - [37.706658, 55.553251], - [37.706658, 55.553161], - [37.706499, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706499, 55.553251], - [37.706499, 55.553341], - [37.706658, 55.553341], - [37.706658, 55.553251], - [37.706499, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706499, 55.553341], - [37.706499, 55.553431], - [37.706658, 55.553431], - [37.706658, 55.553341], - [37.706499, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706499, 55.553431], - [37.706499, 55.55352], - [37.706658, 55.55352], - [37.706658, 55.553431], - [37.706499, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706499, 55.55352], - [37.706499, 55.55361], - [37.706658, 55.55361], - [37.706658, 55.55352], - [37.706499, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706499, 55.55361], - [37.706499, 55.5537], - [37.706658, 55.5537], - [37.706658, 55.55361], - [37.706499, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706499, 55.5537], - [37.706499, 55.55379], - [37.706658, 55.55379], - [37.706658, 55.5537], - [37.706499, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706499, 55.55379], - [37.706499, 55.55388], - [37.706658, 55.55388], - [37.706658, 55.55379], - [37.706499, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706499, 55.55388], - [37.706499, 55.55397], - [37.706658, 55.55397], - [37.706658, 55.55388], - [37.706499, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706499, 55.55397], - [37.706499, 55.55406], - [37.706658, 55.55406], - [37.706658, 55.55397], - [37.706499, 55.55397] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706499, 55.55406], - [37.706499, 55.55415], - [37.706658, 55.55415], - [37.706658, 55.55406], - [37.706499, 55.55406] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706499, 55.55415], - [37.706499, 55.55424], - [37.706658, 55.55424], - [37.706658, 55.55415], - [37.706499, 55.55415] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706499, 55.55424], - [37.706499, 55.55433], - [37.706658, 55.55433], - [37.706658, 55.55424], - [37.706499, 55.55424] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706499, 55.55433], - [37.706499, 55.55442], - [37.706658, 55.55442], - [37.706658, 55.55433], - [37.706499, 55.55433] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706499, 55.55442], - [37.706499, 55.55451], - [37.706658, 55.55451], - [37.706658, 55.55442], - [37.706499, 55.55442] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706499, 55.55451], - [37.706499, 55.5546], - [37.706658, 55.5546], - [37.706658, 55.55451], - [37.706499, 55.55451] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706499, 55.5546], - [37.706499, 55.55469], - [37.706658, 55.55469], - [37.706658, 55.5546], - [37.706499, 55.5546] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706499, 55.55469], - [37.706499, 55.55478], - [37.706658, 55.55478], - [37.706658, 55.55469], - [37.706499, 55.55469] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706499, 55.55478], - [37.706499, 55.554869], - [37.706658, 55.554869], - [37.706658, 55.55478], - [37.706499, 55.55478] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706499, 55.554869], - [37.706499, 55.554959], - [37.706658, 55.554959], - [37.706658, 55.554869], - [37.706499, 55.554869] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706499, 55.554959], - [37.706499, 55.555049], - [37.706658, 55.555049], - [37.706658, 55.554959], - [37.706499, 55.554959] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706499, 55.555049], - [37.706499, 55.555139], - [37.706658, 55.555139], - [37.706658, 55.555049], - [37.706499, 55.555049] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706499, 55.555139], - [37.706499, 55.555229], - [37.706658, 55.555229], - [37.706658, 55.555139], - [37.706499, 55.555139] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706499, 55.555229], - [37.706499, 55.555319], - [37.706658, 55.555319], - [37.706658, 55.555229], - [37.706499, 55.555229] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706499, 55.555319], - [37.706499, 55.555409], - [37.706658, 55.555409], - [37.706658, 55.555319], - [37.706499, 55.555319] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706499, 55.555409], - [37.706499, 55.555499], - [37.706658, 55.555499], - [37.706658, 55.555409], - [37.706499, 55.555409] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706499, 55.555499], - [37.706499, 55.555589], - [37.706658, 55.555589], - [37.706658, 55.555499], - [37.706499, 55.555499] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706658, 55.551632], - [37.706658, 55.551722], - [37.706817, 55.551722], - [37.706817, 55.551632], - [37.706658, 55.551632] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706658, 55.551722], - [37.706658, 55.551812], - [37.706817, 55.551812], - [37.706817, 55.551722], - [37.706658, 55.551722] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706658, 55.551812], - [37.706658, 55.551902], - [37.706817, 55.551902], - [37.706817, 55.551812], - [37.706658, 55.551812] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706658, 55.551902], - [37.706658, 55.551992], - [37.706817, 55.551992], - [37.706817, 55.551902], - [37.706658, 55.551902] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706658, 55.551992], - [37.706658, 55.552082], - [37.706817, 55.552082], - [37.706817, 55.551992], - [37.706658, 55.551992] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706658, 55.552082], - [37.706658, 55.552171], - [37.706817, 55.552171], - [37.706817, 55.552082], - [37.706658, 55.552082] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706658, 55.552171], - [37.706658, 55.552261], - [37.706817, 55.552261], - [37.706817, 55.552171], - [37.706658, 55.552171] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706658, 55.552261], - [37.706658, 55.552351], - [37.706817, 55.552351], - [37.706817, 55.552261], - [37.706658, 55.552261] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706658, 55.552351], - [37.706658, 55.552441], - [37.706817, 55.552441], - [37.706817, 55.552351], - [37.706658, 55.552351] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706658, 55.552441], - [37.706658, 55.552531], - [37.706817, 55.552531], - [37.706817, 55.552441], - [37.706658, 55.552441] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706658, 55.552531], - [37.706658, 55.552621], - [37.706817, 55.552621], - [37.706817, 55.552531], - [37.706658, 55.552531] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706658, 55.552621], - [37.706658, 55.552711], - [37.706817, 55.552711], - [37.706817, 55.552621], - [37.706658, 55.552621] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706658, 55.552711], - [37.706658, 55.552801], - [37.706817, 55.552801], - [37.706817, 55.552711], - [37.706658, 55.552711] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706658, 55.552801], - [37.706658, 55.552891], - [37.706817, 55.552891], - [37.706817, 55.552801], - [37.706658, 55.552801] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706658, 55.552891], - [37.706658, 55.552981], - [37.706817, 55.552981], - [37.706817, 55.552891], - [37.706658, 55.552891] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706658, 55.552981], - [37.706658, 55.553071], - [37.706817, 55.553071], - [37.706817, 55.552981], - [37.706658, 55.552981] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706658, 55.553071], - [37.706658, 55.553161], - [37.706817, 55.553161], - [37.706817, 55.553071], - [37.706658, 55.553071] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706658, 55.553161], - [37.706658, 55.553251], - [37.706817, 55.553251], - [37.706817, 55.553161], - [37.706658, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706658, 55.553251], - [37.706658, 55.553341], - [37.706817, 55.553341], - [37.706817, 55.553251], - [37.706658, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706658, 55.553341], - [37.706658, 55.553431], - [37.706817, 55.553431], - [37.706817, 55.553341], - [37.706658, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706658, 55.553431], - [37.706658, 55.55352], - [37.706817, 55.55352], - [37.706817, 55.553431], - [37.706658, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706658, 55.55352], - [37.706658, 55.55361], - [37.706817, 55.55361], - [37.706817, 55.55352], - [37.706658, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706658, 55.55361], - [37.706658, 55.5537], - [37.706817, 55.5537], - [37.706817, 55.55361], - [37.706658, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706658, 55.5537], - [37.706658, 55.55379], - [37.706817, 55.55379], - [37.706817, 55.5537], - [37.706658, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706658, 55.55379], - [37.706658, 55.55388], - [37.706817, 55.55388], - [37.706817, 55.55379], - [37.706658, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706658, 55.55388], - [37.706658, 55.55397], - [37.706817, 55.55397], - [37.706817, 55.55388], - [37.706658, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706658, 55.55397], - [37.706658, 55.55406], - [37.706817, 55.55406], - [37.706817, 55.55397], - [37.706658, 55.55397] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706658, 55.55406], - [37.706658, 55.55415], - [37.706817, 55.55415], - [37.706817, 55.55406], - [37.706658, 55.55406] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706658, 55.55415], - [37.706658, 55.55424], - [37.706817, 55.55424], - [37.706817, 55.55415], - [37.706658, 55.55415] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706658, 55.55424], - [37.706658, 55.55433], - [37.706817, 55.55433], - [37.706817, 55.55424], - [37.706658, 55.55424] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706658, 55.55433], - [37.706658, 55.55442], - [37.706817, 55.55442], - [37.706817, 55.55433], - [37.706658, 55.55433] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706658, 55.55442], - [37.706658, 55.55451], - [37.706817, 55.55451], - [37.706817, 55.55442], - [37.706658, 55.55442] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706658, 55.55451], - [37.706658, 55.5546], - [37.706817, 55.5546], - [37.706817, 55.55451], - [37.706658, 55.55451] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706658, 55.5546], - [37.706658, 55.55469], - [37.706817, 55.55469], - [37.706817, 55.5546], - [37.706658, 55.5546] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706658, 55.55469], - [37.706658, 55.55478], - [37.706817, 55.55478], - [37.706817, 55.55469], - [37.706658, 55.55469] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706658, 55.55478], - [37.706658, 55.554869], - [37.706817, 55.554869], - [37.706817, 55.55478], - [37.706658, 55.55478] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706658, 55.554869], - [37.706658, 55.554959], - [37.706817, 55.554959], - [37.706817, 55.554869], - [37.706658, 55.554869] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706658, 55.554959], - [37.706658, 55.555049], - [37.706817, 55.555049], - [37.706817, 55.554959], - [37.706658, 55.554959] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706658, 55.555049], - [37.706658, 55.555139], - [37.706817, 55.555139], - [37.706817, 55.555049], - [37.706658, 55.555049] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706658, 55.555139], - [37.706658, 55.555229], - [37.706817, 55.555229], - [37.706817, 55.555139], - [37.706658, 55.555139] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706658, 55.555229], - [37.706658, 55.555319], - [37.706817, 55.555319], - [37.706817, 55.555229], - [37.706658, 55.555229] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706658, 55.555319], - [37.706658, 55.555409], - [37.706817, 55.555409], - [37.706817, 55.555319], - [37.706658, 55.555319] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706658, 55.555409], - [37.706658, 55.555499], - [37.706817, 55.555499], - [37.706817, 55.555409], - [37.706658, 55.555409] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706658, 55.555499], - [37.706658, 55.555589], - [37.706817, 55.555589], - [37.706817, 55.555499], - [37.706658, 55.555499] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706658, 55.555589], - [37.706658, 55.555679], - [37.706817, 55.555679], - [37.706817, 55.555589], - [37.706658, 55.555589] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706817, 55.551812], - [37.706817, 55.551902], - [37.706976, 55.551902], - [37.706976, 55.551812], - [37.706817, 55.551812] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706817, 55.551902], - [37.706817, 55.551992], - [37.706976, 55.551992], - [37.706976, 55.551902], - [37.706817, 55.551902] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706817, 55.551992], - [37.706817, 55.552082], - [37.706976, 55.552082], - [37.706976, 55.551992], - [37.706817, 55.551992] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706817, 55.552082], - [37.706817, 55.552171], - [37.706976, 55.552171], - [37.706976, 55.552082], - [37.706817, 55.552082] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706817, 55.552171], - [37.706817, 55.552261], - [37.706976, 55.552261], - [37.706976, 55.552171], - [37.706817, 55.552171] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706817, 55.552261], - [37.706817, 55.552351], - [37.706976, 55.552351], - [37.706976, 55.552261], - [37.706817, 55.552261] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706817, 55.552351], - [37.706817, 55.552441], - [37.706976, 55.552441], - [37.706976, 55.552351], - [37.706817, 55.552351] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706817, 55.552441], - [37.706817, 55.552531], - [37.706976, 55.552531], - [37.706976, 55.552441], - [37.706817, 55.552441] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706817, 55.552531], - [37.706817, 55.552621], - [37.706976, 55.552621], - [37.706976, 55.552531], - [37.706817, 55.552531] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706817, 55.552621], - [37.706817, 55.552711], - [37.706976, 55.552711], - [37.706976, 55.552621], - [37.706817, 55.552621] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706817, 55.552711], - [37.706817, 55.552801], - [37.706976, 55.552801], - [37.706976, 55.552711], - [37.706817, 55.552711] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706817, 55.552801], - [37.706817, 55.552891], - [37.706976, 55.552891], - [37.706976, 55.552801], - [37.706817, 55.552801] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706817, 55.552891], - [37.706817, 55.552981], - [37.706976, 55.552981], - [37.706976, 55.552891], - [37.706817, 55.552891] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706817, 55.552981], - [37.706817, 55.553071], - [37.706976, 55.553071], - [37.706976, 55.552981], - [37.706817, 55.552981] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706817, 55.553071], - [37.706817, 55.553161], - [37.706976, 55.553161], - [37.706976, 55.553071], - [37.706817, 55.553071] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706817, 55.553161], - [37.706817, 55.553251], - [37.706976, 55.553251], - [37.706976, 55.553161], - [37.706817, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706817, 55.553251], - [37.706817, 55.553341], - [37.706976, 55.553341], - [37.706976, 55.553251], - [37.706817, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706817, 55.553341], - [37.706817, 55.553431], - [37.706976, 55.553431], - [37.706976, 55.553341], - [37.706817, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706817, 55.553431], - [37.706817, 55.55352], - [37.706976, 55.55352], - [37.706976, 55.553431], - [37.706817, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706817, 55.55352], - [37.706817, 55.55361], - [37.706976, 55.55361], - [37.706976, 55.55352], - [37.706817, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706817, 55.55361], - [37.706817, 55.5537], - [37.706976, 55.5537], - [37.706976, 55.55361], - [37.706817, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706817, 55.5537], - [37.706817, 55.55379], - [37.706976, 55.55379], - [37.706976, 55.5537], - [37.706817, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706817, 55.55379], - [37.706817, 55.55388], - [37.706976, 55.55388], - [37.706976, 55.55379], - [37.706817, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706817, 55.55388], - [37.706817, 55.55397], - [37.706976, 55.55397], - [37.706976, 55.55388], - [37.706817, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706817, 55.55397], - [37.706817, 55.55406], - [37.706976, 55.55406], - [37.706976, 55.55397], - [37.706817, 55.55397] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706817, 55.55406], - [37.706817, 55.55415], - [37.706976, 55.55415], - [37.706976, 55.55406], - [37.706817, 55.55406] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706817, 55.55415], - [37.706817, 55.55424], - [37.706976, 55.55424], - [37.706976, 55.55415], - [37.706817, 55.55415] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706817, 55.55424], - [37.706817, 55.55433], - [37.706976, 55.55433], - [37.706976, 55.55424], - [37.706817, 55.55424] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706817, 55.55433], - [37.706817, 55.55442], - [37.706976, 55.55442], - [37.706976, 55.55433], - [37.706817, 55.55433] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706817, 55.55442], - [37.706817, 55.55451], - [37.706976, 55.55451], - [37.706976, 55.55442], - [37.706817, 55.55442] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706817, 55.55451], - [37.706817, 55.5546], - [37.706976, 55.5546], - [37.706976, 55.55451], - [37.706817, 55.55451] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706817, 55.5546], - [37.706817, 55.55469], - [37.706976, 55.55469], - [37.706976, 55.5546], - [37.706817, 55.5546] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706817, 55.55469], - [37.706817, 55.55478], - [37.706976, 55.55478], - [37.706976, 55.55469], - [37.706817, 55.55469] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706817, 55.55478], - [37.706817, 55.554869], - [37.706976, 55.554869], - [37.706976, 55.55478], - [37.706817, 55.55478] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706817, 55.554869], - [37.706817, 55.554959], - [37.706976, 55.554959], - [37.706976, 55.554869], - [37.706817, 55.554869] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706817, 55.554959], - [37.706817, 55.555049], - [37.706976, 55.555049], - [37.706976, 55.554959], - [37.706817, 55.554959] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706817, 55.555049], - [37.706817, 55.555139], - [37.706976, 55.555139], - [37.706976, 55.555049], - [37.706817, 55.555049] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706817, 55.555139], - [37.706817, 55.555229], - [37.706976, 55.555229], - [37.706976, 55.555139], - [37.706817, 55.555139] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706817, 55.555229], - [37.706817, 55.555319], - [37.706976, 55.555319], - [37.706976, 55.555229], - [37.706817, 55.555229] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706817, 55.555319], - [37.706817, 55.555409], - [37.706976, 55.555409], - [37.706976, 55.555319], - [37.706817, 55.555319] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706817, 55.555409], - [37.706817, 55.555499], - [37.706976, 55.555499], - [37.706976, 55.555409], - [37.706817, 55.555409] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706817, 55.555499], - [37.706817, 55.555589], - [37.706976, 55.555589], - [37.706976, 55.555499], - [37.706817, 55.555499] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706817, 55.555589], - [37.706817, 55.555679], - [37.706976, 55.555679], - [37.706976, 55.555589], - [37.706817, 55.555589] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706976, 55.551992], - [37.706976, 55.552082], - [37.707135, 55.552082], - [37.707135, 55.551992], - [37.706976, 55.551992] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706976, 55.552082], - [37.706976, 55.552171], - [37.707135, 55.552171], - [37.707135, 55.552082], - [37.706976, 55.552082] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706976, 55.552171], - [37.706976, 55.552261], - [37.707135, 55.552261], - [37.707135, 55.552171], - [37.706976, 55.552171] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706976, 55.552261], - [37.706976, 55.552351], - [37.707135, 55.552351], - [37.707135, 55.552261], - [37.706976, 55.552261] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706976, 55.552351], - [37.706976, 55.552441], - [37.707135, 55.552441], - [37.707135, 55.552351], - [37.706976, 55.552351] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706976, 55.552441], - [37.706976, 55.552531], - [37.707135, 55.552531], - [37.707135, 55.552441], - [37.706976, 55.552441] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706976, 55.552531], - [37.706976, 55.552621], - [37.707135, 55.552621], - [37.707135, 55.552531], - [37.706976, 55.552531] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706976, 55.552621], - [37.706976, 55.552711], - [37.707135, 55.552711], - [37.707135, 55.552621], - [37.706976, 55.552621] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706976, 55.552711], - [37.706976, 55.552801], - [37.707135, 55.552801], - [37.707135, 55.552711], - [37.706976, 55.552711] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706976, 55.552801], - [37.706976, 55.552891], - [37.707135, 55.552891], - [37.707135, 55.552801], - [37.706976, 55.552801] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706976, 55.552891], - [37.706976, 55.552981], - [37.707135, 55.552981], - [37.707135, 55.552891], - [37.706976, 55.552891] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706976, 55.552981], - [37.706976, 55.553071], - [37.707135, 55.553071], - [37.707135, 55.552981], - [37.706976, 55.552981] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706976, 55.553071], - [37.706976, 55.553161], - [37.707135, 55.553161], - [37.707135, 55.553071], - [37.706976, 55.553071] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706976, 55.553161], - [37.706976, 55.553251], - [37.707135, 55.553251], - [37.707135, 55.553161], - [37.706976, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706976, 55.553251], - [37.706976, 55.553341], - [37.707135, 55.553341], - [37.707135, 55.553251], - [37.706976, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706976, 55.553341], - [37.706976, 55.553431], - [37.707135, 55.553431], - [37.707135, 55.553341], - [37.706976, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706976, 55.553431], - [37.706976, 55.55352], - [37.707135, 55.55352], - [37.707135, 55.553431], - [37.706976, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706976, 55.55352], - [37.706976, 55.55361], - [37.707135, 55.55361], - [37.707135, 55.55352], - [37.706976, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706976, 55.55361], - [37.706976, 55.5537], - [37.707135, 55.5537], - [37.707135, 55.55361], - [37.706976, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706976, 55.5537], - [37.706976, 55.55379], - [37.707135, 55.55379], - [37.707135, 55.5537], - [37.706976, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706976, 55.55379], - [37.706976, 55.55388], - [37.707135, 55.55388], - [37.707135, 55.55379], - [37.706976, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706976, 55.55388], - [37.706976, 55.55397], - [37.707135, 55.55397], - [37.707135, 55.55388], - [37.706976, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706976, 55.55397], - [37.706976, 55.55406], - [37.707135, 55.55406], - [37.707135, 55.55397], - [37.706976, 55.55397] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706976, 55.55406], - [37.706976, 55.55415], - [37.707135, 55.55415], - [37.707135, 55.55406], - [37.706976, 55.55406] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706976, 55.55415], - [37.706976, 55.55424], - [37.707135, 55.55424], - [37.707135, 55.55415], - [37.706976, 55.55415] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706976, 55.55424], - [37.706976, 55.55433], - [37.707135, 55.55433], - [37.707135, 55.55424], - [37.706976, 55.55424] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706976, 55.55433], - [37.706976, 55.55442], - [37.707135, 55.55442], - [37.707135, 55.55433], - [37.706976, 55.55433] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706976, 55.55442], - [37.706976, 55.55451], - [37.707135, 55.55451], - [37.707135, 55.55442], - [37.706976, 55.55442] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706976, 55.55451], - [37.706976, 55.5546], - [37.707135, 55.5546], - [37.707135, 55.55451], - [37.706976, 55.55451] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706976, 55.5546], - [37.706976, 55.55469], - [37.707135, 55.55469], - [37.707135, 55.5546], - [37.706976, 55.5546] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706976, 55.55469], - [37.706976, 55.55478], - [37.707135, 55.55478], - [37.707135, 55.55469], - [37.706976, 55.55469] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706976, 55.55478], - [37.706976, 55.554869], - [37.707135, 55.554869], - [37.707135, 55.55478], - [37.706976, 55.55478] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706976, 55.554869], - [37.706976, 55.554959], - [37.707135, 55.554959], - [37.707135, 55.554869], - [37.706976, 55.554869] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706976, 55.554959], - [37.706976, 55.555049], - [37.707135, 55.555049], - [37.707135, 55.554959], - [37.706976, 55.554959] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706976, 55.555049], - [37.706976, 55.555139], - [37.707135, 55.555139], - [37.707135, 55.555049], - [37.706976, 55.555049] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706976, 55.555139], - [37.706976, 55.555229], - [37.707135, 55.555229], - [37.707135, 55.555139], - [37.706976, 55.555139] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706976, 55.555229], - [37.706976, 55.555319], - [37.707135, 55.555319], - [37.707135, 55.555229], - [37.706976, 55.555229] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706976, 55.555319], - [37.706976, 55.555409], - [37.707135, 55.555409], - [37.707135, 55.555319], - [37.706976, 55.555319] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706976, 55.555409], - [37.706976, 55.555499], - [37.707135, 55.555499], - [37.707135, 55.555409], - [37.706976, 55.555409] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706976, 55.555499], - [37.706976, 55.555589], - [37.707135, 55.555589], - [37.707135, 55.555499], - [37.706976, 55.555499] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706976, 55.555589], - [37.706976, 55.555679], - [37.707135, 55.555679], - [37.707135, 55.555589], - [37.706976, 55.555589] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.706976, 55.555679], - [37.706976, 55.555769], - [37.707135, 55.555769], - [37.707135, 55.555679], - [37.706976, 55.555679] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707135, 55.552261], - [37.707135, 55.552351], - [37.707294, 55.552351], - [37.707294, 55.552261], - [37.707135, 55.552261] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707135, 55.552351], - [37.707135, 55.552441], - [37.707294, 55.552441], - [37.707294, 55.552351], - [37.707135, 55.552351] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707135, 55.552441], - [37.707135, 55.552531], - [37.707294, 55.552531], - [37.707294, 55.552441], - [37.707135, 55.552441] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707135, 55.552531], - [37.707135, 55.552621], - [37.707294, 55.552621], - [37.707294, 55.552531], - [37.707135, 55.552531] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707135, 55.552621], - [37.707135, 55.552711], - [37.707294, 55.552711], - [37.707294, 55.552621], - [37.707135, 55.552621] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707135, 55.552711], - [37.707135, 55.552801], - [37.707294, 55.552801], - [37.707294, 55.552711], - [37.707135, 55.552711] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707135, 55.552801], - [37.707135, 55.552891], - [37.707294, 55.552891], - [37.707294, 55.552801], - [37.707135, 55.552801] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707135, 55.552891], - [37.707135, 55.552981], - [37.707294, 55.552981], - [37.707294, 55.552891], - [37.707135, 55.552891] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707135, 55.552981], - [37.707135, 55.553071], - [37.707294, 55.553071], - [37.707294, 55.552981], - [37.707135, 55.552981] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707135, 55.553071], - [37.707135, 55.553161], - [37.707294, 55.553161], - [37.707294, 55.553071], - [37.707135, 55.553071] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707135, 55.553161], - [37.707135, 55.553251], - [37.707294, 55.553251], - [37.707294, 55.553161], - [37.707135, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707135, 55.553251], - [37.707135, 55.553341], - [37.707294, 55.553341], - [37.707294, 55.553251], - [37.707135, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707135, 55.553341], - [37.707135, 55.553431], - [37.707294, 55.553431], - [37.707294, 55.553341], - [37.707135, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707135, 55.553431], - [37.707135, 55.55352], - [37.707294, 55.55352], - [37.707294, 55.553431], - [37.707135, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707135, 55.55352], - [37.707135, 55.55361], - [37.707294, 55.55361], - [37.707294, 55.55352], - [37.707135, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707135, 55.55361], - [37.707135, 55.5537], - [37.707294, 55.5537], - [37.707294, 55.55361], - [37.707135, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707135, 55.5537], - [37.707135, 55.55379], - [37.707294, 55.55379], - [37.707294, 55.5537], - [37.707135, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707135, 55.55379], - [37.707135, 55.55388], - [37.707294, 55.55388], - [37.707294, 55.55379], - [37.707135, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707135, 55.55388], - [37.707135, 55.55397], - [37.707294, 55.55397], - [37.707294, 55.55388], - [37.707135, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707135, 55.55397], - [37.707135, 55.55406], - [37.707294, 55.55406], - [37.707294, 55.55397], - [37.707135, 55.55397] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707135, 55.55406], - [37.707135, 55.55415], - [37.707294, 55.55415], - [37.707294, 55.55406], - [37.707135, 55.55406] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707135, 55.55415], - [37.707135, 55.55424], - [37.707294, 55.55424], - [37.707294, 55.55415], - [37.707135, 55.55415] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707135, 55.55424], - [37.707135, 55.55433], - [37.707294, 55.55433], - [37.707294, 55.55424], - [37.707135, 55.55424] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707135, 55.55433], - [37.707135, 55.55442], - [37.707294, 55.55442], - [37.707294, 55.55433], - [37.707135, 55.55433] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707135, 55.55442], - [37.707135, 55.55451], - [37.707294, 55.55451], - [37.707294, 55.55442], - [37.707135, 55.55442] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707135, 55.55451], - [37.707135, 55.5546], - [37.707294, 55.5546], - [37.707294, 55.55451], - [37.707135, 55.55451] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707135, 55.5546], - [37.707135, 55.55469], - [37.707294, 55.55469], - [37.707294, 55.5546], - [37.707135, 55.5546] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707135, 55.55469], - [37.707135, 55.55478], - [37.707294, 55.55478], - [37.707294, 55.55469], - [37.707135, 55.55469] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707135, 55.55478], - [37.707135, 55.554869], - [37.707294, 55.554869], - [37.707294, 55.55478], - [37.707135, 55.55478] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707135, 55.554869], - [37.707135, 55.554959], - [37.707294, 55.554959], - [37.707294, 55.554869], - [37.707135, 55.554869] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707135, 55.554959], - [37.707135, 55.555049], - [37.707294, 55.555049], - [37.707294, 55.554959], - [37.707135, 55.554959] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707135, 55.555049], - [37.707135, 55.555139], - [37.707294, 55.555139], - [37.707294, 55.555049], - [37.707135, 55.555049] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707135, 55.555139], - [37.707135, 55.555229], - [37.707294, 55.555229], - [37.707294, 55.555139], - [37.707135, 55.555139] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707135, 55.555229], - [37.707135, 55.555319], - [37.707294, 55.555319], - [37.707294, 55.555229], - [37.707135, 55.555229] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707135, 55.555319], - [37.707135, 55.555409], - [37.707294, 55.555409], - [37.707294, 55.555319], - [37.707135, 55.555319] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707135, 55.555409], - [37.707135, 55.555499], - [37.707294, 55.555499], - [37.707294, 55.555409], - [37.707135, 55.555409] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707135, 55.555499], - [37.707135, 55.555589], - [37.707294, 55.555589], - [37.707294, 55.555499], - [37.707135, 55.555499] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707135, 55.555589], - [37.707135, 55.555679], - [37.707294, 55.555679], - [37.707294, 55.555589], - [37.707135, 55.555589] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707135, 55.555679], - [37.707135, 55.555769], - [37.707294, 55.555769], - [37.707294, 55.555679], - [37.707135, 55.555679] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707294, 55.552441], - [37.707294, 55.552531], - [37.707453, 55.552531], - [37.707453, 55.552441], - [37.707294, 55.552441] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707294, 55.552531], - [37.707294, 55.552621], - [37.707453, 55.552621], - [37.707453, 55.552531], - [37.707294, 55.552531] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707294, 55.552621], - [37.707294, 55.552711], - [37.707453, 55.552711], - [37.707453, 55.552621], - [37.707294, 55.552621] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707294, 55.552711], - [37.707294, 55.552801], - [37.707453, 55.552801], - [37.707453, 55.552711], - [37.707294, 55.552711] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707294, 55.552801], - [37.707294, 55.552891], - [37.707453, 55.552891], - [37.707453, 55.552801], - [37.707294, 55.552801] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707294, 55.552891], - [37.707294, 55.552981], - [37.707453, 55.552981], - [37.707453, 55.552891], - [37.707294, 55.552891] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707294, 55.552981], - [37.707294, 55.553071], - [37.707453, 55.553071], - [37.707453, 55.552981], - [37.707294, 55.552981] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707294, 55.553071], - [37.707294, 55.553161], - [37.707453, 55.553161], - [37.707453, 55.553071], - [37.707294, 55.553071] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707294, 55.553161], - [37.707294, 55.553251], - [37.707453, 55.553251], - [37.707453, 55.553161], - [37.707294, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707294, 55.553251], - [37.707294, 55.553341], - [37.707453, 55.553341], - [37.707453, 55.553251], - [37.707294, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707294, 55.553341], - [37.707294, 55.553431], - [37.707453, 55.553431], - [37.707453, 55.553341], - [37.707294, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707294, 55.553431], - [37.707294, 55.55352], - [37.707453, 55.55352], - [37.707453, 55.553431], - [37.707294, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707294, 55.55352], - [37.707294, 55.55361], - [37.707453, 55.55361], - [37.707453, 55.55352], - [37.707294, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707294, 55.55361], - [37.707294, 55.5537], - [37.707453, 55.5537], - [37.707453, 55.55361], - [37.707294, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707294, 55.5537], - [37.707294, 55.55379], - [37.707453, 55.55379], - [37.707453, 55.5537], - [37.707294, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707294, 55.55379], - [37.707294, 55.55388], - [37.707453, 55.55388], - [37.707453, 55.55379], - [37.707294, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707294, 55.55388], - [37.707294, 55.55397], - [37.707453, 55.55397], - [37.707453, 55.55388], - [37.707294, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707294, 55.55397], - [37.707294, 55.55406], - [37.707453, 55.55406], - [37.707453, 55.55397], - [37.707294, 55.55397] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707294, 55.55406], - [37.707294, 55.55415], - [37.707453, 55.55415], - [37.707453, 55.55406], - [37.707294, 55.55406] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707294, 55.55415], - [37.707294, 55.55424], - [37.707453, 55.55424], - [37.707453, 55.55415], - [37.707294, 55.55415] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707294, 55.55424], - [37.707294, 55.55433], - [37.707453, 55.55433], - [37.707453, 55.55424], - [37.707294, 55.55424] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707294, 55.55433], - [37.707294, 55.55442], - [37.707453, 55.55442], - [37.707453, 55.55433], - [37.707294, 55.55433] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707294, 55.55442], - [37.707294, 55.55451], - [37.707453, 55.55451], - [37.707453, 55.55442], - [37.707294, 55.55442] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707294, 55.55451], - [37.707294, 55.5546], - [37.707453, 55.5546], - [37.707453, 55.55451], - [37.707294, 55.55451] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707294, 55.5546], - [37.707294, 55.55469], - [37.707453, 55.55469], - [37.707453, 55.5546], - [37.707294, 55.5546] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707294, 55.55469], - [37.707294, 55.55478], - [37.707453, 55.55478], - [37.707453, 55.55469], - [37.707294, 55.55469] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707294, 55.55478], - [37.707294, 55.554869], - [37.707453, 55.554869], - [37.707453, 55.55478], - [37.707294, 55.55478] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707294, 55.554869], - [37.707294, 55.554959], - [37.707453, 55.554959], - [37.707453, 55.554869], - [37.707294, 55.554869] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707294, 55.554959], - [37.707294, 55.555049], - [37.707453, 55.555049], - [37.707453, 55.554959], - [37.707294, 55.554959] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707294, 55.555049], - [37.707294, 55.555139], - [37.707453, 55.555139], - [37.707453, 55.555049], - [37.707294, 55.555049] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707294, 55.555139], - [37.707294, 55.555229], - [37.707453, 55.555229], - [37.707453, 55.555139], - [37.707294, 55.555139] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707294, 55.555229], - [37.707294, 55.555319], - [37.707453, 55.555319], - [37.707453, 55.555229], - [37.707294, 55.555229] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707294, 55.555319], - [37.707294, 55.555409], - [37.707453, 55.555409], - [37.707453, 55.555319], - [37.707294, 55.555319] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707294, 55.555409], - [37.707294, 55.555499], - [37.707453, 55.555499], - [37.707453, 55.555409], - [37.707294, 55.555409] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707294, 55.555499], - [37.707294, 55.555589], - [37.707453, 55.555589], - [37.707453, 55.555499], - [37.707294, 55.555499] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707294, 55.555589], - [37.707294, 55.555679], - [37.707453, 55.555679], - [37.707453, 55.555589], - [37.707294, 55.555589] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707294, 55.555679], - [37.707294, 55.555769], - [37.707453, 55.555769], - [37.707453, 55.555679], - [37.707294, 55.555679] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707294, 55.555769], - [37.707294, 55.555859], - [37.707453, 55.555859], - [37.707453, 55.555769], - [37.707294, 55.555769] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707453, 55.552621], - [37.707453, 55.552711], - [37.707612, 55.552711], - [37.707612, 55.552621], - [37.707453, 55.552621] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707453, 55.552711], - [37.707453, 55.552801], - [37.707612, 55.552801], - [37.707612, 55.552711], - [37.707453, 55.552711] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707453, 55.552801], - [37.707453, 55.552891], - [37.707612, 55.552891], - [37.707612, 55.552801], - [37.707453, 55.552801] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707453, 55.552891], - [37.707453, 55.552981], - [37.707612, 55.552981], - [37.707612, 55.552891], - [37.707453, 55.552891] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707453, 55.552981], - [37.707453, 55.553071], - [37.707612, 55.553071], - [37.707612, 55.552981], - [37.707453, 55.552981] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707453, 55.553071], - [37.707453, 55.553161], - [37.707612, 55.553161], - [37.707612, 55.553071], - [37.707453, 55.553071] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707453, 55.553161], - [37.707453, 55.553251], - [37.707612, 55.553251], - [37.707612, 55.553161], - [37.707453, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707453, 55.553251], - [37.707453, 55.553341], - [37.707612, 55.553341], - [37.707612, 55.553251], - [37.707453, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707453, 55.553341], - [37.707453, 55.553431], - [37.707612, 55.553431], - [37.707612, 55.553341], - [37.707453, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707453, 55.553431], - [37.707453, 55.55352], - [37.707612, 55.55352], - [37.707612, 55.553431], - [37.707453, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707453, 55.55352], - [37.707453, 55.55361], - [37.707612, 55.55361], - [37.707612, 55.55352], - [37.707453, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707453, 55.55361], - [37.707453, 55.5537], - [37.707612, 55.5537], - [37.707612, 55.55361], - [37.707453, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707453, 55.5537], - [37.707453, 55.55379], - [37.707612, 55.55379], - [37.707612, 55.5537], - [37.707453, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707453, 55.55379], - [37.707453, 55.55388], - [37.707612, 55.55388], - [37.707612, 55.55379], - [37.707453, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707453, 55.55388], - [37.707453, 55.55397], - [37.707612, 55.55397], - [37.707612, 55.55388], - [37.707453, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707453, 55.55397], - [37.707453, 55.55406], - [37.707612, 55.55406], - [37.707612, 55.55397], - [37.707453, 55.55397] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707453, 55.55406], - [37.707453, 55.55415], - [37.707612, 55.55415], - [37.707612, 55.55406], - [37.707453, 55.55406] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707453, 55.55415], - [37.707453, 55.55424], - [37.707612, 55.55424], - [37.707612, 55.55415], - [37.707453, 55.55415] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707453, 55.55424], - [37.707453, 55.55433], - [37.707612, 55.55433], - [37.707612, 55.55424], - [37.707453, 55.55424] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707453, 55.55433], - [37.707453, 55.55442], - [37.707612, 55.55442], - [37.707612, 55.55433], - [37.707453, 55.55433] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707453, 55.55442], - [37.707453, 55.55451], - [37.707612, 55.55451], - [37.707612, 55.55442], - [37.707453, 55.55442] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707453, 55.55451], - [37.707453, 55.5546], - [37.707612, 55.5546], - [37.707612, 55.55451], - [37.707453, 55.55451] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707453, 55.5546], - [37.707453, 55.55469], - [37.707612, 55.55469], - [37.707612, 55.5546], - [37.707453, 55.5546] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707453, 55.55469], - [37.707453, 55.55478], - [37.707612, 55.55478], - [37.707612, 55.55469], - [37.707453, 55.55469] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707453, 55.55478], - [37.707453, 55.554869], - [37.707612, 55.554869], - [37.707612, 55.55478], - [37.707453, 55.55478] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707453, 55.554869], - [37.707453, 55.554959], - [37.707612, 55.554959], - [37.707612, 55.554869], - [37.707453, 55.554869] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707453, 55.554959], - [37.707453, 55.555049], - [37.707612, 55.555049], - [37.707612, 55.554959], - [37.707453, 55.554959] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707453, 55.555049], - [37.707453, 55.555139], - [37.707612, 55.555139], - [37.707612, 55.555049], - [37.707453, 55.555049] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707453, 55.555139], - [37.707453, 55.555229], - [37.707612, 55.555229], - [37.707612, 55.555139], - [37.707453, 55.555139] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707453, 55.555229], - [37.707453, 55.555319], - [37.707612, 55.555319], - [37.707612, 55.555229], - [37.707453, 55.555229] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707453, 55.555319], - [37.707453, 55.555409], - [37.707612, 55.555409], - [37.707612, 55.555319], - [37.707453, 55.555319] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707453, 55.555409], - [37.707453, 55.555499], - [37.707612, 55.555499], - [37.707612, 55.555409], - [37.707453, 55.555409] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707453, 55.555499], - [37.707453, 55.555589], - [37.707612, 55.555589], - [37.707612, 55.555499], - [37.707453, 55.555499] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707453, 55.555589], - [37.707453, 55.555679], - [37.707612, 55.555679], - [37.707612, 55.555589], - [37.707453, 55.555589] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707453, 55.555679], - [37.707453, 55.555769], - [37.707612, 55.555769], - [37.707612, 55.555679], - [37.707453, 55.555679] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707453, 55.555769], - [37.707453, 55.555859], - [37.707612, 55.555859], - [37.707612, 55.555769], - [37.707453, 55.555769] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707612, 55.552801], - [37.707612, 55.552891], - [37.707771, 55.552891], - [37.707771, 55.552801], - [37.707612, 55.552801] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707612, 55.552891], - [37.707612, 55.552981], - [37.707771, 55.552981], - [37.707771, 55.552891], - [37.707612, 55.552891] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707612, 55.552981], - [37.707612, 55.553071], - [37.707771, 55.553071], - [37.707771, 55.552981], - [37.707612, 55.552981] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707612, 55.553071], - [37.707612, 55.553161], - [37.707771, 55.553161], - [37.707771, 55.553071], - [37.707612, 55.553071] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707612, 55.553161], - [37.707612, 55.553251], - [37.707771, 55.553251], - [37.707771, 55.553161], - [37.707612, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707612, 55.553251], - [37.707612, 55.553341], - [37.707771, 55.553341], - [37.707771, 55.553251], - [37.707612, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707612, 55.553341], - [37.707612, 55.553431], - [37.707771, 55.553431], - [37.707771, 55.553341], - [37.707612, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707612, 55.553431], - [37.707612, 55.55352], - [37.707771, 55.55352], - [37.707771, 55.553431], - [37.707612, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707612, 55.55352], - [37.707612, 55.55361], - [37.707771, 55.55361], - [37.707771, 55.55352], - [37.707612, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707612, 55.55361], - [37.707612, 55.5537], - [37.707771, 55.5537], - [37.707771, 55.55361], - [37.707612, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707612, 55.5537], - [37.707612, 55.55379], - [37.707771, 55.55379], - [37.707771, 55.5537], - [37.707612, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707612, 55.55379], - [37.707612, 55.55388], - [37.707771, 55.55388], - [37.707771, 55.55379], - [37.707612, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707612, 55.55388], - [37.707612, 55.55397], - [37.707771, 55.55397], - [37.707771, 55.55388], - [37.707612, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707612, 55.55397], - [37.707612, 55.55406], - [37.707771, 55.55406], - [37.707771, 55.55397], - [37.707612, 55.55397] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707612, 55.55406], - [37.707612, 55.55415], - [37.707771, 55.55415], - [37.707771, 55.55406], - [37.707612, 55.55406] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707612, 55.55415], - [37.707612, 55.55424], - [37.707771, 55.55424], - [37.707771, 55.55415], - [37.707612, 55.55415] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707612, 55.55424], - [37.707612, 55.55433], - [37.707771, 55.55433], - [37.707771, 55.55424], - [37.707612, 55.55424] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707612, 55.55433], - [37.707612, 55.55442], - [37.707771, 55.55442], - [37.707771, 55.55433], - [37.707612, 55.55433] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707612, 55.55442], - [37.707612, 55.55451], - [37.707771, 55.55451], - [37.707771, 55.55442], - [37.707612, 55.55442] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707612, 55.55451], - [37.707612, 55.5546], - [37.707771, 55.5546], - [37.707771, 55.55451], - [37.707612, 55.55451] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707612, 55.5546], - [37.707612, 55.55469], - [37.707771, 55.55469], - [37.707771, 55.5546], - [37.707612, 55.5546] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707612, 55.55469], - [37.707612, 55.55478], - [37.707771, 55.55478], - [37.707771, 55.55469], - [37.707612, 55.55469] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707612, 55.55478], - [37.707612, 55.554869], - [37.707771, 55.554869], - [37.707771, 55.55478], - [37.707612, 55.55478] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707612, 55.554869], - [37.707612, 55.554959], - [37.707771, 55.554959], - [37.707771, 55.554869], - [37.707612, 55.554869] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707612, 55.554959], - [37.707612, 55.555049], - [37.707771, 55.555049], - [37.707771, 55.554959], - [37.707612, 55.554959] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707612, 55.555049], - [37.707612, 55.555139], - [37.707771, 55.555139], - [37.707771, 55.555049], - [37.707612, 55.555049] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707612, 55.555139], - [37.707612, 55.555229], - [37.707771, 55.555229], - [37.707771, 55.555139], - [37.707612, 55.555139] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707612, 55.555229], - [37.707612, 55.555319], - [37.707771, 55.555319], - [37.707771, 55.555229], - [37.707612, 55.555229] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707612, 55.555319], - [37.707612, 55.555409], - [37.707771, 55.555409], - [37.707771, 55.555319], - [37.707612, 55.555319] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707612, 55.555409], - [37.707612, 55.555499], - [37.707771, 55.555499], - [37.707771, 55.555409], - [37.707612, 55.555409] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707612, 55.555499], - [37.707612, 55.555589], - [37.707771, 55.555589], - [37.707771, 55.555499], - [37.707612, 55.555499] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707612, 55.555589], - [37.707612, 55.555679], - [37.707771, 55.555679], - [37.707771, 55.555589], - [37.707612, 55.555589] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707612, 55.555679], - [37.707612, 55.555769], - [37.707771, 55.555769], - [37.707771, 55.555679], - [37.707612, 55.555679] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707612, 55.555769], - [37.707612, 55.555859], - [37.707771, 55.555859], - [37.707771, 55.555769], - [37.707612, 55.555769] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707612, 55.555859], - [37.707612, 55.555949], - [37.707771, 55.555949], - [37.707771, 55.555859], - [37.707612, 55.555859] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707771, 55.552981], - [37.707771, 55.553071], - [37.70793, 55.553071], - [37.70793, 55.552981], - [37.707771, 55.552981] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707771, 55.553071], - [37.707771, 55.553161], - [37.70793, 55.553161], - [37.70793, 55.553071], - [37.707771, 55.553071] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707771, 55.553161], - [37.707771, 55.553251], - [37.70793, 55.553251], - [37.70793, 55.553161], - [37.707771, 55.553161] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707771, 55.553251], - [37.707771, 55.553341], - [37.70793, 55.553341], - [37.70793, 55.553251], - [37.707771, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707771, 55.553341], - [37.707771, 55.553431], - [37.70793, 55.553431], - [37.70793, 55.553341], - [37.707771, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707771, 55.553431], - [37.707771, 55.55352], - [37.70793, 55.55352], - [37.70793, 55.553431], - [37.707771, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707771, 55.55352], - [37.707771, 55.55361], - [37.70793, 55.55361], - [37.70793, 55.55352], - [37.707771, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707771, 55.55361], - [37.707771, 55.5537], - [37.70793, 55.5537], - [37.70793, 55.55361], - [37.707771, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707771, 55.5537], - [37.707771, 55.55379], - [37.70793, 55.55379], - [37.70793, 55.5537], - [37.707771, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707771, 55.55379], - [37.707771, 55.55388], - [37.70793, 55.55388], - [37.70793, 55.55379], - [37.707771, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707771, 55.55388], - [37.707771, 55.55397], - [37.70793, 55.55397], - [37.70793, 55.55388], - [37.707771, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707771, 55.55397], - [37.707771, 55.55406], - [37.70793, 55.55406], - [37.70793, 55.55397], - [37.707771, 55.55397] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707771, 55.55406], - [37.707771, 55.55415], - [37.70793, 55.55415], - [37.70793, 55.55406], - [37.707771, 55.55406] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707771, 55.55415], - [37.707771, 55.55424], - [37.70793, 55.55424], - [37.70793, 55.55415], - [37.707771, 55.55415] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707771, 55.55424], - [37.707771, 55.55433], - [37.70793, 55.55433], - [37.70793, 55.55424], - [37.707771, 55.55424] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707771, 55.55433], - [37.707771, 55.55442], - [37.70793, 55.55442], - [37.70793, 55.55433], - [37.707771, 55.55433] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707771, 55.55442], - [37.707771, 55.55451], - [37.70793, 55.55451], - [37.70793, 55.55442], - [37.707771, 55.55442] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707771, 55.55451], - [37.707771, 55.5546], - [37.70793, 55.5546], - [37.70793, 55.55451], - [37.707771, 55.55451] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707771, 55.5546], - [37.707771, 55.55469], - [37.70793, 55.55469], - [37.70793, 55.5546], - [37.707771, 55.5546] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707771, 55.55469], - [37.707771, 55.55478], - [37.70793, 55.55478], - [37.70793, 55.55469], - [37.707771, 55.55469] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707771, 55.55478], - [37.707771, 55.554869], - [37.70793, 55.554869], - [37.70793, 55.55478], - [37.707771, 55.55478] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707771, 55.554869], - [37.707771, 55.554959], - [37.70793, 55.554959], - [37.70793, 55.554869], - [37.707771, 55.554869] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707771, 55.554959], - [37.707771, 55.555049], - [37.70793, 55.555049], - [37.70793, 55.554959], - [37.707771, 55.554959] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707771, 55.555049], - [37.707771, 55.555139], - [37.70793, 55.555139], - [37.70793, 55.555049], - [37.707771, 55.555049] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707771, 55.555139], - [37.707771, 55.555229], - [37.70793, 55.555229], - [37.70793, 55.555139], - [37.707771, 55.555139] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707771, 55.555229], - [37.707771, 55.555319], - [37.70793, 55.555319], - [37.70793, 55.555229], - [37.707771, 55.555229] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707771, 55.555319], - [37.707771, 55.555409], - [37.70793, 55.555409], - [37.70793, 55.555319], - [37.707771, 55.555319] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707771, 55.555409], - [37.707771, 55.555499], - [37.70793, 55.555499], - [37.70793, 55.555409], - [37.707771, 55.555409] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707771, 55.555499], - [37.707771, 55.555589], - [37.70793, 55.555589], - [37.70793, 55.555499], - [37.707771, 55.555499] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707771, 55.555589], - [37.707771, 55.555679], - [37.70793, 55.555679], - [37.70793, 55.555589], - [37.707771, 55.555589] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707771, 55.555679], - [37.707771, 55.555769], - [37.70793, 55.555769], - [37.70793, 55.555679], - [37.707771, 55.555679] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707771, 55.555769], - [37.707771, 55.555859], - [37.70793, 55.555859], - [37.70793, 55.555769], - [37.707771, 55.555769] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.707771, 55.555859], - [37.707771, 55.555949], - [37.70793, 55.555949], - [37.70793, 55.555859], - [37.707771, 55.555859] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70793, 55.553251], - [37.70793, 55.553341], - [37.708089, 55.553341], - [37.708089, 55.553251], - [37.70793, 55.553251] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70793, 55.553341], - [37.70793, 55.553431], - [37.708089, 55.553431], - [37.708089, 55.553341], - [37.70793, 55.553341] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70793, 55.553431], - [37.70793, 55.55352], - [37.708089, 55.55352], - [37.708089, 55.553431], - [37.70793, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70793, 55.55352], - [37.70793, 55.55361], - [37.708089, 55.55361], - [37.708089, 55.55352], - [37.70793, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70793, 55.55361], - [37.70793, 55.5537], - [37.708089, 55.5537], - [37.708089, 55.55361], - [37.70793, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70793, 55.5537], - [37.70793, 55.55379], - [37.708089, 55.55379], - [37.708089, 55.5537], - [37.70793, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70793, 55.55379], - [37.70793, 55.55388], - [37.708089, 55.55388], - [37.708089, 55.55379], - [37.70793, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70793, 55.55388], - [37.70793, 55.55397], - [37.708089, 55.55397], - [37.708089, 55.55388], - [37.70793, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70793, 55.55397], - [37.70793, 55.55406], - [37.708089, 55.55406], - [37.708089, 55.55397], - [37.70793, 55.55397] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70793, 55.55406], - [37.70793, 55.55415], - [37.708089, 55.55415], - [37.708089, 55.55406], - [37.70793, 55.55406] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70793, 55.55415], - [37.70793, 55.55424], - [37.708089, 55.55424], - [37.708089, 55.55415], - [37.70793, 55.55415] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70793, 55.55424], - [37.70793, 55.55433], - [37.708089, 55.55433], - [37.708089, 55.55424], - [37.70793, 55.55424] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70793, 55.55433], - [37.70793, 55.55442], - [37.708089, 55.55442], - [37.708089, 55.55433], - [37.70793, 55.55433] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70793, 55.55442], - [37.70793, 55.55451], - [37.708089, 55.55451], - [37.708089, 55.55442], - [37.70793, 55.55442] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70793, 55.55451], - [37.70793, 55.5546], - [37.708089, 55.5546], - [37.708089, 55.55451], - [37.70793, 55.55451] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70793, 55.5546], - [37.70793, 55.55469], - [37.708089, 55.55469], - [37.708089, 55.5546], - [37.70793, 55.5546] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70793, 55.55469], - [37.70793, 55.55478], - [37.708089, 55.55478], - [37.708089, 55.55469], - [37.70793, 55.55469] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70793, 55.55478], - [37.70793, 55.554869], - [37.708089, 55.554869], - [37.708089, 55.55478], - [37.70793, 55.55478] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70793, 55.554869], - [37.70793, 55.554959], - [37.708089, 55.554959], - [37.708089, 55.554869], - [37.70793, 55.554869] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70793, 55.554959], - [37.70793, 55.555049], - [37.708089, 55.555049], - [37.708089, 55.554959], - [37.70793, 55.554959] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70793, 55.555049], - [37.70793, 55.555139], - [37.708089, 55.555139], - [37.708089, 55.555049], - [37.70793, 55.555049] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70793, 55.555139], - [37.70793, 55.555229], - [37.708089, 55.555229], - [37.708089, 55.555139], - [37.70793, 55.555139] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70793, 55.555229], - [37.70793, 55.555319], - [37.708089, 55.555319], - [37.708089, 55.555229], - [37.70793, 55.555229] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70793, 55.555319], - [37.70793, 55.555409], - [37.708089, 55.555409], - [37.708089, 55.555319], - [37.70793, 55.555319] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70793, 55.555409], - [37.70793, 55.555499], - [37.708089, 55.555499], - [37.708089, 55.555409], - [37.70793, 55.555409] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70793, 55.555499], - [37.70793, 55.555589], - [37.708089, 55.555589], - [37.708089, 55.555499], - [37.70793, 55.555499] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70793, 55.555589], - [37.70793, 55.555679], - [37.708089, 55.555679], - [37.708089, 55.555589], - [37.70793, 55.555589] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70793, 55.555679], - [37.70793, 55.555769], - [37.708089, 55.555769], - [37.708089, 55.555679], - [37.70793, 55.555679] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70793, 55.555769], - [37.70793, 55.555859], - [37.708089, 55.555859], - [37.708089, 55.555769], - [37.70793, 55.555769] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70793, 55.555859], - [37.70793, 55.555949], - [37.708089, 55.555949], - [37.708089, 55.555859], - [37.70793, 55.555859] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70793, 55.555949], - [37.70793, 55.556039], - [37.708089, 55.556039], - [37.708089, 55.555949], - [37.70793, 55.555949] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708089, 55.553431], - [37.708089, 55.55352], - [37.708248, 55.55352], - [37.708248, 55.553431], - [37.708089, 55.553431] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708089, 55.55352], - [37.708089, 55.55361], - [37.708248, 55.55361], - [37.708248, 55.55352], - [37.708089, 55.55352] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708089, 55.55361], - [37.708089, 55.5537], - [37.708248, 55.5537], - [37.708248, 55.55361], - [37.708089, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708089, 55.5537], - [37.708089, 55.55379], - [37.708248, 55.55379], - [37.708248, 55.5537], - [37.708089, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708089, 55.55379], - [37.708089, 55.55388], - [37.708248, 55.55388], - [37.708248, 55.55379], - [37.708089, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708089, 55.55388], - [37.708089, 55.55397], - [37.708248, 55.55397], - [37.708248, 55.55388], - [37.708089, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708089, 55.55397], - [37.708089, 55.55406], - [37.708248, 55.55406], - [37.708248, 55.55397], - [37.708089, 55.55397] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708089, 55.55406], - [37.708089, 55.55415], - [37.708248, 55.55415], - [37.708248, 55.55406], - [37.708089, 55.55406] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708089, 55.55415], - [37.708089, 55.55424], - [37.708248, 55.55424], - [37.708248, 55.55415], - [37.708089, 55.55415] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708089, 55.55424], - [37.708089, 55.55433], - [37.708248, 55.55433], - [37.708248, 55.55424], - [37.708089, 55.55424] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708089, 55.55433], - [37.708089, 55.55442], - [37.708248, 55.55442], - [37.708248, 55.55433], - [37.708089, 55.55433] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708089, 55.55442], - [37.708089, 55.55451], - [37.708248, 55.55451], - [37.708248, 55.55442], - [37.708089, 55.55442] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708089, 55.55451], - [37.708089, 55.5546], - [37.708248, 55.5546], - [37.708248, 55.55451], - [37.708089, 55.55451] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708089, 55.5546], - [37.708089, 55.55469], - [37.708248, 55.55469], - [37.708248, 55.5546], - [37.708089, 55.5546] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708089, 55.55469], - [37.708089, 55.55478], - [37.708248, 55.55478], - [37.708248, 55.55469], - [37.708089, 55.55469] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708089, 55.55478], - [37.708089, 55.554869], - [37.708248, 55.554869], - [37.708248, 55.55478], - [37.708089, 55.55478] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708089, 55.554869], - [37.708089, 55.554959], - [37.708248, 55.554959], - [37.708248, 55.554869], - [37.708089, 55.554869] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708089, 55.554959], - [37.708089, 55.555049], - [37.708248, 55.555049], - [37.708248, 55.554959], - [37.708089, 55.554959] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708089, 55.555049], - [37.708089, 55.555139], - [37.708248, 55.555139], - [37.708248, 55.555049], - [37.708089, 55.555049] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708089, 55.555139], - [37.708089, 55.555229], - [37.708248, 55.555229], - [37.708248, 55.555139], - [37.708089, 55.555139] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708089, 55.555229], - [37.708089, 55.555319], - [37.708248, 55.555319], - [37.708248, 55.555229], - [37.708089, 55.555229] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708089, 55.555319], - [37.708089, 55.555409], - [37.708248, 55.555409], - [37.708248, 55.555319], - [37.708089, 55.555319] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708089, 55.555409], - [37.708089, 55.555499], - [37.708248, 55.555499], - [37.708248, 55.555409], - [37.708089, 55.555409] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708089, 55.555499], - [37.708089, 55.555589], - [37.708248, 55.555589], - [37.708248, 55.555499], - [37.708089, 55.555499] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708089, 55.555589], - [37.708089, 55.555679], - [37.708248, 55.555679], - [37.708248, 55.555589], - [37.708089, 55.555589] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708089, 55.555679], - [37.708089, 55.555769], - [37.708248, 55.555769], - [37.708248, 55.555679], - [37.708089, 55.555679] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708089, 55.555769], - [37.708089, 55.555859], - [37.708248, 55.555859], - [37.708248, 55.555769], - [37.708089, 55.555769] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708089, 55.555859], - [37.708089, 55.555949], - [37.708248, 55.555949], - [37.708248, 55.555859], - [37.708089, 55.555859] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708089, 55.555949], - [37.708089, 55.556039], - [37.708248, 55.556039], - [37.708248, 55.555949], - [37.708089, 55.555949] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708248, 55.55361], - [37.708248, 55.5537], - [37.708407, 55.5537], - [37.708407, 55.55361], - [37.708248, 55.55361] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708248, 55.5537], - [37.708248, 55.55379], - [37.708407, 55.55379], - [37.708407, 55.5537], - [37.708248, 55.5537] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708248, 55.55379], - [37.708248, 55.55388], - [37.708407, 55.55388], - [37.708407, 55.55379], - [37.708248, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708248, 55.55388], - [37.708248, 55.55397], - [37.708407, 55.55397], - [37.708407, 55.55388], - [37.708248, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708248, 55.55397], - [37.708248, 55.55406], - [37.708407, 55.55406], - [37.708407, 55.55397], - [37.708248, 55.55397] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708248, 55.55406], - [37.708248, 55.55415], - [37.708407, 55.55415], - [37.708407, 55.55406], - [37.708248, 55.55406] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708248, 55.55415], - [37.708248, 55.55424], - [37.708407, 55.55424], - [37.708407, 55.55415], - [37.708248, 55.55415] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708248, 55.55424], - [37.708248, 55.55433], - [37.708407, 55.55433], - [37.708407, 55.55424], - [37.708248, 55.55424] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708248, 55.55433], - [37.708248, 55.55442], - [37.708407, 55.55442], - [37.708407, 55.55433], - [37.708248, 55.55433] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708248, 55.55442], - [37.708248, 55.55451], - [37.708407, 55.55451], - [37.708407, 55.55442], - [37.708248, 55.55442] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708248, 55.55451], - [37.708248, 55.5546], - [37.708407, 55.5546], - [37.708407, 55.55451], - [37.708248, 55.55451] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708248, 55.5546], - [37.708248, 55.55469], - [37.708407, 55.55469], - [37.708407, 55.5546], - [37.708248, 55.5546] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708248, 55.55469], - [37.708248, 55.55478], - [37.708407, 55.55478], - [37.708407, 55.55469], - [37.708248, 55.55469] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708248, 55.55478], - [37.708248, 55.554869], - [37.708407, 55.554869], - [37.708407, 55.55478], - [37.708248, 55.55478] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708248, 55.554869], - [37.708248, 55.554959], - [37.708407, 55.554959], - [37.708407, 55.554869], - [37.708248, 55.554869] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708248, 55.554959], - [37.708248, 55.555049], - [37.708407, 55.555049], - [37.708407, 55.554959], - [37.708248, 55.554959] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708248, 55.555049], - [37.708248, 55.555139], - [37.708407, 55.555139], - [37.708407, 55.555049], - [37.708248, 55.555049] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708248, 55.555139], - [37.708248, 55.555229], - [37.708407, 55.555229], - [37.708407, 55.555139], - [37.708248, 55.555139] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708248, 55.555229], - [37.708248, 55.555319], - [37.708407, 55.555319], - [37.708407, 55.555229], - [37.708248, 55.555229] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708248, 55.555319], - [37.708248, 55.555409], - [37.708407, 55.555409], - [37.708407, 55.555319], - [37.708248, 55.555319] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708248, 55.555409], - [37.708248, 55.555499], - [37.708407, 55.555499], - [37.708407, 55.555409], - [37.708248, 55.555409] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708248, 55.555499], - [37.708248, 55.555589], - [37.708407, 55.555589], - [37.708407, 55.555499], - [37.708248, 55.555499] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708248, 55.555589], - [37.708248, 55.555679], - [37.708407, 55.555679], - [37.708407, 55.555589], - [37.708248, 55.555589] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708248, 55.555679], - [37.708248, 55.555769], - [37.708407, 55.555769], - [37.708407, 55.555679], - [37.708248, 55.555679] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708248, 55.555769], - [37.708248, 55.555859], - [37.708407, 55.555859], - [37.708407, 55.555769], - [37.708248, 55.555769] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708248, 55.555859], - [37.708248, 55.555949], - [37.708407, 55.555949], - [37.708407, 55.555859], - [37.708248, 55.555859] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708248, 55.555949], - [37.708248, 55.556039], - [37.708407, 55.556039], - [37.708407, 55.555949], - [37.708248, 55.555949] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708407, 55.55379], - [37.708407, 55.55388], - [37.708566, 55.55388], - [37.708566, 55.55379], - [37.708407, 55.55379] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708407, 55.55388], - [37.708407, 55.55397], - [37.708566, 55.55397], - [37.708566, 55.55388], - [37.708407, 55.55388] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708407, 55.55397], - [37.708407, 55.55406], - [37.708566, 55.55406], - [37.708566, 55.55397], - [37.708407, 55.55397] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708407, 55.55406], - [37.708407, 55.55415], - [37.708566, 55.55415], - [37.708566, 55.55406], - [37.708407, 55.55406] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708407, 55.55415], - [37.708407, 55.55424], - [37.708566, 55.55424], - [37.708566, 55.55415], - [37.708407, 55.55415] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708407, 55.55424], - [37.708407, 55.55433], - [37.708566, 55.55433], - [37.708566, 55.55424], - [37.708407, 55.55424] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708407, 55.55433], - [37.708407, 55.55442], - [37.708566, 55.55442], - [37.708566, 55.55433], - [37.708407, 55.55433] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708407, 55.55442], - [37.708407, 55.55451], - [37.708566, 55.55451], - [37.708566, 55.55442], - [37.708407, 55.55442] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708407, 55.55451], - [37.708407, 55.5546], - [37.708566, 55.5546], - [37.708566, 55.55451], - [37.708407, 55.55451] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708407, 55.5546], - [37.708407, 55.55469], - [37.708566, 55.55469], - [37.708566, 55.5546], - [37.708407, 55.5546] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708407, 55.55469], - [37.708407, 55.55478], - [37.708566, 55.55478], - [37.708566, 55.55469], - [37.708407, 55.55469] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708407, 55.55478], - [37.708407, 55.554869], - [37.708566, 55.554869], - [37.708566, 55.55478], - [37.708407, 55.55478] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708407, 55.554869], - [37.708407, 55.554959], - [37.708566, 55.554959], - [37.708566, 55.554869], - [37.708407, 55.554869] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708407, 55.554959], - [37.708407, 55.555049], - [37.708566, 55.555049], - [37.708566, 55.554959], - [37.708407, 55.554959] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708407, 55.555049], - [37.708407, 55.555139], - [37.708566, 55.555139], - [37.708566, 55.555049], - [37.708407, 55.555049] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708407, 55.555139], - [37.708407, 55.555229], - [37.708566, 55.555229], - [37.708566, 55.555139], - [37.708407, 55.555139] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708407, 55.555229], - [37.708407, 55.555319], - [37.708566, 55.555319], - [37.708566, 55.555229], - [37.708407, 55.555229] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708407, 55.555319], - [37.708407, 55.555409], - [37.708566, 55.555409], - [37.708566, 55.555319], - [37.708407, 55.555319] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708407, 55.555409], - [37.708407, 55.555499], - [37.708566, 55.555499], - [37.708566, 55.555409], - [37.708407, 55.555409] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708407, 55.555499], - [37.708407, 55.555589], - [37.708566, 55.555589], - [37.708566, 55.555499], - [37.708407, 55.555499] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708407, 55.555589], - [37.708407, 55.555679], - [37.708566, 55.555679], - [37.708566, 55.555589], - [37.708407, 55.555589] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708407, 55.555679], - [37.708407, 55.555769], - [37.708566, 55.555769], - [37.708566, 55.555679], - [37.708407, 55.555679] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708407, 55.555769], - [37.708407, 55.555859], - [37.708566, 55.555859], - [37.708566, 55.555769], - [37.708407, 55.555769] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708407, 55.555859], - [37.708407, 55.555949], - [37.708566, 55.555949], - [37.708566, 55.555859], - [37.708407, 55.555859] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708407, 55.555949], - [37.708407, 55.556039], - [37.708566, 55.556039], - [37.708566, 55.555949], - [37.708407, 55.555949] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708407, 55.556039], - [37.708407, 55.556128], - [37.708566, 55.556128], - [37.708566, 55.556039], - [37.708407, 55.556039] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708566, 55.55397], - [37.708566, 55.55406], - [37.708725, 55.55406], - [37.708725, 55.55397], - [37.708566, 55.55397] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708566, 55.55406], - [37.708566, 55.55415], - [37.708725, 55.55415], - [37.708725, 55.55406], - [37.708566, 55.55406] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708566, 55.55415], - [37.708566, 55.55424], - [37.708725, 55.55424], - [37.708725, 55.55415], - [37.708566, 55.55415] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708566, 55.55424], - [37.708566, 55.55433], - [37.708725, 55.55433], - [37.708725, 55.55424], - [37.708566, 55.55424] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708566, 55.55433], - [37.708566, 55.55442], - [37.708725, 55.55442], - [37.708725, 55.55433], - [37.708566, 55.55433] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708566, 55.55442], - [37.708566, 55.55451], - [37.708725, 55.55451], - [37.708725, 55.55442], - [37.708566, 55.55442] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708566, 55.55451], - [37.708566, 55.5546], - [37.708725, 55.5546], - [37.708725, 55.55451], - [37.708566, 55.55451] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708566, 55.5546], - [37.708566, 55.55469], - [37.708725, 55.55469], - [37.708725, 55.5546], - [37.708566, 55.5546] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708566, 55.55469], - [37.708566, 55.55478], - [37.708725, 55.55478], - [37.708725, 55.55469], - [37.708566, 55.55469] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708566, 55.55478], - [37.708566, 55.554869], - [37.708725, 55.554869], - [37.708725, 55.55478], - [37.708566, 55.55478] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708566, 55.554869], - [37.708566, 55.554959], - [37.708725, 55.554959], - [37.708725, 55.554869], - [37.708566, 55.554869] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708566, 55.554959], - [37.708566, 55.555049], - [37.708725, 55.555049], - [37.708725, 55.554959], - [37.708566, 55.554959] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708566, 55.555049], - [37.708566, 55.555139], - [37.708725, 55.555139], - [37.708725, 55.555049], - [37.708566, 55.555049] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708566, 55.555139], - [37.708566, 55.555229], - [37.708725, 55.555229], - [37.708725, 55.555139], - [37.708566, 55.555139] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708566, 55.555229], - [37.708566, 55.555319], - [37.708725, 55.555319], - [37.708725, 55.555229], - [37.708566, 55.555229] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708566, 55.555319], - [37.708566, 55.555409], - [37.708725, 55.555409], - [37.708725, 55.555319], - [37.708566, 55.555319] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708566, 55.555409], - [37.708566, 55.555499], - [37.708725, 55.555499], - [37.708725, 55.555409], - [37.708566, 55.555409] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708566, 55.555499], - [37.708566, 55.555589], - [37.708725, 55.555589], - [37.708725, 55.555499], - [37.708566, 55.555499] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708566, 55.555589], - [37.708566, 55.555679], - [37.708725, 55.555679], - [37.708725, 55.555589], - [37.708566, 55.555589] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708566, 55.555679], - [37.708566, 55.555769], - [37.708725, 55.555769], - [37.708725, 55.555679], - [37.708566, 55.555679] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708566, 55.555769], - [37.708566, 55.555859], - [37.708725, 55.555859], - [37.708725, 55.555769], - [37.708566, 55.555769] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708566, 55.555859], - [37.708566, 55.555949], - [37.708725, 55.555949], - [37.708725, 55.555859], - [37.708566, 55.555859] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708566, 55.555949], - [37.708566, 55.556039], - [37.708725, 55.556039], - [37.708725, 55.555949], - [37.708566, 55.555949] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708566, 55.556039], - [37.708566, 55.556128], - [37.708725, 55.556128], - [37.708725, 55.556039], - [37.708566, 55.556039] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708725, 55.55415], - [37.708725, 55.55424], - [37.708884, 55.55424], - [37.708884, 55.55415], - [37.708725, 55.55415] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708725, 55.55424], - [37.708725, 55.55433], - [37.708884, 55.55433], - [37.708884, 55.55424], - [37.708725, 55.55424] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708725, 55.55433], - [37.708725, 55.55442], - [37.708884, 55.55442], - [37.708884, 55.55433], - [37.708725, 55.55433] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708725, 55.55442], - [37.708725, 55.55451], - [37.708884, 55.55451], - [37.708884, 55.55442], - [37.708725, 55.55442] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708725, 55.55451], - [37.708725, 55.5546], - [37.708884, 55.5546], - [37.708884, 55.55451], - [37.708725, 55.55451] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708725, 55.5546], - [37.708725, 55.55469], - [37.708884, 55.55469], - [37.708884, 55.5546], - [37.708725, 55.5546] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708725, 55.55469], - [37.708725, 55.55478], - [37.708884, 55.55478], - [37.708884, 55.55469], - [37.708725, 55.55469] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708725, 55.55478], - [37.708725, 55.554869], - [37.708884, 55.554869], - [37.708884, 55.55478], - [37.708725, 55.55478] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708725, 55.554869], - [37.708725, 55.554959], - [37.708884, 55.554959], - [37.708884, 55.554869], - [37.708725, 55.554869] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708725, 55.554959], - [37.708725, 55.555049], - [37.708884, 55.555049], - [37.708884, 55.554959], - [37.708725, 55.554959] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708725, 55.555049], - [37.708725, 55.555139], - [37.708884, 55.555139], - [37.708884, 55.555049], - [37.708725, 55.555049] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708725, 55.555139], - [37.708725, 55.555229], - [37.708884, 55.555229], - [37.708884, 55.555139], - [37.708725, 55.555139] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708725, 55.555229], - [37.708725, 55.555319], - [37.708884, 55.555319], - [37.708884, 55.555229], - [37.708725, 55.555229] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708725, 55.555319], - [37.708725, 55.555409], - [37.708884, 55.555409], - [37.708884, 55.555319], - [37.708725, 55.555319] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708725, 55.555409], - [37.708725, 55.555499], - [37.708884, 55.555499], - [37.708884, 55.555409], - [37.708725, 55.555409] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708725, 55.555499], - [37.708725, 55.555589], - [37.708884, 55.555589], - [37.708884, 55.555499], - [37.708725, 55.555499] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708725, 55.555589], - [37.708725, 55.555679], - [37.708884, 55.555679], - [37.708884, 55.555589], - [37.708725, 55.555589] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708725, 55.555679], - [37.708725, 55.555769], - [37.708884, 55.555769], - [37.708884, 55.555679], - [37.708725, 55.555679] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708725, 55.555769], - [37.708725, 55.555859], - [37.708884, 55.555859], - [37.708884, 55.555769], - [37.708725, 55.555769] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708725, 55.555859], - [37.708725, 55.555949], - [37.708884, 55.555949], - [37.708884, 55.555859], - [37.708725, 55.555859] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708725, 55.555949], - [37.708725, 55.556039], - [37.708884, 55.556039], - [37.708884, 55.555949], - [37.708725, 55.555949] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708725, 55.556039], - [37.708725, 55.556128], - [37.708884, 55.556128], - [37.708884, 55.556039], - [37.708725, 55.556039] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708884, 55.55442], - [37.708884, 55.55451], - [37.709043, 55.55451], - [37.709043, 55.55442], - [37.708884, 55.55442] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708884, 55.55451], - [37.708884, 55.5546], - [37.709043, 55.5546], - [37.709043, 55.55451], - [37.708884, 55.55451] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708884, 55.5546], - [37.708884, 55.55469], - [37.709043, 55.55469], - [37.709043, 55.5546], - [37.708884, 55.5546] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708884, 55.55469], - [37.708884, 55.55478], - [37.709043, 55.55478], - [37.709043, 55.55469], - [37.708884, 55.55469] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708884, 55.55478], - [37.708884, 55.554869], - [37.709043, 55.554869], - [37.709043, 55.55478], - [37.708884, 55.55478] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708884, 55.554869], - [37.708884, 55.554959], - [37.709043, 55.554959], - [37.709043, 55.554869], - [37.708884, 55.554869] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708884, 55.554959], - [37.708884, 55.555049], - [37.709043, 55.555049], - [37.709043, 55.554959], - [37.708884, 55.554959] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708884, 55.555049], - [37.708884, 55.555139], - [37.709043, 55.555139], - [37.709043, 55.555049], - [37.708884, 55.555049] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708884, 55.555139], - [37.708884, 55.555229], - [37.709043, 55.555229], - [37.709043, 55.555139], - [37.708884, 55.555139] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708884, 55.555229], - [37.708884, 55.555319], - [37.709043, 55.555319], - [37.709043, 55.555229], - [37.708884, 55.555229] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708884, 55.555319], - [37.708884, 55.555409], - [37.709043, 55.555409], - [37.709043, 55.555319], - [37.708884, 55.555319] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708884, 55.555409], - [37.708884, 55.555499], - [37.709043, 55.555499], - [37.709043, 55.555409], - [37.708884, 55.555409] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708884, 55.555499], - [37.708884, 55.555589], - [37.709043, 55.555589], - [37.709043, 55.555499], - [37.708884, 55.555499] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708884, 55.555589], - [37.708884, 55.555679], - [37.709043, 55.555679], - [37.709043, 55.555589], - [37.708884, 55.555589] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708884, 55.555679], - [37.708884, 55.555769], - [37.709043, 55.555769], - [37.709043, 55.555679], - [37.708884, 55.555679] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708884, 55.555769], - [37.708884, 55.555859], - [37.709043, 55.555859], - [37.709043, 55.555769], - [37.708884, 55.555769] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708884, 55.555859], - [37.708884, 55.555949], - [37.709043, 55.555949], - [37.709043, 55.555859], - [37.708884, 55.555859] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708884, 55.555949], - [37.708884, 55.556039], - [37.709043, 55.556039], - [37.709043, 55.555949], - [37.708884, 55.555949] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.708884, 55.556039], - [37.708884, 55.556128], - [37.709043, 55.556128], - [37.709043, 55.556039], - [37.708884, 55.556039] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.709043, 55.5546], - [37.709043, 55.55469], - [37.709201, 55.55469], - [37.709201, 55.5546], - [37.709043, 55.5546] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.709043, 55.55469], - [37.709043, 55.55478], - [37.709201, 55.55478], - [37.709201, 55.55469], - [37.709043, 55.55469] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.709043, 55.55478], - [37.709043, 55.554869], - [37.709201, 55.554869], - [37.709201, 55.55478], - [37.709043, 55.55478] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.709043, 55.554869], - [37.709043, 55.554959], - [37.709201, 55.554959], - [37.709201, 55.554869], - [37.709043, 55.554869] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.709043, 55.554959], - [37.709043, 55.555049], - [37.709201, 55.555049], - [37.709201, 55.554959], - [37.709043, 55.554959] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.709043, 55.555049], - [37.709043, 55.555139], - [37.709201, 55.555139], - [37.709201, 55.555049], - [37.709043, 55.555049] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.709043, 55.555139], - [37.709043, 55.555229], - [37.709201, 55.555229], - [37.709201, 55.555139], - [37.709043, 55.555139] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.709043, 55.555229], - [37.709043, 55.555319], - [37.709201, 55.555319], - [37.709201, 55.555229], - [37.709043, 55.555229] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.709043, 55.555319], - [37.709043, 55.555409], - [37.709201, 55.555409], - [37.709201, 55.555319], - [37.709043, 55.555319] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.709043, 55.555409], - [37.709043, 55.555499], - [37.709201, 55.555499], - [37.709201, 55.555409], - [37.709043, 55.555409] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.709043, 55.555499], - [37.709043, 55.555589], - [37.709201, 55.555589], - [37.709201, 55.555499], - [37.709043, 55.555499] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.709043, 55.555589], - [37.709043, 55.555679], - [37.709201, 55.555679], - [37.709201, 55.555589], - [37.709043, 55.555589] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.709043, 55.555679], - [37.709043, 55.555769], - [37.709201, 55.555769], - [37.709201, 55.555679], - [37.709043, 55.555679] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.709043, 55.555769], - [37.709043, 55.555859], - [37.709201, 55.555859], - [37.709201, 55.555769], - [37.709043, 55.555769] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.709043, 55.555859], - [37.709043, 55.555949], - [37.709201, 55.555949], - [37.709201, 55.555859], - [37.709043, 55.555859] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.709043, 55.555949], - [37.709043, 55.556039], - [37.709201, 55.556039], - [37.709201, 55.555949], - [37.709043, 55.555949] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.709201, 55.55478], - [37.709201, 55.554869], - [37.70936, 55.554869], - [37.70936, 55.55478], - [37.709201, 55.55478] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.709201, 55.554869], - [37.709201, 55.554959], - [37.70936, 55.554959], - [37.70936, 55.554869], - [37.709201, 55.554869] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.709201, 55.554959], - [37.709201, 55.555049], - [37.70936, 55.555049], - [37.70936, 55.554959], - [37.709201, 55.554959] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.709201, 55.555049], - [37.709201, 55.555139], - [37.70936, 55.555139], - [37.70936, 55.555049], - [37.709201, 55.555049] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.709201, 55.555139], - [37.709201, 55.555229], - [37.70936, 55.555229], - [37.70936, 55.555139], - [37.709201, 55.555139] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.709201, 55.555229], - [37.709201, 55.555319], - [37.70936, 55.555319], - [37.70936, 55.555229], - [37.709201, 55.555229] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.709201, 55.555319], - [37.709201, 55.555409], - [37.70936, 55.555409], - [37.70936, 55.555319], - [37.709201, 55.555319] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.709201, 55.555409], - [37.709201, 55.555499], - [37.70936, 55.555499], - [37.70936, 55.555409], - [37.709201, 55.555409] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.709201, 55.555499], - [37.709201, 55.555589], - [37.70936, 55.555589], - [37.70936, 55.555499], - [37.709201, 55.555499] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.709201, 55.555589], - [37.709201, 55.555679], - [37.70936, 55.555679], - [37.70936, 55.555589], - [37.709201, 55.555589] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.709201, 55.555679], - [37.709201, 55.555769], - [37.70936, 55.555769], - [37.70936, 55.555679], - [37.709201, 55.555679] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.709201, 55.555769], - [37.709201, 55.555859], - [37.70936, 55.555859], - [37.70936, 55.555769], - [37.709201, 55.555769] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.709201, 55.555859], - [37.709201, 55.555949], - [37.70936, 55.555949], - [37.70936, 55.555859], - [37.709201, 55.555859] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70936, 55.554959], - [37.70936, 55.555049], - [37.709519, 55.555049], - [37.709519, 55.554959], - [37.70936, 55.554959] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70936, 55.555049], - [37.70936, 55.555139], - [37.709519, 55.555139], - [37.709519, 55.555049], - [37.70936, 55.555049] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70936, 55.555139], - [37.70936, 55.555229], - [37.709519, 55.555229], - [37.709519, 55.555139], - [37.70936, 55.555139] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70936, 55.555229], - [37.70936, 55.555319], - [37.709519, 55.555319], - [37.709519, 55.555229], - [37.70936, 55.555229] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70936, 55.555319], - [37.70936, 55.555409], - [37.709519, 55.555409], - [37.709519, 55.555319], - [37.70936, 55.555319] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70936, 55.555409], - [37.70936, 55.555499], - [37.709519, 55.555499], - [37.709519, 55.555409], - [37.70936, 55.555409] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70936, 55.555499], - [37.70936, 55.555589], - [37.709519, 55.555589], - [37.709519, 55.555499], - [37.70936, 55.555499] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70936, 55.555589], - [37.70936, 55.555679], - [37.709519, 55.555679], - [37.709519, 55.555589], - [37.70936, 55.555589] - ] - ] - } - }, - { - "type": "Feature", - "bbox": [ - 37.69975662231445, - 55.55151096909941, - 37.70958423614502, - 55.55615949302079 - ], - "properties": { - "stroke": "#F00", - "stroke-width": 6, - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.69975662231445, 55.55151096909941], - [37.70958423614502, 55.55151096909941], - [37.70958423614502, 55.55615949302079], - [37.69975662231445, 55.55615949302079], - [37.69975662231445, 55.55151096909941] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "stroke": "#00F", - "stroke-width": 6, - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.70651578903198, 55.55151096909941], - [37.70958423614502, 55.555297797727704], - [37.709230184555054, 55.555850013083], - [37.70885467529296, 55.55615949302079], - [37.70013213157654, 55.55376247689539], - [37.69975662231445, 55.55329519343182], - [37.70651578903198, 55.55151096909941] - ] - ] - } - } - ] + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.699821, + 55.553161 + ], + [ + 37.699821, + 55.553251 + ], + [ + 37.69998, + 55.553251 + ], + [ + 37.69998, + 55.553161 + ], + [ + 37.699821, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.699821, + 55.553251 + ], + [ + 37.699821, + 55.553341 + ], + [ + 37.69998, + 55.553341 + ], + [ + 37.69998, + 55.553251 + ], + [ + 37.699821, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.699821, + 55.553341 + ], + [ + 37.699821, + 55.553431 + ], + [ + 37.69998, + 55.553431 + ], + [ + 37.69998, + 55.553341 + ], + [ + 37.699821, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.699821, + 55.553431 + ], + [ + 37.699821, + 55.55352 + ], + [ + 37.69998, + 55.55352 + ], + [ + 37.69998, + 55.553431 + ], + [ + 37.699821, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.699821, + 55.55352 + ], + [ + 37.699821, + 55.55361 + ], + [ + 37.69998, + 55.55361 + ], + [ + 37.69998, + 55.55352 + ], + [ + 37.699821, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.69998, + 55.553161 + ], + [ + 37.69998, + 55.553251 + ], + [ + 37.700139, + 55.553251 + ], + [ + 37.700139, + 55.553161 + ], + [ + 37.69998, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.69998, + 55.553251 + ], + [ + 37.69998, + 55.553341 + ], + [ + 37.700139, + 55.553341 + ], + [ + 37.700139, + 55.553251 + ], + [ + 37.69998, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.69998, + 55.553341 + ], + [ + 37.69998, + 55.553431 + ], + [ + 37.700139, + 55.553431 + ], + [ + 37.700139, + 55.553341 + ], + [ + 37.69998, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.69998, + 55.553431 + ], + [ + 37.69998, + 55.55352 + ], + [ + 37.700139, + 55.55352 + ], + [ + 37.700139, + 55.553431 + ], + [ + 37.69998, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.69998, + 55.55352 + ], + [ + 37.69998, + 55.55361 + ], + [ + 37.700139, + 55.55361 + ], + [ + 37.700139, + 55.55352 + ], + [ + 37.69998, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.69998, + 55.55361 + ], + [ + 37.69998, + 55.5537 + ], + [ + 37.700139, + 55.5537 + ], + [ + 37.700139, + 55.55361 + ], + [ + 37.69998, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.69998, + 55.5537 + ], + [ + 37.69998, + 55.55379 + ], + [ + 37.700139, + 55.55379 + ], + [ + 37.700139, + 55.5537 + ], + [ + 37.69998, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700139, + 55.553071 + ], + [ + 37.700139, + 55.553161 + ], + [ + 37.700298, + 55.553161 + ], + [ + 37.700298, + 55.553071 + ], + [ + 37.700139, + 55.553071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700139, + 55.553161 + ], + [ + 37.700139, + 55.553251 + ], + [ + 37.700298, + 55.553251 + ], + [ + 37.700298, + 55.553161 + ], + [ + 37.700139, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700139, + 55.553251 + ], + [ + 37.700139, + 55.553341 + ], + [ + 37.700298, + 55.553341 + ], + [ + 37.700298, + 55.553251 + ], + [ + 37.700139, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700139, + 55.553341 + ], + [ + 37.700139, + 55.553431 + ], + [ + 37.700298, + 55.553431 + ], + [ + 37.700298, + 55.553341 + ], + [ + 37.700139, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700139, + 55.553431 + ], + [ + 37.700139, + 55.55352 + ], + [ + 37.700298, + 55.55352 + ], + [ + 37.700298, + 55.553431 + ], + [ + 37.700139, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700139, + 55.55352 + ], + [ + 37.700139, + 55.55361 + ], + [ + 37.700298, + 55.55361 + ], + [ + 37.700298, + 55.55352 + ], + [ + 37.700139, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700139, + 55.55361 + ], + [ + 37.700139, + 55.5537 + ], + [ + 37.700298, + 55.5537 + ], + [ + 37.700298, + 55.55361 + ], + [ + 37.700139, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700139, + 55.5537 + ], + [ + 37.700139, + 55.55379 + ], + [ + 37.700298, + 55.55379 + ], + [ + 37.700298, + 55.5537 + ], + [ + 37.700139, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700139, + 55.55379 + ], + [ + 37.700139, + 55.55388 + ], + [ + 37.700298, + 55.55388 + ], + [ + 37.700298, + 55.55379 + ], + [ + 37.700139, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700298, + 55.553071 + ], + [ + 37.700298, + 55.553161 + ], + [ + 37.700457, + 55.553161 + ], + [ + 37.700457, + 55.553071 + ], + [ + 37.700298, + 55.553071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700298, + 55.553161 + ], + [ + 37.700298, + 55.553251 + ], + [ + 37.700457, + 55.553251 + ], + [ + 37.700457, + 55.553161 + ], + [ + 37.700298, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700298, + 55.553251 + ], + [ + 37.700298, + 55.553341 + ], + [ + 37.700457, + 55.553341 + ], + [ + 37.700457, + 55.553251 + ], + [ + 37.700298, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700298, + 55.553341 + ], + [ + 37.700298, + 55.553431 + ], + [ + 37.700457, + 55.553431 + ], + [ + 37.700457, + 55.553341 + ], + [ + 37.700298, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700298, + 55.553431 + ], + [ + 37.700298, + 55.55352 + ], + [ + 37.700457, + 55.55352 + ], + [ + 37.700457, + 55.553431 + ], + [ + 37.700298, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700298, + 55.55352 + ], + [ + 37.700298, + 55.55361 + ], + [ + 37.700457, + 55.55361 + ], + [ + 37.700457, + 55.55352 + ], + [ + 37.700298, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700298, + 55.55361 + ], + [ + 37.700298, + 55.5537 + ], + [ + 37.700457, + 55.5537 + ], + [ + 37.700457, + 55.55361 + ], + [ + 37.700298, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700298, + 55.5537 + ], + [ + 37.700298, + 55.55379 + ], + [ + 37.700457, + 55.55379 + ], + [ + 37.700457, + 55.5537 + ], + [ + 37.700298, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700298, + 55.55379 + ], + [ + 37.700298, + 55.55388 + ], + [ + 37.700457, + 55.55388 + ], + [ + 37.700457, + 55.55379 + ], + [ + 37.700298, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700457, + 55.552981 + ], + [ + 37.700457, + 55.553071 + ], + [ + 37.700616, + 55.553071 + ], + [ + 37.700616, + 55.552981 + ], + [ + 37.700457, + 55.552981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700457, + 55.553071 + ], + [ + 37.700457, + 55.553161 + ], + [ + 37.700616, + 55.553161 + ], + [ + 37.700616, + 55.553071 + ], + [ + 37.700457, + 55.553071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700457, + 55.553161 + ], + [ + 37.700457, + 55.553251 + ], + [ + 37.700616, + 55.553251 + ], + [ + 37.700616, + 55.553161 + ], + [ + 37.700457, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700457, + 55.553251 + ], + [ + 37.700457, + 55.553341 + ], + [ + 37.700616, + 55.553341 + ], + [ + 37.700616, + 55.553251 + ], + [ + 37.700457, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700457, + 55.553341 + ], + [ + 37.700457, + 55.553431 + ], + [ + 37.700616, + 55.553431 + ], + [ + 37.700616, + 55.553341 + ], + [ + 37.700457, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700457, + 55.553431 + ], + [ + 37.700457, + 55.55352 + ], + [ + 37.700616, + 55.55352 + ], + [ + 37.700616, + 55.553431 + ], + [ + 37.700457, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700457, + 55.55352 + ], + [ + 37.700457, + 55.55361 + ], + [ + 37.700616, + 55.55361 + ], + [ + 37.700616, + 55.55352 + ], + [ + 37.700457, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700457, + 55.55361 + ], + [ + 37.700457, + 55.5537 + ], + [ + 37.700616, + 55.5537 + ], + [ + 37.700616, + 55.55361 + ], + [ + 37.700457, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700457, + 55.5537 + ], + [ + 37.700457, + 55.55379 + ], + [ + 37.700616, + 55.55379 + ], + [ + 37.700616, + 55.5537 + ], + [ + 37.700457, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700457, + 55.55379 + ], + [ + 37.700457, + 55.55388 + ], + [ + 37.700616, + 55.55388 + ], + [ + 37.700616, + 55.55379 + ], + [ + 37.700457, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700457, + 55.55388 + ], + [ + 37.700457, + 55.55397 + ], + [ + 37.700616, + 55.55397 + ], + [ + 37.700616, + 55.55388 + ], + [ + 37.700457, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700616, + 55.552981 + ], + [ + 37.700616, + 55.553071 + ], + [ + 37.700775, + 55.553071 + ], + [ + 37.700775, + 55.552981 + ], + [ + 37.700616, + 55.552981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700616, + 55.553071 + ], + [ + 37.700616, + 55.553161 + ], + [ + 37.700775, + 55.553161 + ], + [ + 37.700775, + 55.553071 + ], + [ + 37.700616, + 55.553071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700616, + 55.553161 + ], + [ + 37.700616, + 55.553251 + ], + [ + 37.700775, + 55.553251 + ], + [ + 37.700775, + 55.553161 + ], + [ + 37.700616, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700616, + 55.553251 + ], + [ + 37.700616, + 55.553341 + ], + [ + 37.700775, + 55.553341 + ], + [ + 37.700775, + 55.553251 + ], + [ + 37.700616, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700616, + 55.553341 + ], + [ + 37.700616, + 55.553431 + ], + [ + 37.700775, + 55.553431 + ], + [ + 37.700775, + 55.553341 + ], + [ + 37.700616, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700616, + 55.553431 + ], + [ + 37.700616, + 55.55352 + ], + [ + 37.700775, + 55.55352 + ], + [ + 37.700775, + 55.553431 + ], + [ + 37.700616, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700616, + 55.55352 + ], + [ + 37.700616, + 55.55361 + ], + [ + 37.700775, + 55.55361 + ], + [ + 37.700775, + 55.55352 + ], + [ + 37.700616, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700616, + 55.55361 + ], + [ + 37.700616, + 55.5537 + ], + [ + 37.700775, + 55.5537 + ], + [ + 37.700775, + 55.55361 + ], + [ + 37.700616, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700616, + 55.5537 + ], + [ + 37.700616, + 55.55379 + ], + [ + 37.700775, + 55.55379 + ], + [ + 37.700775, + 55.5537 + ], + [ + 37.700616, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700616, + 55.55379 + ], + [ + 37.700616, + 55.55388 + ], + [ + 37.700775, + 55.55388 + ], + [ + 37.700775, + 55.55379 + ], + [ + 37.700616, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700616, + 55.55388 + ], + [ + 37.700616, + 55.55397 + ], + [ + 37.700775, + 55.55397 + ], + [ + 37.700775, + 55.55388 + ], + [ + 37.700616, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700775, + 55.552981 + ], + [ + 37.700775, + 55.553071 + ], + [ + 37.700934, + 55.553071 + ], + [ + 37.700934, + 55.552981 + ], + [ + 37.700775, + 55.552981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700775, + 55.553071 + ], + [ + 37.700775, + 55.553161 + ], + [ + 37.700934, + 55.553161 + ], + [ + 37.700934, + 55.553071 + ], + [ + 37.700775, + 55.553071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700775, + 55.553161 + ], + [ + 37.700775, + 55.553251 + ], + [ + 37.700934, + 55.553251 + ], + [ + 37.700934, + 55.553161 + ], + [ + 37.700775, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700775, + 55.553251 + ], + [ + 37.700775, + 55.553341 + ], + [ + 37.700934, + 55.553341 + ], + [ + 37.700934, + 55.553251 + ], + [ + 37.700775, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700775, + 55.553341 + ], + [ + 37.700775, + 55.553431 + ], + [ + 37.700934, + 55.553431 + ], + [ + 37.700934, + 55.553341 + ], + [ + 37.700775, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700775, + 55.553431 + ], + [ + 37.700775, + 55.55352 + ], + [ + 37.700934, + 55.55352 + ], + [ + 37.700934, + 55.553431 + ], + [ + 37.700775, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700775, + 55.55352 + ], + [ + 37.700775, + 55.55361 + ], + [ + 37.700934, + 55.55361 + ], + [ + 37.700934, + 55.55352 + ], + [ + 37.700775, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700775, + 55.55361 + ], + [ + 37.700775, + 55.5537 + ], + [ + 37.700934, + 55.5537 + ], + [ + 37.700934, + 55.55361 + ], + [ + 37.700775, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700775, + 55.5537 + ], + [ + 37.700775, + 55.55379 + ], + [ + 37.700934, + 55.55379 + ], + [ + 37.700934, + 55.5537 + ], + [ + 37.700775, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700775, + 55.55379 + ], + [ + 37.700775, + 55.55388 + ], + [ + 37.700934, + 55.55388 + ], + [ + 37.700934, + 55.55379 + ], + [ + 37.700775, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700775, + 55.55388 + ], + [ + 37.700775, + 55.55397 + ], + [ + 37.700934, + 55.55397 + ], + [ + 37.700934, + 55.55388 + ], + [ + 37.700775, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700775, + 55.55397 + ], + [ + 37.700775, + 55.55406 + ], + [ + 37.700934, + 55.55406 + ], + [ + 37.700934, + 55.55397 + ], + [ + 37.700775, + 55.55397 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700934, + 55.552891 + ], + [ + 37.700934, + 55.552981 + ], + [ + 37.701093, + 55.552981 + ], + [ + 37.701093, + 55.552891 + ], + [ + 37.700934, + 55.552891 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700934, + 55.552981 + ], + [ + 37.700934, + 55.553071 + ], + [ + 37.701093, + 55.553071 + ], + [ + 37.701093, + 55.552981 + ], + [ + 37.700934, + 55.552981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700934, + 55.553071 + ], + [ + 37.700934, + 55.553161 + ], + [ + 37.701093, + 55.553161 + ], + [ + 37.701093, + 55.553071 + ], + [ + 37.700934, + 55.553071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700934, + 55.553161 + ], + [ + 37.700934, + 55.553251 + ], + [ + 37.701093, + 55.553251 + ], + [ + 37.701093, + 55.553161 + ], + [ + 37.700934, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700934, + 55.553251 + ], + [ + 37.700934, + 55.553341 + ], + [ + 37.701093, + 55.553341 + ], + [ + 37.701093, + 55.553251 + ], + [ + 37.700934, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700934, + 55.553341 + ], + [ + 37.700934, + 55.553431 + ], + [ + 37.701093, + 55.553431 + ], + [ + 37.701093, + 55.553341 + ], + [ + 37.700934, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700934, + 55.553431 + ], + [ + 37.700934, + 55.55352 + ], + [ + 37.701093, + 55.55352 + ], + [ + 37.701093, + 55.553431 + ], + [ + 37.700934, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700934, + 55.55352 + ], + [ + 37.700934, + 55.55361 + ], + [ + 37.701093, + 55.55361 + ], + [ + 37.701093, + 55.55352 + ], + [ + 37.700934, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700934, + 55.55361 + ], + [ + 37.700934, + 55.5537 + ], + [ + 37.701093, + 55.5537 + ], + [ + 37.701093, + 55.55361 + ], + [ + 37.700934, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700934, + 55.5537 + ], + [ + 37.700934, + 55.55379 + ], + [ + 37.701093, + 55.55379 + ], + [ + 37.701093, + 55.5537 + ], + [ + 37.700934, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700934, + 55.55379 + ], + [ + 37.700934, + 55.55388 + ], + [ + 37.701093, + 55.55388 + ], + [ + 37.701093, + 55.55379 + ], + [ + 37.700934, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700934, + 55.55388 + ], + [ + 37.700934, + 55.55397 + ], + [ + 37.701093, + 55.55397 + ], + [ + 37.701093, + 55.55388 + ], + [ + 37.700934, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.700934, + 55.55397 + ], + [ + 37.700934, + 55.55406 + ], + [ + 37.701093, + 55.55406 + ], + [ + 37.701093, + 55.55397 + ], + [ + 37.700934, + 55.55397 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701093, + 55.552891 + ], + [ + 37.701093, + 55.552981 + ], + [ + 37.701252, + 55.552981 + ], + [ + 37.701252, + 55.552891 + ], + [ + 37.701093, + 55.552891 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701093, + 55.552981 + ], + [ + 37.701093, + 55.553071 + ], + [ + 37.701252, + 55.553071 + ], + [ + 37.701252, + 55.552981 + ], + [ + 37.701093, + 55.552981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701093, + 55.553071 + ], + [ + 37.701093, + 55.553161 + ], + [ + 37.701252, + 55.553161 + ], + [ + 37.701252, + 55.553071 + ], + [ + 37.701093, + 55.553071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701093, + 55.553161 + ], + [ + 37.701093, + 55.553251 + ], + [ + 37.701252, + 55.553251 + ], + [ + 37.701252, + 55.553161 + ], + [ + 37.701093, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701093, + 55.553251 + ], + [ + 37.701093, + 55.553341 + ], + [ + 37.701252, + 55.553341 + ], + [ + 37.701252, + 55.553251 + ], + [ + 37.701093, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701093, + 55.553341 + ], + [ + 37.701093, + 55.553431 + ], + [ + 37.701252, + 55.553431 + ], + [ + 37.701252, + 55.553341 + ], + [ + 37.701093, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701093, + 55.553431 + ], + [ + 37.701093, + 55.55352 + ], + [ + 37.701252, + 55.55352 + ], + [ + 37.701252, + 55.553431 + ], + [ + 37.701093, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701093, + 55.55352 + ], + [ + 37.701093, + 55.55361 + ], + [ + 37.701252, + 55.55361 + ], + [ + 37.701252, + 55.55352 + ], + [ + 37.701093, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701093, + 55.55361 + ], + [ + 37.701093, + 55.5537 + ], + [ + 37.701252, + 55.5537 + ], + [ + 37.701252, + 55.55361 + ], + [ + 37.701093, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701093, + 55.5537 + ], + [ + 37.701093, + 55.55379 + ], + [ + 37.701252, + 55.55379 + ], + [ + 37.701252, + 55.5537 + ], + [ + 37.701093, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701093, + 55.55379 + ], + [ + 37.701093, + 55.55388 + ], + [ + 37.701252, + 55.55388 + ], + [ + 37.701252, + 55.55379 + ], + [ + 37.701093, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701093, + 55.55388 + ], + [ + 37.701093, + 55.55397 + ], + [ + 37.701252, + 55.55397 + ], + [ + 37.701252, + 55.55388 + ], + [ + 37.701093, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701093, + 55.55397 + ], + [ + 37.701093, + 55.55406 + ], + [ + 37.701252, + 55.55406 + ], + [ + 37.701252, + 55.55397 + ], + [ + 37.701093, + 55.55397 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701093, + 55.55406 + ], + [ + 37.701093, + 55.55415 + ], + [ + 37.701252, + 55.55415 + ], + [ + 37.701252, + 55.55406 + ], + [ + 37.701093, + 55.55406 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701252, + 55.552801 + ], + [ + 37.701252, + 55.552891 + ], + [ + 37.701411, + 55.552891 + ], + [ + 37.701411, + 55.552801 + ], + [ + 37.701252, + 55.552801 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701252, + 55.552891 + ], + [ + 37.701252, + 55.552981 + ], + [ + 37.701411, + 55.552981 + ], + [ + 37.701411, + 55.552891 + ], + [ + 37.701252, + 55.552891 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701252, + 55.552981 + ], + [ + 37.701252, + 55.553071 + ], + [ + 37.701411, + 55.553071 + ], + [ + 37.701411, + 55.552981 + ], + [ + 37.701252, + 55.552981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701252, + 55.553071 + ], + [ + 37.701252, + 55.553161 + ], + [ + 37.701411, + 55.553161 + ], + [ + 37.701411, + 55.553071 + ], + [ + 37.701252, + 55.553071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701252, + 55.553161 + ], + [ + 37.701252, + 55.553251 + ], + [ + 37.701411, + 55.553251 + ], + [ + 37.701411, + 55.553161 + ], + [ + 37.701252, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701252, + 55.553251 + ], + [ + 37.701252, + 55.553341 + ], + [ + 37.701411, + 55.553341 + ], + [ + 37.701411, + 55.553251 + ], + [ + 37.701252, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701252, + 55.553341 + ], + [ + 37.701252, + 55.553431 + ], + [ + 37.701411, + 55.553431 + ], + [ + 37.701411, + 55.553341 + ], + [ + 37.701252, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701252, + 55.553431 + ], + [ + 37.701252, + 55.55352 + ], + [ + 37.701411, + 55.55352 + ], + [ + 37.701411, + 55.553431 + ], + [ + 37.701252, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701252, + 55.55352 + ], + [ + 37.701252, + 55.55361 + ], + [ + 37.701411, + 55.55361 + ], + [ + 37.701411, + 55.55352 + ], + [ + 37.701252, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701252, + 55.55361 + ], + [ + 37.701252, + 55.5537 + ], + [ + 37.701411, + 55.5537 + ], + [ + 37.701411, + 55.55361 + ], + [ + 37.701252, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701252, + 55.5537 + ], + [ + 37.701252, + 55.55379 + ], + [ + 37.701411, + 55.55379 + ], + [ + 37.701411, + 55.5537 + ], + [ + 37.701252, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701252, + 55.55379 + ], + [ + 37.701252, + 55.55388 + ], + [ + 37.701411, + 55.55388 + ], + [ + 37.701411, + 55.55379 + ], + [ + 37.701252, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701252, + 55.55388 + ], + [ + 37.701252, + 55.55397 + ], + [ + 37.701411, + 55.55397 + ], + [ + 37.701411, + 55.55388 + ], + [ + 37.701252, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701252, + 55.55397 + ], + [ + 37.701252, + 55.55406 + ], + [ + 37.701411, + 55.55406 + ], + [ + 37.701411, + 55.55397 + ], + [ + 37.701252, + 55.55397 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701252, + 55.55406 + ], + [ + 37.701252, + 55.55415 + ], + [ + 37.701411, + 55.55415 + ], + [ + 37.701411, + 55.55406 + ], + [ + 37.701252, + 55.55406 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701411, + 55.552801 + ], + [ + 37.701411, + 55.552891 + ], + [ + 37.70157, + 55.552891 + ], + [ + 37.70157, + 55.552801 + ], + [ + 37.701411, + 55.552801 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701411, + 55.552891 + ], + [ + 37.701411, + 55.552981 + ], + [ + 37.70157, + 55.552981 + ], + [ + 37.70157, + 55.552891 + ], + [ + 37.701411, + 55.552891 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701411, + 55.552981 + ], + [ + 37.701411, + 55.553071 + ], + [ + 37.70157, + 55.553071 + ], + [ + 37.70157, + 55.552981 + ], + [ + 37.701411, + 55.552981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701411, + 55.553071 + ], + [ + 37.701411, + 55.553161 + ], + [ + 37.70157, + 55.553161 + ], + [ + 37.70157, + 55.553071 + ], + [ + 37.701411, + 55.553071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701411, + 55.553161 + ], + [ + 37.701411, + 55.553251 + ], + [ + 37.70157, + 55.553251 + ], + [ + 37.70157, + 55.553161 + ], + [ + 37.701411, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701411, + 55.553251 + ], + [ + 37.701411, + 55.553341 + ], + [ + 37.70157, + 55.553341 + ], + [ + 37.70157, + 55.553251 + ], + [ + 37.701411, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701411, + 55.553341 + ], + [ + 37.701411, + 55.553431 + ], + [ + 37.70157, + 55.553431 + ], + [ + 37.70157, + 55.553341 + ], + [ + 37.701411, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701411, + 55.553431 + ], + [ + 37.701411, + 55.55352 + ], + [ + 37.70157, + 55.55352 + ], + [ + 37.70157, + 55.553431 + ], + [ + 37.701411, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701411, + 55.55352 + ], + [ + 37.701411, + 55.55361 + ], + [ + 37.70157, + 55.55361 + ], + [ + 37.70157, + 55.55352 + ], + [ + 37.701411, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701411, + 55.55361 + ], + [ + 37.701411, + 55.5537 + ], + [ + 37.70157, + 55.5537 + ], + [ + 37.70157, + 55.55361 + ], + [ + 37.701411, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701411, + 55.5537 + ], + [ + 37.701411, + 55.55379 + ], + [ + 37.70157, + 55.55379 + ], + [ + 37.70157, + 55.5537 + ], + [ + 37.701411, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701411, + 55.55379 + ], + [ + 37.701411, + 55.55388 + ], + [ + 37.70157, + 55.55388 + ], + [ + 37.70157, + 55.55379 + ], + [ + 37.701411, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701411, + 55.55388 + ], + [ + 37.701411, + 55.55397 + ], + [ + 37.70157, + 55.55397 + ], + [ + 37.70157, + 55.55388 + ], + [ + 37.701411, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701411, + 55.55397 + ], + [ + 37.701411, + 55.55406 + ], + [ + 37.70157, + 55.55406 + ], + [ + 37.70157, + 55.55397 + ], + [ + 37.701411, + 55.55397 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701411, + 55.55406 + ], + [ + 37.701411, + 55.55415 + ], + [ + 37.70157, + 55.55415 + ], + [ + 37.70157, + 55.55406 + ], + [ + 37.701411, + 55.55406 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701411, + 55.55415 + ], + [ + 37.701411, + 55.55424 + ], + [ + 37.70157, + 55.55424 + ], + [ + 37.70157, + 55.55415 + ], + [ + 37.701411, + 55.55415 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70157, + 55.552711 + ], + [ + 37.70157, + 55.552801 + ], + [ + 37.701729, + 55.552801 + ], + [ + 37.701729, + 55.552711 + ], + [ + 37.70157, + 55.552711 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70157, + 55.552801 + ], + [ + 37.70157, + 55.552891 + ], + [ + 37.701729, + 55.552891 + ], + [ + 37.701729, + 55.552801 + ], + [ + 37.70157, + 55.552801 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70157, + 55.552891 + ], + [ + 37.70157, + 55.552981 + ], + [ + 37.701729, + 55.552981 + ], + [ + 37.701729, + 55.552891 + ], + [ + 37.70157, + 55.552891 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70157, + 55.552981 + ], + [ + 37.70157, + 55.553071 + ], + [ + 37.701729, + 55.553071 + ], + [ + 37.701729, + 55.552981 + ], + [ + 37.70157, + 55.552981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70157, + 55.553071 + ], + [ + 37.70157, + 55.553161 + ], + [ + 37.701729, + 55.553161 + ], + [ + 37.701729, + 55.553071 + ], + [ + 37.70157, + 55.553071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70157, + 55.553161 + ], + [ + 37.70157, + 55.553251 + ], + [ + 37.701729, + 55.553251 + ], + [ + 37.701729, + 55.553161 + ], + [ + 37.70157, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70157, + 55.553251 + ], + [ + 37.70157, + 55.553341 + ], + [ + 37.701729, + 55.553341 + ], + [ + 37.701729, + 55.553251 + ], + [ + 37.70157, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70157, + 55.553341 + ], + [ + 37.70157, + 55.553431 + ], + [ + 37.701729, + 55.553431 + ], + [ + 37.701729, + 55.553341 + ], + [ + 37.70157, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70157, + 55.553431 + ], + [ + 37.70157, + 55.55352 + ], + [ + 37.701729, + 55.55352 + ], + [ + 37.701729, + 55.553431 + ], + [ + 37.70157, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70157, + 55.55352 + ], + [ + 37.70157, + 55.55361 + ], + [ + 37.701729, + 55.55361 + ], + [ + 37.701729, + 55.55352 + ], + [ + 37.70157, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70157, + 55.55361 + ], + [ + 37.70157, + 55.5537 + ], + [ + 37.701729, + 55.5537 + ], + [ + 37.701729, + 55.55361 + ], + [ + 37.70157, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70157, + 55.5537 + ], + [ + 37.70157, + 55.55379 + ], + [ + 37.701729, + 55.55379 + ], + [ + 37.701729, + 55.5537 + ], + [ + 37.70157, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70157, + 55.55379 + ], + [ + 37.70157, + 55.55388 + ], + [ + 37.701729, + 55.55388 + ], + [ + 37.701729, + 55.55379 + ], + [ + 37.70157, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70157, + 55.55388 + ], + [ + 37.70157, + 55.55397 + ], + [ + 37.701729, + 55.55397 + ], + [ + 37.701729, + 55.55388 + ], + [ + 37.70157, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70157, + 55.55397 + ], + [ + 37.70157, + 55.55406 + ], + [ + 37.701729, + 55.55406 + ], + [ + 37.701729, + 55.55397 + ], + [ + 37.70157, + 55.55397 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70157, + 55.55406 + ], + [ + 37.70157, + 55.55415 + ], + [ + 37.701729, + 55.55415 + ], + [ + 37.701729, + 55.55406 + ], + [ + 37.70157, + 55.55406 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70157, + 55.55415 + ], + [ + 37.70157, + 55.55424 + ], + [ + 37.701729, + 55.55424 + ], + [ + 37.701729, + 55.55415 + ], + [ + 37.70157, + 55.55415 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701729, + 55.552711 + ], + [ + 37.701729, + 55.552801 + ], + [ + 37.701888, + 55.552801 + ], + [ + 37.701888, + 55.552711 + ], + [ + 37.701729, + 55.552711 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701729, + 55.552801 + ], + [ + 37.701729, + 55.552891 + ], + [ + 37.701888, + 55.552891 + ], + [ + 37.701888, + 55.552801 + ], + [ + 37.701729, + 55.552801 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701729, + 55.552891 + ], + [ + 37.701729, + 55.552981 + ], + [ + 37.701888, + 55.552981 + ], + [ + 37.701888, + 55.552891 + ], + [ + 37.701729, + 55.552891 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701729, + 55.552981 + ], + [ + 37.701729, + 55.553071 + ], + [ + 37.701888, + 55.553071 + ], + [ + 37.701888, + 55.552981 + ], + [ + 37.701729, + 55.552981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701729, + 55.553071 + ], + [ + 37.701729, + 55.553161 + ], + [ + 37.701888, + 55.553161 + ], + [ + 37.701888, + 55.553071 + ], + [ + 37.701729, + 55.553071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701729, + 55.553161 + ], + [ + 37.701729, + 55.553251 + ], + [ + 37.701888, + 55.553251 + ], + [ + 37.701888, + 55.553161 + ], + [ + 37.701729, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701729, + 55.553251 + ], + [ + 37.701729, + 55.553341 + ], + [ + 37.701888, + 55.553341 + ], + [ + 37.701888, + 55.553251 + ], + [ + 37.701729, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701729, + 55.553341 + ], + [ + 37.701729, + 55.553431 + ], + [ + 37.701888, + 55.553431 + ], + [ + 37.701888, + 55.553341 + ], + [ + 37.701729, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701729, + 55.553431 + ], + [ + 37.701729, + 55.55352 + ], + [ + 37.701888, + 55.55352 + ], + [ + 37.701888, + 55.553431 + ], + [ + 37.701729, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701729, + 55.55352 + ], + [ + 37.701729, + 55.55361 + ], + [ + 37.701888, + 55.55361 + ], + [ + 37.701888, + 55.55352 + ], + [ + 37.701729, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701729, + 55.55361 + ], + [ + 37.701729, + 55.5537 + ], + [ + 37.701888, + 55.5537 + ], + [ + 37.701888, + 55.55361 + ], + [ + 37.701729, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701729, + 55.5537 + ], + [ + 37.701729, + 55.55379 + ], + [ + 37.701888, + 55.55379 + ], + [ + 37.701888, + 55.5537 + ], + [ + 37.701729, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701729, + 55.55379 + ], + [ + 37.701729, + 55.55388 + ], + [ + 37.701888, + 55.55388 + ], + [ + 37.701888, + 55.55379 + ], + [ + 37.701729, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701729, + 55.55388 + ], + [ + 37.701729, + 55.55397 + ], + [ + 37.701888, + 55.55397 + ], + [ + 37.701888, + 55.55388 + ], + [ + 37.701729, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701729, + 55.55397 + ], + [ + 37.701729, + 55.55406 + ], + [ + 37.701888, + 55.55406 + ], + [ + 37.701888, + 55.55397 + ], + [ + 37.701729, + 55.55397 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701729, + 55.55406 + ], + [ + 37.701729, + 55.55415 + ], + [ + 37.701888, + 55.55415 + ], + [ + 37.701888, + 55.55406 + ], + [ + 37.701729, + 55.55406 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701729, + 55.55415 + ], + [ + 37.701729, + 55.55424 + ], + [ + 37.701888, + 55.55424 + ], + [ + 37.701888, + 55.55415 + ], + [ + 37.701729, + 55.55415 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701729, + 55.55424 + ], + [ + 37.701729, + 55.55433 + ], + [ + 37.701888, + 55.55433 + ], + [ + 37.701888, + 55.55424 + ], + [ + 37.701729, + 55.55424 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701888, + 55.552621 + ], + [ + 37.701888, + 55.552711 + ], + [ + 37.702047, + 55.552711 + ], + [ + 37.702047, + 55.552621 + ], + [ + 37.701888, + 55.552621 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701888, + 55.552711 + ], + [ + 37.701888, + 55.552801 + ], + [ + 37.702047, + 55.552801 + ], + [ + 37.702047, + 55.552711 + ], + [ + 37.701888, + 55.552711 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701888, + 55.552801 + ], + [ + 37.701888, + 55.552891 + ], + [ + 37.702047, + 55.552891 + ], + [ + 37.702047, + 55.552801 + ], + [ + 37.701888, + 55.552801 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701888, + 55.552891 + ], + [ + 37.701888, + 55.552981 + ], + [ + 37.702047, + 55.552981 + ], + [ + 37.702047, + 55.552891 + ], + [ + 37.701888, + 55.552891 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701888, + 55.552981 + ], + [ + 37.701888, + 55.553071 + ], + [ + 37.702047, + 55.553071 + ], + [ + 37.702047, + 55.552981 + ], + [ + 37.701888, + 55.552981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701888, + 55.553071 + ], + [ + 37.701888, + 55.553161 + ], + [ + 37.702047, + 55.553161 + ], + [ + 37.702047, + 55.553071 + ], + [ + 37.701888, + 55.553071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701888, + 55.553161 + ], + [ + 37.701888, + 55.553251 + ], + [ + 37.702047, + 55.553251 + ], + [ + 37.702047, + 55.553161 + ], + [ + 37.701888, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701888, + 55.553251 + ], + [ + 37.701888, + 55.553341 + ], + [ + 37.702047, + 55.553341 + ], + [ + 37.702047, + 55.553251 + ], + [ + 37.701888, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701888, + 55.553341 + ], + [ + 37.701888, + 55.553431 + ], + [ + 37.702047, + 55.553431 + ], + [ + 37.702047, + 55.553341 + ], + [ + 37.701888, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701888, + 55.553431 + ], + [ + 37.701888, + 55.55352 + ], + [ + 37.702047, + 55.55352 + ], + [ + 37.702047, + 55.553431 + ], + [ + 37.701888, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701888, + 55.55352 + ], + [ + 37.701888, + 55.55361 + ], + [ + 37.702047, + 55.55361 + ], + [ + 37.702047, + 55.55352 + ], + [ + 37.701888, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701888, + 55.55361 + ], + [ + 37.701888, + 55.5537 + ], + [ + 37.702047, + 55.5537 + ], + [ + 37.702047, + 55.55361 + ], + [ + 37.701888, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701888, + 55.5537 + ], + [ + 37.701888, + 55.55379 + ], + [ + 37.702047, + 55.55379 + ], + [ + 37.702047, + 55.5537 + ], + [ + 37.701888, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701888, + 55.55379 + ], + [ + 37.701888, + 55.55388 + ], + [ + 37.702047, + 55.55388 + ], + [ + 37.702047, + 55.55379 + ], + [ + 37.701888, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701888, + 55.55388 + ], + [ + 37.701888, + 55.55397 + ], + [ + 37.702047, + 55.55397 + ], + [ + 37.702047, + 55.55388 + ], + [ + 37.701888, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701888, + 55.55397 + ], + [ + 37.701888, + 55.55406 + ], + [ + 37.702047, + 55.55406 + ], + [ + 37.702047, + 55.55397 + ], + [ + 37.701888, + 55.55397 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701888, + 55.55406 + ], + [ + 37.701888, + 55.55415 + ], + [ + 37.702047, + 55.55415 + ], + [ + 37.702047, + 55.55406 + ], + [ + 37.701888, + 55.55406 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701888, + 55.55415 + ], + [ + 37.701888, + 55.55424 + ], + [ + 37.702047, + 55.55424 + ], + [ + 37.702047, + 55.55415 + ], + [ + 37.701888, + 55.55415 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.701888, + 55.55424 + ], + [ + 37.701888, + 55.55433 + ], + [ + 37.702047, + 55.55433 + ], + [ + 37.702047, + 55.55424 + ], + [ + 37.701888, + 55.55424 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702047, + 55.552621 + ], + [ + 37.702047, + 55.552711 + ], + [ + 37.702206, + 55.552711 + ], + [ + 37.702206, + 55.552621 + ], + [ + 37.702047, + 55.552621 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702047, + 55.552711 + ], + [ + 37.702047, + 55.552801 + ], + [ + 37.702206, + 55.552801 + ], + [ + 37.702206, + 55.552711 + ], + [ + 37.702047, + 55.552711 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702047, + 55.552801 + ], + [ + 37.702047, + 55.552891 + ], + [ + 37.702206, + 55.552891 + ], + [ + 37.702206, + 55.552801 + ], + [ + 37.702047, + 55.552801 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702047, + 55.552891 + ], + [ + 37.702047, + 55.552981 + ], + [ + 37.702206, + 55.552981 + ], + [ + 37.702206, + 55.552891 + ], + [ + 37.702047, + 55.552891 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702047, + 55.552981 + ], + [ + 37.702047, + 55.553071 + ], + [ + 37.702206, + 55.553071 + ], + [ + 37.702206, + 55.552981 + ], + [ + 37.702047, + 55.552981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702047, + 55.553071 + ], + [ + 37.702047, + 55.553161 + ], + [ + 37.702206, + 55.553161 + ], + [ + 37.702206, + 55.553071 + ], + [ + 37.702047, + 55.553071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702047, + 55.553161 + ], + [ + 37.702047, + 55.553251 + ], + [ + 37.702206, + 55.553251 + ], + [ + 37.702206, + 55.553161 + ], + [ + 37.702047, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702047, + 55.553251 + ], + [ + 37.702047, + 55.553341 + ], + [ + 37.702206, + 55.553341 + ], + [ + 37.702206, + 55.553251 + ], + [ + 37.702047, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702047, + 55.553341 + ], + [ + 37.702047, + 55.553431 + ], + [ + 37.702206, + 55.553431 + ], + [ + 37.702206, + 55.553341 + ], + [ + 37.702047, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702047, + 55.553431 + ], + [ + 37.702047, + 55.55352 + ], + [ + 37.702206, + 55.55352 + ], + [ + 37.702206, + 55.553431 + ], + [ + 37.702047, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702047, + 55.55352 + ], + [ + 37.702047, + 55.55361 + ], + [ + 37.702206, + 55.55361 + ], + [ + 37.702206, + 55.55352 + ], + [ + 37.702047, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702047, + 55.55361 + ], + [ + 37.702047, + 55.5537 + ], + [ + 37.702206, + 55.5537 + ], + [ + 37.702206, + 55.55361 + ], + [ + 37.702047, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702047, + 55.5537 + ], + [ + 37.702047, + 55.55379 + ], + [ + 37.702206, + 55.55379 + ], + [ + 37.702206, + 55.5537 + ], + [ + 37.702047, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702047, + 55.55379 + ], + [ + 37.702047, + 55.55388 + ], + [ + 37.702206, + 55.55388 + ], + [ + 37.702206, + 55.55379 + ], + [ + 37.702047, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702047, + 55.55388 + ], + [ + 37.702047, + 55.55397 + ], + [ + 37.702206, + 55.55397 + ], + [ + 37.702206, + 55.55388 + ], + [ + 37.702047, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702047, + 55.55397 + ], + [ + 37.702047, + 55.55406 + ], + [ + 37.702206, + 55.55406 + ], + [ + 37.702206, + 55.55397 + ], + [ + 37.702047, + 55.55397 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702047, + 55.55406 + ], + [ + 37.702047, + 55.55415 + ], + [ + 37.702206, + 55.55415 + ], + [ + 37.702206, + 55.55406 + ], + [ + 37.702047, + 55.55406 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702047, + 55.55415 + ], + [ + 37.702047, + 55.55424 + ], + [ + 37.702206, + 55.55424 + ], + [ + 37.702206, + 55.55415 + ], + [ + 37.702047, + 55.55415 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702047, + 55.55424 + ], + [ + 37.702047, + 55.55433 + ], + [ + 37.702206, + 55.55433 + ], + [ + 37.702206, + 55.55424 + ], + [ + 37.702047, + 55.55424 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702047, + 55.55433 + ], + [ + 37.702047, + 55.55442 + ], + [ + 37.702206, + 55.55442 + ], + [ + 37.702206, + 55.55433 + ], + [ + 37.702047, + 55.55433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702206, + 55.552531 + ], + [ + 37.702206, + 55.552621 + ], + [ + 37.702365, + 55.552621 + ], + [ + 37.702365, + 55.552531 + ], + [ + 37.702206, + 55.552531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702206, + 55.552621 + ], + [ + 37.702206, + 55.552711 + ], + [ + 37.702365, + 55.552711 + ], + [ + 37.702365, + 55.552621 + ], + [ + 37.702206, + 55.552621 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702206, + 55.552711 + ], + [ + 37.702206, + 55.552801 + ], + [ + 37.702365, + 55.552801 + ], + [ + 37.702365, + 55.552711 + ], + [ + 37.702206, + 55.552711 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702206, + 55.552801 + ], + [ + 37.702206, + 55.552891 + ], + [ + 37.702365, + 55.552891 + ], + [ + 37.702365, + 55.552801 + ], + [ + 37.702206, + 55.552801 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702206, + 55.552891 + ], + [ + 37.702206, + 55.552981 + ], + [ + 37.702365, + 55.552981 + ], + [ + 37.702365, + 55.552891 + ], + [ + 37.702206, + 55.552891 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702206, + 55.552981 + ], + [ + 37.702206, + 55.553071 + ], + [ + 37.702365, + 55.553071 + ], + [ + 37.702365, + 55.552981 + ], + [ + 37.702206, + 55.552981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702206, + 55.553071 + ], + [ + 37.702206, + 55.553161 + ], + [ + 37.702365, + 55.553161 + ], + [ + 37.702365, + 55.553071 + ], + [ + 37.702206, + 55.553071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702206, + 55.553161 + ], + [ + 37.702206, + 55.553251 + ], + [ + 37.702365, + 55.553251 + ], + [ + 37.702365, + 55.553161 + ], + [ + 37.702206, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702206, + 55.553251 + ], + [ + 37.702206, + 55.553341 + ], + [ + 37.702365, + 55.553341 + ], + [ + 37.702365, + 55.553251 + ], + [ + 37.702206, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702206, + 55.553341 + ], + [ + 37.702206, + 55.553431 + ], + [ + 37.702365, + 55.553431 + ], + [ + 37.702365, + 55.553341 + ], + [ + 37.702206, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702206, + 55.553431 + ], + [ + 37.702206, + 55.55352 + ], + [ + 37.702365, + 55.55352 + ], + [ + 37.702365, + 55.553431 + ], + [ + 37.702206, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702206, + 55.55352 + ], + [ + 37.702206, + 55.55361 + ], + [ + 37.702365, + 55.55361 + ], + [ + 37.702365, + 55.55352 + ], + [ + 37.702206, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702206, + 55.55361 + ], + [ + 37.702206, + 55.5537 + ], + [ + 37.702365, + 55.5537 + ], + [ + 37.702365, + 55.55361 + ], + [ + 37.702206, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702206, + 55.5537 + ], + [ + 37.702206, + 55.55379 + ], + [ + 37.702365, + 55.55379 + ], + [ + 37.702365, + 55.5537 + ], + [ + 37.702206, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702206, + 55.55379 + ], + [ + 37.702206, + 55.55388 + ], + [ + 37.702365, + 55.55388 + ], + [ + 37.702365, + 55.55379 + ], + [ + 37.702206, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702206, + 55.55388 + ], + [ + 37.702206, + 55.55397 + ], + [ + 37.702365, + 55.55397 + ], + [ + 37.702365, + 55.55388 + ], + [ + 37.702206, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702206, + 55.55397 + ], + [ + 37.702206, + 55.55406 + ], + [ + 37.702365, + 55.55406 + ], + [ + 37.702365, + 55.55397 + ], + [ + 37.702206, + 55.55397 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702206, + 55.55406 + ], + [ + 37.702206, + 55.55415 + ], + [ + 37.702365, + 55.55415 + ], + [ + 37.702365, + 55.55406 + ], + [ + 37.702206, + 55.55406 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702206, + 55.55415 + ], + [ + 37.702206, + 55.55424 + ], + [ + 37.702365, + 55.55424 + ], + [ + 37.702365, + 55.55415 + ], + [ + 37.702206, + 55.55415 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702206, + 55.55424 + ], + [ + 37.702206, + 55.55433 + ], + [ + 37.702365, + 55.55433 + ], + [ + 37.702365, + 55.55424 + ], + [ + 37.702206, + 55.55424 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702206, + 55.55433 + ], + [ + 37.702206, + 55.55442 + ], + [ + 37.702365, + 55.55442 + ], + [ + 37.702365, + 55.55433 + ], + [ + 37.702206, + 55.55433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702365, + 55.552531 + ], + [ + 37.702365, + 55.552621 + ], + [ + 37.702524, + 55.552621 + ], + [ + 37.702524, + 55.552531 + ], + [ + 37.702365, + 55.552531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702365, + 55.552621 + ], + [ + 37.702365, + 55.552711 + ], + [ + 37.702524, + 55.552711 + ], + [ + 37.702524, + 55.552621 + ], + [ + 37.702365, + 55.552621 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702365, + 55.552711 + ], + [ + 37.702365, + 55.552801 + ], + [ + 37.702524, + 55.552801 + ], + [ + 37.702524, + 55.552711 + ], + [ + 37.702365, + 55.552711 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702365, + 55.552801 + ], + [ + 37.702365, + 55.552891 + ], + [ + 37.702524, + 55.552891 + ], + [ + 37.702524, + 55.552801 + ], + [ + 37.702365, + 55.552801 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702365, + 55.552891 + ], + [ + 37.702365, + 55.552981 + ], + [ + 37.702524, + 55.552981 + ], + [ + 37.702524, + 55.552891 + ], + [ + 37.702365, + 55.552891 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702365, + 55.552981 + ], + [ + 37.702365, + 55.553071 + ], + [ + 37.702524, + 55.553071 + ], + [ + 37.702524, + 55.552981 + ], + [ + 37.702365, + 55.552981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702365, + 55.553071 + ], + [ + 37.702365, + 55.553161 + ], + [ + 37.702524, + 55.553161 + ], + [ + 37.702524, + 55.553071 + ], + [ + 37.702365, + 55.553071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702365, + 55.553161 + ], + [ + 37.702365, + 55.553251 + ], + [ + 37.702524, + 55.553251 + ], + [ + 37.702524, + 55.553161 + ], + [ + 37.702365, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702365, + 55.553251 + ], + [ + 37.702365, + 55.553341 + ], + [ + 37.702524, + 55.553341 + ], + [ + 37.702524, + 55.553251 + ], + [ + 37.702365, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702365, + 55.553341 + ], + [ + 37.702365, + 55.553431 + ], + [ + 37.702524, + 55.553431 + ], + [ + 37.702524, + 55.553341 + ], + [ + 37.702365, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702365, + 55.553431 + ], + [ + 37.702365, + 55.55352 + ], + [ + 37.702524, + 55.55352 + ], + [ + 37.702524, + 55.553431 + ], + [ + 37.702365, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702365, + 55.55352 + ], + [ + 37.702365, + 55.55361 + ], + [ + 37.702524, + 55.55361 + ], + [ + 37.702524, + 55.55352 + ], + [ + 37.702365, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702365, + 55.55361 + ], + [ + 37.702365, + 55.5537 + ], + [ + 37.702524, + 55.5537 + ], + [ + 37.702524, + 55.55361 + ], + [ + 37.702365, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702365, + 55.5537 + ], + [ + 37.702365, + 55.55379 + ], + [ + 37.702524, + 55.55379 + ], + [ + 37.702524, + 55.5537 + ], + [ + 37.702365, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702365, + 55.55379 + ], + [ + 37.702365, + 55.55388 + ], + [ + 37.702524, + 55.55388 + ], + [ + 37.702524, + 55.55379 + ], + [ + 37.702365, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702365, + 55.55388 + ], + [ + 37.702365, + 55.55397 + ], + [ + 37.702524, + 55.55397 + ], + [ + 37.702524, + 55.55388 + ], + [ + 37.702365, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702365, + 55.55397 + ], + [ + 37.702365, + 55.55406 + ], + [ + 37.702524, + 55.55406 + ], + [ + 37.702524, + 55.55397 + ], + [ + 37.702365, + 55.55397 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702365, + 55.55406 + ], + [ + 37.702365, + 55.55415 + ], + [ + 37.702524, + 55.55415 + ], + [ + 37.702524, + 55.55406 + ], + [ + 37.702365, + 55.55406 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702365, + 55.55415 + ], + [ + 37.702365, + 55.55424 + ], + [ + 37.702524, + 55.55424 + ], + [ + 37.702524, + 55.55415 + ], + [ + 37.702365, + 55.55415 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702365, + 55.55424 + ], + [ + 37.702365, + 55.55433 + ], + [ + 37.702524, + 55.55433 + ], + [ + 37.702524, + 55.55424 + ], + [ + 37.702365, + 55.55424 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702365, + 55.55433 + ], + [ + 37.702365, + 55.55442 + ], + [ + 37.702524, + 55.55442 + ], + [ + 37.702524, + 55.55433 + ], + [ + 37.702365, + 55.55433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702365, + 55.55442 + ], + [ + 37.702365, + 55.55451 + ], + [ + 37.702524, + 55.55451 + ], + [ + 37.702524, + 55.55442 + ], + [ + 37.702365, + 55.55442 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702524, + 55.552441 + ], + [ + 37.702524, + 55.552531 + ], + [ + 37.702683, + 55.552531 + ], + [ + 37.702683, + 55.552441 + ], + [ + 37.702524, + 55.552441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702524, + 55.552531 + ], + [ + 37.702524, + 55.552621 + ], + [ + 37.702683, + 55.552621 + ], + [ + 37.702683, + 55.552531 + ], + [ + 37.702524, + 55.552531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702524, + 55.552621 + ], + [ + 37.702524, + 55.552711 + ], + [ + 37.702683, + 55.552711 + ], + [ + 37.702683, + 55.552621 + ], + [ + 37.702524, + 55.552621 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702524, + 55.552711 + ], + [ + 37.702524, + 55.552801 + ], + [ + 37.702683, + 55.552801 + ], + [ + 37.702683, + 55.552711 + ], + [ + 37.702524, + 55.552711 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702524, + 55.552801 + ], + [ + 37.702524, + 55.552891 + ], + [ + 37.702683, + 55.552891 + ], + [ + 37.702683, + 55.552801 + ], + [ + 37.702524, + 55.552801 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702524, + 55.552891 + ], + [ + 37.702524, + 55.552981 + ], + [ + 37.702683, + 55.552981 + ], + [ + 37.702683, + 55.552891 + ], + [ + 37.702524, + 55.552891 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702524, + 55.552981 + ], + [ + 37.702524, + 55.553071 + ], + [ + 37.702683, + 55.553071 + ], + [ + 37.702683, + 55.552981 + ], + [ + 37.702524, + 55.552981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702524, + 55.553071 + ], + [ + 37.702524, + 55.553161 + ], + [ + 37.702683, + 55.553161 + ], + [ + 37.702683, + 55.553071 + ], + [ + 37.702524, + 55.553071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702524, + 55.553161 + ], + [ + 37.702524, + 55.553251 + ], + [ + 37.702683, + 55.553251 + ], + [ + 37.702683, + 55.553161 + ], + [ + 37.702524, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702524, + 55.553251 + ], + [ + 37.702524, + 55.553341 + ], + [ + 37.702683, + 55.553341 + ], + [ + 37.702683, + 55.553251 + ], + [ + 37.702524, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702524, + 55.553341 + ], + [ + 37.702524, + 55.553431 + ], + [ + 37.702683, + 55.553431 + ], + [ + 37.702683, + 55.553341 + ], + [ + 37.702524, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702524, + 55.553431 + ], + [ + 37.702524, + 55.55352 + ], + [ + 37.702683, + 55.55352 + ], + [ + 37.702683, + 55.553431 + ], + [ + 37.702524, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702524, + 55.55352 + ], + [ + 37.702524, + 55.55361 + ], + [ + 37.702683, + 55.55361 + ], + [ + 37.702683, + 55.55352 + ], + [ + 37.702524, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702524, + 55.55361 + ], + [ + 37.702524, + 55.5537 + ], + [ + 37.702683, + 55.5537 + ], + [ + 37.702683, + 55.55361 + ], + [ + 37.702524, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702524, + 55.5537 + ], + [ + 37.702524, + 55.55379 + ], + [ + 37.702683, + 55.55379 + ], + [ + 37.702683, + 55.5537 + ], + [ + 37.702524, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702524, + 55.55379 + ], + [ + 37.702524, + 55.55388 + ], + [ + 37.702683, + 55.55388 + ], + [ + 37.702683, + 55.55379 + ], + [ + 37.702524, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702524, + 55.55388 + ], + [ + 37.702524, + 55.55397 + ], + [ + 37.702683, + 55.55397 + ], + [ + 37.702683, + 55.55388 + ], + [ + 37.702524, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702524, + 55.55397 + ], + [ + 37.702524, + 55.55406 + ], + [ + 37.702683, + 55.55406 + ], + [ + 37.702683, + 55.55397 + ], + [ + 37.702524, + 55.55397 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702524, + 55.55406 + ], + [ + 37.702524, + 55.55415 + ], + [ + 37.702683, + 55.55415 + ], + [ + 37.702683, + 55.55406 + ], + [ + 37.702524, + 55.55406 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702524, + 55.55415 + ], + [ + 37.702524, + 55.55424 + ], + [ + 37.702683, + 55.55424 + ], + [ + 37.702683, + 55.55415 + ], + [ + 37.702524, + 55.55415 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702524, + 55.55424 + ], + [ + 37.702524, + 55.55433 + ], + [ + 37.702683, + 55.55433 + ], + [ + 37.702683, + 55.55424 + ], + [ + 37.702524, + 55.55424 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702524, + 55.55433 + ], + [ + 37.702524, + 55.55442 + ], + [ + 37.702683, + 55.55442 + ], + [ + 37.702683, + 55.55433 + ], + [ + 37.702524, + 55.55433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702524, + 55.55442 + ], + [ + 37.702524, + 55.55451 + ], + [ + 37.702683, + 55.55451 + ], + [ + 37.702683, + 55.55442 + ], + [ + 37.702524, + 55.55442 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702683, + 55.552441 + ], + [ + 37.702683, + 55.552531 + ], + [ + 37.702842, + 55.552531 + ], + [ + 37.702842, + 55.552441 + ], + [ + 37.702683, + 55.552441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702683, + 55.552531 + ], + [ + 37.702683, + 55.552621 + ], + [ + 37.702842, + 55.552621 + ], + [ + 37.702842, + 55.552531 + ], + [ + 37.702683, + 55.552531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702683, + 55.552621 + ], + [ + 37.702683, + 55.552711 + ], + [ + 37.702842, + 55.552711 + ], + [ + 37.702842, + 55.552621 + ], + [ + 37.702683, + 55.552621 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702683, + 55.552711 + ], + [ + 37.702683, + 55.552801 + ], + [ + 37.702842, + 55.552801 + ], + [ + 37.702842, + 55.552711 + ], + [ + 37.702683, + 55.552711 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702683, + 55.552801 + ], + [ + 37.702683, + 55.552891 + ], + [ + 37.702842, + 55.552891 + ], + [ + 37.702842, + 55.552801 + ], + [ + 37.702683, + 55.552801 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702683, + 55.552891 + ], + [ + 37.702683, + 55.552981 + ], + [ + 37.702842, + 55.552981 + ], + [ + 37.702842, + 55.552891 + ], + [ + 37.702683, + 55.552891 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702683, + 55.552981 + ], + [ + 37.702683, + 55.553071 + ], + [ + 37.702842, + 55.553071 + ], + [ + 37.702842, + 55.552981 + ], + [ + 37.702683, + 55.552981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702683, + 55.553071 + ], + [ + 37.702683, + 55.553161 + ], + [ + 37.702842, + 55.553161 + ], + [ + 37.702842, + 55.553071 + ], + [ + 37.702683, + 55.553071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702683, + 55.553161 + ], + [ + 37.702683, + 55.553251 + ], + [ + 37.702842, + 55.553251 + ], + [ + 37.702842, + 55.553161 + ], + [ + 37.702683, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702683, + 55.553251 + ], + [ + 37.702683, + 55.553341 + ], + [ + 37.702842, + 55.553341 + ], + [ + 37.702842, + 55.553251 + ], + [ + 37.702683, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702683, + 55.553341 + ], + [ + 37.702683, + 55.553431 + ], + [ + 37.702842, + 55.553431 + ], + [ + 37.702842, + 55.553341 + ], + [ + 37.702683, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702683, + 55.553431 + ], + [ + 37.702683, + 55.55352 + ], + [ + 37.702842, + 55.55352 + ], + [ + 37.702842, + 55.553431 + ], + [ + 37.702683, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702683, + 55.55352 + ], + [ + 37.702683, + 55.55361 + ], + [ + 37.702842, + 55.55361 + ], + [ + 37.702842, + 55.55352 + ], + [ + 37.702683, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702683, + 55.55361 + ], + [ + 37.702683, + 55.5537 + ], + [ + 37.702842, + 55.5537 + ], + [ + 37.702842, + 55.55361 + ], + [ + 37.702683, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702683, + 55.5537 + ], + [ + 37.702683, + 55.55379 + ], + [ + 37.702842, + 55.55379 + ], + [ + 37.702842, + 55.5537 + ], + [ + 37.702683, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702683, + 55.55379 + ], + [ + 37.702683, + 55.55388 + ], + [ + 37.702842, + 55.55388 + ], + [ + 37.702842, + 55.55379 + ], + [ + 37.702683, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702683, + 55.55388 + ], + [ + 37.702683, + 55.55397 + ], + [ + 37.702842, + 55.55397 + ], + [ + 37.702842, + 55.55388 + ], + [ + 37.702683, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702683, + 55.55397 + ], + [ + 37.702683, + 55.55406 + ], + [ + 37.702842, + 55.55406 + ], + [ + 37.702842, + 55.55397 + ], + [ + 37.702683, + 55.55397 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702683, + 55.55406 + ], + [ + 37.702683, + 55.55415 + ], + [ + 37.702842, + 55.55415 + ], + [ + 37.702842, + 55.55406 + ], + [ + 37.702683, + 55.55406 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702683, + 55.55415 + ], + [ + 37.702683, + 55.55424 + ], + [ + 37.702842, + 55.55424 + ], + [ + 37.702842, + 55.55415 + ], + [ + 37.702683, + 55.55415 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702683, + 55.55424 + ], + [ + 37.702683, + 55.55433 + ], + [ + 37.702842, + 55.55433 + ], + [ + 37.702842, + 55.55424 + ], + [ + 37.702683, + 55.55424 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702683, + 55.55433 + ], + [ + 37.702683, + 55.55442 + ], + [ + 37.702842, + 55.55442 + ], + [ + 37.702842, + 55.55433 + ], + [ + 37.702683, + 55.55433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702683, + 55.55442 + ], + [ + 37.702683, + 55.55451 + ], + [ + 37.702842, + 55.55451 + ], + [ + 37.702842, + 55.55442 + ], + [ + 37.702683, + 55.55442 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702842, + 55.552351 + ], + [ + 37.702842, + 55.552441 + ], + [ + 37.703001, + 55.552441 + ], + [ + 37.703001, + 55.552351 + ], + [ + 37.702842, + 55.552351 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702842, + 55.552441 + ], + [ + 37.702842, + 55.552531 + ], + [ + 37.703001, + 55.552531 + ], + [ + 37.703001, + 55.552441 + ], + [ + 37.702842, + 55.552441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702842, + 55.552531 + ], + [ + 37.702842, + 55.552621 + ], + [ + 37.703001, + 55.552621 + ], + [ + 37.703001, + 55.552531 + ], + [ + 37.702842, + 55.552531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702842, + 55.552621 + ], + [ + 37.702842, + 55.552711 + ], + [ + 37.703001, + 55.552711 + ], + [ + 37.703001, + 55.552621 + ], + [ + 37.702842, + 55.552621 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702842, + 55.552711 + ], + [ + 37.702842, + 55.552801 + ], + [ + 37.703001, + 55.552801 + ], + [ + 37.703001, + 55.552711 + ], + [ + 37.702842, + 55.552711 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702842, + 55.552801 + ], + [ + 37.702842, + 55.552891 + ], + [ + 37.703001, + 55.552891 + ], + [ + 37.703001, + 55.552801 + ], + [ + 37.702842, + 55.552801 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702842, + 55.552891 + ], + [ + 37.702842, + 55.552981 + ], + [ + 37.703001, + 55.552981 + ], + [ + 37.703001, + 55.552891 + ], + [ + 37.702842, + 55.552891 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702842, + 55.552981 + ], + [ + 37.702842, + 55.553071 + ], + [ + 37.703001, + 55.553071 + ], + [ + 37.703001, + 55.552981 + ], + [ + 37.702842, + 55.552981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702842, + 55.553071 + ], + [ + 37.702842, + 55.553161 + ], + [ + 37.703001, + 55.553161 + ], + [ + 37.703001, + 55.553071 + ], + [ + 37.702842, + 55.553071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702842, + 55.553161 + ], + [ + 37.702842, + 55.553251 + ], + [ + 37.703001, + 55.553251 + ], + [ + 37.703001, + 55.553161 + ], + [ + 37.702842, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702842, + 55.553251 + ], + [ + 37.702842, + 55.553341 + ], + [ + 37.703001, + 55.553341 + ], + [ + 37.703001, + 55.553251 + ], + [ + 37.702842, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702842, + 55.553341 + ], + [ + 37.702842, + 55.553431 + ], + [ + 37.703001, + 55.553431 + ], + [ + 37.703001, + 55.553341 + ], + [ + 37.702842, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702842, + 55.553431 + ], + [ + 37.702842, + 55.55352 + ], + [ + 37.703001, + 55.55352 + ], + [ + 37.703001, + 55.553431 + ], + [ + 37.702842, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702842, + 55.55352 + ], + [ + 37.702842, + 55.55361 + ], + [ + 37.703001, + 55.55361 + ], + [ + 37.703001, + 55.55352 + ], + [ + 37.702842, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702842, + 55.55361 + ], + [ + 37.702842, + 55.5537 + ], + [ + 37.703001, + 55.5537 + ], + [ + 37.703001, + 55.55361 + ], + [ + 37.702842, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702842, + 55.5537 + ], + [ + 37.702842, + 55.55379 + ], + [ + 37.703001, + 55.55379 + ], + [ + 37.703001, + 55.5537 + ], + [ + 37.702842, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702842, + 55.55379 + ], + [ + 37.702842, + 55.55388 + ], + [ + 37.703001, + 55.55388 + ], + [ + 37.703001, + 55.55379 + ], + [ + 37.702842, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702842, + 55.55388 + ], + [ + 37.702842, + 55.55397 + ], + [ + 37.703001, + 55.55397 + ], + [ + 37.703001, + 55.55388 + ], + [ + 37.702842, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702842, + 55.55397 + ], + [ + 37.702842, + 55.55406 + ], + [ + 37.703001, + 55.55406 + ], + [ + 37.703001, + 55.55397 + ], + [ + 37.702842, + 55.55397 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702842, + 55.55406 + ], + [ + 37.702842, + 55.55415 + ], + [ + 37.703001, + 55.55415 + ], + [ + 37.703001, + 55.55406 + ], + [ + 37.702842, + 55.55406 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702842, + 55.55415 + ], + [ + 37.702842, + 55.55424 + ], + [ + 37.703001, + 55.55424 + ], + [ + 37.703001, + 55.55415 + ], + [ + 37.702842, + 55.55415 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702842, + 55.55424 + ], + [ + 37.702842, + 55.55433 + ], + [ + 37.703001, + 55.55433 + ], + [ + 37.703001, + 55.55424 + ], + [ + 37.702842, + 55.55424 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702842, + 55.55433 + ], + [ + 37.702842, + 55.55442 + ], + [ + 37.703001, + 55.55442 + ], + [ + 37.703001, + 55.55433 + ], + [ + 37.702842, + 55.55433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702842, + 55.55442 + ], + [ + 37.702842, + 55.55451 + ], + [ + 37.703001, + 55.55451 + ], + [ + 37.703001, + 55.55442 + ], + [ + 37.702842, + 55.55442 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.702842, + 55.55451 + ], + [ + 37.702842, + 55.5546 + ], + [ + 37.703001, + 55.5546 + ], + [ + 37.703001, + 55.55451 + ], + [ + 37.702842, + 55.55451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703001, + 55.552351 + ], + [ + 37.703001, + 55.552441 + ], + [ + 37.70316, + 55.552441 + ], + [ + 37.70316, + 55.552351 + ], + [ + 37.703001, + 55.552351 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703001, + 55.552441 + ], + [ + 37.703001, + 55.552531 + ], + [ + 37.70316, + 55.552531 + ], + [ + 37.70316, + 55.552441 + ], + [ + 37.703001, + 55.552441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703001, + 55.552531 + ], + [ + 37.703001, + 55.552621 + ], + [ + 37.70316, + 55.552621 + ], + [ + 37.70316, + 55.552531 + ], + [ + 37.703001, + 55.552531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703001, + 55.552621 + ], + [ + 37.703001, + 55.552711 + ], + [ + 37.70316, + 55.552711 + ], + [ + 37.70316, + 55.552621 + ], + [ + 37.703001, + 55.552621 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703001, + 55.552711 + ], + [ + 37.703001, + 55.552801 + ], + [ + 37.70316, + 55.552801 + ], + [ + 37.70316, + 55.552711 + ], + [ + 37.703001, + 55.552711 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703001, + 55.552801 + ], + [ + 37.703001, + 55.552891 + ], + [ + 37.70316, + 55.552891 + ], + [ + 37.70316, + 55.552801 + ], + [ + 37.703001, + 55.552801 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703001, + 55.552891 + ], + [ + 37.703001, + 55.552981 + ], + [ + 37.70316, + 55.552981 + ], + [ + 37.70316, + 55.552891 + ], + [ + 37.703001, + 55.552891 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703001, + 55.552981 + ], + [ + 37.703001, + 55.553071 + ], + [ + 37.70316, + 55.553071 + ], + [ + 37.70316, + 55.552981 + ], + [ + 37.703001, + 55.552981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703001, + 55.553071 + ], + [ + 37.703001, + 55.553161 + ], + [ + 37.70316, + 55.553161 + ], + [ + 37.70316, + 55.553071 + ], + [ + 37.703001, + 55.553071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703001, + 55.553161 + ], + [ + 37.703001, + 55.553251 + ], + [ + 37.70316, + 55.553251 + ], + [ + 37.70316, + 55.553161 + ], + [ + 37.703001, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703001, + 55.553251 + ], + [ + 37.703001, + 55.553341 + ], + [ + 37.70316, + 55.553341 + ], + [ + 37.70316, + 55.553251 + ], + [ + 37.703001, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703001, + 55.553341 + ], + [ + 37.703001, + 55.553431 + ], + [ + 37.70316, + 55.553431 + ], + [ + 37.70316, + 55.553341 + ], + [ + 37.703001, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703001, + 55.553431 + ], + [ + 37.703001, + 55.55352 + ], + [ + 37.70316, + 55.55352 + ], + [ + 37.70316, + 55.553431 + ], + [ + 37.703001, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703001, + 55.55352 + ], + [ + 37.703001, + 55.55361 + ], + [ + 37.70316, + 55.55361 + ], + [ + 37.70316, + 55.55352 + ], + [ + 37.703001, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703001, + 55.55361 + ], + [ + 37.703001, + 55.5537 + ], + [ + 37.70316, + 55.5537 + ], + [ + 37.70316, + 55.55361 + ], + [ + 37.703001, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703001, + 55.5537 + ], + [ + 37.703001, + 55.55379 + ], + [ + 37.70316, + 55.55379 + ], + [ + 37.70316, + 55.5537 + ], + [ + 37.703001, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703001, + 55.55379 + ], + [ + 37.703001, + 55.55388 + ], + [ + 37.70316, + 55.55388 + ], + [ + 37.70316, + 55.55379 + ], + [ + 37.703001, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703001, + 55.55388 + ], + [ + 37.703001, + 55.55397 + ], + [ + 37.70316, + 55.55397 + ], + [ + 37.70316, + 55.55388 + ], + [ + 37.703001, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703001, + 55.55397 + ], + [ + 37.703001, + 55.55406 + ], + [ + 37.70316, + 55.55406 + ], + [ + 37.70316, + 55.55397 + ], + [ + 37.703001, + 55.55397 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703001, + 55.55406 + ], + [ + 37.703001, + 55.55415 + ], + [ + 37.70316, + 55.55415 + ], + [ + 37.70316, + 55.55406 + ], + [ + 37.703001, + 55.55406 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703001, + 55.55415 + ], + [ + 37.703001, + 55.55424 + ], + [ + 37.70316, + 55.55424 + ], + [ + 37.70316, + 55.55415 + ], + [ + 37.703001, + 55.55415 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703001, + 55.55424 + ], + [ + 37.703001, + 55.55433 + ], + [ + 37.70316, + 55.55433 + ], + [ + 37.70316, + 55.55424 + ], + [ + 37.703001, + 55.55424 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703001, + 55.55433 + ], + [ + 37.703001, + 55.55442 + ], + [ + 37.70316, + 55.55442 + ], + [ + 37.70316, + 55.55433 + ], + [ + 37.703001, + 55.55433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703001, + 55.55442 + ], + [ + 37.703001, + 55.55451 + ], + [ + 37.70316, + 55.55451 + ], + [ + 37.70316, + 55.55442 + ], + [ + 37.703001, + 55.55442 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703001, + 55.55451 + ], + [ + 37.703001, + 55.5546 + ], + [ + 37.70316, + 55.5546 + ], + [ + 37.70316, + 55.55451 + ], + [ + 37.703001, + 55.55451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70316, + 55.552351 + ], + [ + 37.70316, + 55.552441 + ], + [ + 37.703319, + 55.552441 + ], + [ + 37.703319, + 55.552351 + ], + [ + 37.70316, + 55.552351 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70316, + 55.552441 + ], + [ + 37.70316, + 55.552531 + ], + [ + 37.703319, + 55.552531 + ], + [ + 37.703319, + 55.552441 + ], + [ + 37.70316, + 55.552441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70316, + 55.552531 + ], + [ + 37.70316, + 55.552621 + ], + [ + 37.703319, + 55.552621 + ], + [ + 37.703319, + 55.552531 + ], + [ + 37.70316, + 55.552531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70316, + 55.552621 + ], + [ + 37.70316, + 55.552711 + ], + [ + 37.703319, + 55.552711 + ], + [ + 37.703319, + 55.552621 + ], + [ + 37.70316, + 55.552621 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70316, + 55.552711 + ], + [ + 37.70316, + 55.552801 + ], + [ + 37.703319, + 55.552801 + ], + [ + 37.703319, + 55.552711 + ], + [ + 37.70316, + 55.552711 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70316, + 55.552801 + ], + [ + 37.70316, + 55.552891 + ], + [ + 37.703319, + 55.552891 + ], + [ + 37.703319, + 55.552801 + ], + [ + 37.70316, + 55.552801 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70316, + 55.552891 + ], + [ + 37.70316, + 55.552981 + ], + [ + 37.703319, + 55.552981 + ], + [ + 37.703319, + 55.552891 + ], + [ + 37.70316, + 55.552891 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70316, + 55.552981 + ], + [ + 37.70316, + 55.553071 + ], + [ + 37.703319, + 55.553071 + ], + [ + 37.703319, + 55.552981 + ], + [ + 37.70316, + 55.552981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70316, + 55.553071 + ], + [ + 37.70316, + 55.553161 + ], + [ + 37.703319, + 55.553161 + ], + [ + 37.703319, + 55.553071 + ], + [ + 37.70316, + 55.553071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70316, + 55.553161 + ], + [ + 37.70316, + 55.553251 + ], + [ + 37.703319, + 55.553251 + ], + [ + 37.703319, + 55.553161 + ], + [ + 37.70316, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70316, + 55.553251 + ], + [ + 37.70316, + 55.553341 + ], + [ + 37.703319, + 55.553341 + ], + [ + 37.703319, + 55.553251 + ], + [ + 37.70316, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70316, + 55.553341 + ], + [ + 37.70316, + 55.553431 + ], + [ + 37.703319, + 55.553431 + ], + [ + 37.703319, + 55.553341 + ], + [ + 37.70316, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70316, + 55.553431 + ], + [ + 37.70316, + 55.55352 + ], + [ + 37.703319, + 55.55352 + ], + [ + 37.703319, + 55.553431 + ], + [ + 37.70316, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70316, + 55.55352 + ], + [ + 37.70316, + 55.55361 + ], + [ + 37.703319, + 55.55361 + ], + [ + 37.703319, + 55.55352 + ], + [ + 37.70316, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70316, + 55.55361 + ], + [ + 37.70316, + 55.5537 + ], + [ + 37.703319, + 55.5537 + ], + [ + 37.703319, + 55.55361 + ], + [ + 37.70316, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70316, + 55.5537 + ], + [ + 37.70316, + 55.55379 + ], + [ + 37.703319, + 55.55379 + ], + [ + 37.703319, + 55.5537 + ], + [ + 37.70316, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70316, + 55.55379 + ], + [ + 37.70316, + 55.55388 + ], + [ + 37.703319, + 55.55388 + ], + [ + 37.703319, + 55.55379 + ], + [ + 37.70316, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70316, + 55.55388 + ], + [ + 37.70316, + 55.55397 + ], + [ + 37.703319, + 55.55397 + ], + [ + 37.703319, + 55.55388 + ], + [ + 37.70316, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70316, + 55.55397 + ], + [ + 37.70316, + 55.55406 + ], + [ + 37.703319, + 55.55406 + ], + [ + 37.703319, + 55.55397 + ], + [ + 37.70316, + 55.55397 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70316, + 55.55406 + ], + [ + 37.70316, + 55.55415 + ], + [ + 37.703319, + 55.55415 + ], + [ + 37.703319, + 55.55406 + ], + [ + 37.70316, + 55.55406 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70316, + 55.55415 + ], + [ + 37.70316, + 55.55424 + ], + [ + 37.703319, + 55.55424 + ], + [ + 37.703319, + 55.55415 + ], + [ + 37.70316, + 55.55415 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70316, + 55.55424 + ], + [ + 37.70316, + 55.55433 + ], + [ + 37.703319, + 55.55433 + ], + [ + 37.703319, + 55.55424 + ], + [ + 37.70316, + 55.55424 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70316, + 55.55433 + ], + [ + 37.70316, + 55.55442 + ], + [ + 37.703319, + 55.55442 + ], + [ + 37.703319, + 55.55433 + ], + [ + 37.70316, + 55.55433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70316, + 55.55442 + ], + [ + 37.70316, + 55.55451 + ], + [ + 37.703319, + 55.55451 + ], + [ + 37.703319, + 55.55442 + ], + [ + 37.70316, + 55.55442 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70316, + 55.55451 + ], + [ + 37.70316, + 55.5546 + ], + [ + 37.703319, + 55.5546 + ], + [ + 37.703319, + 55.55451 + ], + [ + 37.70316, + 55.55451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70316, + 55.5546 + ], + [ + 37.70316, + 55.55469 + ], + [ + 37.703319, + 55.55469 + ], + [ + 37.703319, + 55.5546 + ], + [ + 37.70316, + 55.5546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703319, + 55.552261 + ], + [ + 37.703319, + 55.552351 + ], + [ + 37.703478, + 55.552351 + ], + [ + 37.703478, + 55.552261 + ], + [ + 37.703319, + 55.552261 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703319, + 55.552351 + ], + [ + 37.703319, + 55.552441 + ], + [ + 37.703478, + 55.552441 + ], + [ + 37.703478, + 55.552351 + ], + [ + 37.703319, + 55.552351 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703319, + 55.552441 + ], + [ + 37.703319, + 55.552531 + ], + [ + 37.703478, + 55.552531 + ], + [ + 37.703478, + 55.552441 + ], + [ + 37.703319, + 55.552441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703319, + 55.552531 + ], + [ + 37.703319, + 55.552621 + ], + [ + 37.703478, + 55.552621 + ], + [ + 37.703478, + 55.552531 + ], + [ + 37.703319, + 55.552531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703319, + 55.552621 + ], + [ + 37.703319, + 55.552711 + ], + [ + 37.703478, + 55.552711 + ], + [ + 37.703478, + 55.552621 + ], + [ + 37.703319, + 55.552621 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703319, + 55.552711 + ], + [ + 37.703319, + 55.552801 + ], + [ + 37.703478, + 55.552801 + ], + [ + 37.703478, + 55.552711 + ], + [ + 37.703319, + 55.552711 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703319, + 55.552801 + ], + [ + 37.703319, + 55.552891 + ], + [ + 37.703478, + 55.552891 + ], + [ + 37.703478, + 55.552801 + ], + [ + 37.703319, + 55.552801 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703319, + 55.552891 + ], + [ + 37.703319, + 55.552981 + ], + [ + 37.703478, + 55.552981 + ], + [ + 37.703478, + 55.552891 + ], + [ + 37.703319, + 55.552891 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703319, + 55.552981 + ], + [ + 37.703319, + 55.553071 + ], + [ + 37.703478, + 55.553071 + ], + [ + 37.703478, + 55.552981 + ], + [ + 37.703319, + 55.552981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703319, + 55.553071 + ], + [ + 37.703319, + 55.553161 + ], + [ + 37.703478, + 55.553161 + ], + [ + 37.703478, + 55.553071 + ], + [ + 37.703319, + 55.553071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703319, + 55.553161 + ], + [ + 37.703319, + 55.553251 + ], + [ + 37.703478, + 55.553251 + ], + [ + 37.703478, + 55.553161 + ], + [ + 37.703319, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703319, + 55.553251 + ], + [ + 37.703319, + 55.553341 + ], + [ + 37.703478, + 55.553341 + ], + [ + 37.703478, + 55.553251 + ], + [ + 37.703319, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703319, + 55.553341 + ], + [ + 37.703319, + 55.553431 + ], + [ + 37.703478, + 55.553431 + ], + [ + 37.703478, + 55.553341 + ], + [ + 37.703319, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703319, + 55.553431 + ], + [ + 37.703319, + 55.55352 + ], + [ + 37.703478, + 55.55352 + ], + [ + 37.703478, + 55.553431 + ], + [ + 37.703319, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703319, + 55.55352 + ], + [ + 37.703319, + 55.55361 + ], + [ + 37.703478, + 55.55361 + ], + [ + 37.703478, + 55.55352 + ], + [ + 37.703319, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703319, + 55.55361 + ], + [ + 37.703319, + 55.5537 + ], + [ + 37.703478, + 55.5537 + ], + [ + 37.703478, + 55.55361 + ], + [ + 37.703319, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703319, + 55.5537 + ], + [ + 37.703319, + 55.55379 + ], + [ + 37.703478, + 55.55379 + ], + [ + 37.703478, + 55.5537 + ], + [ + 37.703319, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703319, + 55.55379 + ], + [ + 37.703319, + 55.55388 + ], + [ + 37.703478, + 55.55388 + ], + [ + 37.703478, + 55.55379 + ], + [ + 37.703319, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703319, + 55.55388 + ], + [ + 37.703319, + 55.55397 + ], + [ + 37.703478, + 55.55397 + ], + [ + 37.703478, + 55.55388 + ], + [ + 37.703319, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703319, + 55.55397 + ], + [ + 37.703319, + 55.55406 + ], + [ + 37.703478, + 55.55406 + ], + [ + 37.703478, + 55.55397 + ], + [ + 37.703319, + 55.55397 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703319, + 55.55406 + ], + [ + 37.703319, + 55.55415 + ], + [ + 37.703478, + 55.55415 + ], + [ + 37.703478, + 55.55406 + ], + [ + 37.703319, + 55.55406 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703319, + 55.55415 + ], + [ + 37.703319, + 55.55424 + ], + [ + 37.703478, + 55.55424 + ], + [ + 37.703478, + 55.55415 + ], + [ + 37.703319, + 55.55415 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703319, + 55.55424 + ], + [ + 37.703319, + 55.55433 + ], + [ + 37.703478, + 55.55433 + ], + [ + 37.703478, + 55.55424 + ], + [ + 37.703319, + 55.55424 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703319, + 55.55433 + ], + [ + 37.703319, + 55.55442 + ], + [ + 37.703478, + 55.55442 + ], + [ + 37.703478, + 55.55433 + ], + [ + 37.703319, + 55.55433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703319, + 55.55442 + ], + [ + 37.703319, + 55.55451 + ], + [ + 37.703478, + 55.55451 + ], + [ + 37.703478, + 55.55442 + ], + [ + 37.703319, + 55.55442 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703319, + 55.55451 + ], + [ + 37.703319, + 55.5546 + ], + [ + 37.703478, + 55.5546 + ], + [ + 37.703478, + 55.55451 + ], + [ + 37.703319, + 55.55451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703319, + 55.5546 + ], + [ + 37.703319, + 55.55469 + ], + [ + 37.703478, + 55.55469 + ], + [ + 37.703478, + 55.5546 + ], + [ + 37.703319, + 55.5546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703478, + 55.552261 + ], + [ + 37.703478, + 55.552351 + ], + [ + 37.703637, + 55.552351 + ], + [ + 37.703637, + 55.552261 + ], + [ + 37.703478, + 55.552261 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703478, + 55.552351 + ], + [ + 37.703478, + 55.552441 + ], + [ + 37.703637, + 55.552441 + ], + [ + 37.703637, + 55.552351 + ], + [ + 37.703478, + 55.552351 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703478, + 55.552441 + ], + [ + 37.703478, + 55.552531 + ], + [ + 37.703637, + 55.552531 + ], + [ + 37.703637, + 55.552441 + ], + [ + 37.703478, + 55.552441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703478, + 55.552531 + ], + [ + 37.703478, + 55.552621 + ], + [ + 37.703637, + 55.552621 + ], + [ + 37.703637, + 55.552531 + ], + [ + 37.703478, + 55.552531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703478, + 55.552621 + ], + [ + 37.703478, + 55.552711 + ], + [ + 37.703637, + 55.552711 + ], + [ + 37.703637, + 55.552621 + ], + [ + 37.703478, + 55.552621 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703478, + 55.552711 + ], + [ + 37.703478, + 55.552801 + ], + [ + 37.703637, + 55.552801 + ], + [ + 37.703637, + 55.552711 + ], + [ + 37.703478, + 55.552711 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703478, + 55.552801 + ], + [ + 37.703478, + 55.552891 + ], + [ + 37.703637, + 55.552891 + ], + [ + 37.703637, + 55.552801 + ], + [ + 37.703478, + 55.552801 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703478, + 55.552891 + ], + [ + 37.703478, + 55.552981 + ], + [ + 37.703637, + 55.552981 + ], + [ + 37.703637, + 55.552891 + ], + [ + 37.703478, + 55.552891 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703478, + 55.552981 + ], + [ + 37.703478, + 55.553071 + ], + [ + 37.703637, + 55.553071 + ], + [ + 37.703637, + 55.552981 + ], + [ + 37.703478, + 55.552981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703478, + 55.553071 + ], + [ + 37.703478, + 55.553161 + ], + [ + 37.703637, + 55.553161 + ], + [ + 37.703637, + 55.553071 + ], + [ + 37.703478, + 55.553071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703478, + 55.553161 + ], + [ + 37.703478, + 55.553251 + ], + [ + 37.703637, + 55.553251 + ], + [ + 37.703637, + 55.553161 + ], + [ + 37.703478, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703478, + 55.553251 + ], + [ + 37.703478, + 55.553341 + ], + [ + 37.703637, + 55.553341 + ], + [ + 37.703637, + 55.553251 + ], + [ + 37.703478, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703478, + 55.553341 + ], + [ + 37.703478, + 55.553431 + ], + [ + 37.703637, + 55.553431 + ], + [ + 37.703637, + 55.553341 + ], + [ + 37.703478, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703478, + 55.553431 + ], + [ + 37.703478, + 55.55352 + ], + [ + 37.703637, + 55.55352 + ], + [ + 37.703637, + 55.553431 + ], + [ + 37.703478, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703478, + 55.55352 + ], + [ + 37.703478, + 55.55361 + ], + [ + 37.703637, + 55.55361 + ], + [ + 37.703637, + 55.55352 + ], + [ + 37.703478, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703478, + 55.55361 + ], + [ + 37.703478, + 55.5537 + ], + [ + 37.703637, + 55.5537 + ], + [ + 37.703637, + 55.55361 + ], + [ + 37.703478, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703478, + 55.5537 + ], + [ + 37.703478, + 55.55379 + ], + [ + 37.703637, + 55.55379 + ], + [ + 37.703637, + 55.5537 + ], + [ + 37.703478, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703478, + 55.55379 + ], + [ + 37.703478, + 55.55388 + ], + [ + 37.703637, + 55.55388 + ], + [ + 37.703637, + 55.55379 + ], + [ + 37.703478, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703478, + 55.55388 + ], + [ + 37.703478, + 55.55397 + ], + [ + 37.703637, + 55.55397 + ], + [ + 37.703637, + 55.55388 + ], + [ + 37.703478, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703478, + 55.55397 + ], + [ + 37.703478, + 55.55406 + ], + [ + 37.703637, + 55.55406 + ], + [ + 37.703637, + 55.55397 + ], + [ + 37.703478, + 55.55397 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703478, + 55.55406 + ], + [ + 37.703478, + 55.55415 + ], + [ + 37.703637, + 55.55415 + ], + [ + 37.703637, + 55.55406 + ], + [ + 37.703478, + 55.55406 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703478, + 55.55415 + ], + [ + 37.703478, + 55.55424 + ], + [ + 37.703637, + 55.55424 + ], + [ + 37.703637, + 55.55415 + ], + [ + 37.703478, + 55.55415 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703478, + 55.55424 + ], + [ + 37.703478, + 55.55433 + ], + [ + 37.703637, + 55.55433 + ], + [ + 37.703637, + 55.55424 + ], + [ + 37.703478, + 55.55424 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703478, + 55.55433 + ], + [ + 37.703478, + 55.55442 + ], + [ + 37.703637, + 55.55442 + ], + [ + 37.703637, + 55.55433 + ], + [ + 37.703478, + 55.55433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703478, + 55.55442 + ], + [ + 37.703478, + 55.55451 + ], + [ + 37.703637, + 55.55451 + ], + [ + 37.703637, + 55.55442 + ], + [ + 37.703478, + 55.55442 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703478, + 55.55451 + ], + [ + 37.703478, + 55.5546 + ], + [ + 37.703637, + 55.5546 + ], + [ + 37.703637, + 55.55451 + ], + [ + 37.703478, + 55.55451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703478, + 55.5546 + ], + [ + 37.703478, + 55.55469 + ], + [ + 37.703637, + 55.55469 + ], + [ + 37.703637, + 55.5546 + ], + [ + 37.703478, + 55.5546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703478, + 55.55469 + ], + [ + 37.703478, + 55.55478 + ], + [ + 37.703637, + 55.55478 + ], + [ + 37.703637, + 55.55469 + ], + [ + 37.703478, + 55.55469 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703637, + 55.552171 + ], + [ + 37.703637, + 55.552261 + ], + [ + 37.703796, + 55.552261 + ], + [ + 37.703796, + 55.552171 + ], + [ + 37.703637, + 55.552171 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703637, + 55.552261 + ], + [ + 37.703637, + 55.552351 + ], + [ + 37.703796, + 55.552351 + ], + [ + 37.703796, + 55.552261 + ], + [ + 37.703637, + 55.552261 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703637, + 55.552351 + ], + [ + 37.703637, + 55.552441 + ], + [ + 37.703796, + 55.552441 + ], + [ + 37.703796, + 55.552351 + ], + [ + 37.703637, + 55.552351 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703637, + 55.552441 + ], + [ + 37.703637, + 55.552531 + ], + [ + 37.703796, + 55.552531 + ], + [ + 37.703796, + 55.552441 + ], + [ + 37.703637, + 55.552441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703637, + 55.552531 + ], + [ + 37.703637, + 55.552621 + ], + [ + 37.703796, + 55.552621 + ], + [ + 37.703796, + 55.552531 + ], + [ + 37.703637, + 55.552531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703637, + 55.552621 + ], + [ + 37.703637, + 55.552711 + ], + [ + 37.703796, + 55.552711 + ], + [ + 37.703796, + 55.552621 + ], + [ + 37.703637, + 55.552621 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703637, + 55.552711 + ], + [ + 37.703637, + 55.552801 + ], + [ + 37.703796, + 55.552801 + ], + [ + 37.703796, + 55.552711 + ], + [ + 37.703637, + 55.552711 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703637, + 55.552801 + ], + [ + 37.703637, + 55.552891 + ], + [ + 37.703796, + 55.552891 + ], + [ + 37.703796, + 55.552801 + ], + [ + 37.703637, + 55.552801 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703637, + 55.552891 + ], + [ + 37.703637, + 55.552981 + ], + [ + 37.703796, + 55.552981 + ], + [ + 37.703796, + 55.552891 + ], + [ + 37.703637, + 55.552891 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703637, + 55.552981 + ], + [ + 37.703637, + 55.553071 + ], + [ + 37.703796, + 55.553071 + ], + [ + 37.703796, + 55.552981 + ], + [ + 37.703637, + 55.552981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703637, + 55.553071 + ], + [ + 37.703637, + 55.553161 + ], + [ + 37.703796, + 55.553161 + ], + [ + 37.703796, + 55.553071 + ], + [ + 37.703637, + 55.553071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703637, + 55.553161 + ], + [ + 37.703637, + 55.553251 + ], + [ + 37.703796, + 55.553251 + ], + [ + 37.703796, + 55.553161 + ], + [ + 37.703637, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703637, + 55.553251 + ], + [ + 37.703637, + 55.553341 + ], + [ + 37.703796, + 55.553341 + ], + [ + 37.703796, + 55.553251 + ], + [ + 37.703637, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703637, + 55.553341 + ], + [ + 37.703637, + 55.553431 + ], + [ + 37.703796, + 55.553431 + ], + [ + 37.703796, + 55.553341 + ], + [ + 37.703637, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703637, + 55.553431 + ], + [ + 37.703637, + 55.55352 + ], + [ + 37.703796, + 55.55352 + ], + [ + 37.703796, + 55.553431 + ], + [ + 37.703637, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703637, + 55.55352 + ], + [ + 37.703637, + 55.55361 + ], + [ + 37.703796, + 55.55361 + ], + [ + 37.703796, + 55.55352 + ], + [ + 37.703637, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703637, + 55.55361 + ], + [ + 37.703637, + 55.5537 + ], + [ + 37.703796, + 55.5537 + ], + [ + 37.703796, + 55.55361 + ], + [ + 37.703637, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703637, + 55.5537 + ], + [ + 37.703637, + 55.55379 + ], + [ + 37.703796, + 55.55379 + ], + [ + 37.703796, + 55.5537 + ], + [ + 37.703637, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703637, + 55.55379 + ], + [ + 37.703637, + 55.55388 + ], + [ + 37.703796, + 55.55388 + ], + [ + 37.703796, + 55.55379 + ], + [ + 37.703637, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703637, + 55.55388 + ], + [ + 37.703637, + 55.55397 + ], + [ + 37.703796, + 55.55397 + ], + [ + 37.703796, + 55.55388 + ], + [ + 37.703637, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703637, + 55.55397 + ], + [ + 37.703637, + 55.55406 + ], + [ + 37.703796, + 55.55406 + ], + [ + 37.703796, + 55.55397 + ], + [ + 37.703637, + 55.55397 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703637, + 55.55406 + ], + [ + 37.703637, + 55.55415 + ], + [ + 37.703796, + 55.55415 + ], + [ + 37.703796, + 55.55406 + ], + [ + 37.703637, + 55.55406 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703637, + 55.55415 + ], + [ + 37.703637, + 55.55424 + ], + [ + 37.703796, + 55.55424 + ], + [ + 37.703796, + 55.55415 + ], + [ + 37.703637, + 55.55415 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703637, + 55.55424 + ], + [ + 37.703637, + 55.55433 + ], + [ + 37.703796, + 55.55433 + ], + [ + 37.703796, + 55.55424 + ], + [ + 37.703637, + 55.55424 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703637, + 55.55433 + ], + [ + 37.703637, + 55.55442 + ], + [ + 37.703796, + 55.55442 + ], + [ + 37.703796, + 55.55433 + ], + [ + 37.703637, + 55.55433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703637, + 55.55442 + ], + [ + 37.703637, + 55.55451 + ], + [ + 37.703796, + 55.55451 + ], + [ + 37.703796, + 55.55442 + ], + [ + 37.703637, + 55.55442 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703637, + 55.55451 + ], + [ + 37.703637, + 55.5546 + ], + [ + 37.703796, + 55.5546 + ], + [ + 37.703796, + 55.55451 + ], + [ + 37.703637, + 55.55451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703637, + 55.5546 + ], + [ + 37.703637, + 55.55469 + ], + [ + 37.703796, + 55.55469 + ], + [ + 37.703796, + 55.5546 + ], + [ + 37.703637, + 55.5546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703637, + 55.55469 + ], + [ + 37.703637, + 55.55478 + ], + [ + 37.703796, + 55.55478 + ], + [ + 37.703796, + 55.55469 + ], + [ + 37.703637, + 55.55469 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703796, + 55.552171 + ], + [ + 37.703796, + 55.552261 + ], + [ + 37.703955, + 55.552261 + ], + [ + 37.703955, + 55.552171 + ], + [ + 37.703796, + 55.552171 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703796, + 55.552261 + ], + [ + 37.703796, + 55.552351 + ], + [ + 37.703955, + 55.552351 + ], + [ + 37.703955, + 55.552261 + ], + [ + 37.703796, + 55.552261 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703796, + 55.552351 + ], + [ + 37.703796, + 55.552441 + ], + [ + 37.703955, + 55.552441 + ], + [ + 37.703955, + 55.552351 + ], + [ + 37.703796, + 55.552351 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703796, + 55.552441 + ], + [ + 37.703796, + 55.552531 + ], + [ + 37.703955, + 55.552531 + ], + [ + 37.703955, + 55.552441 + ], + [ + 37.703796, + 55.552441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703796, + 55.552531 + ], + [ + 37.703796, + 55.552621 + ], + [ + 37.703955, + 55.552621 + ], + [ + 37.703955, + 55.552531 + ], + [ + 37.703796, + 55.552531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703796, + 55.552621 + ], + [ + 37.703796, + 55.552711 + ], + [ + 37.703955, + 55.552711 + ], + [ + 37.703955, + 55.552621 + ], + [ + 37.703796, + 55.552621 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703796, + 55.552711 + ], + [ + 37.703796, + 55.552801 + ], + [ + 37.703955, + 55.552801 + ], + [ + 37.703955, + 55.552711 + ], + [ + 37.703796, + 55.552711 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703796, + 55.552801 + ], + [ + 37.703796, + 55.552891 + ], + [ + 37.703955, + 55.552891 + ], + [ + 37.703955, + 55.552801 + ], + [ + 37.703796, + 55.552801 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703796, + 55.552891 + ], + [ + 37.703796, + 55.552981 + ], + [ + 37.703955, + 55.552981 + ], + [ + 37.703955, + 55.552891 + ], + [ + 37.703796, + 55.552891 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703796, + 55.552981 + ], + [ + 37.703796, + 55.553071 + ], + [ + 37.703955, + 55.553071 + ], + [ + 37.703955, + 55.552981 + ], + [ + 37.703796, + 55.552981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703796, + 55.553071 + ], + [ + 37.703796, + 55.553161 + ], + [ + 37.703955, + 55.553161 + ], + [ + 37.703955, + 55.553071 + ], + [ + 37.703796, + 55.553071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703796, + 55.553161 + ], + [ + 37.703796, + 55.553251 + ], + [ + 37.703955, + 55.553251 + ], + [ + 37.703955, + 55.553161 + ], + [ + 37.703796, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703796, + 55.553251 + ], + [ + 37.703796, + 55.553341 + ], + [ + 37.703955, + 55.553341 + ], + [ + 37.703955, + 55.553251 + ], + [ + 37.703796, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703796, + 55.553341 + ], + [ + 37.703796, + 55.553431 + ], + [ + 37.703955, + 55.553431 + ], + [ + 37.703955, + 55.553341 + ], + [ + 37.703796, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703796, + 55.553431 + ], + [ + 37.703796, + 55.55352 + ], + [ + 37.703955, + 55.55352 + ], + [ + 37.703955, + 55.553431 + ], + [ + 37.703796, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703796, + 55.55352 + ], + [ + 37.703796, + 55.55361 + ], + [ + 37.703955, + 55.55361 + ], + [ + 37.703955, + 55.55352 + ], + [ + 37.703796, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703796, + 55.55361 + ], + [ + 37.703796, + 55.5537 + ], + [ + 37.703955, + 55.5537 + ], + [ + 37.703955, + 55.55361 + ], + [ + 37.703796, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703796, + 55.5537 + ], + [ + 37.703796, + 55.55379 + ], + [ + 37.703955, + 55.55379 + ], + [ + 37.703955, + 55.5537 + ], + [ + 37.703796, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703796, + 55.55379 + ], + [ + 37.703796, + 55.55388 + ], + [ + 37.703955, + 55.55388 + ], + [ + 37.703955, + 55.55379 + ], + [ + 37.703796, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703796, + 55.55388 + ], + [ + 37.703796, + 55.55397 + ], + [ + 37.703955, + 55.55397 + ], + [ + 37.703955, + 55.55388 + ], + [ + 37.703796, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703796, + 55.55397 + ], + [ + 37.703796, + 55.55406 + ], + [ + 37.703955, + 55.55406 + ], + [ + 37.703955, + 55.55397 + ], + [ + 37.703796, + 55.55397 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703796, + 55.55406 + ], + [ + 37.703796, + 55.55415 + ], + [ + 37.703955, + 55.55415 + ], + [ + 37.703955, + 55.55406 + ], + [ + 37.703796, + 55.55406 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703796, + 55.55415 + ], + [ + 37.703796, + 55.55424 + ], + [ + 37.703955, + 55.55424 + ], + [ + 37.703955, + 55.55415 + ], + [ + 37.703796, + 55.55415 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703796, + 55.55424 + ], + [ + 37.703796, + 55.55433 + ], + [ + 37.703955, + 55.55433 + ], + [ + 37.703955, + 55.55424 + ], + [ + 37.703796, + 55.55424 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703796, + 55.55433 + ], + [ + 37.703796, + 55.55442 + ], + [ + 37.703955, + 55.55442 + ], + [ + 37.703955, + 55.55433 + ], + [ + 37.703796, + 55.55433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703796, + 55.55442 + ], + [ + 37.703796, + 55.55451 + ], + [ + 37.703955, + 55.55451 + ], + [ + 37.703955, + 55.55442 + ], + [ + 37.703796, + 55.55442 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703796, + 55.55451 + ], + [ + 37.703796, + 55.5546 + ], + [ + 37.703955, + 55.5546 + ], + [ + 37.703955, + 55.55451 + ], + [ + 37.703796, + 55.55451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703796, + 55.5546 + ], + [ + 37.703796, + 55.55469 + ], + [ + 37.703955, + 55.55469 + ], + [ + 37.703955, + 55.5546 + ], + [ + 37.703796, + 55.5546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703796, + 55.55469 + ], + [ + 37.703796, + 55.55478 + ], + [ + 37.703955, + 55.55478 + ], + [ + 37.703955, + 55.55469 + ], + [ + 37.703796, + 55.55469 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703796, + 55.55478 + ], + [ + 37.703796, + 55.554869 + ], + [ + 37.703955, + 55.554869 + ], + [ + 37.703955, + 55.55478 + ], + [ + 37.703796, + 55.55478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703955, + 55.552082 + ], + [ + 37.703955, + 55.552171 + ], + [ + 37.704114, + 55.552171 + ], + [ + 37.704114, + 55.552082 + ], + [ + 37.703955, + 55.552082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703955, + 55.552171 + ], + [ + 37.703955, + 55.552261 + ], + [ + 37.704114, + 55.552261 + ], + [ + 37.704114, + 55.552171 + ], + [ + 37.703955, + 55.552171 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703955, + 55.552261 + ], + [ + 37.703955, + 55.552351 + ], + [ + 37.704114, + 55.552351 + ], + [ + 37.704114, + 55.552261 + ], + [ + 37.703955, + 55.552261 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703955, + 55.552351 + ], + [ + 37.703955, + 55.552441 + ], + [ + 37.704114, + 55.552441 + ], + [ + 37.704114, + 55.552351 + ], + [ + 37.703955, + 55.552351 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703955, + 55.552441 + ], + [ + 37.703955, + 55.552531 + ], + [ + 37.704114, + 55.552531 + ], + [ + 37.704114, + 55.552441 + ], + [ + 37.703955, + 55.552441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703955, + 55.552531 + ], + [ + 37.703955, + 55.552621 + ], + [ + 37.704114, + 55.552621 + ], + [ + 37.704114, + 55.552531 + ], + [ + 37.703955, + 55.552531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703955, + 55.552621 + ], + [ + 37.703955, + 55.552711 + ], + [ + 37.704114, + 55.552711 + ], + [ + 37.704114, + 55.552621 + ], + [ + 37.703955, + 55.552621 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703955, + 55.552711 + ], + [ + 37.703955, + 55.552801 + ], + [ + 37.704114, + 55.552801 + ], + [ + 37.704114, + 55.552711 + ], + [ + 37.703955, + 55.552711 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703955, + 55.552801 + ], + [ + 37.703955, + 55.552891 + ], + [ + 37.704114, + 55.552891 + ], + [ + 37.704114, + 55.552801 + ], + [ + 37.703955, + 55.552801 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703955, + 55.552891 + ], + [ + 37.703955, + 55.552981 + ], + [ + 37.704114, + 55.552981 + ], + [ + 37.704114, + 55.552891 + ], + [ + 37.703955, + 55.552891 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703955, + 55.552981 + ], + [ + 37.703955, + 55.553071 + ], + [ + 37.704114, + 55.553071 + ], + [ + 37.704114, + 55.552981 + ], + [ + 37.703955, + 55.552981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703955, + 55.553071 + ], + [ + 37.703955, + 55.553161 + ], + [ + 37.704114, + 55.553161 + ], + [ + 37.704114, + 55.553071 + ], + [ + 37.703955, + 55.553071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703955, + 55.553161 + ], + [ + 37.703955, + 55.553251 + ], + [ + 37.704114, + 55.553251 + ], + [ + 37.704114, + 55.553161 + ], + [ + 37.703955, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703955, + 55.553251 + ], + [ + 37.703955, + 55.553341 + ], + [ + 37.704114, + 55.553341 + ], + [ + 37.704114, + 55.553251 + ], + [ + 37.703955, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703955, + 55.553341 + ], + [ + 37.703955, + 55.553431 + ], + [ + 37.704114, + 55.553431 + ], + [ + 37.704114, + 55.553341 + ], + [ + 37.703955, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703955, + 55.553431 + ], + [ + 37.703955, + 55.55352 + ], + [ + 37.704114, + 55.55352 + ], + [ + 37.704114, + 55.553431 + ], + [ + 37.703955, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703955, + 55.55352 + ], + [ + 37.703955, + 55.55361 + ], + [ + 37.704114, + 55.55361 + ], + [ + 37.704114, + 55.55352 + ], + [ + 37.703955, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703955, + 55.55361 + ], + [ + 37.703955, + 55.5537 + ], + [ + 37.704114, + 55.5537 + ], + [ + 37.704114, + 55.55361 + ], + [ + 37.703955, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703955, + 55.5537 + ], + [ + 37.703955, + 55.55379 + ], + [ + 37.704114, + 55.55379 + ], + [ + 37.704114, + 55.5537 + ], + [ + 37.703955, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703955, + 55.55379 + ], + [ + 37.703955, + 55.55388 + ], + [ + 37.704114, + 55.55388 + ], + [ + 37.704114, + 55.55379 + ], + [ + 37.703955, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703955, + 55.55388 + ], + [ + 37.703955, + 55.55397 + ], + [ + 37.704114, + 55.55397 + ], + [ + 37.704114, + 55.55388 + ], + [ + 37.703955, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703955, + 55.55397 + ], + [ + 37.703955, + 55.55406 + ], + [ + 37.704114, + 55.55406 + ], + [ + 37.704114, + 55.55397 + ], + [ + 37.703955, + 55.55397 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703955, + 55.55406 + ], + [ + 37.703955, + 55.55415 + ], + [ + 37.704114, + 55.55415 + ], + [ + 37.704114, + 55.55406 + ], + [ + 37.703955, + 55.55406 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703955, + 55.55415 + ], + [ + 37.703955, + 55.55424 + ], + [ + 37.704114, + 55.55424 + ], + [ + 37.704114, + 55.55415 + ], + [ + 37.703955, + 55.55415 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703955, + 55.55424 + ], + [ + 37.703955, + 55.55433 + ], + [ + 37.704114, + 55.55433 + ], + [ + 37.704114, + 55.55424 + ], + [ + 37.703955, + 55.55424 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703955, + 55.55433 + ], + [ + 37.703955, + 55.55442 + ], + [ + 37.704114, + 55.55442 + ], + [ + 37.704114, + 55.55433 + ], + [ + 37.703955, + 55.55433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703955, + 55.55442 + ], + [ + 37.703955, + 55.55451 + ], + [ + 37.704114, + 55.55451 + ], + [ + 37.704114, + 55.55442 + ], + [ + 37.703955, + 55.55442 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703955, + 55.55451 + ], + [ + 37.703955, + 55.5546 + ], + [ + 37.704114, + 55.5546 + ], + [ + 37.704114, + 55.55451 + ], + [ + 37.703955, + 55.55451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703955, + 55.5546 + ], + [ + 37.703955, + 55.55469 + ], + [ + 37.704114, + 55.55469 + ], + [ + 37.704114, + 55.5546 + ], + [ + 37.703955, + 55.5546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703955, + 55.55469 + ], + [ + 37.703955, + 55.55478 + ], + [ + 37.704114, + 55.55478 + ], + [ + 37.704114, + 55.55469 + ], + [ + 37.703955, + 55.55469 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.703955, + 55.55478 + ], + [ + 37.703955, + 55.554869 + ], + [ + 37.704114, + 55.554869 + ], + [ + 37.704114, + 55.55478 + ], + [ + 37.703955, + 55.55478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704114, + 55.552082 + ], + [ + 37.704114, + 55.552171 + ], + [ + 37.704273, + 55.552171 + ], + [ + 37.704273, + 55.552082 + ], + [ + 37.704114, + 55.552082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704114, + 55.552171 + ], + [ + 37.704114, + 55.552261 + ], + [ + 37.704273, + 55.552261 + ], + [ + 37.704273, + 55.552171 + ], + [ + 37.704114, + 55.552171 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704114, + 55.552261 + ], + [ + 37.704114, + 55.552351 + ], + [ + 37.704273, + 55.552351 + ], + [ + 37.704273, + 55.552261 + ], + [ + 37.704114, + 55.552261 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704114, + 55.552351 + ], + [ + 37.704114, + 55.552441 + ], + [ + 37.704273, + 55.552441 + ], + [ + 37.704273, + 55.552351 + ], + [ + 37.704114, + 55.552351 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704114, + 55.552441 + ], + [ + 37.704114, + 55.552531 + ], + [ + 37.704273, + 55.552531 + ], + [ + 37.704273, + 55.552441 + ], + [ + 37.704114, + 55.552441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704114, + 55.552531 + ], + [ + 37.704114, + 55.552621 + ], + [ + 37.704273, + 55.552621 + ], + [ + 37.704273, + 55.552531 + ], + [ + 37.704114, + 55.552531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704114, + 55.552621 + ], + [ + 37.704114, + 55.552711 + ], + [ + 37.704273, + 55.552711 + ], + [ + 37.704273, + 55.552621 + ], + [ + 37.704114, + 55.552621 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704114, + 55.552711 + ], + [ + 37.704114, + 55.552801 + ], + [ + 37.704273, + 55.552801 + ], + [ + 37.704273, + 55.552711 + ], + [ + 37.704114, + 55.552711 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704114, + 55.552801 + ], + [ + 37.704114, + 55.552891 + ], + [ + 37.704273, + 55.552891 + ], + [ + 37.704273, + 55.552801 + ], + [ + 37.704114, + 55.552801 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704114, + 55.552891 + ], + [ + 37.704114, + 55.552981 + ], + [ + 37.704273, + 55.552981 + ], + [ + 37.704273, + 55.552891 + ], + [ + 37.704114, + 55.552891 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704114, + 55.552981 + ], + [ + 37.704114, + 55.553071 + ], + [ + 37.704273, + 55.553071 + ], + [ + 37.704273, + 55.552981 + ], + [ + 37.704114, + 55.552981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704114, + 55.553071 + ], + [ + 37.704114, + 55.553161 + ], + [ + 37.704273, + 55.553161 + ], + [ + 37.704273, + 55.553071 + ], + [ + 37.704114, + 55.553071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704114, + 55.553161 + ], + [ + 37.704114, + 55.553251 + ], + [ + 37.704273, + 55.553251 + ], + [ + 37.704273, + 55.553161 + ], + [ + 37.704114, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704114, + 55.553251 + ], + [ + 37.704114, + 55.553341 + ], + [ + 37.704273, + 55.553341 + ], + [ + 37.704273, + 55.553251 + ], + [ + 37.704114, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704114, + 55.553341 + ], + [ + 37.704114, + 55.553431 + ], + [ + 37.704273, + 55.553431 + ], + [ + 37.704273, + 55.553341 + ], + [ + 37.704114, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704114, + 55.553431 + ], + [ + 37.704114, + 55.55352 + ], + [ + 37.704273, + 55.55352 + ], + [ + 37.704273, + 55.553431 + ], + [ + 37.704114, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704114, + 55.55352 + ], + [ + 37.704114, + 55.55361 + ], + [ + 37.704273, + 55.55361 + ], + [ + 37.704273, + 55.55352 + ], + [ + 37.704114, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704114, + 55.55361 + ], + [ + 37.704114, + 55.5537 + ], + [ + 37.704273, + 55.5537 + ], + [ + 37.704273, + 55.55361 + ], + [ + 37.704114, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704114, + 55.5537 + ], + [ + 37.704114, + 55.55379 + ], + [ + 37.704273, + 55.55379 + ], + [ + 37.704273, + 55.5537 + ], + [ + 37.704114, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704114, + 55.55379 + ], + [ + 37.704114, + 55.55388 + ], + [ + 37.704273, + 55.55388 + ], + [ + 37.704273, + 55.55379 + ], + [ + 37.704114, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704114, + 55.55388 + ], + [ + 37.704114, + 55.55397 + ], + [ + 37.704273, + 55.55397 + ], + [ + 37.704273, + 55.55388 + ], + [ + 37.704114, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704114, + 55.55397 + ], + [ + 37.704114, + 55.55406 + ], + [ + 37.704273, + 55.55406 + ], + [ + 37.704273, + 55.55397 + ], + [ + 37.704114, + 55.55397 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704114, + 55.55406 + ], + [ + 37.704114, + 55.55415 + ], + [ + 37.704273, + 55.55415 + ], + [ + 37.704273, + 55.55406 + ], + [ + 37.704114, + 55.55406 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704114, + 55.55415 + ], + [ + 37.704114, + 55.55424 + ], + [ + 37.704273, + 55.55424 + ], + [ + 37.704273, + 55.55415 + ], + [ + 37.704114, + 55.55415 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704114, + 55.55424 + ], + [ + 37.704114, + 55.55433 + ], + [ + 37.704273, + 55.55433 + ], + [ + 37.704273, + 55.55424 + ], + [ + 37.704114, + 55.55424 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704114, + 55.55433 + ], + [ + 37.704114, + 55.55442 + ], + [ + 37.704273, + 55.55442 + ], + [ + 37.704273, + 55.55433 + ], + [ + 37.704114, + 55.55433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704114, + 55.55442 + ], + [ + 37.704114, + 55.55451 + ], + [ + 37.704273, + 55.55451 + ], + [ + 37.704273, + 55.55442 + ], + [ + 37.704114, + 55.55442 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704114, + 55.55451 + ], + [ + 37.704114, + 55.5546 + ], + [ + 37.704273, + 55.5546 + ], + [ + 37.704273, + 55.55451 + ], + [ + 37.704114, + 55.55451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704114, + 55.5546 + ], + [ + 37.704114, + 55.55469 + ], + [ + 37.704273, + 55.55469 + ], + [ + 37.704273, + 55.5546 + ], + [ + 37.704114, + 55.5546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704114, + 55.55469 + ], + [ + 37.704114, + 55.55478 + ], + [ + 37.704273, + 55.55478 + ], + [ + 37.704273, + 55.55469 + ], + [ + 37.704114, + 55.55469 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704114, + 55.55478 + ], + [ + 37.704114, + 55.554869 + ], + [ + 37.704273, + 55.554869 + ], + [ + 37.704273, + 55.55478 + ], + [ + 37.704114, + 55.55478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704114, + 55.554869 + ], + [ + 37.704114, + 55.554959 + ], + [ + 37.704273, + 55.554959 + ], + [ + 37.704273, + 55.554869 + ], + [ + 37.704114, + 55.554869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704273, + 55.551992 + ], + [ + 37.704273, + 55.552082 + ], + [ + 37.704432, + 55.552082 + ], + [ + 37.704432, + 55.551992 + ], + [ + 37.704273, + 55.551992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704273, + 55.552082 + ], + [ + 37.704273, + 55.552171 + ], + [ + 37.704432, + 55.552171 + ], + [ + 37.704432, + 55.552082 + ], + [ + 37.704273, + 55.552082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704273, + 55.552171 + ], + [ + 37.704273, + 55.552261 + ], + [ + 37.704432, + 55.552261 + ], + [ + 37.704432, + 55.552171 + ], + [ + 37.704273, + 55.552171 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704273, + 55.552261 + ], + [ + 37.704273, + 55.552351 + ], + [ + 37.704432, + 55.552351 + ], + [ + 37.704432, + 55.552261 + ], + [ + 37.704273, + 55.552261 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704273, + 55.552351 + ], + [ + 37.704273, + 55.552441 + ], + [ + 37.704432, + 55.552441 + ], + [ + 37.704432, + 55.552351 + ], + [ + 37.704273, + 55.552351 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704273, + 55.552441 + ], + [ + 37.704273, + 55.552531 + ], + [ + 37.704432, + 55.552531 + ], + [ + 37.704432, + 55.552441 + ], + [ + 37.704273, + 55.552441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704273, + 55.552531 + ], + [ + 37.704273, + 55.552621 + ], + [ + 37.704432, + 55.552621 + ], + [ + 37.704432, + 55.552531 + ], + [ + 37.704273, + 55.552531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704273, + 55.552621 + ], + [ + 37.704273, + 55.552711 + ], + [ + 37.704432, + 55.552711 + ], + [ + 37.704432, + 55.552621 + ], + [ + 37.704273, + 55.552621 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704273, + 55.552711 + ], + [ + 37.704273, + 55.552801 + ], + [ + 37.704432, + 55.552801 + ], + [ + 37.704432, + 55.552711 + ], + [ + 37.704273, + 55.552711 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704273, + 55.552801 + ], + [ + 37.704273, + 55.552891 + ], + [ + 37.704432, + 55.552891 + ], + [ + 37.704432, + 55.552801 + ], + [ + 37.704273, + 55.552801 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704273, + 55.552891 + ], + [ + 37.704273, + 55.552981 + ], + [ + 37.704432, + 55.552981 + ], + [ + 37.704432, + 55.552891 + ], + [ + 37.704273, + 55.552891 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704273, + 55.552981 + ], + [ + 37.704273, + 55.553071 + ], + [ + 37.704432, + 55.553071 + ], + [ + 37.704432, + 55.552981 + ], + [ + 37.704273, + 55.552981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704273, + 55.553071 + ], + [ + 37.704273, + 55.553161 + ], + [ + 37.704432, + 55.553161 + ], + [ + 37.704432, + 55.553071 + ], + [ + 37.704273, + 55.553071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704273, + 55.553161 + ], + [ + 37.704273, + 55.553251 + ], + [ + 37.704432, + 55.553251 + ], + [ + 37.704432, + 55.553161 + ], + [ + 37.704273, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704273, + 55.553251 + ], + [ + 37.704273, + 55.553341 + ], + [ + 37.704432, + 55.553341 + ], + [ + 37.704432, + 55.553251 + ], + [ + 37.704273, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704273, + 55.553341 + ], + [ + 37.704273, + 55.553431 + ], + [ + 37.704432, + 55.553431 + ], + [ + 37.704432, + 55.553341 + ], + [ + 37.704273, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704273, + 55.553431 + ], + [ + 37.704273, + 55.55352 + ], + [ + 37.704432, + 55.55352 + ], + [ + 37.704432, + 55.553431 + ], + [ + 37.704273, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704273, + 55.55352 + ], + [ + 37.704273, + 55.55361 + ], + [ + 37.704432, + 55.55361 + ], + [ + 37.704432, + 55.55352 + ], + [ + 37.704273, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704273, + 55.55361 + ], + [ + 37.704273, + 55.5537 + ], + [ + 37.704432, + 55.5537 + ], + [ + 37.704432, + 55.55361 + ], + [ + 37.704273, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704273, + 55.5537 + ], + [ + 37.704273, + 55.55379 + ], + [ + 37.704432, + 55.55379 + ], + [ + 37.704432, + 55.5537 + ], + [ + 37.704273, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704273, + 55.55379 + ], + [ + 37.704273, + 55.55388 + ], + [ + 37.704432, + 55.55388 + ], + [ + 37.704432, + 55.55379 + ], + [ + 37.704273, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704273, + 55.55388 + ], + [ + 37.704273, + 55.55397 + ], + [ + 37.704432, + 55.55397 + ], + [ + 37.704432, + 55.55388 + ], + [ + 37.704273, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704273, + 55.55397 + ], + [ + 37.704273, + 55.55406 + ], + [ + 37.704432, + 55.55406 + ], + [ + 37.704432, + 55.55397 + ], + [ + 37.704273, + 55.55397 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704273, + 55.55406 + ], + [ + 37.704273, + 55.55415 + ], + [ + 37.704432, + 55.55415 + ], + [ + 37.704432, + 55.55406 + ], + [ + 37.704273, + 55.55406 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704273, + 55.55415 + ], + [ + 37.704273, + 55.55424 + ], + [ + 37.704432, + 55.55424 + ], + [ + 37.704432, + 55.55415 + ], + [ + 37.704273, + 55.55415 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704273, + 55.55424 + ], + [ + 37.704273, + 55.55433 + ], + [ + 37.704432, + 55.55433 + ], + [ + 37.704432, + 55.55424 + ], + [ + 37.704273, + 55.55424 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704273, + 55.55433 + ], + [ + 37.704273, + 55.55442 + ], + [ + 37.704432, + 55.55442 + ], + [ + 37.704432, + 55.55433 + ], + [ + 37.704273, + 55.55433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704273, + 55.55442 + ], + [ + 37.704273, + 55.55451 + ], + [ + 37.704432, + 55.55451 + ], + [ + 37.704432, + 55.55442 + ], + [ + 37.704273, + 55.55442 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704273, + 55.55451 + ], + [ + 37.704273, + 55.5546 + ], + [ + 37.704432, + 55.5546 + ], + [ + 37.704432, + 55.55451 + ], + [ + 37.704273, + 55.55451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704273, + 55.5546 + ], + [ + 37.704273, + 55.55469 + ], + [ + 37.704432, + 55.55469 + ], + [ + 37.704432, + 55.5546 + ], + [ + 37.704273, + 55.5546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704273, + 55.55469 + ], + [ + 37.704273, + 55.55478 + ], + [ + 37.704432, + 55.55478 + ], + [ + 37.704432, + 55.55469 + ], + [ + 37.704273, + 55.55469 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704273, + 55.55478 + ], + [ + 37.704273, + 55.554869 + ], + [ + 37.704432, + 55.554869 + ], + [ + 37.704432, + 55.55478 + ], + [ + 37.704273, + 55.55478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704273, + 55.554869 + ], + [ + 37.704273, + 55.554959 + ], + [ + 37.704432, + 55.554959 + ], + [ + 37.704432, + 55.554869 + ], + [ + 37.704273, + 55.554869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704432, + 55.551992 + ], + [ + 37.704432, + 55.552082 + ], + [ + 37.704591, + 55.552082 + ], + [ + 37.704591, + 55.551992 + ], + [ + 37.704432, + 55.551992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704432, + 55.552082 + ], + [ + 37.704432, + 55.552171 + ], + [ + 37.704591, + 55.552171 + ], + [ + 37.704591, + 55.552082 + ], + [ + 37.704432, + 55.552082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704432, + 55.552171 + ], + [ + 37.704432, + 55.552261 + ], + [ + 37.704591, + 55.552261 + ], + [ + 37.704591, + 55.552171 + ], + [ + 37.704432, + 55.552171 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704432, + 55.552261 + ], + [ + 37.704432, + 55.552351 + ], + [ + 37.704591, + 55.552351 + ], + [ + 37.704591, + 55.552261 + ], + [ + 37.704432, + 55.552261 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704432, + 55.552351 + ], + [ + 37.704432, + 55.552441 + ], + [ + 37.704591, + 55.552441 + ], + [ + 37.704591, + 55.552351 + ], + [ + 37.704432, + 55.552351 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704432, + 55.552441 + ], + [ + 37.704432, + 55.552531 + ], + [ + 37.704591, + 55.552531 + ], + [ + 37.704591, + 55.552441 + ], + [ + 37.704432, + 55.552441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704432, + 55.552531 + ], + [ + 37.704432, + 55.552621 + ], + [ + 37.704591, + 55.552621 + ], + [ + 37.704591, + 55.552531 + ], + [ + 37.704432, + 55.552531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704432, + 55.552621 + ], + [ + 37.704432, + 55.552711 + ], + [ + 37.704591, + 55.552711 + ], + [ + 37.704591, + 55.552621 + ], + [ + 37.704432, + 55.552621 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704432, + 55.552711 + ], + [ + 37.704432, + 55.552801 + ], + [ + 37.704591, + 55.552801 + ], + [ + 37.704591, + 55.552711 + ], + [ + 37.704432, + 55.552711 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704432, + 55.552801 + ], + [ + 37.704432, + 55.552891 + ], + [ + 37.704591, + 55.552891 + ], + [ + 37.704591, + 55.552801 + ], + [ + 37.704432, + 55.552801 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704432, + 55.552891 + ], + [ + 37.704432, + 55.552981 + ], + [ + 37.704591, + 55.552981 + ], + [ + 37.704591, + 55.552891 + ], + [ + 37.704432, + 55.552891 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704432, + 55.552981 + ], + [ + 37.704432, + 55.553071 + ], + [ + 37.704591, + 55.553071 + ], + [ + 37.704591, + 55.552981 + ], + [ + 37.704432, + 55.552981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704432, + 55.553071 + ], + [ + 37.704432, + 55.553161 + ], + [ + 37.704591, + 55.553161 + ], + [ + 37.704591, + 55.553071 + ], + [ + 37.704432, + 55.553071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704432, + 55.553161 + ], + [ + 37.704432, + 55.553251 + ], + [ + 37.704591, + 55.553251 + ], + [ + 37.704591, + 55.553161 + ], + [ + 37.704432, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704432, + 55.553251 + ], + [ + 37.704432, + 55.553341 + ], + [ + 37.704591, + 55.553341 + ], + [ + 37.704591, + 55.553251 + ], + [ + 37.704432, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704432, + 55.553341 + ], + [ + 37.704432, + 55.553431 + ], + [ + 37.704591, + 55.553431 + ], + [ + 37.704591, + 55.553341 + ], + [ + 37.704432, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704432, + 55.553431 + ], + [ + 37.704432, + 55.55352 + ], + [ + 37.704591, + 55.55352 + ], + [ + 37.704591, + 55.553431 + ], + [ + 37.704432, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704432, + 55.55352 + ], + [ + 37.704432, + 55.55361 + ], + [ + 37.704591, + 55.55361 + ], + [ + 37.704591, + 55.55352 + ], + [ + 37.704432, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704432, + 55.55361 + ], + [ + 37.704432, + 55.5537 + ], + [ + 37.704591, + 55.5537 + ], + [ + 37.704591, + 55.55361 + ], + [ + 37.704432, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704432, + 55.5537 + ], + [ + 37.704432, + 55.55379 + ], + [ + 37.704591, + 55.55379 + ], + [ + 37.704591, + 55.5537 + ], + [ + 37.704432, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704432, + 55.55379 + ], + [ + 37.704432, + 55.55388 + ], + [ + 37.704591, + 55.55388 + ], + [ + 37.704591, + 55.55379 + ], + [ + 37.704432, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704432, + 55.55388 + ], + [ + 37.704432, + 55.55397 + ], + [ + 37.704591, + 55.55397 + ], + [ + 37.704591, + 55.55388 + ], + [ + 37.704432, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704432, + 55.55397 + ], + [ + 37.704432, + 55.55406 + ], + [ + 37.704591, + 55.55406 + ], + [ + 37.704591, + 55.55397 + ], + [ + 37.704432, + 55.55397 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704432, + 55.55406 + ], + [ + 37.704432, + 55.55415 + ], + [ + 37.704591, + 55.55415 + ], + [ + 37.704591, + 55.55406 + ], + [ + 37.704432, + 55.55406 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704432, + 55.55415 + ], + [ + 37.704432, + 55.55424 + ], + [ + 37.704591, + 55.55424 + ], + [ + 37.704591, + 55.55415 + ], + [ + 37.704432, + 55.55415 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704432, + 55.55424 + ], + [ + 37.704432, + 55.55433 + ], + [ + 37.704591, + 55.55433 + ], + [ + 37.704591, + 55.55424 + ], + [ + 37.704432, + 55.55424 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704432, + 55.55433 + ], + [ + 37.704432, + 55.55442 + ], + [ + 37.704591, + 55.55442 + ], + [ + 37.704591, + 55.55433 + ], + [ + 37.704432, + 55.55433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704432, + 55.55442 + ], + [ + 37.704432, + 55.55451 + ], + [ + 37.704591, + 55.55451 + ], + [ + 37.704591, + 55.55442 + ], + [ + 37.704432, + 55.55442 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704432, + 55.55451 + ], + [ + 37.704432, + 55.5546 + ], + [ + 37.704591, + 55.5546 + ], + [ + 37.704591, + 55.55451 + ], + [ + 37.704432, + 55.55451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704432, + 55.5546 + ], + [ + 37.704432, + 55.55469 + ], + [ + 37.704591, + 55.55469 + ], + [ + 37.704591, + 55.5546 + ], + [ + 37.704432, + 55.5546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704432, + 55.55469 + ], + [ + 37.704432, + 55.55478 + ], + [ + 37.704591, + 55.55478 + ], + [ + 37.704591, + 55.55469 + ], + [ + 37.704432, + 55.55469 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704432, + 55.55478 + ], + [ + 37.704432, + 55.554869 + ], + [ + 37.704591, + 55.554869 + ], + [ + 37.704591, + 55.55478 + ], + [ + 37.704432, + 55.55478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704432, + 55.554869 + ], + [ + 37.704432, + 55.554959 + ], + [ + 37.704591, + 55.554959 + ], + [ + 37.704591, + 55.554869 + ], + [ + 37.704432, + 55.554869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704432, + 55.554959 + ], + [ + 37.704432, + 55.555049 + ], + [ + 37.704591, + 55.555049 + ], + [ + 37.704591, + 55.554959 + ], + [ + 37.704432, + 55.554959 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704591, + 55.551902 + ], + [ + 37.704591, + 55.551992 + ], + [ + 37.70475, + 55.551992 + ], + [ + 37.70475, + 55.551902 + ], + [ + 37.704591, + 55.551902 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704591, + 55.551992 + ], + [ + 37.704591, + 55.552082 + ], + [ + 37.70475, + 55.552082 + ], + [ + 37.70475, + 55.551992 + ], + [ + 37.704591, + 55.551992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704591, + 55.552082 + ], + [ + 37.704591, + 55.552171 + ], + [ + 37.70475, + 55.552171 + ], + [ + 37.70475, + 55.552082 + ], + [ + 37.704591, + 55.552082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704591, + 55.552171 + ], + [ + 37.704591, + 55.552261 + ], + [ + 37.70475, + 55.552261 + ], + [ + 37.70475, + 55.552171 + ], + [ + 37.704591, + 55.552171 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704591, + 55.552261 + ], + [ + 37.704591, + 55.552351 + ], + [ + 37.70475, + 55.552351 + ], + [ + 37.70475, + 55.552261 + ], + [ + 37.704591, + 55.552261 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704591, + 55.552351 + ], + [ + 37.704591, + 55.552441 + ], + [ + 37.70475, + 55.552441 + ], + [ + 37.70475, + 55.552351 + ], + [ + 37.704591, + 55.552351 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704591, + 55.552441 + ], + [ + 37.704591, + 55.552531 + ], + [ + 37.70475, + 55.552531 + ], + [ + 37.70475, + 55.552441 + ], + [ + 37.704591, + 55.552441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704591, + 55.552531 + ], + [ + 37.704591, + 55.552621 + ], + [ + 37.70475, + 55.552621 + ], + [ + 37.70475, + 55.552531 + ], + [ + 37.704591, + 55.552531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704591, + 55.552621 + ], + [ + 37.704591, + 55.552711 + ], + [ + 37.70475, + 55.552711 + ], + [ + 37.70475, + 55.552621 + ], + [ + 37.704591, + 55.552621 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704591, + 55.552711 + ], + [ + 37.704591, + 55.552801 + ], + [ + 37.70475, + 55.552801 + ], + [ + 37.70475, + 55.552711 + ], + [ + 37.704591, + 55.552711 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704591, + 55.552801 + ], + [ + 37.704591, + 55.552891 + ], + [ + 37.70475, + 55.552891 + ], + [ + 37.70475, + 55.552801 + ], + [ + 37.704591, + 55.552801 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704591, + 55.552891 + ], + [ + 37.704591, + 55.552981 + ], + [ + 37.70475, + 55.552981 + ], + [ + 37.70475, + 55.552891 + ], + [ + 37.704591, + 55.552891 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704591, + 55.552981 + ], + [ + 37.704591, + 55.553071 + ], + [ + 37.70475, + 55.553071 + ], + [ + 37.70475, + 55.552981 + ], + [ + 37.704591, + 55.552981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704591, + 55.553071 + ], + [ + 37.704591, + 55.553161 + ], + [ + 37.70475, + 55.553161 + ], + [ + 37.70475, + 55.553071 + ], + [ + 37.704591, + 55.553071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704591, + 55.553161 + ], + [ + 37.704591, + 55.553251 + ], + [ + 37.70475, + 55.553251 + ], + [ + 37.70475, + 55.553161 + ], + [ + 37.704591, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704591, + 55.553251 + ], + [ + 37.704591, + 55.553341 + ], + [ + 37.70475, + 55.553341 + ], + [ + 37.70475, + 55.553251 + ], + [ + 37.704591, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704591, + 55.553341 + ], + [ + 37.704591, + 55.553431 + ], + [ + 37.70475, + 55.553431 + ], + [ + 37.70475, + 55.553341 + ], + [ + 37.704591, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704591, + 55.553431 + ], + [ + 37.704591, + 55.55352 + ], + [ + 37.70475, + 55.55352 + ], + [ + 37.70475, + 55.553431 + ], + [ + 37.704591, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704591, + 55.55352 + ], + [ + 37.704591, + 55.55361 + ], + [ + 37.70475, + 55.55361 + ], + [ + 37.70475, + 55.55352 + ], + [ + 37.704591, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704591, + 55.55361 + ], + [ + 37.704591, + 55.5537 + ], + [ + 37.70475, + 55.5537 + ], + [ + 37.70475, + 55.55361 + ], + [ + 37.704591, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704591, + 55.5537 + ], + [ + 37.704591, + 55.55379 + ], + [ + 37.70475, + 55.55379 + ], + [ + 37.70475, + 55.5537 + ], + [ + 37.704591, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704591, + 55.55379 + ], + [ + 37.704591, + 55.55388 + ], + [ + 37.70475, + 55.55388 + ], + [ + 37.70475, + 55.55379 + ], + [ + 37.704591, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704591, + 55.55388 + ], + [ + 37.704591, + 55.55397 + ], + [ + 37.70475, + 55.55397 + ], + [ + 37.70475, + 55.55388 + ], + [ + 37.704591, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704591, + 55.55397 + ], + [ + 37.704591, + 55.55406 + ], + [ + 37.70475, + 55.55406 + ], + [ + 37.70475, + 55.55397 + ], + [ + 37.704591, + 55.55397 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704591, + 55.55406 + ], + [ + 37.704591, + 55.55415 + ], + [ + 37.70475, + 55.55415 + ], + [ + 37.70475, + 55.55406 + ], + [ + 37.704591, + 55.55406 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704591, + 55.55415 + ], + [ + 37.704591, + 55.55424 + ], + [ + 37.70475, + 55.55424 + ], + [ + 37.70475, + 55.55415 + ], + [ + 37.704591, + 55.55415 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704591, + 55.55424 + ], + [ + 37.704591, + 55.55433 + ], + [ + 37.70475, + 55.55433 + ], + [ + 37.70475, + 55.55424 + ], + [ + 37.704591, + 55.55424 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704591, + 55.55433 + ], + [ + 37.704591, + 55.55442 + ], + [ + 37.70475, + 55.55442 + ], + [ + 37.70475, + 55.55433 + ], + [ + 37.704591, + 55.55433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704591, + 55.55442 + ], + [ + 37.704591, + 55.55451 + ], + [ + 37.70475, + 55.55451 + ], + [ + 37.70475, + 55.55442 + ], + [ + 37.704591, + 55.55442 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704591, + 55.55451 + ], + [ + 37.704591, + 55.5546 + ], + [ + 37.70475, + 55.5546 + ], + [ + 37.70475, + 55.55451 + ], + [ + 37.704591, + 55.55451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704591, + 55.5546 + ], + [ + 37.704591, + 55.55469 + ], + [ + 37.70475, + 55.55469 + ], + [ + 37.70475, + 55.5546 + ], + [ + 37.704591, + 55.5546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704591, + 55.55469 + ], + [ + 37.704591, + 55.55478 + ], + [ + 37.70475, + 55.55478 + ], + [ + 37.70475, + 55.55469 + ], + [ + 37.704591, + 55.55469 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704591, + 55.55478 + ], + [ + 37.704591, + 55.554869 + ], + [ + 37.70475, + 55.554869 + ], + [ + 37.70475, + 55.55478 + ], + [ + 37.704591, + 55.55478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704591, + 55.554869 + ], + [ + 37.704591, + 55.554959 + ], + [ + 37.70475, + 55.554959 + ], + [ + 37.70475, + 55.554869 + ], + [ + 37.704591, + 55.554869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704591, + 55.554959 + ], + [ + 37.704591, + 55.555049 + ], + [ + 37.70475, + 55.555049 + ], + [ + 37.70475, + 55.554959 + ], + [ + 37.704591, + 55.554959 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70475, + 55.551902 + ], + [ + 37.70475, + 55.551992 + ], + [ + 37.704909, + 55.551992 + ], + [ + 37.704909, + 55.551902 + ], + [ + 37.70475, + 55.551902 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70475, + 55.551992 + ], + [ + 37.70475, + 55.552082 + ], + [ + 37.704909, + 55.552082 + ], + [ + 37.704909, + 55.551992 + ], + [ + 37.70475, + 55.551992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70475, + 55.552082 + ], + [ + 37.70475, + 55.552171 + ], + [ + 37.704909, + 55.552171 + ], + [ + 37.704909, + 55.552082 + ], + [ + 37.70475, + 55.552082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70475, + 55.552171 + ], + [ + 37.70475, + 55.552261 + ], + [ + 37.704909, + 55.552261 + ], + [ + 37.704909, + 55.552171 + ], + [ + 37.70475, + 55.552171 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70475, + 55.552261 + ], + [ + 37.70475, + 55.552351 + ], + [ + 37.704909, + 55.552351 + ], + [ + 37.704909, + 55.552261 + ], + [ + 37.70475, + 55.552261 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70475, + 55.552351 + ], + [ + 37.70475, + 55.552441 + ], + [ + 37.704909, + 55.552441 + ], + [ + 37.704909, + 55.552351 + ], + [ + 37.70475, + 55.552351 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70475, + 55.552441 + ], + [ + 37.70475, + 55.552531 + ], + [ + 37.704909, + 55.552531 + ], + [ + 37.704909, + 55.552441 + ], + [ + 37.70475, + 55.552441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70475, + 55.552531 + ], + [ + 37.70475, + 55.552621 + ], + [ + 37.704909, + 55.552621 + ], + [ + 37.704909, + 55.552531 + ], + [ + 37.70475, + 55.552531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70475, + 55.552621 + ], + [ + 37.70475, + 55.552711 + ], + [ + 37.704909, + 55.552711 + ], + [ + 37.704909, + 55.552621 + ], + [ + 37.70475, + 55.552621 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70475, + 55.552711 + ], + [ + 37.70475, + 55.552801 + ], + [ + 37.704909, + 55.552801 + ], + [ + 37.704909, + 55.552711 + ], + [ + 37.70475, + 55.552711 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70475, + 55.552801 + ], + [ + 37.70475, + 55.552891 + ], + [ + 37.704909, + 55.552891 + ], + [ + 37.704909, + 55.552801 + ], + [ + 37.70475, + 55.552801 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70475, + 55.552891 + ], + [ + 37.70475, + 55.552981 + ], + [ + 37.704909, + 55.552981 + ], + [ + 37.704909, + 55.552891 + ], + [ + 37.70475, + 55.552891 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70475, + 55.552981 + ], + [ + 37.70475, + 55.553071 + ], + [ + 37.704909, + 55.553071 + ], + [ + 37.704909, + 55.552981 + ], + [ + 37.70475, + 55.552981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70475, + 55.553071 + ], + [ + 37.70475, + 55.553161 + ], + [ + 37.704909, + 55.553161 + ], + [ + 37.704909, + 55.553071 + ], + [ + 37.70475, + 55.553071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70475, + 55.553161 + ], + [ + 37.70475, + 55.553251 + ], + [ + 37.704909, + 55.553251 + ], + [ + 37.704909, + 55.553161 + ], + [ + 37.70475, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70475, + 55.553251 + ], + [ + 37.70475, + 55.553341 + ], + [ + 37.704909, + 55.553341 + ], + [ + 37.704909, + 55.553251 + ], + [ + 37.70475, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70475, + 55.553341 + ], + [ + 37.70475, + 55.553431 + ], + [ + 37.704909, + 55.553431 + ], + [ + 37.704909, + 55.553341 + ], + [ + 37.70475, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70475, + 55.553431 + ], + [ + 37.70475, + 55.55352 + ], + [ + 37.704909, + 55.55352 + ], + [ + 37.704909, + 55.553431 + ], + [ + 37.70475, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70475, + 55.55352 + ], + [ + 37.70475, + 55.55361 + ], + [ + 37.704909, + 55.55361 + ], + [ + 37.704909, + 55.55352 + ], + [ + 37.70475, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70475, + 55.55361 + ], + [ + 37.70475, + 55.5537 + ], + [ + 37.704909, + 55.5537 + ], + [ + 37.704909, + 55.55361 + ], + [ + 37.70475, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70475, + 55.5537 + ], + [ + 37.70475, + 55.55379 + ], + [ + 37.704909, + 55.55379 + ], + [ + 37.704909, + 55.5537 + ], + [ + 37.70475, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70475, + 55.55379 + ], + [ + 37.70475, + 55.55388 + ], + [ + 37.704909, + 55.55388 + ], + [ + 37.704909, + 55.55379 + ], + [ + 37.70475, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70475, + 55.55388 + ], + [ + 37.70475, + 55.55397 + ], + [ + 37.704909, + 55.55397 + ], + [ + 37.704909, + 55.55388 + ], + [ + 37.70475, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70475, + 55.55397 + ], + [ + 37.70475, + 55.55406 + ], + [ + 37.704909, + 55.55406 + ], + [ + 37.704909, + 55.55397 + ], + [ + 37.70475, + 55.55397 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70475, + 55.55406 + ], + [ + 37.70475, + 55.55415 + ], + [ + 37.704909, + 55.55415 + ], + [ + 37.704909, + 55.55406 + ], + [ + 37.70475, + 55.55406 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70475, + 55.55415 + ], + [ + 37.70475, + 55.55424 + ], + [ + 37.704909, + 55.55424 + ], + [ + 37.704909, + 55.55415 + ], + [ + 37.70475, + 55.55415 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70475, + 55.55424 + ], + [ + 37.70475, + 55.55433 + ], + [ + 37.704909, + 55.55433 + ], + [ + 37.704909, + 55.55424 + ], + [ + 37.70475, + 55.55424 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70475, + 55.55433 + ], + [ + 37.70475, + 55.55442 + ], + [ + 37.704909, + 55.55442 + ], + [ + 37.704909, + 55.55433 + ], + [ + 37.70475, + 55.55433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70475, + 55.55442 + ], + [ + 37.70475, + 55.55451 + ], + [ + 37.704909, + 55.55451 + ], + [ + 37.704909, + 55.55442 + ], + [ + 37.70475, + 55.55442 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70475, + 55.55451 + ], + [ + 37.70475, + 55.5546 + ], + [ + 37.704909, + 55.5546 + ], + [ + 37.704909, + 55.55451 + ], + [ + 37.70475, + 55.55451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70475, + 55.5546 + ], + [ + 37.70475, + 55.55469 + ], + [ + 37.704909, + 55.55469 + ], + [ + 37.704909, + 55.5546 + ], + [ + 37.70475, + 55.5546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70475, + 55.55469 + ], + [ + 37.70475, + 55.55478 + ], + [ + 37.704909, + 55.55478 + ], + [ + 37.704909, + 55.55469 + ], + [ + 37.70475, + 55.55469 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70475, + 55.55478 + ], + [ + 37.70475, + 55.554869 + ], + [ + 37.704909, + 55.554869 + ], + [ + 37.704909, + 55.55478 + ], + [ + 37.70475, + 55.55478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70475, + 55.554869 + ], + [ + 37.70475, + 55.554959 + ], + [ + 37.704909, + 55.554959 + ], + [ + 37.704909, + 55.554869 + ], + [ + 37.70475, + 55.554869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70475, + 55.554959 + ], + [ + 37.70475, + 55.555049 + ], + [ + 37.704909, + 55.555049 + ], + [ + 37.704909, + 55.554959 + ], + [ + 37.70475, + 55.554959 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70475, + 55.555049 + ], + [ + 37.70475, + 55.555139 + ], + [ + 37.704909, + 55.555139 + ], + [ + 37.704909, + 55.555049 + ], + [ + 37.70475, + 55.555049 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704909, + 55.551812 + ], + [ + 37.704909, + 55.551902 + ], + [ + 37.705068, + 55.551902 + ], + [ + 37.705068, + 55.551812 + ], + [ + 37.704909, + 55.551812 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704909, + 55.551902 + ], + [ + 37.704909, + 55.551992 + ], + [ + 37.705068, + 55.551992 + ], + [ + 37.705068, + 55.551902 + ], + [ + 37.704909, + 55.551902 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704909, + 55.551992 + ], + [ + 37.704909, + 55.552082 + ], + [ + 37.705068, + 55.552082 + ], + [ + 37.705068, + 55.551992 + ], + [ + 37.704909, + 55.551992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704909, + 55.552082 + ], + [ + 37.704909, + 55.552171 + ], + [ + 37.705068, + 55.552171 + ], + [ + 37.705068, + 55.552082 + ], + [ + 37.704909, + 55.552082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704909, + 55.552171 + ], + [ + 37.704909, + 55.552261 + ], + [ + 37.705068, + 55.552261 + ], + [ + 37.705068, + 55.552171 + ], + [ + 37.704909, + 55.552171 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704909, + 55.552261 + ], + [ + 37.704909, + 55.552351 + ], + [ + 37.705068, + 55.552351 + ], + [ + 37.705068, + 55.552261 + ], + [ + 37.704909, + 55.552261 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704909, + 55.552351 + ], + [ + 37.704909, + 55.552441 + ], + [ + 37.705068, + 55.552441 + ], + [ + 37.705068, + 55.552351 + ], + [ + 37.704909, + 55.552351 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704909, + 55.552441 + ], + [ + 37.704909, + 55.552531 + ], + [ + 37.705068, + 55.552531 + ], + [ + 37.705068, + 55.552441 + ], + [ + 37.704909, + 55.552441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704909, + 55.552531 + ], + [ + 37.704909, + 55.552621 + ], + [ + 37.705068, + 55.552621 + ], + [ + 37.705068, + 55.552531 + ], + [ + 37.704909, + 55.552531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704909, + 55.552621 + ], + [ + 37.704909, + 55.552711 + ], + [ + 37.705068, + 55.552711 + ], + [ + 37.705068, + 55.552621 + ], + [ + 37.704909, + 55.552621 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704909, + 55.552711 + ], + [ + 37.704909, + 55.552801 + ], + [ + 37.705068, + 55.552801 + ], + [ + 37.705068, + 55.552711 + ], + [ + 37.704909, + 55.552711 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704909, + 55.552801 + ], + [ + 37.704909, + 55.552891 + ], + [ + 37.705068, + 55.552891 + ], + [ + 37.705068, + 55.552801 + ], + [ + 37.704909, + 55.552801 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704909, + 55.552891 + ], + [ + 37.704909, + 55.552981 + ], + [ + 37.705068, + 55.552981 + ], + [ + 37.705068, + 55.552891 + ], + [ + 37.704909, + 55.552891 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704909, + 55.552981 + ], + [ + 37.704909, + 55.553071 + ], + [ + 37.705068, + 55.553071 + ], + [ + 37.705068, + 55.552981 + ], + [ + 37.704909, + 55.552981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704909, + 55.553071 + ], + [ + 37.704909, + 55.553161 + ], + [ + 37.705068, + 55.553161 + ], + [ + 37.705068, + 55.553071 + ], + [ + 37.704909, + 55.553071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704909, + 55.553161 + ], + [ + 37.704909, + 55.553251 + ], + [ + 37.705068, + 55.553251 + ], + [ + 37.705068, + 55.553161 + ], + [ + 37.704909, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704909, + 55.553251 + ], + [ + 37.704909, + 55.553341 + ], + [ + 37.705068, + 55.553341 + ], + [ + 37.705068, + 55.553251 + ], + [ + 37.704909, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704909, + 55.553341 + ], + [ + 37.704909, + 55.553431 + ], + [ + 37.705068, + 55.553431 + ], + [ + 37.705068, + 55.553341 + ], + [ + 37.704909, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704909, + 55.553431 + ], + [ + 37.704909, + 55.55352 + ], + [ + 37.705068, + 55.55352 + ], + [ + 37.705068, + 55.553431 + ], + [ + 37.704909, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704909, + 55.55352 + ], + [ + 37.704909, + 55.55361 + ], + [ + 37.705068, + 55.55361 + ], + [ + 37.705068, + 55.55352 + ], + [ + 37.704909, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704909, + 55.55361 + ], + [ + 37.704909, + 55.5537 + ], + [ + 37.705068, + 55.5537 + ], + [ + 37.705068, + 55.55361 + ], + [ + 37.704909, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704909, + 55.5537 + ], + [ + 37.704909, + 55.55379 + ], + [ + 37.705068, + 55.55379 + ], + [ + 37.705068, + 55.5537 + ], + [ + 37.704909, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704909, + 55.55379 + ], + [ + 37.704909, + 55.55388 + ], + [ + 37.705068, + 55.55388 + ], + [ + 37.705068, + 55.55379 + ], + [ + 37.704909, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704909, + 55.55388 + ], + [ + 37.704909, + 55.55397 + ], + [ + 37.705068, + 55.55397 + ], + [ + 37.705068, + 55.55388 + ], + [ + 37.704909, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704909, + 55.55397 + ], + [ + 37.704909, + 55.55406 + ], + [ + 37.705068, + 55.55406 + ], + [ + 37.705068, + 55.55397 + ], + [ + 37.704909, + 55.55397 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704909, + 55.55406 + ], + [ + 37.704909, + 55.55415 + ], + [ + 37.705068, + 55.55415 + ], + [ + 37.705068, + 55.55406 + ], + [ + 37.704909, + 55.55406 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704909, + 55.55415 + ], + [ + 37.704909, + 55.55424 + ], + [ + 37.705068, + 55.55424 + ], + [ + 37.705068, + 55.55415 + ], + [ + 37.704909, + 55.55415 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704909, + 55.55424 + ], + [ + 37.704909, + 55.55433 + ], + [ + 37.705068, + 55.55433 + ], + [ + 37.705068, + 55.55424 + ], + [ + 37.704909, + 55.55424 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704909, + 55.55433 + ], + [ + 37.704909, + 55.55442 + ], + [ + 37.705068, + 55.55442 + ], + [ + 37.705068, + 55.55433 + ], + [ + 37.704909, + 55.55433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704909, + 55.55442 + ], + [ + 37.704909, + 55.55451 + ], + [ + 37.705068, + 55.55451 + ], + [ + 37.705068, + 55.55442 + ], + [ + 37.704909, + 55.55442 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704909, + 55.55451 + ], + [ + 37.704909, + 55.5546 + ], + [ + 37.705068, + 55.5546 + ], + [ + 37.705068, + 55.55451 + ], + [ + 37.704909, + 55.55451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704909, + 55.5546 + ], + [ + 37.704909, + 55.55469 + ], + [ + 37.705068, + 55.55469 + ], + [ + 37.705068, + 55.5546 + ], + [ + 37.704909, + 55.5546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704909, + 55.55469 + ], + [ + 37.704909, + 55.55478 + ], + [ + 37.705068, + 55.55478 + ], + [ + 37.705068, + 55.55469 + ], + [ + 37.704909, + 55.55469 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704909, + 55.55478 + ], + [ + 37.704909, + 55.554869 + ], + [ + 37.705068, + 55.554869 + ], + [ + 37.705068, + 55.55478 + ], + [ + 37.704909, + 55.55478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704909, + 55.554869 + ], + [ + 37.704909, + 55.554959 + ], + [ + 37.705068, + 55.554959 + ], + [ + 37.705068, + 55.554869 + ], + [ + 37.704909, + 55.554869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704909, + 55.554959 + ], + [ + 37.704909, + 55.555049 + ], + [ + 37.705068, + 55.555049 + ], + [ + 37.705068, + 55.554959 + ], + [ + 37.704909, + 55.554959 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.704909, + 55.555049 + ], + [ + 37.704909, + 55.555139 + ], + [ + 37.705068, + 55.555139 + ], + [ + 37.705068, + 55.555049 + ], + [ + 37.704909, + 55.555049 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705068, + 55.551812 + ], + [ + 37.705068, + 55.551902 + ], + [ + 37.705227, + 55.551902 + ], + [ + 37.705227, + 55.551812 + ], + [ + 37.705068, + 55.551812 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705068, + 55.551902 + ], + [ + 37.705068, + 55.551992 + ], + [ + 37.705227, + 55.551992 + ], + [ + 37.705227, + 55.551902 + ], + [ + 37.705068, + 55.551902 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705068, + 55.551992 + ], + [ + 37.705068, + 55.552082 + ], + [ + 37.705227, + 55.552082 + ], + [ + 37.705227, + 55.551992 + ], + [ + 37.705068, + 55.551992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705068, + 55.552082 + ], + [ + 37.705068, + 55.552171 + ], + [ + 37.705227, + 55.552171 + ], + [ + 37.705227, + 55.552082 + ], + [ + 37.705068, + 55.552082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705068, + 55.552171 + ], + [ + 37.705068, + 55.552261 + ], + [ + 37.705227, + 55.552261 + ], + [ + 37.705227, + 55.552171 + ], + [ + 37.705068, + 55.552171 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705068, + 55.552261 + ], + [ + 37.705068, + 55.552351 + ], + [ + 37.705227, + 55.552351 + ], + [ + 37.705227, + 55.552261 + ], + [ + 37.705068, + 55.552261 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705068, + 55.552351 + ], + [ + 37.705068, + 55.552441 + ], + [ + 37.705227, + 55.552441 + ], + [ + 37.705227, + 55.552351 + ], + [ + 37.705068, + 55.552351 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705068, + 55.552441 + ], + [ + 37.705068, + 55.552531 + ], + [ + 37.705227, + 55.552531 + ], + [ + 37.705227, + 55.552441 + ], + [ + 37.705068, + 55.552441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705068, + 55.552531 + ], + [ + 37.705068, + 55.552621 + ], + [ + 37.705227, + 55.552621 + ], + [ + 37.705227, + 55.552531 + ], + [ + 37.705068, + 55.552531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705068, + 55.552621 + ], + [ + 37.705068, + 55.552711 + ], + [ + 37.705227, + 55.552711 + ], + [ + 37.705227, + 55.552621 + ], + [ + 37.705068, + 55.552621 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705068, + 55.552711 + ], + [ + 37.705068, + 55.552801 + ], + [ + 37.705227, + 55.552801 + ], + [ + 37.705227, + 55.552711 + ], + [ + 37.705068, + 55.552711 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705068, + 55.552801 + ], + [ + 37.705068, + 55.552891 + ], + [ + 37.705227, + 55.552891 + ], + [ + 37.705227, + 55.552801 + ], + [ + 37.705068, + 55.552801 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705068, + 55.552891 + ], + [ + 37.705068, + 55.552981 + ], + [ + 37.705227, + 55.552981 + ], + [ + 37.705227, + 55.552891 + ], + [ + 37.705068, + 55.552891 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705068, + 55.552981 + ], + [ + 37.705068, + 55.553071 + ], + [ + 37.705227, + 55.553071 + ], + [ + 37.705227, + 55.552981 + ], + [ + 37.705068, + 55.552981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705068, + 55.553071 + ], + [ + 37.705068, + 55.553161 + ], + [ + 37.705227, + 55.553161 + ], + [ + 37.705227, + 55.553071 + ], + [ + 37.705068, + 55.553071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705068, + 55.553161 + ], + [ + 37.705068, + 55.553251 + ], + [ + 37.705227, + 55.553251 + ], + [ + 37.705227, + 55.553161 + ], + [ + 37.705068, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705068, + 55.553251 + ], + [ + 37.705068, + 55.553341 + ], + [ + 37.705227, + 55.553341 + ], + [ + 37.705227, + 55.553251 + ], + [ + 37.705068, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705068, + 55.553341 + ], + [ + 37.705068, + 55.553431 + ], + [ + 37.705227, + 55.553431 + ], + [ + 37.705227, + 55.553341 + ], + [ + 37.705068, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705068, + 55.553431 + ], + [ + 37.705068, + 55.55352 + ], + [ + 37.705227, + 55.55352 + ], + [ + 37.705227, + 55.553431 + ], + [ + 37.705068, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705068, + 55.55352 + ], + [ + 37.705068, + 55.55361 + ], + [ + 37.705227, + 55.55361 + ], + [ + 37.705227, + 55.55352 + ], + [ + 37.705068, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705068, + 55.55361 + ], + [ + 37.705068, + 55.5537 + ], + [ + 37.705227, + 55.5537 + ], + [ + 37.705227, + 55.55361 + ], + [ + 37.705068, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705068, + 55.5537 + ], + [ + 37.705068, + 55.55379 + ], + [ + 37.705227, + 55.55379 + ], + [ + 37.705227, + 55.5537 + ], + [ + 37.705068, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705068, + 55.55379 + ], + [ + 37.705068, + 55.55388 + ], + [ + 37.705227, + 55.55388 + ], + [ + 37.705227, + 55.55379 + ], + [ + 37.705068, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705068, + 55.55388 + ], + [ + 37.705068, + 55.55397 + ], + [ + 37.705227, + 55.55397 + ], + [ + 37.705227, + 55.55388 + ], + [ + 37.705068, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705068, + 55.55397 + ], + [ + 37.705068, + 55.55406 + ], + [ + 37.705227, + 55.55406 + ], + [ + 37.705227, + 55.55397 + ], + [ + 37.705068, + 55.55397 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705068, + 55.55406 + ], + [ + 37.705068, + 55.55415 + ], + [ + 37.705227, + 55.55415 + ], + [ + 37.705227, + 55.55406 + ], + [ + 37.705068, + 55.55406 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705068, + 55.55415 + ], + [ + 37.705068, + 55.55424 + ], + [ + 37.705227, + 55.55424 + ], + [ + 37.705227, + 55.55415 + ], + [ + 37.705068, + 55.55415 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705068, + 55.55424 + ], + [ + 37.705068, + 55.55433 + ], + [ + 37.705227, + 55.55433 + ], + [ + 37.705227, + 55.55424 + ], + [ + 37.705068, + 55.55424 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705068, + 55.55433 + ], + [ + 37.705068, + 55.55442 + ], + [ + 37.705227, + 55.55442 + ], + [ + 37.705227, + 55.55433 + ], + [ + 37.705068, + 55.55433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705068, + 55.55442 + ], + [ + 37.705068, + 55.55451 + ], + [ + 37.705227, + 55.55451 + ], + [ + 37.705227, + 55.55442 + ], + [ + 37.705068, + 55.55442 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705068, + 55.55451 + ], + [ + 37.705068, + 55.5546 + ], + [ + 37.705227, + 55.5546 + ], + [ + 37.705227, + 55.55451 + ], + [ + 37.705068, + 55.55451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705068, + 55.5546 + ], + [ + 37.705068, + 55.55469 + ], + [ + 37.705227, + 55.55469 + ], + [ + 37.705227, + 55.5546 + ], + [ + 37.705068, + 55.5546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705068, + 55.55469 + ], + [ + 37.705068, + 55.55478 + ], + [ + 37.705227, + 55.55478 + ], + [ + 37.705227, + 55.55469 + ], + [ + 37.705068, + 55.55469 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705068, + 55.55478 + ], + [ + 37.705068, + 55.554869 + ], + [ + 37.705227, + 55.554869 + ], + [ + 37.705227, + 55.55478 + ], + [ + 37.705068, + 55.55478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705068, + 55.554869 + ], + [ + 37.705068, + 55.554959 + ], + [ + 37.705227, + 55.554959 + ], + [ + 37.705227, + 55.554869 + ], + [ + 37.705068, + 55.554869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705068, + 55.554959 + ], + [ + 37.705068, + 55.555049 + ], + [ + 37.705227, + 55.555049 + ], + [ + 37.705227, + 55.554959 + ], + [ + 37.705068, + 55.554959 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705068, + 55.555049 + ], + [ + 37.705068, + 55.555139 + ], + [ + 37.705227, + 55.555139 + ], + [ + 37.705227, + 55.555049 + ], + [ + 37.705068, + 55.555049 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705068, + 55.555139 + ], + [ + 37.705068, + 55.555229 + ], + [ + 37.705227, + 55.555229 + ], + [ + 37.705227, + 55.555139 + ], + [ + 37.705068, + 55.555139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705227, + 55.551722 + ], + [ + 37.705227, + 55.551812 + ], + [ + 37.705386, + 55.551812 + ], + [ + 37.705386, + 55.551722 + ], + [ + 37.705227, + 55.551722 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705227, + 55.551812 + ], + [ + 37.705227, + 55.551902 + ], + [ + 37.705386, + 55.551902 + ], + [ + 37.705386, + 55.551812 + ], + [ + 37.705227, + 55.551812 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705227, + 55.551902 + ], + [ + 37.705227, + 55.551992 + ], + [ + 37.705386, + 55.551992 + ], + [ + 37.705386, + 55.551902 + ], + [ + 37.705227, + 55.551902 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705227, + 55.551992 + ], + [ + 37.705227, + 55.552082 + ], + [ + 37.705386, + 55.552082 + ], + [ + 37.705386, + 55.551992 + ], + [ + 37.705227, + 55.551992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705227, + 55.552082 + ], + [ + 37.705227, + 55.552171 + ], + [ + 37.705386, + 55.552171 + ], + [ + 37.705386, + 55.552082 + ], + [ + 37.705227, + 55.552082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705227, + 55.552171 + ], + [ + 37.705227, + 55.552261 + ], + [ + 37.705386, + 55.552261 + ], + [ + 37.705386, + 55.552171 + ], + [ + 37.705227, + 55.552171 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705227, + 55.552261 + ], + [ + 37.705227, + 55.552351 + ], + [ + 37.705386, + 55.552351 + ], + [ + 37.705386, + 55.552261 + ], + [ + 37.705227, + 55.552261 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705227, + 55.552351 + ], + [ + 37.705227, + 55.552441 + ], + [ + 37.705386, + 55.552441 + ], + [ + 37.705386, + 55.552351 + ], + [ + 37.705227, + 55.552351 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705227, + 55.552441 + ], + [ + 37.705227, + 55.552531 + ], + [ + 37.705386, + 55.552531 + ], + [ + 37.705386, + 55.552441 + ], + [ + 37.705227, + 55.552441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705227, + 55.552531 + ], + [ + 37.705227, + 55.552621 + ], + [ + 37.705386, + 55.552621 + ], + [ + 37.705386, + 55.552531 + ], + [ + 37.705227, + 55.552531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705227, + 55.552621 + ], + [ + 37.705227, + 55.552711 + ], + [ + 37.705386, + 55.552711 + ], + [ + 37.705386, + 55.552621 + ], + [ + 37.705227, + 55.552621 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705227, + 55.552711 + ], + [ + 37.705227, + 55.552801 + ], + [ + 37.705386, + 55.552801 + ], + [ + 37.705386, + 55.552711 + ], + [ + 37.705227, + 55.552711 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705227, + 55.552801 + ], + [ + 37.705227, + 55.552891 + ], + [ + 37.705386, + 55.552891 + ], + [ + 37.705386, + 55.552801 + ], + [ + 37.705227, + 55.552801 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705227, + 55.552891 + ], + [ + 37.705227, + 55.552981 + ], + [ + 37.705386, + 55.552981 + ], + [ + 37.705386, + 55.552891 + ], + [ + 37.705227, + 55.552891 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705227, + 55.552981 + ], + [ + 37.705227, + 55.553071 + ], + [ + 37.705386, + 55.553071 + ], + [ + 37.705386, + 55.552981 + ], + [ + 37.705227, + 55.552981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705227, + 55.553071 + ], + [ + 37.705227, + 55.553161 + ], + [ + 37.705386, + 55.553161 + ], + [ + 37.705386, + 55.553071 + ], + [ + 37.705227, + 55.553071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705227, + 55.553161 + ], + [ + 37.705227, + 55.553251 + ], + [ + 37.705386, + 55.553251 + ], + [ + 37.705386, + 55.553161 + ], + [ + 37.705227, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705227, + 55.553251 + ], + [ + 37.705227, + 55.553341 + ], + [ + 37.705386, + 55.553341 + ], + [ + 37.705386, + 55.553251 + ], + [ + 37.705227, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705227, + 55.553341 + ], + [ + 37.705227, + 55.553431 + ], + [ + 37.705386, + 55.553431 + ], + [ + 37.705386, + 55.553341 + ], + [ + 37.705227, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705227, + 55.553431 + ], + [ + 37.705227, + 55.55352 + ], + [ + 37.705386, + 55.55352 + ], + [ + 37.705386, + 55.553431 + ], + [ + 37.705227, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705227, + 55.55352 + ], + [ + 37.705227, + 55.55361 + ], + [ + 37.705386, + 55.55361 + ], + [ + 37.705386, + 55.55352 + ], + [ + 37.705227, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705227, + 55.55361 + ], + [ + 37.705227, + 55.5537 + ], + [ + 37.705386, + 55.5537 + ], + [ + 37.705386, + 55.55361 + ], + [ + 37.705227, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705227, + 55.5537 + ], + [ + 37.705227, + 55.55379 + ], + [ + 37.705386, + 55.55379 + ], + [ + 37.705386, + 55.5537 + ], + [ + 37.705227, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705227, + 55.55379 + ], + [ + 37.705227, + 55.55388 + ], + [ + 37.705386, + 55.55388 + ], + [ + 37.705386, + 55.55379 + ], + [ + 37.705227, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705227, + 55.55388 + ], + [ + 37.705227, + 55.55397 + ], + [ + 37.705386, + 55.55397 + ], + [ + 37.705386, + 55.55388 + ], + [ + 37.705227, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705227, + 55.55397 + ], + [ + 37.705227, + 55.55406 + ], + [ + 37.705386, + 55.55406 + ], + [ + 37.705386, + 55.55397 + ], + [ + 37.705227, + 55.55397 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705227, + 55.55406 + ], + [ + 37.705227, + 55.55415 + ], + [ + 37.705386, + 55.55415 + ], + [ + 37.705386, + 55.55406 + ], + [ + 37.705227, + 55.55406 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705227, + 55.55415 + ], + [ + 37.705227, + 55.55424 + ], + [ + 37.705386, + 55.55424 + ], + [ + 37.705386, + 55.55415 + ], + [ + 37.705227, + 55.55415 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705227, + 55.55424 + ], + [ + 37.705227, + 55.55433 + ], + [ + 37.705386, + 55.55433 + ], + [ + 37.705386, + 55.55424 + ], + [ + 37.705227, + 55.55424 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705227, + 55.55433 + ], + [ + 37.705227, + 55.55442 + ], + [ + 37.705386, + 55.55442 + ], + [ + 37.705386, + 55.55433 + ], + [ + 37.705227, + 55.55433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705227, + 55.55442 + ], + [ + 37.705227, + 55.55451 + ], + [ + 37.705386, + 55.55451 + ], + [ + 37.705386, + 55.55442 + ], + [ + 37.705227, + 55.55442 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705227, + 55.55451 + ], + [ + 37.705227, + 55.5546 + ], + [ + 37.705386, + 55.5546 + ], + [ + 37.705386, + 55.55451 + ], + [ + 37.705227, + 55.55451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705227, + 55.5546 + ], + [ + 37.705227, + 55.55469 + ], + [ + 37.705386, + 55.55469 + ], + [ + 37.705386, + 55.5546 + ], + [ + 37.705227, + 55.5546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705227, + 55.55469 + ], + [ + 37.705227, + 55.55478 + ], + [ + 37.705386, + 55.55478 + ], + [ + 37.705386, + 55.55469 + ], + [ + 37.705227, + 55.55469 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705227, + 55.55478 + ], + [ + 37.705227, + 55.554869 + ], + [ + 37.705386, + 55.554869 + ], + [ + 37.705386, + 55.55478 + ], + [ + 37.705227, + 55.55478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705227, + 55.554869 + ], + [ + 37.705227, + 55.554959 + ], + [ + 37.705386, + 55.554959 + ], + [ + 37.705386, + 55.554869 + ], + [ + 37.705227, + 55.554869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705227, + 55.554959 + ], + [ + 37.705227, + 55.555049 + ], + [ + 37.705386, + 55.555049 + ], + [ + 37.705386, + 55.554959 + ], + [ + 37.705227, + 55.554959 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705227, + 55.555049 + ], + [ + 37.705227, + 55.555139 + ], + [ + 37.705386, + 55.555139 + ], + [ + 37.705386, + 55.555049 + ], + [ + 37.705227, + 55.555049 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705227, + 55.555139 + ], + [ + 37.705227, + 55.555229 + ], + [ + 37.705386, + 55.555229 + ], + [ + 37.705386, + 55.555139 + ], + [ + 37.705227, + 55.555139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705386, + 55.551722 + ], + [ + 37.705386, + 55.551812 + ], + [ + 37.705545, + 55.551812 + ], + [ + 37.705545, + 55.551722 + ], + [ + 37.705386, + 55.551722 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705386, + 55.551812 + ], + [ + 37.705386, + 55.551902 + ], + [ + 37.705545, + 55.551902 + ], + [ + 37.705545, + 55.551812 + ], + [ + 37.705386, + 55.551812 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705386, + 55.551902 + ], + [ + 37.705386, + 55.551992 + ], + [ + 37.705545, + 55.551992 + ], + [ + 37.705545, + 55.551902 + ], + [ + 37.705386, + 55.551902 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705386, + 55.551992 + ], + [ + 37.705386, + 55.552082 + ], + [ + 37.705545, + 55.552082 + ], + [ + 37.705545, + 55.551992 + ], + [ + 37.705386, + 55.551992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705386, + 55.552082 + ], + [ + 37.705386, + 55.552171 + ], + [ + 37.705545, + 55.552171 + ], + [ + 37.705545, + 55.552082 + ], + [ + 37.705386, + 55.552082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705386, + 55.552171 + ], + [ + 37.705386, + 55.552261 + ], + [ + 37.705545, + 55.552261 + ], + [ + 37.705545, + 55.552171 + ], + [ + 37.705386, + 55.552171 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705386, + 55.552261 + ], + [ + 37.705386, + 55.552351 + ], + [ + 37.705545, + 55.552351 + ], + [ + 37.705545, + 55.552261 + ], + [ + 37.705386, + 55.552261 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705386, + 55.552351 + ], + [ + 37.705386, + 55.552441 + ], + [ + 37.705545, + 55.552441 + ], + [ + 37.705545, + 55.552351 + ], + [ + 37.705386, + 55.552351 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705386, + 55.552441 + ], + [ + 37.705386, + 55.552531 + ], + [ + 37.705545, + 55.552531 + ], + [ + 37.705545, + 55.552441 + ], + [ + 37.705386, + 55.552441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705386, + 55.552531 + ], + [ + 37.705386, + 55.552621 + ], + [ + 37.705545, + 55.552621 + ], + [ + 37.705545, + 55.552531 + ], + [ + 37.705386, + 55.552531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705386, + 55.552621 + ], + [ + 37.705386, + 55.552711 + ], + [ + 37.705545, + 55.552711 + ], + [ + 37.705545, + 55.552621 + ], + [ + 37.705386, + 55.552621 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705386, + 55.552711 + ], + [ + 37.705386, + 55.552801 + ], + [ + 37.705545, + 55.552801 + ], + [ + 37.705545, + 55.552711 + ], + [ + 37.705386, + 55.552711 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705386, + 55.552801 + ], + [ + 37.705386, + 55.552891 + ], + [ + 37.705545, + 55.552891 + ], + [ + 37.705545, + 55.552801 + ], + [ + 37.705386, + 55.552801 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705386, + 55.552891 + ], + [ + 37.705386, + 55.552981 + ], + [ + 37.705545, + 55.552981 + ], + [ + 37.705545, + 55.552891 + ], + [ + 37.705386, + 55.552891 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705386, + 55.552981 + ], + [ + 37.705386, + 55.553071 + ], + [ + 37.705545, + 55.553071 + ], + [ + 37.705545, + 55.552981 + ], + [ + 37.705386, + 55.552981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705386, + 55.553071 + ], + [ + 37.705386, + 55.553161 + ], + [ + 37.705545, + 55.553161 + ], + [ + 37.705545, + 55.553071 + ], + [ + 37.705386, + 55.553071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705386, + 55.553161 + ], + [ + 37.705386, + 55.553251 + ], + [ + 37.705545, + 55.553251 + ], + [ + 37.705545, + 55.553161 + ], + [ + 37.705386, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705386, + 55.553251 + ], + [ + 37.705386, + 55.553341 + ], + [ + 37.705545, + 55.553341 + ], + [ + 37.705545, + 55.553251 + ], + [ + 37.705386, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705386, + 55.553341 + ], + [ + 37.705386, + 55.553431 + ], + [ + 37.705545, + 55.553431 + ], + [ + 37.705545, + 55.553341 + ], + [ + 37.705386, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705386, + 55.553431 + ], + [ + 37.705386, + 55.55352 + ], + [ + 37.705545, + 55.55352 + ], + [ + 37.705545, + 55.553431 + ], + [ + 37.705386, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705386, + 55.55352 + ], + [ + 37.705386, + 55.55361 + ], + [ + 37.705545, + 55.55361 + ], + [ + 37.705545, + 55.55352 + ], + [ + 37.705386, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705386, + 55.55361 + ], + [ + 37.705386, + 55.5537 + ], + [ + 37.705545, + 55.5537 + ], + [ + 37.705545, + 55.55361 + ], + [ + 37.705386, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705386, + 55.5537 + ], + [ + 37.705386, + 55.55379 + ], + [ + 37.705545, + 55.55379 + ], + [ + 37.705545, + 55.5537 + ], + [ + 37.705386, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705386, + 55.55379 + ], + [ + 37.705386, + 55.55388 + ], + [ + 37.705545, + 55.55388 + ], + [ + 37.705545, + 55.55379 + ], + [ + 37.705386, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705386, + 55.55388 + ], + [ + 37.705386, + 55.55397 + ], + [ + 37.705545, + 55.55397 + ], + [ + 37.705545, + 55.55388 + ], + [ + 37.705386, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705386, + 55.55397 + ], + [ + 37.705386, + 55.55406 + ], + [ + 37.705545, + 55.55406 + ], + [ + 37.705545, + 55.55397 + ], + [ + 37.705386, + 55.55397 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705386, + 55.55406 + ], + [ + 37.705386, + 55.55415 + ], + [ + 37.705545, + 55.55415 + ], + [ + 37.705545, + 55.55406 + ], + [ + 37.705386, + 55.55406 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705386, + 55.55415 + ], + [ + 37.705386, + 55.55424 + ], + [ + 37.705545, + 55.55424 + ], + [ + 37.705545, + 55.55415 + ], + [ + 37.705386, + 55.55415 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705386, + 55.55424 + ], + [ + 37.705386, + 55.55433 + ], + [ + 37.705545, + 55.55433 + ], + [ + 37.705545, + 55.55424 + ], + [ + 37.705386, + 55.55424 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705386, + 55.55433 + ], + [ + 37.705386, + 55.55442 + ], + [ + 37.705545, + 55.55442 + ], + [ + 37.705545, + 55.55433 + ], + [ + 37.705386, + 55.55433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705386, + 55.55442 + ], + [ + 37.705386, + 55.55451 + ], + [ + 37.705545, + 55.55451 + ], + [ + 37.705545, + 55.55442 + ], + [ + 37.705386, + 55.55442 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705386, + 55.55451 + ], + [ + 37.705386, + 55.5546 + ], + [ + 37.705545, + 55.5546 + ], + [ + 37.705545, + 55.55451 + ], + [ + 37.705386, + 55.55451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705386, + 55.5546 + ], + [ + 37.705386, + 55.55469 + ], + [ + 37.705545, + 55.55469 + ], + [ + 37.705545, + 55.5546 + ], + [ + 37.705386, + 55.5546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705386, + 55.55469 + ], + [ + 37.705386, + 55.55478 + ], + [ + 37.705545, + 55.55478 + ], + [ + 37.705545, + 55.55469 + ], + [ + 37.705386, + 55.55469 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705386, + 55.55478 + ], + [ + 37.705386, + 55.554869 + ], + [ + 37.705545, + 55.554869 + ], + [ + 37.705545, + 55.55478 + ], + [ + 37.705386, + 55.55478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705386, + 55.554869 + ], + [ + 37.705386, + 55.554959 + ], + [ + 37.705545, + 55.554959 + ], + [ + 37.705545, + 55.554869 + ], + [ + 37.705386, + 55.554869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705386, + 55.554959 + ], + [ + 37.705386, + 55.555049 + ], + [ + 37.705545, + 55.555049 + ], + [ + 37.705545, + 55.554959 + ], + [ + 37.705386, + 55.554959 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705386, + 55.555049 + ], + [ + 37.705386, + 55.555139 + ], + [ + 37.705545, + 55.555139 + ], + [ + 37.705545, + 55.555049 + ], + [ + 37.705386, + 55.555049 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705386, + 55.555139 + ], + [ + 37.705386, + 55.555229 + ], + [ + 37.705545, + 55.555229 + ], + [ + 37.705545, + 55.555139 + ], + [ + 37.705386, + 55.555139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705386, + 55.555229 + ], + [ + 37.705386, + 55.555319 + ], + [ + 37.705545, + 55.555319 + ], + [ + 37.705545, + 55.555229 + ], + [ + 37.705386, + 55.555229 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705545, + 55.551722 + ], + [ + 37.705545, + 55.551812 + ], + [ + 37.705704, + 55.551812 + ], + [ + 37.705704, + 55.551722 + ], + [ + 37.705545, + 55.551722 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705545, + 55.551812 + ], + [ + 37.705545, + 55.551902 + ], + [ + 37.705704, + 55.551902 + ], + [ + 37.705704, + 55.551812 + ], + [ + 37.705545, + 55.551812 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705545, + 55.551902 + ], + [ + 37.705545, + 55.551992 + ], + [ + 37.705704, + 55.551992 + ], + [ + 37.705704, + 55.551902 + ], + [ + 37.705545, + 55.551902 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705545, + 55.551992 + ], + [ + 37.705545, + 55.552082 + ], + [ + 37.705704, + 55.552082 + ], + [ + 37.705704, + 55.551992 + ], + [ + 37.705545, + 55.551992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705545, + 55.552082 + ], + [ + 37.705545, + 55.552171 + ], + [ + 37.705704, + 55.552171 + ], + [ + 37.705704, + 55.552082 + ], + [ + 37.705545, + 55.552082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705545, + 55.552171 + ], + [ + 37.705545, + 55.552261 + ], + [ + 37.705704, + 55.552261 + ], + [ + 37.705704, + 55.552171 + ], + [ + 37.705545, + 55.552171 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705545, + 55.552261 + ], + [ + 37.705545, + 55.552351 + ], + [ + 37.705704, + 55.552351 + ], + [ + 37.705704, + 55.552261 + ], + [ + 37.705545, + 55.552261 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705545, + 55.552351 + ], + [ + 37.705545, + 55.552441 + ], + [ + 37.705704, + 55.552441 + ], + [ + 37.705704, + 55.552351 + ], + [ + 37.705545, + 55.552351 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705545, + 55.552441 + ], + [ + 37.705545, + 55.552531 + ], + [ + 37.705704, + 55.552531 + ], + [ + 37.705704, + 55.552441 + ], + [ + 37.705545, + 55.552441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705545, + 55.552531 + ], + [ + 37.705545, + 55.552621 + ], + [ + 37.705704, + 55.552621 + ], + [ + 37.705704, + 55.552531 + ], + [ + 37.705545, + 55.552531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705545, + 55.552621 + ], + [ + 37.705545, + 55.552711 + ], + [ + 37.705704, + 55.552711 + ], + [ + 37.705704, + 55.552621 + ], + [ + 37.705545, + 55.552621 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705545, + 55.552711 + ], + [ + 37.705545, + 55.552801 + ], + [ + 37.705704, + 55.552801 + ], + [ + 37.705704, + 55.552711 + ], + [ + 37.705545, + 55.552711 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705545, + 55.552801 + ], + [ + 37.705545, + 55.552891 + ], + [ + 37.705704, + 55.552891 + ], + [ + 37.705704, + 55.552801 + ], + [ + 37.705545, + 55.552801 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705545, + 55.552891 + ], + [ + 37.705545, + 55.552981 + ], + [ + 37.705704, + 55.552981 + ], + [ + 37.705704, + 55.552891 + ], + [ + 37.705545, + 55.552891 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705545, + 55.552981 + ], + [ + 37.705545, + 55.553071 + ], + [ + 37.705704, + 55.553071 + ], + [ + 37.705704, + 55.552981 + ], + [ + 37.705545, + 55.552981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705545, + 55.553071 + ], + [ + 37.705545, + 55.553161 + ], + [ + 37.705704, + 55.553161 + ], + [ + 37.705704, + 55.553071 + ], + [ + 37.705545, + 55.553071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705545, + 55.553161 + ], + [ + 37.705545, + 55.553251 + ], + [ + 37.705704, + 55.553251 + ], + [ + 37.705704, + 55.553161 + ], + [ + 37.705545, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705545, + 55.553251 + ], + [ + 37.705545, + 55.553341 + ], + [ + 37.705704, + 55.553341 + ], + [ + 37.705704, + 55.553251 + ], + [ + 37.705545, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705545, + 55.553341 + ], + [ + 37.705545, + 55.553431 + ], + [ + 37.705704, + 55.553431 + ], + [ + 37.705704, + 55.553341 + ], + [ + 37.705545, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705545, + 55.553431 + ], + [ + 37.705545, + 55.55352 + ], + [ + 37.705704, + 55.55352 + ], + [ + 37.705704, + 55.553431 + ], + [ + 37.705545, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705545, + 55.55352 + ], + [ + 37.705545, + 55.55361 + ], + [ + 37.705704, + 55.55361 + ], + [ + 37.705704, + 55.55352 + ], + [ + 37.705545, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705545, + 55.55361 + ], + [ + 37.705545, + 55.5537 + ], + [ + 37.705704, + 55.5537 + ], + [ + 37.705704, + 55.55361 + ], + [ + 37.705545, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705545, + 55.5537 + ], + [ + 37.705545, + 55.55379 + ], + [ + 37.705704, + 55.55379 + ], + [ + 37.705704, + 55.5537 + ], + [ + 37.705545, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705545, + 55.55379 + ], + [ + 37.705545, + 55.55388 + ], + [ + 37.705704, + 55.55388 + ], + [ + 37.705704, + 55.55379 + ], + [ + 37.705545, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705545, + 55.55388 + ], + [ + 37.705545, + 55.55397 + ], + [ + 37.705704, + 55.55397 + ], + [ + 37.705704, + 55.55388 + ], + [ + 37.705545, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705545, + 55.55397 + ], + [ + 37.705545, + 55.55406 + ], + [ + 37.705704, + 55.55406 + ], + [ + 37.705704, + 55.55397 + ], + [ + 37.705545, + 55.55397 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705545, + 55.55406 + ], + [ + 37.705545, + 55.55415 + ], + [ + 37.705704, + 55.55415 + ], + [ + 37.705704, + 55.55406 + ], + [ + 37.705545, + 55.55406 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705545, + 55.55415 + ], + [ + 37.705545, + 55.55424 + ], + [ + 37.705704, + 55.55424 + ], + [ + 37.705704, + 55.55415 + ], + [ + 37.705545, + 55.55415 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705545, + 55.55424 + ], + [ + 37.705545, + 55.55433 + ], + [ + 37.705704, + 55.55433 + ], + [ + 37.705704, + 55.55424 + ], + [ + 37.705545, + 55.55424 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705545, + 55.55433 + ], + [ + 37.705545, + 55.55442 + ], + [ + 37.705704, + 55.55442 + ], + [ + 37.705704, + 55.55433 + ], + [ + 37.705545, + 55.55433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705545, + 55.55442 + ], + [ + 37.705545, + 55.55451 + ], + [ + 37.705704, + 55.55451 + ], + [ + 37.705704, + 55.55442 + ], + [ + 37.705545, + 55.55442 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705545, + 55.55451 + ], + [ + 37.705545, + 55.5546 + ], + [ + 37.705704, + 55.5546 + ], + [ + 37.705704, + 55.55451 + ], + [ + 37.705545, + 55.55451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705545, + 55.5546 + ], + [ + 37.705545, + 55.55469 + ], + [ + 37.705704, + 55.55469 + ], + [ + 37.705704, + 55.5546 + ], + [ + 37.705545, + 55.5546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705545, + 55.55469 + ], + [ + 37.705545, + 55.55478 + ], + [ + 37.705704, + 55.55478 + ], + [ + 37.705704, + 55.55469 + ], + [ + 37.705545, + 55.55469 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705545, + 55.55478 + ], + [ + 37.705545, + 55.554869 + ], + [ + 37.705704, + 55.554869 + ], + [ + 37.705704, + 55.55478 + ], + [ + 37.705545, + 55.55478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705545, + 55.554869 + ], + [ + 37.705545, + 55.554959 + ], + [ + 37.705704, + 55.554959 + ], + [ + 37.705704, + 55.554869 + ], + [ + 37.705545, + 55.554869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705545, + 55.554959 + ], + [ + 37.705545, + 55.555049 + ], + [ + 37.705704, + 55.555049 + ], + [ + 37.705704, + 55.554959 + ], + [ + 37.705545, + 55.554959 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705545, + 55.555049 + ], + [ + 37.705545, + 55.555139 + ], + [ + 37.705704, + 55.555139 + ], + [ + 37.705704, + 55.555049 + ], + [ + 37.705545, + 55.555049 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705545, + 55.555139 + ], + [ + 37.705545, + 55.555229 + ], + [ + 37.705704, + 55.555229 + ], + [ + 37.705704, + 55.555139 + ], + [ + 37.705545, + 55.555139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705545, + 55.555229 + ], + [ + 37.705545, + 55.555319 + ], + [ + 37.705704, + 55.555319 + ], + [ + 37.705704, + 55.555229 + ], + [ + 37.705545, + 55.555229 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705704, + 55.551632 + ], + [ + 37.705704, + 55.551722 + ], + [ + 37.705863, + 55.551722 + ], + [ + 37.705863, + 55.551632 + ], + [ + 37.705704, + 55.551632 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705704, + 55.551722 + ], + [ + 37.705704, + 55.551812 + ], + [ + 37.705863, + 55.551812 + ], + [ + 37.705863, + 55.551722 + ], + [ + 37.705704, + 55.551722 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705704, + 55.551812 + ], + [ + 37.705704, + 55.551902 + ], + [ + 37.705863, + 55.551902 + ], + [ + 37.705863, + 55.551812 + ], + [ + 37.705704, + 55.551812 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705704, + 55.551902 + ], + [ + 37.705704, + 55.551992 + ], + [ + 37.705863, + 55.551992 + ], + [ + 37.705863, + 55.551902 + ], + [ + 37.705704, + 55.551902 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705704, + 55.551992 + ], + [ + 37.705704, + 55.552082 + ], + [ + 37.705863, + 55.552082 + ], + [ + 37.705863, + 55.551992 + ], + [ + 37.705704, + 55.551992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705704, + 55.552082 + ], + [ + 37.705704, + 55.552171 + ], + [ + 37.705863, + 55.552171 + ], + [ + 37.705863, + 55.552082 + ], + [ + 37.705704, + 55.552082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705704, + 55.552171 + ], + [ + 37.705704, + 55.552261 + ], + [ + 37.705863, + 55.552261 + ], + [ + 37.705863, + 55.552171 + ], + [ + 37.705704, + 55.552171 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705704, + 55.552261 + ], + [ + 37.705704, + 55.552351 + ], + [ + 37.705863, + 55.552351 + ], + [ + 37.705863, + 55.552261 + ], + [ + 37.705704, + 55.552261 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705704, + 55.552351 + ], + [ + 37.705704, + 55.552441 + ], + [ + 37.705863, + 55.552441 + ], + [ + 37.705863, + 55.552351 + ], + [ + 37.705704, + 55.552351 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705704, + 55.552441 + ], + [ + 37.705704, + 55.552531 + ], + [ + 37.705863, + 55.552531 + ], + [ + 37.705863, + 55.552441 + ], + [ + 37.705704, + 55.552441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705704, + 55.552531 + ], + [ + 37.705704, + 55.552621 + ], + [ + 37.705863, + 55.552621 + ], + [ + 37.705863, + 55.552531 + ], + [ + 37.705704, + 55.552531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705704, + 55.552621 + ], + [ + 37.705704, + 55.552711 + ], + [ + 37.705863, + 55.552711 + ], + [ + 37.705863, + 55.552621 + ], + [ + 37.705704, + 55.552621 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705704, + 55.552711 + ], + [ + 37.705704, + 55.552801 + ], + [ + 37.705863, + 55.552801 + ], + [ + 37.705863, + 55.552711 + ], + [ + 37.705704, + 55.552711 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705704, + 55.552801 + ], + [ + 37.705704, + 55.552891 + ], + [ + 37.705863, + 55.552891 + ], + [ + 37.705863, + 55.552801 + ], + [ + 37.705704, + 55.552801 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705704, + 55.552891 + ], + [ + 37.705704, + 55.552981 + ], + [ + 37.705863, + 55.552981 + ], + [ + 37.705863, + 55.552891 + ], + [ + 37.705704, + 55.552891 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705704, + 55.552981 + ], + [ + 37.705704, + 55.553071 + ], + [ + 37.705863, + 55.553071 + ], + [ + 37.705863, + 55.552981 + ], + [ + 37.705704, + 55.552981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705704, + 55.553071 + ], + [ + 37.705704, + 55.553161 + ], + [ + 37.705863, + 55.553161 + ], + [ + 37.705863, + 55.553071 + ], + [ + 37.705704, + 55.553071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705704, + 55.553161 + ], + [ + 37.705704, + 55.553251 + ], + [ + 37.705863, + 55.553251 + ], + [ + 37.705863, + 55.553161 + ], + [ + 37.705704, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705704, + 55.553251 + ], + [ + 37.705704, + 55.553341 + ], + [ + 37.705863, + 55.553341 + ], + [ + 37.705863, + 55.553251 + ], + [ + 37.705704, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705704, + 55.553341 + ], + [ + 37.705704, + 55.553431 + ], + [ + 37.705863, + 55.553431 + ], + [ + 37.705863, + 55.553341 + ], + [ + 37.705704, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705704, + 55.553431 + ], + [ + 37.705704, + 55.55352 + ], + [ + 37.705863, + 55.55352 + ], + [ + 37.705863, + 55.553431 + ], + [ + 37.705704, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705704, + 55.55352 + ], + [ + 37.705704, + 55.55361 + ], + [ + 37.705863, + 55.55361 + ], + [ + 37.705863, + 55.55352 + ], + [ + 37.705704, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705704, + 55.55361 + ], + [ + 37.705704, + 55.5537 + ], + [ + 37.705863, + 55.5537 + ], + [ + 37.705863, + 55.55361 + ], + [ + 37.705704, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705704, + 55.5537 + ], + [ + 37.705704, + 55.55379 + ], + [ + 37.705863, + 55.55379 + ], + [ + 37.705863, + 55.5537 + ], + [ + 37.705704, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705704, + 55.55379 + ], + [ + 37.705704, + 55.55388 + ], + [ + 37.705863, + 55.55388 + ], + [ + 37.705863, + 55.55379 + ], + [ + 37.705704, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705704, + 55.55388 + ], + [ + 37.705704, + 55.55397 + ], + [ + 37.705863, + 55.55397 + ], + [ + 37.705863, + 55.55388 + ], + [ + 37.705704, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705704, + 55.55397 + ], + [ + 37.705704, + 55.55406 + ], + [ + 37.705863, + 55.55406 + ], + [ + 37.705863, + 55.55397 + ], + [ + 37.705704, + 55.55397 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705704, + 55.55406 + ], + [ + 37.705704, + 55.55415 + ], + [ + 37.705863, + 55.55415 + ], + [ + 37.705863, + 55.55406 + ], + [ + 37.705704, + 55.55406 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705704, + 55.55415 + ], + [ + 37.705704, + 55.55424 + ], + [ + 37.705863, + 55.55424 + ], + [ + 37.705863, + 55.55415 + ], + [ + 37.705704, + 55.55415 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705704, + 55.55424 + ], + [ + 37.705704, + 55.55433 + ], + [ + 37.705863, + 55.55433 + ], + [ + 37.705863, + 55.55424 + ], + [ + 37.705704, + 55.55424 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705704, + 55.55433 + ], + [ + 37.705704, + 55.55442 + ], + [ + 37.705863, + 55.55442 + ], + [ + 37.705863, + 55.55433 + ], + [ + 37.705704, + 55.55433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705704, + 55.55442 + ], + [ + 37.705704, + 55.55451 + ], + [ + 37.705863, + 55.55451 + ], + [ + 37.705863, + 55.55442 + ], + [ + 37.705704, + 55.55442 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705704, + 55.55451 + ], + [ + 37.705704, + 55.5546 + ], + [ + 37.705863, + 55.5546 + ], + [ + 37.705863, + 55.55451 + ], + [ + 37.705704, + 55.55451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705704, + 55.5546 + ], + [ + 37.705704, + 55.55469 + ], + [ + 37.705863, + 55.55469 + ], + [ + 37.705863, + 55.5546 + ], + [ + 37.705704, + 55.5546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705704, + 55.55469 + ], + [ + 37.705704, + 55.55478 + ], + [ + 37.705863, + 55.55478 + ], + [ + 37.705863, + 55.55469 + ], + [ + 37.705704, + 55.55469 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705704, + 55.55478 + ], + [ + 37.705704, + 55.554869 + ], + [ + 37.705863, + 55.554869 + ], + [ + 37.705863, + 55.55478 + ], + [ + 37.705704, + 55.55478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705704, + 55.554869 + ], + [ + 37.705704, + 55.554959 + ], + [ + 37.705863, + 55.554959 + ], + [ + 37.705863, + 55.554869 + ], + [ + 37.705704, + 55.554869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705704, + 55.554959 + ], + [ + 37.705704, + 55.555049 + ], + [ + 37.705863, + 55.555049 + ], + [ + 37.705863, + 55.554959 + ], + [ + 37.705704, + 55.554959 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705704, + 55.555049 + ], + [ + 37.705704, + 55.555139 + ], + [ + 37.705863, + 55.555139 + ], + [ + 37.705863, + 55.555049 + ], + [ + 37.705704, + 55.555049 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705704, + 55.555139 + ], + [ + 37.705704, + 55.555229 + ], + [ + 37.705863, + 55.555229 + ], + [ + 37.705863, + 55.555139 + ], + [ + 37.705704, + 55.555139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705704, + 55.555229 + ], + [ + 37.705704, + 55.555319 + ], + [ + 37.705863, + 55.555319 + ], + [ + 37.705863, + 55.555229 + ], + [ + 37.705704, + 55.555229 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705704, + 55.555319 + ], + [ + 37.705704, + 55.555409 + ], + [ + 37.705863, + 55.555409 + ], + [ + 37.705863, + 55.555319 + ], + [ + 37.705704, + 55.555319 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705863, + 55.551632 + ], + [ + 37.705863, + 55.551722 + ], + [ + 37.706022, + 55.551722 + ], + [ + 37.706022, + 55.551632 + ], + [ + 37.705863, + 55.551632 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705863, + 55.551722 + ], + [ + 37.705863, + 55.551812 + ], + [ + 37.706022, + 55.551812 + ], + [ + 37.706022, + 55.551722 + ], + [ + 37.705863, + 55.551722 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705863, + 55.551812 + ], + [ + 37.705863, + 55.551902 + ], + [ + 37.706022, + 55.551902 + ], + [ + 37.706022, + 55.551812 + ], + [ + 37.705863, + 55.551812 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705863, + 55.551902 + ], + [ + 37.705863, + 55.551992 + ], + [ + 37.706022, + 55.551992 + ], + [ + 37.706022, + 55.551902 + ], + [ + 37.705863, + 55.551902 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705863, + 55.551992 + ], + [ + 37.705863, + 55.552082 + ], + [ + 37.706022, + 55.552082 + ], + [ + 37.706022, + 55.551992 + ], + [ + 37.705863, + 55.551992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705863, + 55.552082 + ], + [ + 37.705863, + 55.552171 + ], + [ + 37.706022, + 55.552171 + ], + [ + 37.706022, + 55.552082 + ], + [ + 37.705863, + 55.552082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705863, + 55.552171 + ], + [ + 37.705863, + 55.552261 + ], + [ + 37.706022, + 55.552261 + ], + [ + 37.706022, + 55.552171 + ], + [ + 37.705863, + 55.552171 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705863, + 55.552261 + ], + [ + 37.705863, + 55.552351 + ], + [ + 37.706022, + 55.552351 + ], + [ + 37.706022, + 55.552261 + ], + [ + 37.705863, + 55.552261 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705863, + 55.552351 + ], + [ + 37.705863, + 55.552441 + ], + [ + 37.706022, + 55.552441 + ], + [ + 37.706022, + 55.552351 + ], + [ + 37.705863, + 55.552351 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705863, + 55.552441 + ], + [ + 37.705863, + 55.552531 + ], + [ + 37.706022, + 55.552531 + ], + [ + 37.706022, + 55.552441 + ], + [ + 37.705863, + 55.552441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705863, + 55.552531 + ], + [ + 37.705863, + 55.552621 + ], + [ + 37.706022, + 55.552621 + ], + [ + 37.706022, + 55.552531 + ], + [ + 37.705863, + 55.552531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705863, + 55.552621 + ], + [ + 37.705863, + 55.552711 + ], + [ + 37.706022, + 55.552711 + ], + [ + 37.706022, + 55.552621 + ], + [ + 37.705863, + 55.552621 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705863, + 55.552711 + ], + [ + 37.705863, + 55.552801 + ], + [ + 37.706022, + 55.552801 + ], + [ + 37.706022, + 55.552711 + ], + [ + 37.705863, + 55.552711 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705863, + 55.552801 + ], + [ + 37.705863, + 55.552891 + ], + [ + 37.706022, + 55.552891 + ], + [ + 37.706022, + 55.552801 + ], + [ + 37.705863, + 55.552801 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705863, + 55.552891 + ], + [ + 37.705863, + 55.552981 + ], + [ + 37.706022, + 55.552981 + ], + [ + 37.706022, + 55.552891 + ], + [ + 37.705863, + 55.552891 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705863, + 55.552981 + ], + [ + 37.705863, + 55.553071 + ], + [ + 37.706022, + 55.553071 + ], + [ + 37.706022, + 55.552981 + ], + [ + 37.705863, + 55.552981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705863, + 55.553071 + ], + [ + 37.705863, + 55.553161 + ], + [ + 37.706022, + 55.553161 + ], + [ + 37.706022, + 55.553071 + ], + [ + 37.705863, + 55.553071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705863, + 55.553161 + ], + [ + 37.705863, + 55.553251 + ], + [ + 37.706022, + 55.553251 + ], + [ + 37.706022, + 55.553161 + ], + [ + 37.705863, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705863, + 55.553251 + ], + [ + 37.705863, + 55.553341 + ], + [ + 37.706022, + 55.553341 + ], + [ + 37.706022, + 55.553251 + ], + [ + 37.705863, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705863, + 55.553341 + ], + [ + 37.705863, + 55.553431 + ], + [ + 37.706022, + 55.553431 + ], + [ + 37.706022, + 55.553341 + ], + [ + 37.705863, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705863, + 55.553431 + ], + [ + 37.705863, + 55.55352 + ], + [ + 37.706022, + 55.55352 + ], + [ + 37.706022, + 55.553431 + ], + [ + 37.705863, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705863, + 55.55352 + ], + [ + 37.705863, + 55.55361 + ], + [ + 37.706022, + 55.55361 + ], + [ + 37.706022, + 55.55352 + ], + [ + 37.705863, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705863, + 55.55361 + ], + [ + 37.705863, + 55.5537 + ], + [ + 37.706022, + 55.5537 + ], + [ + 37.706022, + 55.55361 + ], + [ + 37.705863, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705863, + 55.5537 + ], + [ + 37.705863, + 55.55379 + ], + [ + 37.706022, + 55.55379 + ], + [ + 37.706022, + 55.5537 + ], + [ + 37.705863, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705863, + 55.55379 + ], + [ + 37.705863, + 55.55388 + ], + [ + 37.706022, + 55.55388 + ], + [ + 37.706022, + 55.55379 + ], + [ + 37.705863, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705863, + 55.55388 + ], + [ + 37.705863, + 55.55397 + ], + [ + 37.706022, + 55.55397 + ], + [ + 37.706022, + 55.55388 + ], + [ + 37.705863, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705863, + 55.55397 + ], + [ + 37.705863, + 55.55406 + ], + [ + 37.706022, + 55.55406 + ], + [ + 37.706022, + 55.55397 + ], + [ + 37.705863, + 55.55397 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705863, + 55.55406 + ], + [ + 37.705863, + 55.55415 + ], + [ + 37.706022, + 55.55415 + ], + [ + 37.706022, + 55.55406 + ], + [ + 37.705863, + 55.55406 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705863, + 55.55415 + ], + [ + 37.705863, + 55.55424 + ], + [ + 37.706022, + 55.55424 + ], + [ + 37.706022, + 55.55415 + ], + [ + 37.705863, + 55.55415 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705863, + 55.55424 + ], + [ + 37.705863, + 55.55433 + ], + [ + 37.706022, + 55.55433 + ], + [ + 37.706022, + 55.55424 + ], + [ + 37.705863, + 55.55424 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705863, + 55.55433 + ], + [ + 37.705863, + 55.55442 + ], + [ + 37.706022, + 55.55442 + ], + [ + 37.706022, + 55.55433 + ], + [ + 37.705863, + 55.55433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705863, + 55.55442 + ], + [ + 37.705863, + 55.55451 + ], + [ + 37.706022, + 55.55451 + ], + [ + 37.706022, + 55.55442 + ], + [ + 37.705863, + 55.55442 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705863, + 55.55451 + ], + [ + 37.705863, + 55.5546 + ], + [ + 37.706022, + 55.5546 + ], + [ + 37.706022, + 55.55451 + ], + [ + 37.705863, + 55.55451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705863, + 55.5546 + ], + [ + 37.705863, + 55.55469 + ], + [ + 37.706022, + 55.55469 + ], + [ + 37.706022, + 55.5546 + ], + [ + 37.705863, + 55.5546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705863, + 55.55469 + ], + [ + 37.705863, + 55.55478 + ], + [ + 37.706022, + 55.55478 + ], + [ + 37.706022, + 55.55469 + ], + [ + 37.705863, + 55.55469 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705863, + 55.55478 + ], + [ + 37.705863, + 55.554869 + ], + [ + 37.706022, + 55.554869 + ], + [ + 37.706022, + 55.55478 + ], + [ + 37.705863, + 55.55478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705863, + 55.554869 + ], + [ + 37.705863, + 55.554959 + ], + [ + 37.706022, + 55.554959 + ], + [ + 37.706022, + 55.554869 + ], + [ + 37.705863, + 55.554869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705863, + 55.554959 + ], + [ + 37.705863, + 55.555049 + ], + [ + 37.706022, + 55.555049 + ], + [ + 37.706022, + 55.554959 + ], + [ + 37.705863, + 55.554959 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705863, + 55.555049 + ], + [ + 37.705863, + 55.555139 + ], + [ + 37.706022, + 55.555139 + ], + [ + 37.706022, + 55.555049 + ], + [ + 37.705863, + 55.555049 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705863, + 55.555139 + ], + [ + 37.705863, + 55.555229 + ], + [ + 37.706022, + 55.555229 + ], + [ + 37.706022, + 55.555139 + ], + [ + 37.705863, + 55.555139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705863, + 55.555229 + ], + [ + 37.705863, + 55.555319 + ], + [ + 37.706022, + 55.555319 + ], + [ + 37.706022, + 55.555229 + ], + [ + 37.705863, + 55.555229 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.705863, + 55.555319 + ], + [ + 37.705863, + 55.555409 + ], + [ + 37.706022, + 55.555409 + ], + [ + 37.706022, + 55.555319 + ], + [ + 37.705863, + 55.555319 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706022, + 55.551542 + ], + [ + 37.706022, + 55.551632 + ], + [ + 37.706181, + 55.551632 + ], + [ + 37.706181, + 55.551542 + ], + [ + 37.706022, + 55.551542 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706022, + 55.551632 + ], + [ + 37.706022, + 55.551722 + ], + [ + 37.706181, + 55.551722 + ], + [ + 37.706181, + 55.551632 + ], + [ + 37.706022, + 55.551632 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706022, + 55.551722 + ], + [ + 37.706022, + 55.551812 + ], + [ + 37.706181, + 55.551812 + ], + [ + 37.706181, + 55.551722 + ], + [ + 37.706022, + 55.551722 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706022, + 55.551812 + ], + [ + 37.706022, + 55.551902 + ], + [ + 37.706181, + 55.551902 + ], + [ + 37.706181, + 55.551812 + ], + [ + 37.706022, + 55.551812 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706022, + 55.551902 + ], + [ + 37.706022, + 55.551992 + ], + [ + 37.706181, + 55.551992 + ], + [ + 37.706181, + 55.551902 + ], + [ + 37.706022, + 55.551902 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706022, + 55.551992 + ], + [ + 37.706022, + 55.552082 + ], + [ + 37.706181, + 55.552082 + ], + [ + 37.706181, + 55.551992 + ], + [ + 37.706022, + 55.551992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706022, + 55.552082 + ], + [ + 37.706022, + 55.552171 + ], + [ + 37.706181, + 55.552171 + ], + [ + 37.706181, + 55.552082 + ], + [ + 37.706022, + 55.552082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706022, + 55.552171 + ], + [ + 37.706022, + 55.552261 + ], + [ + 37.706181, + 55.552261 + ], + [ + 37.706181, + 55.552171 + ], + [ + 37.706022, + 55.552171 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706022, + 55.552261 + ], + [ + 37.706022, + 55.552351 + ], + [ + 37.706181, + 55.552351 + ], + [ + 37.706181, + 55.552261 + ], + [ + 37.706022, + 55.552261 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706022, + 55.552351 + ], + [ + 37.706022, + 55.552441 + ], + [ + 37.706181, + 55.552441 + ], + [ + 37.706181, + 55.552351 + ], + [ + 37.706022, + 55.552351 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706022, + 55.552441 + ], + [ + 37.706022, + 55.552531 + ], + [ + 37.706181, + 55.552531 + ], + [ + 37.706181, + 55.552441 + ], + [ + 37.706022, + 55.552441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706022, + 55.552531 + ], + [ + 37.706022, + 55.552621 + ], + [ + 37.706181, + 55.552621 + ], + [ + 37.706181, + 55.552531 + ], + [ + 37.706022, + 55.552531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706022, + 55.552621 + ], + [ + 37.706022, + 55.552711 + ], + [ + 37.706181, + 55.552711 + ], + [ + 37.706181, + 55.552621 + ], + [ + 37.706022, + 55.552621 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706022, + 55.552711 + ], + [ + 37.706022, + 55.552801 + ], + [ + 37.706181, + 55.552801 + ], + [ + 37.706181, + 55.552711 + ], + [ + 37.706022, + 55.552711 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706022, + 55.552801 + ], + [ + 37.706022, + 55.552891 + ], + [ + 37.706181, + 55.552891 + ], + [ + 37.706181, + 55.552801 + ], + [ + 37.706022, + 55.552801 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706022, + 55.552891 + ], + [ + 37.706022, + 55.552981 + ], + [ + 37.706181, + 55.552981 + ], + [ + 37.706181, + 55.552891 + ], + [ + 37.706022, + 55.552891 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706022, + 55.552981 + ], + [ + 37.706022, + 55.553071 + ], + [ + 37.706181, + 55.553071 + ], + [ + 37.706181, + 55.552981 + ], + [ + 37.706022, + 55.552981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706022, + 55.553071 + ], + [ + 37.706022, + 55.553161 + ], + [ + 37.706181, + 55.553161 + ], + [ + 37.706181, + 55.553071 + ], + [ + 37.706022, + 55.553071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706022, + 55.553161 + ], + [ + 37.706022, + 55.553251 + ], + [ + 37.706181, + 55.553251 + ], + [ + 37.706181, + 55.553161 + ], + [ + 37.706022, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706022, + 55.553251 + ], + [ + 37.706022, + 55.553341 + ], + [ + 37.706181, + 55.553341 + ], + [ + 37.706181, + 55.553251 + ], + [ + 37.706022, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706022, + 55.553341 + ], + [ + 37.706022, + 55.553431 + ], + [ + 37.706181, + 55.553431 + ], + [ + 37.706181, + 55.553341 + ], + [ + 37.706022, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706022, + 55.553431 + ], + [ + 37.706022, + 55.55352 + ], + [ + 37.706181, + 55.55352 + ], + [ + 37.706181, + 55.553431 + ], + [ + 37.706022, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706022, + 55.55352 + ], + [ + 37.706022, + 55.55361 + ], + [ + 37.706181, + 55.55361 + ], + [ + 37.706181, + 55.55352 + ], + [ + 37.706022, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706022, + 55.55361 + ], + [ + 37.706022, + 55.5537 + ], + [ + 37.706181, + 55.5537 + ], + [ + 37.706181, + 55.55361 + ], + [ + 37.706022, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706022, + 55.5537 + ], + [ + 37.706022, + 55.55379 + ], + [ + 37.706181, + 55.55379 + ], + [ + 37.706181, + 55.5537 + ], + [ + 37.706022, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706022, + 55.55379 + ], + [ + 37.706022, + 55.55388 + ], + [ + 37.706181, + 55.55388 + ], + [ + 37.706181, + 55.55379 + ], + [ + 37.706022, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706022, + 55.55388 + ], + [ + 37.706022, + 55.55397 + ], + [ + 37.706181, + 55.55397 + ], + [ + 37.706181, + 55.55388 + ], + [ + 37.706022, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706022, + 55.55397 + ], + [ + 37.706022, + 55.55406 + ], + [ + 37.706181, + 55.55406 + ], + [ + 37.706181, + 55.55397 + ], + [ + 37.706022, + 55.55397 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706022, + 55.55406 + ], + [ + 37.706022, + 55.55415 + ], + [ + 37.706181, + 55.55415 + ], + [ + 37.706181, + 55.55406 + ], + [ + 37.706022, + 55.55406 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706022, + 55.55415 + ], + [ + 37.706022, + 55.55424 + ], + [ + 37.706181, + 55.55424 + ], + [ + 37.706181, + 55.55415 + ], + [ + 37.706022, + 55.55415 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706022, + 55.55424 + ], + [ + 37.706022, + 55.55433 + ], + [ + 37.706181, + 55.55433 + ], + [ + 37.706181, + 55.55424 + ], + [ + 37.706022, + 55.55424 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706022, + 55.55433 + ], + [ + 37.706022, + 55.55442 + ], + [ + 37.706181, + 55.55442 + ], + [ + 37.706181, + 55.55433 + ], + [ + 37.706022, + 55.55433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706022, + 55.55442 + ], + [ + 37.706022, + 55.55451 + ], + [ + 37.706181, + 55.55451 + ], + [ + 37.706181, + 55.55442 + ], + [ + 37.706022, + 55.55442 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706022, + 55.55451 + ], + [ + 37.706022, + 55.5546 + ], + [ + 37.706181, + 55.5546 + ], + [ + 37.706181, + 55.55451 + ], + [ + 37.706022, + 55.55451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706022, + 55.5546 + ], + [ + 37.706022, + 55.55469 + ], + [ + 37.706181, + 55.55469 + ], + [ + 37.706181, + 55.5546 + ], + [ + 37.706022, + 55.5546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706022, + 55.55469 + ], + [ + 37.706022, + 55.55478 + ], + [ + 37.706181, + 55.55478 + ], + [ + 37.706181, + 55.55469 + ], + [ + 37.706022, + 55.55469 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706022, + 55.55478 + ], + [ + 37.706022, + 55.554869 + ], + [ + 37.706181, + 55.554869 + ], + [ + 37.706181, + 55.55478 + ], + [ + 37.706022, + 55.55478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706022, + 55.554869 + ], + [ + 37.706022, + 55.554959 + ], + [ + 37.706181, + 55.554959 + ], + [ + 37.706181, + 55.554869 + ], + [ + 37.706022, + 55.554869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706022, + 55.554959 + ], + [ + 37.706022, + 55.555049 + ], + [ + 37.706181, + 55.555049 + ], + [ + 37.706181, + 55.554959 + ], + [ + 37.706022, + 55.554959 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706022, + 55.555049 + ], + [ + 37.706022, + 55.555139 + ], + [ + 37.706181, + 55.555139 + ], + [ + 37.706181, + 55.555049 + ], + [ + 37.706022, + 55.555049 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706022, + 55.555139 + ], + [ + 37.706022, + 55.555229 + ], + [ + 37.706181, + 55.555229 + ], + [ + 37.706181, + 55.555139 + ], + [ + 37.706022, + 55.555139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706022, + 55.555229 + ], + [ + 37.706022, + 55.555319 + ], + [ + 37.706181, + 55.555319 + ], + [ + 37.706181, + 55.555229 + ], + [ + 37.706022, + 55.555229 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706022, + 55.555319 + ], + [ + 37.706022, + 55.555409 + ], + [ + 37.706181, + 55.555409 + ], + [ + 37.706181, + 55.555319 + ], + [ + 37.706022, + 55.555319 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706022, + 55.555409 + ], + [ + 37.706022, + 55.555499 + ], + [ + 37.706181, + 55.555499 + ], + [ + 37.706181, + 55.555409 + ], + [ + 37.706022, + 55.555409 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706181, + 55.551542 + ], + [ + 37.706181, + 55.551632 + ], + [ + 37.70634, + 55.551632 + ], + [ + 37.70634, + 55.551542 + ], + [ + 37.706181, + 55.551542 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706181, + 55.551632 + ], + [ + 37.706181, + 55.551722 + ], + [ + 37.70634, + 55.551722 + ], + [ + 37.70634, + 55.551632 + ], + [ + 37.706181, + 55.551632 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706181, + 55.551722 + ], + [ + 37.706181, + 55.551812 + ], + [ + 37.70634, + 55.551812 + ], + [ + 37.70634, + 55.551722 + ], + [ + 37.706181, + 55.551722 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706181, + 55.551812 + ], + [ + 37.706181, + 55.551902 + ], + [ + 37.70634, + 55.551902 + ], + [ + 37.70634, + 55.551812 + ], + [ + 37.706181, + 55.551812 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706181, + 55.551902 + ], + [ + 37.706181, + 55.551992 + ], + [ + 37.70634, + 55.551992 + ], + [ + 37.70634, + 55.551902 + ], + [ + 37.706181, + 55.551902 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706181, + 55.551992 + ], + [ + 37.706181, + 55.552082 + ], + [ + 37.70634, + 55.552082 + ], + [ + 37.70634, + 55.551992 + ], + [ + 37.706181, + 55.551992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706181, + 55.552082 + ], + [ + 37.706181, + 55.552171 + ], + [ + 37.70634, + 55.552171 + ], + [ + 37.70634, + 55.552082 + ], + [ + 37.706181, + 55.552082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706181, + 55.552171 + ], + [ + 37.706181, + 55.552261 + ], + [ + 37.70634, + 55.552261 + ], + [ + 37.70634, + 55.552171 + ], + [ + 37.706181, + 55.552171 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706181, + 55.552261 + ], + [ + 37.706181, + 55.552351 + ], + [ + 37.70634, + 55.552351 + ], + [ + 37.70634, + 55.552261 + ], + [ + 37.706181, + 55.552261 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706181, + 55.552351 + ], + [ + 37.706181, + 55.552441 + ], + [ + 37.70634, + 55.552441 + ], + [ + 37.70634, + 55.552351 + ], + [ + 37.706181, + 55.552351 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706181, + 55.552441 + ], + [ + 37.706181, + 55.552531 + ], + [ + 37.70634, + 55.552531 + ], + [ + 37.70634, + 55.552441 + ], + [ + 37.706181, + 55.552441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706181, + 55.552531 + ], + [ + 37.706181, + 55.552621 + ], + [ + 37.70634, + 55.552621 + ], + [ + 37.70634, + 55.552531 + ], + [ + 37.706181, + 55.552531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706181, + 55.552621 + ], + [ + 37.706181, + 55.552711 + ], + [ + 37.70634, + 55.552711 + ], + [ + 37.70634, + 55.552621 + ], + [ + 37.706181, + 55.552621 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706181, + 55.552711 + ], + [ + 37.706181, + 55.552801 + ], + [ + 37.70634, + 55.552801 + ], + [ + 37.70634, + 55.552711 + ], + [ + 37.706181, + 55.552711 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706181, + 55.552801 + ], + [ + 37.706181, + 55.552891 + ], + [ + 37.70634, + 55.552891 + ], + [ + 37.70634, + 55.552801 + ], + [ + 37.706181, + 55.552801 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706181, + 55.552891 + ], + [ + 37.706181, + 55.552981 + ], + [ + 37.70634, + 55.552981 + ], + [ + 37.70634, + 55.552891 + ], + [ + 37.706181, + 55.552891 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706181, + 55.552981 + ], + [ + 37.706181, + 55.553071 + ], + [ + 37.70634, + 55.553071 + ], + [ + 37.70634, + 55.552981 + ], + [ + 37.706181, + 55.552981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706181, + 55.553071 + ], + [ + 37.706181, + 55.553161 + ], + [ + 37.70634, + 55.553161 + ], + [ + 37.70634, + 55.553071 + ], + [ + 37.706181, + 55.553071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706181, + 55.553161 + ], + [ + 37.706181, + 55.553251 + ], + [ + 37.70634, + 55.553251 + ], + [ + 37.70634, + 55.553161 + ], + [ + 37.706181, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706181, + 55.553251 + ], + [ + 37.706181, + 55.553341 + ], + [ + 37.70634, + 55.553341 + ], + [ + 37.70634, + 55.553251 + ], + [ + 37.706181, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706181, + 55.553341 + ], + [ + 37.706181, + 55.553431 + ], + [ + 37.70634, + 55.553431 + ], + [ + 37.70634, + 55.553341 + ], + [ + 37.706181, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706181, + 55.553431 + ], + [ + 37.706181, + 55.55352 + ], + [ + 37.70634, + 55.55352 + ], + [ + 37.70634, + 55.553431 + ], + [ + 37.706181, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706181, + 55.55352 + ], + [ + 37.706181, + 55.55361 + ], + [ + 37.70634, + 55.55361 + ], + [ + 37.70634, + 55.55352 + ], + [ + 37.706181, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706181, + 55.55361 + ], + [ + 37.706181, + 55.5537 + ], + [ + 37.70634, + 55.5537 + ], + [ + 37.70634, + 55.55361 + ], + [ + 37.706181, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706181, + 55.5537 + ], + [ + 37.706181, + 55.55379 + ], + [ + 37.70634, + 55.55379 + ], + [ + 37.70634, + 55.5537 + ], + [ + 37.706181, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706181, + 55.55379 + ], + [ + 37.706181, + 55.55388 + ], + [ + 37.70634, + 55.55388 + ], + [ + 37.70634, + 55.55379 + ], + [ + 37.706181, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706181, + 55.55388 + ], + [ + 37.706181, + 55.55397 + ], + [ + 37.70634, + 55.55397 + ], + [ + 37.70634, + 55.55388 + ], + [ + 37.706181, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706181, + 55.55397 + ], + [ + 37.706181, + 55.55406 + ], + [ + 37.70634, + 55.55406 + ], + [ + 37.70634, + 55.55397 + ], + [ + 37.706181, + 55.55397 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706181, + 55.55406 + ], + [ + 37.706181, + 55.55415 + ], + [ + 37.70634, + 55.55415 + ], + [ + 37.70634, + 55.55406 + ], + [ + 37.706181, + 55.55406 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706181, + 55.55415 + ], + [ + 37.706181, + 55.55424 + ], + [ + 37.70634, + 55.55424 + ], + [ + 37.70634, + 55.55415 + ], + [ + 37.706181, + 55.55415 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706181, + 55.55424 + ], + [ + 37.706181, + 55.55433 + ], + [ + 37.70634, + 55.55433 + ], + [ + 37.70634, + 55.55424 + ], + [ + 37.706181, + 55.55424 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706181, + 55.55433 + ], + [ + 37.706181, + 55.55442 + ], + [ + 37.70634, + 55.55442 + ], + [ + 37.70634, + 55.55433 + ], + [ + 37.706181, + 55.55433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706181, + 55.55442 + ], + [ + 37.706181, + 55.55451 + ], + [ + 37.70634, + 55.55451 + ], + [ + 37.70634, + 55.55442 + ], + [ + 37.706181, + 55.55442 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706181, + 55.55451 + ], + [ + 37.706181, + 55.5546 + ], + [ + 37.70634, + 55.5546 + ], + [ + 37.70634, + 55.55451 + ], + [ + 37.706181, + 55.55451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706181, + 55.5546 + ], + [ + 37.706181, + 55.55469 + ], + [ + 37.70634, + 55.55469 + ], + [ + 37.70634, + 55.5546 + ], + [ + 37.706181, + 55.5546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706181, + 55.55469 + ], + [ + 37.706181, + 55.55478 + ], + [ + 37.70634, + 55.55478 + ], + [ + 37.70634, + 55.55469 + ], + [ + 37.706181, + 55.55469 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706181, + 55.55478 + ], + [ + 37.706181, + 55.554869 + ], + [ + 37.70634, + 55.554869 + ], + [ + 37.70634, + 55.55478 + ], + [ + 37.706181, + 55.55478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706181, + 55.554869 + ], + [ + 37.706181, + 55.554959 + ], + [ + 37.70634, + 55.554959 + ], + [ + 37.70634, + 55.554869 + ], + [ + 37.706181, + 55.554869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706181, + 55.554959 + ], + [ + 37.706181, + 55.555049 + ], + [ + 37.70634, + 55.555049 + ], + [ + 37.70634, + 55.554959 + ], + [ + 37.706181, + 55.554959 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706181, + 55.555049 + ], + [ + 37.706181, + 55.555139 + ], + [ + 37.70634, + 55.555139 + ], + [ + 37.70634, + 55.555049 + ], + [ + 37.706181, + 55.555049 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706181, + 55.555139 + ], + [ + 37.706181, + 55.555229 + ], + [ + 37.70634, + 55.555229 + ], + [ + 37.70634, + 55.555139 + ], + [ + 37.706181, + 55.555139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706181, + 55.555229 + ], + [ + 37.706181, + 55.555319 + ], + [ + 37.70634, + 55.555319 + ], + [ + 37.70634, + 55.555229 + ], + [ + 37.706181, + 55.555229 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706181, + 55.555319 + ], + [ + 37.706181, + 55.555409 + ], + [ + 37.70634, + 55.555409 + ], + [ + 37.70634, + 55.555319 + ], + [ + 37.706181, + 55.555319 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706181, + 55.555409 + ], + [ + 37.706181, + 55.555499 + ], + [ + 37.70634, + 55.555499 + ], + [ + 37.70634, + 55.555409 + ], + [ + 37.706181, + 55.555409 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70634, + 55.551542 + ], + [ + 37.70634, + 55.551632 + ], + [ + 37.706499, + 55.551632 + ], + [ + 37.706499, + 55.551542 + ], + [ + 37.70634, + 55.551542 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70634, + 55.551632 + ], + [ + 37.70634, + 55.551722 + ], + [ + 37.706499, + 55.551722 + ], + [ + 37.706499, + 55.551632 + ], + [ + 37.70634, + 55.551632 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70634, + 55.551722 + ], + [ + 37.70634, + 55.551812 + ], + [ + 37.706499, + 55.551812 + ], + [ + 37.706499, + 55.551722 + ], + [ + 37.70634, + 55.551722 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70634, + 55.551812 + ], + [ + 37.70634, + 55.551902 + ], + [ + 37.706499, + 55.551902 + ], + [ + 37.706499, + 55.551812 + ], + [ + 37.70634, + 55.551812 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70634, + 55.551902 + ], + [ + 37.70634, + 55.551992 + ], + [ + 37.706499, + 55.551992 + ], + [ + 37.706499, + 55.551902 + ], + [ + 37.70634, + 55.551902 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70634, + 55.551992 + ], + [ + 37.70634, + 55.552082 + ], + [ + 37.706499, + 55.552082 + ], + [ + 37.706499, + 55.551992 + ], + [ + 37.70634, + 55.551992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70634, + 55.552082 + ], + [ + 37.70634, + 55.552171 + ], + [ + 37.706499, + 55.552171 + ], + [ + 37.706499, + 55.552082 + ], + [ + 37.70634, + 55.552082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70634, + 55.552171 + ], + [ + 37.70634, + 55.552261 + ], + [ + 37.706499, + 55.552261 + ], + [ + 37.706499, + 55.552171 + ], + [ + 37.70634, + 55.552171 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70634, + 55.552261 + ], + [ + 37.70634, + 55.552351 + ], + [ + 37.706499, + 55.552351 + ], + [ + 37.706499, + 55.552261 + ], + [ + 37.70634, + 55.552261 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70634, + 55.552351 + ], + [ + 37.70634, + 55.552441 + ], + [ + 37.706499, + 55.552441 + ], + [ + 37.706499, + 55.552351 + ], + [ + 37.70634, + 55.552351 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70634, + 55.552441 + ], + [ + 37.70634, + 55.552531 + ], + [ + 37.706499, + 55.552531 + ], + [ + 37.706499, + 55.552441 + ], + [ + 37.70634, + 55.552441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70634, + 55.552531 + ], + [ + 37.70634, + 55.552621 + ], + [ + 37.706499, + 55.552621 + ], + [ + 37.706499, + 55.552531 + ], + [ + 37.70634, + 55.552531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70634, + 55.552621 + ], + [ + 37.70634, + 55.552711 + ], + [ + 37.706499, + 55.552711 + ], + [ + 37.706499, + 55.552621 + ], + [ + 37.70634, + 55.552621 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70634, + 55.552711 + ], + [ + 37.70634, + 55.552801 + ], + [ + 37.706499, + 55.552801 + ], + [ + 37.706499, + 55.552711 + ], + [ + 37.70634, + 55.552711 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70634, + 55.552801 + ], + [ + 37.70634, + 55.552891 + ], + [ + 37.706499, + 55.552891 + ], + [ + 37.706499, + 55.552801 + ], + [ + 37.70634, + 55.552801 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70634, + 55.552891 + ], + [ + 37.70634, + 55.552981 + ], + [ + 37.706499, + 55.552981 + ], + [ + 37.706499, + 55.552891 + ], + [ + 37.70634, + 55.552891 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70634, + 55.552981 + ], + [ + 37.70634, + 55.553071 + ], + [ + 37.706499, + 55.553071 + ], + [ + 37.706499, + 55.552981 + ], + [ + 37.70634, + 55.552981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70634, + 55.553071 + ], + [ + 37.70634, + 55.553161 + ], + [ + 37.706499, + 55.553161 + ], + [ + 37.706499, + 55.553071 + ], + [ + 37.70634, + 55.553071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70634, + 55.553161 + ], + [ + 37.70634, + 55.553251 + ], + [ + 37.706499, + 55.553251 + ], + [ + 37.706499, + 55.553161 + ], + [ + 37.70634, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70634, + 55.553251 + ], + [ + 37.70634, + 55.553341 + ], + [ + 37.706499, + 55.553341 + ], + [ + 37.706499, + 55.553251 + ], + [ + 37.70634, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70634, + 55.553341 + ], + [ + 37.70634, + 55.553431 + ], + [ + 37.706499, + 55.553431 + ], + [ + 37.706499, + 55.553341 + ], + [ + 37.70634, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70634, + 55.553431 + ], + [ + 37.70634, + 55.55352 + ], + [ + 37.706499, + 55.55352 + ], + [ + 37.706499, + 55.553431 + ], + [ + 37.70634, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70634, + 55.55352 + ], + [ + 37.70634, + 55.55361 + ], + [ + 37.706499, + 55.55361 + ], + [ + 37.706499, + 55.55352 + ], + [ + 37.70634, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70634, + 55.55361 + ], + [ + 37.70634, + 55.5537 + ], + [ + 37.706499, + 55.5537 + ], + [ + 37.706499, + 55.55361 + ], + [ + 37.70634, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70634, + 55.5537 + ], + [ + 37.70634, + 55.55379 + ], + [ + 37.706499, + 55.55379 + ], + [ + 37.706499, + 55.5537 + ], + [ + 37.70634, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70634, + 55.55379 + ], + [ + 37.70634, + 55.55388 + ], + [ + 37.706499, + 55.55388 + ], + [ + 37.706499, + 55.55379 + ], + [ + 37.70634, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70634, + 55.55388 + ], + [ + 37.70634, + 55.55397 + ], + [ + 37.706499, + 55.55397 + ], + [ + 37.706499, + 55.55388 + ], + [ + 37.70634, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70634, + 55.55397 + ], + [ + 37.70634, + 55.55406 + ], + [ + 37.706499, + 55.55406 + ], + [ + 37.706499, + 55.55397 + ], + [ + 37.70634, + 55.55397 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70634, + 55.55406 + ], + [ + 37.70634, + 55.55415 + ], + [ + 37.706499, + 55.55415 + ], + [ + 37.706499, + 55.55406 + ], + [ + 37.70634, + 55.55406 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70634, + 55.55415 + ], + [ + 37.70634, + 55.55424 + ], + [ + 37.706499, + 55.55424 + ], + [ + 37.706499, + 55.55415 + ], + [ + 37.70634, + 55.55415 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70634, + 55.55424 + ], + [ + 37.70634, + 55.55433 + ], + [ + 37.706499, + 55.55433 + ], + [ + 37.706499, + 55.55424 + ], + [ + 37.70634, + 55.55424 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70634, + 55.55433 + ], + [ + 37.70634, + 55.55442 + ], + [ + 37.706499, + 55.55442 + ], + [ + 37.706499, + 55.55433 + ], + [ + 37.70634, + 55.55433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70634, + 55.55442 + ], + [ + 37.70634, + 55.55451 + ], + [ + 37.706499, + 55.55451 + ], + [ + 37.706499, + 55.55442 + ], + [ + 37.70634, + 55.55442 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70634, + 55.55451 + ], + [ + 37.70634, + 55.5546 + ], + [ + 37.706499, + 55.5546 + ], + [ + 37.706499, + 55.55451 + ], + [ + 37.70634, + 55.55451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70634, + 55.5546 + ], + [ + 37.70634, + 55.55469 + ], + [ + 37.706499, + 55.55469 + ], + [ + 37.706499, + 55.5546 + ], + [ + 37.70634, + 55.5546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70634, + 55.55469 + ], + [ + 37.70634, + 55.55478 + ], + [ + 37.706499, + 55.55478 + ], + [ + 37.706499, + 55.55469 + ], + [ + 37.70634, + 55.55469 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70634, + 55.55478 + ], + [ + 37.70634, + 55.554869 + ], + [ + 37.706499, + 55.554869 + ], + [ + 37.706499, + 55.55478 + ], + [ + 37.70634, + 55.55478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70634, + 55.554869 + ], + [ + 37.70634, + 55.554959 + ], + [ + 37.706499, + 55.554959 + ], + [ + 37.706499, + 55.554869 + ], + [ + 37.70634, + 55.554869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70634, + 55.554959 + ], + [ + 37.70634, + 55.555049 + ], + [ + 37.706499, + 55.555049 + ], + [ + 37.706499, + 55.554959 + ], + [ + 37.70634, + 55.554959 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70634, + 55.555049 + ], + [ + 37.70634, + 55.555139 + ], + [ + 37.706499, + 55.555139 + ], + [ + 37.706499, + 55.555049 + ], + [ + 37.70634, + 55.555049 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70634, + 55.555139 + ], + [ + 37.70634, + 55.555229 + ], + [ + 37.706499, + 55.555229 + ], + [ + 37.706499, + 55.555139 + ], + [ + 37.70634, + 55.555139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70634, + 55.555229 + ], + [ + 37.70634, + 55.555319 + ], + [ + 37.706499, + 55.555319 + ], + [ + 37.706499, + 55.555229 + ], + [ + 37.70634, + 55.555229 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70634, + 55.555319 + ], + [ + 37.70634, + 55.555409 + ], + [ + 37.706499, + 55.555409 + ], + [ + 37.706499, + 55.555319 + ], + [ + 37.70634, + 55.555319 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70634, + 55.555409 + ], + [ + 37.70634, + 55.555499 + ], + [ + 37.706499, + 55.555499 + ], + [ + 37.706499, + 55.555409 + ], + [ + 37.70634, + 55.555409 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70634, + 55.555499 + ], + [ + 37.70634, + 55.555589 + ], + [ + 37.706499, + 55.555589 + ], + [ + 37.706499, + 55.555499 + ], + [ + 37.70634, + 55.555499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706499, + 55.551542 + ], + [ + 37.706499, + 55.551632 + ], + [ + 37.706658, + 55.551632 + ], + [ + 37.706658, + 55.551542 + ], + [ + 37.706499, + 55.551542 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706499, + 55.551632 + ], + [ + 37.706499, + 55.551722 + ], + [ + 37.706658, + 55.551722 + ], + [ + 37.706658, + 55.551632 + ], + [ + 37.706499, + 55.551632 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706499, + 55.551722 + ], + [ + 37.706499, + 55.551812 + ], + [ + 37.706658, + 55.551812 + ], + [ + 37.706658, + 55.551722 + ], + [ + 37.706499, + 55.551722 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706499, + 55.551812 + ], + [ + 37.706499, + 55.551902 + ], + [ + 37.706658, + 55.551902 + ], + [ + 37.706658, + 55.551812 + ], + [ + 37.706499, + 55.551812 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706499, + 55.551902 + ], + [ + 37.706499, + 55.551992 + ], + [ + 37.706658, + 55.551992 + ], + [ + 37.706658, + 55.551902 + ], + [ + 37.706499, + 55.551902 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706499, + 55.551992 + ], + [ + 37.706499, + 55.552082 + ], + [ + 37.706658, + 55.552082 + ], + [ + 37.706658, + 55.551992 + ], + [ + 37.706499, + 55.551992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706499, + 55.552082 + ], + [ + 37.706499, + 55.552171 + ], + [ + 37.706658, + 55.552171 + ], + [ + 37.706658, + 55.552082 + ], + [ + 37.706499, + 55.552082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706499, + 55.552171 + ], + [ + 37.706499, + 55.552261 + ], + [ + 37.706658, + 55.552261 + ], + [ + 37.706658, + 55.552171 + ], + [ + 37.706499, + 55.552171 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706499, + 55.552261 + ], + [ + 37.706499, + 55.552351 + ], + [ + 37.706658, + 55.552351 + ], + [ + 37.706658, + 55.552261 + ], + [ + 37.706499, + 55.552261 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706499, + 55.552351 + ], + [ + 37.706499, + 55.552441 + ], + [ + 37.706658, + 55.552441 + ], + [ + 37.706658, + 55.552351 + ], + [ + 37.706499, + 55.552351 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706499, + 55.552441 + ], + [ + 37.706499, + 55.552531 + ], + [ + 37.706658, + 55.552531 + ], + [ + 37.706658, + 55.552441 + ], + [ + 37.706499, + 55.552441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706499, + 55.552531 + ], + [ + 37.706499, + 55.552621 + ], + [ + 37.706658, + 55.552621 + ], + [ + 37.706658, + 55.552531 + ], + [ + 37.706499, + 55.552531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706499, + 55.552621 + ], + [ + 37.706499, + 55.552711 + ], + [ + 37.706658, + 55.552711 + ], + [ + 37.706658, + 55.552621 + ], + [ + 37.706499, + 55.552621 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706499, + 55.552711 + ], + [ + 37.706499, + 55.552801 + ], + [ + 37.706658, + 55.552801 + ], + [ + 37.706658, + 55.552711 + ], + [ + 37.706499, + 55.552711 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706499, + 55.552801 + ], + [ + 37.706499, + 55.552891 + ], + [ + 37.706658, + 55.552891 + ], + [ + 37.706658, + 55.552801 + ], + [ + 37.706499, + 55.552801 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706499, + 55.552891 + ], + [ + 37.706499, + 55.552981 + ], + [ + 37.706658, + 55.552981 + ], + [ + 37.706658, + 55.552891 + ], + [ + 37.706499, + 55.552891 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706499, + 55.552981 + ], + [ + 37.706499, + 55.553071 + ], + [ + 37.706658, + 55.553071 + ], + [ + 37.706658, + 55.552981 + ], + [ + 37.706499, + 55.552981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706499, + 55.553071 + ], + [ + 37.706499, + 55.553161 + ], + [ + 37.706658, + 55.553161 + ], + [ + 37.706658, + 55.553071 + ], + [ + 37.706499, + 55.553071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706499, + 55.553161 + ], + [ + 37.706499, + 55.553251 + ], + [ + 37.706658, + 55.553251 + ], + [ + 37.706658, + 55.553161 + ], + [ + 37.706499, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706499, + 55.553251 + ], + [ + 37.706499, + 55.553341 + ], + [ + 37.706658, + 55.553341 + ], + [ + 37.706658, + 55.553251 + ], + [ + 37.706499, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706499, + 55.553341 + ], + [ + 37.706499, + 55.553431 + ], + [ + 37.706658, + 55.553431 + ], + [ + 37.706658, + 55.553341 + ], + [ + 37.706499, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706499, + 55.553431 + ], + [ + 37.706499, + 55.55352 + ], + [ + 37.706658, + 55.55352 + ], + [ + 37.706658, + 55.553431 + ], + [ + 37.706499, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706499, + 55.55352 + ], + [ + 37.706499, + 55.55361 + ], + [ + 37.706658, + 55.55361 + ], + [ + 37.706658, + 55.55352 + ], + [ + 37.706499, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706499, + 55.55361 + ], + [ + 37.706499, + 55.5537 + ], + [ + 37.706658, + 55.5537 + ], + [ + 37.706658, + 55.55361 + ], + [ + 37.706499, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706499, + 55.5537 + ], + [ + 37.706499, + 55.55379 + ], + [ + 37.706658, + 55.55379 + ], + [ + 37.706658, + 55.5537 + ], + [ + 37.706499, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706499, + 55.55379 + ], + [ + 37.706499, + 55.55388 + ], + [ + 37.706658, + 55.55388 + ], + [ + 37.706658, + 55.55379 + ], + [ + 37.706499, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706499, + 55.55388 + ], + [ + 37.706499, + 55.55397 + ], + [ + 37.706658, + 55.55397 + ], + [ + 37.706658, + 55.55388 + ], + [ + 37.706499, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706499, + 55.55397 + ], + [ + 37.706499, + 55.55406 + ], + [ + 37.706658, + 55.55406 + ], + [ + 37.706658, + 55.55397 + ], + [ + 37.706499, + 55.55397 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706499, + 55.55406 + ], + [ + 37.706499, + 55.55415 + ], + [ + 37.706658, + 55.55415 + ], + [ + 37.706658, + 55.55406 + ], + [ + 37.706499, + 55.55406 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706499, + 55.55415 + ], + [ + 37.706499, + 55.55424 + ], + [ + 37.706658, + 55.55424 + ], + [ + 37.706658, + 55.55415 + ], + [ + 37.706499, + 55.55415 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706499, + 55.55424 + ], + [ + 37.706499, + 55.55433 + ], + [ + 37.706658, + 55.55433 + ], + [ + 37.706658, + 55.55424 + ], + [ + 37.706499, + 55.55424 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706499, + 55.55433 + ], + [ + 37.706499, + 55.55442 + ], + [ + 37.706658, + 55.55442 + ], + [ + 37.706658, + 55.55433 + ], + [ + 37.706499, + 55.55433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706499, + 55.55442 + ], + [ + 37.706499, + 55.55451 + ], + [ + 37.706658, + 55.55451 + ], + [ + 37.706658, + 55.55442 + ], + [ + 37.706499, + 55.55442 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706499, + 55.55451 + ], + [ + 37.706499, + 55.5546 + ], + [ + 37.706658, + 55.5546 + ], + [ + 37.706658, + 55.55451 + ], + [ + 37.706499, + 55.55451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706499, + 55.5546 + ], + [ + 37.706499, + 55.55469 + ], + [ + 37.706658, + 55.55469 + ], + [ + 37.706658, + 55.5546 + ], + [ + 37.706499, + 55.5546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706499, + 55.55469 + ], + [ + 37.706499, + 55.55478 + ], + [ + 37.706658, + 55.55478 + ], + [ + 37.706658, + 55.55469 + ], + [ + 37.706499, + 55.55469 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706499, + 55.55478 + ], + [ + 37.706499, + 55.554869 + ], + [ + 37.706658, + 55.554869 + ], + [ + 37.706658, + 55.55478 + ], + [ + 37.706499, + 55.55478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706499, + 55.554869 + ], + [ + 37.706499, + 55.554959 + ], + [ + 37.706658, + 55.554959 + ], + [ + 37.706658, + 55.554869 + ], + [ + 37.706499, + 55.554869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706499, + 55.554959 + ], + [ + 37.706499, + 55.555049 + ], + [ + 37.706658, + 55.555049 + ], + [ + 37.706658, + 55.554959 + ], + [ + 37.706499, + 55.554959 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706499, + 55.555049 + ], + [ + 37.706499, + 55.555139 + ], + [ + 37.706658, + 55.555139 + ], + [ + 37.706658, + 55.555049 + ], + [ + 37.706499, + 55.555049 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706499, + 55.555139 + ], + [ + 37.706499, + 55.555229 + ], + [ + 37.706658, + 55.555229 + ], + [ + 37.706658, + 55.555139 + ], + [ + 37.706499, + 55.555139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706499, + 55.555229 + ], + [ + 37.706499, + 55.555319 + ], + [ + 37.706658, + 55.555319 + ], + [ + 37.706658, + 55.555229 + ], + [ + 37.706499, + 55.555229 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706499, + 55.555319 + ], + [ + 37.706499, + 55.555409 + ], + [ + 37.706658, + 55.555409 + ], + [ + 37.706658, + 55.555319 + ], + [ + 37.706499, + 55.555319 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706499, + 55.555409 + ], + [ + 37.706499, + 55.555499 + ], + [ + 37.706658, + 55.555499 + ], + [ + 37.706658, + 55.555409 + ], + [ + 37.706499, + 55.555409 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706499, + 55.555499 + ], + [ + 37.706499, + 55.555589 + ], + [ + 37.706658, + 55.555589 + ], + [ + 37.706658, + 55.555499 + ], + [ + 37.706499, + 55.555499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706658, + 55.551632 + ], + [ + 37.706658, + 55.551722 + ], + [ + 37.706817, + 55.551722 + ], + [ + 37.706817, + 55.551632 + ], + [ + 37.706658, + 55.551632 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706658, + 55.551722 + ], + [ + 37.706658, + 55.551812 + ], + [ + 37.706817, + 55.551812 + ], + [ + 37.706817, + 55.551722 + ], + [ + 37.706658, + 55.551722 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706658, + 55.551812 + ], + [ + 37.706658, + 55.551902 + ], + [ + 37.706817, + 55.551902 + ], + [ + 37.706817, + 55.551812 + ], + [ + 37.706658, + 55.551812 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706658, + 55.551902 + ], + [ + 37.706658, + 55.551992 + ], + [ + 37.706817, + 55.551992 + ], + [ + 37.706817, + 55.551902 + ], + [ + 37.706658, + 55.551902 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706658, + 55.551992 + ], + [ + 37.706658, + 55.552082 + ], + [ + 37.706817, + 55.552082 + ], + [ + 37.706817, + 55.551992 + ], + [ + 37.706658, + 55.551992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706658, + 55.552082 + ], + [ + 37.706658, + 55.552171 + ], + [ + 37.706817, + 55.552171 + ], + [ + 37.706817, + 55.552082 + ], + [ + 37.706658, + 55.552082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706658, + 55.552171 + ], + [ + 37.706658, + 55.552261 + ], + [ + 37.706817, + 55.552261 + ], + [ + 37.706817, + 55.552171 + ], + [ + 37.706658, + 55.552171 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706658, + 55.552261 + ], + [ + 37.706658, + 55.552351 + ], + [ + 37.706817, + 55.552351 + ], + [ + 37.706817, + 55.552261 + ], + [ + 37.706658, + 55.552261 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706658, + 55.552351 + ], + [ + 37.706658, + 55.552441 + ], + [ + 37.706817, + 55.552441 + ], + [ + 37.706817, + 55.552351 + ], + [ + 37.706658, + 55.552351 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706658, + 55.552441 + ], + [ + 37.706658, + 55.552531 + ], + [ + 37.706817, + 55.552531 + ], + [ + 37.706817, + 55.552441 + ], + [ + 37.706658, + 55.552441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706658, + 55.552531 + ], + [ + 37.706658, + 55.552621 + ], + [ + 37.706817, + 55.552621 + ], + [ + 37.706817, + 55.552531 + ], + [ + 37.706658, + 55.552531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706658, + 55.552621 + ], + [ + 37.706658, + 55.552711 + ], + [ + 37.706817, + 55.552711 + ], + [ + 37.706817, + 55.552621 + ], + [ + 37.706658, + 55.552621 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706658, + 55.552711 + ], + [ + 37.706658, + 55.552801 + ], + [ + 37.706817, + 55.552801 + ], + [ + 37.706817, + 55.552711 + ], + [ + 37.706658, + 55.552711 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706658, + 55.552801 + ], + [ + 37.706658, + 55.552891 + ], + [ + 37.706817, + 55.552891 + ], + [ + 37.706817, + 55.552801 + ], + [ + 37.706658, + 55.552801 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706658, + 55.552891 + ], + [ + 37.706658, + 55.552981 + ], + [ + 37.706817, + 55.552981 + ], + [ + 37.706817, + 55.552891 + ], + [ + 37.706658, + 55.552891 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706658, + 55.552981 + ], + [ + 37.706658, + 55.553071 + ], + [ + 37.706817, + 55.553071 + ], + [ + 37.706817, + 55.552981 + ], + [ + 37.706658, + 55.552981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706658, + 55.553071 + ], + [ + 37.706658, + 55.553161 + ], + [ + 37.706817, + 55.553161 + ], + [ + 37.706817, + 55.553071 + ], + [ + 37.706658, + 55.553071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706658, + 55.553161 + ], + [ + 37.706658, + 55.553251 + ], + [ + 37.706817, + 55.553251 + ], + [ + 37.706817, + 55.553161 + ], + [ + 37.706658, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706658, + 55.553251 + ], + [ + 37.706658, + 55.553341 + ], + [ + 37.706817, + 55.553341 + ], + [ + 37.706817, + 55.553251 + ], + [ + 37.706658, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706658, + 55.553341 + ], + [ + 37.706658, + 55.553431 + ], + [ + 37.706817, + 55.553431 + ], + [ + 37.706817, + 55.553341 + ], + [ + 37.706658, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706658, + 55.553431 + ], + [ + 37.706658, + 55.55352 + ], + [ + 37.706817, + 55.55352 + ], + [ + 37.706817, + 55.553431 + ], + [ + 37.706658, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706658, + 55.55352 + ], + [ + 37.706658, + 55.55361 + ], + [ + 37.706817, + 55.55361 + ], + [ + 37.706817, + 55.55352 + ], + [ + 37.706658, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706658, + 55.55361 + ], + [ + 37.706658, + 55.5537 + ], + [ + 37.706817, + 55.5537 + ], + [ + 37.706817, + 55.55361 + ], + [ + 37.706658, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706658, + 55.5537 + ], + [ + 37.706658, + 55.55379 + ], + [ + 37.706817, + 55.55379 + ], + [ + 37.706817, + 55.5537 + ], + [ + 37.706658, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706658, + 55.55379 + ], + [ + 37.706658, + 55.55388 + ], + [ + 37.706817, + 55.55388 + ], + [ + 37.706817, + 55.55379 + ], + [ + 37.706658, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706658, + 55.55388 + ], + [ + 37.706658, + 55.55397 + ], + [ + 37.706817, + 55.55397 + ], + [ + 37.706817, + 55.55388 + ], + [ + 37.706658, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706658, + 55.55397 + ], + [ + 37.706658, + 55.55406 + ], + [ + 37.706817, + 55.55406 + ], + [ + 37.706817, + 55.55397 + ], + [ + 37.706658, + 55.55397 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706658, + 55.55406 + ], + [ + 37.706658, + 55.55415 + ], + [ + 37.706817, + 55.55415 + ], + [ + 37.706817, + 55.55406 + ], + [ + 37.706658, + 55.55406 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706658, + 55.55415 + ], + [ + 37.706658, + 55.55424 + ], + [ + 37.706817, + 55.55424 + ], + [ + 37.706817, + 55.55415 + ], + [ + 37.706658, + 55.55415 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706658, + 55.55424 + ], + [ + 37.706658, + 55.55433 + ], + [ + 37.706817, + 55.55433 + ], + [ + 37.706817, + 55.55424 + ], + [ + 37.706658, + 55.55424 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706658, + 55.55433 + ], + [ + 37.706658, + 55.55442 + ], + [ + 37.706817, + 55.55442 + ], + [ + 37.706817, + 55.55433 + ], + [ + 37.706658, + 55.55433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706658, + 55.55442 + ], + [ + 37.706658, + 55.55451 + ], + [ + 37.706817, + 55.55451 + ], + [ + 37.706817, + 55.55442 + ], + [ + 37.706658, + 55.55442 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706658, + 55.55451 + ], + [ + 37.706658, + 55.5546 + ], + [ + 37.706817, + 55.5546 + ], + [ + 37.706817, + 55.55451 + ], + [ + 37.706658, + 55.55451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706658, + 55.5546 + ], + [ + 37.706658, + 55.55469 + ], + [ + 37.706817, + 55.55469 + ], + [ + 37.706817, + 55.5546 + ], + [ + 37.706658, + 55.5546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706658, + 55.55469 + ], + [ + 37.706658, + 55.55478 + ], + [ + 37.706817, + 55.55478 + ], + [ + 37.706817, + 55.55469 + ], + [ + 37.706658, + 55.55469 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706658, + 55.55478 + ], + [ + 37.706658, + 55.554869 + ], + [ + 37.706817, + 55.554869 + ], + [ + 37.706817, + 55.55478 + ], + [ + 37.706658, + 55.55478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706658, + 55.554869 + ], + [ + 37.706658, + 55.554959 + ], + [ + 37.706817, + 55.554959 + ], + [ + 37.706817, + 55.554869 + ], + [ + 37.706658, + 55.554869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706658, + 55.554959 + ], + [ + 37.706658, + 55.555049 + ], + [ + 37.706817, + 55.555049 + ], + [ + 37.706817, + 55.554959 + ], + [ + 37.706658, + 55.554959 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706658, + 55.555049 + ], + [ + 37.706658, + 55.555139 + ], + [ + 37.706817, + 55.555139 + ], + [ + 37.706817, + 55.555049 + ], + [ + 37.706658, + 55.555049 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706658, + 55.555139 + ], + [ + 37.706658, + 55.555229 + ], + [ + 37.706817, + 55.555229 + ], + [ + 37.706817, + 55.555139 + ], + [ + 37.706658, + 55.555139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706658, + 55.555229 + ], + [ + 37.706658, + 55.555319 + ], + [ + 37.706817, + 55.555319 + ], + [ + 37.706817, + 55.555229 + ], + [ + 37.706658, + 55.555229 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706658, + 55.555319 + ], + [ + 37.706658, + 55.555409 + ], + [ + 37.706817, + 55.555409 + ], + [ + 37.706817, + 55.555319 + ], + [ + 37.706658, + 55.555319 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706658, + 55.555409 + ], + [ + 37.706658, + 55.555499 + ], + [ + 37.706817, + 55.555499 + ], + [ + 37.706817, + 55.555409 + ], + [ + 37.706658, + 55.555409 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706658, + 55.555499 + ], + [ + 37.706658, + 55.555589 + ], + [ + 37.706817, + 55.555589 + ], + [ + 37.706817, + 55.555499 + ], + [ + 37.706658, + 55.555499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706658, + 55.555589 + ], + [ + 37.706658, + 55.555679 + ], + [ + 37.706817, + 55.555679 + ], + [ + 37.706817, + 55.555589 + ], + [ + 37.706658, + 55.555589 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706817, + 55.551812 + ], + [ + 37.706817, + 55.551902 + ], + [ + 37.706976, + 55.551902 + ], + [ + 37.706976, + 55.551812 + ], + [ + 37.706817, + 55.551812 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706817, + 55.551902 + ], + [ + 37.706817, + 55.551992 + ], + [ + 37.706976, + 55.551992 + ], + [ + 37.706976, + 55.551902 + ], + [ + 37.706817, + 55.551902 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706817, + 55.551992 + ], + [ + 37.706817, + 55.552082 + ], + [ + 37.706976, + 55.552082 + ], + [ + 37.706976, + 55.551992 + ], + [ + 37.706817, + 55.551992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706817, + 55.552082 + ], + [ + 37.706817, + 55.552171 + ], + [ + 37.706976, + 55.552171 + ], + [ + 37.706976, + 55.552082 + ], + [ + 37.706817, + 55.552082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706817, + 55.552171 + ], + [ + 37.706817, + 55.552261 + ], + [ + 37.706976, + 55.552261 + ], + [ + 37.706976, + 55.552171 + ], + [ + 37.706817, + 55.552171 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706817, + 55.552261 + ], + [ + 37.706817, + 55.552351 + ], + [ + 37.706976, + 55.552351 + ], + [ + 37.706976, + 55.552261 + ], + [ + 37.706817, + 55.552261 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706817, + 55.552351 + ], + [ + 37.706817, + 55.552441 + ], + [ + 37.706976, + 55.552441 + ], + [ + 37.706976, + 55.552351 + ], + [ + 37.706817, + 55.552351 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706817, + 55.552441 + ], + [ + 37.706817, + 55.552531 + ], + [ + 37.706976, + 55.552531 + ], + [ + 37.706976, + 55.552441 + ], + [ + 37.706817, + 55.552441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706817, + 55.552531 + ], + [ + 37.706817, + 55.552621 + ], + [ + 37.706976, + 55.552621 + ], + [ + 37.706976, + 55.552531 + ], + [ + 37.706817, + 55.552531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706817, + 55.552621 + ], + [ + 37.706817, + 55.552711 + ], + [ + 37.706976, + 55.552711 + ], + [ + 37.706976, + 55.552621 + ], + [ + 37.706817, + 55.552621 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706817, + 55.552711 + ], + [ + 37.706817, + 55.552801 + ], + [ + 37.706976, + 55.552801 + ], + [ + 37.706976, + 55.552711 + ], + [ + 37.706817, + 55.552711 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706817, + 55.552801 + ], + [ + 37.706817, + 55.552891 + ], + [ + 37.706976, + 55.552891 + ], + [ + 37.706976, + 55.552801 + ], + [ + 37.706817, + 55.552801 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706817, + 55.552891 + ], + [ + 37.706817, + 55.552981 + ], + [ + 37.706976, + 55.552981 + ], + [ + 37.706976, + 55.552891 + ], + [ + 37.706817, + 55.552891 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706817, + 55.552981 + ], + [ + 37.706817, + 55.553071 + ], + [ + 37.706976, + 55.553071 + ], + [ + 37.706976, + 55.552981 + ], + [ + 37.706817, + 55.552981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706817, + 55.553071 + ], + [ + 37.706817, + 55.553161 + ], + [ + 37.706976, + 55.553161 + ], + [ + 37.706976, + 55.553071 + ], + [ + 37.706817, + 55.553071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706817, + 55.553161 + ], + [ + 37.706817, + 55.553251 + ], + [ + 37.706976, + 55.553251 + ], + [ + 37.706976, + 55.553161 + ], + [ + 37.706817, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706817, + 55.553251 + ], + [ + 37.706817, + 55.553341 + ], + [ + 37.706976, + 55.553341 + ], + [ + 37.706976, + 55.553251 + ], + [ + 37.706817, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706817, + 55.553341 + ], + [ + 37.706817, + 55.553431 + ], + [ + 37.706976, + 55.553431 + ], + [ + 37.706976, + 55.553341 + ], + [ + 37.706817, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706817, + 55.553431 + ], + [ + 37.706817, + 55.55352 + ], + [ + 37.706976, + 55.55352 + ], + [ + 37.706976, + 55.553431 + ], + [ + 37.706817, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706817, + 55.55352 + ], + [ + 37.706817, + 55.55361 + ], + [ + 37.706976, + 55.55361 + ], + [ + 37.706976, + 55.55352 + ], + [ + 37.706817, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706817, + 55.55361 + ], + [ + 37.706817, + 55.5537 + ], + [ + 37.706976, + 55.5537 + ], + [ + 37.706976, + 55.55361 + ], + [ + 37.706817, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706817, + 55.5537 + ], + [ + 37.706817, + 55.55379 + ], + [ + 37.706976, + 55.55379 + ], + [ + 37.706976, + 55.5537 + ], + [ + 37.706817, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706817, + 55.55379 + ], + [ + 37.706817, + 55.55388 + ], + [ + 37.706976, + 55.55388 + ], + [ + 37.706976, + 55.55379 + ], + [ + 37.706817, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706817, + 55.55388 + ], + [ + 37.706817, + 55.55397 + ], + [ + 37.706976, + 55.55397 + ], + [ + 37.706976, + 55.55388 + ], + [ + 37.706817, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706817, + 55.55397 + ], + [ + 37.706817, + 55.55406 + ], + [ + 37.706976, + 55.55406 + ], + [ + 37.706976, + 55.55397 + ], + [ + 37.706817, + 55.55397 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706817, + 55.55406 + ], + [ + 37.706817, + 55.55415 + ], + [ + 37.706976, + 55.55415 + ], + [ + 37.706976, + 55.55406 + ], + [ + 37.706817, + 55.55406 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706817, + 55.55415 + ], + [ + 37.706817, + 55.55424 + ], + [ + 37.706976, + 55.55424 + ], + [ + 37.706976, + 55.55415 + ], + [ + 37.706817, + 55.55415 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706817, + 55.55424 + ], + [ + 37.706817, + 55.55433 + ], + [ + 37.706976, + 55.55433 + ], + [ + 37.706976, + 55.55424 + ], + [ + 37.706817, + 55.55424 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706817, + 55.55433 + ], + [ + 37.706817, + 55.55442 + ], + [ + 37.706976, + 55.55442 + ], + [ + 37.706976, + 55.55433 + ], + [ + 37.706817, + 55.55433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706817, + 55.55442 + ], + [ + 37.706817, + 55.55451 + ], + [ + 37.706976, + 55.55451 + ], + [ + 37.706976, + 55.55442 + ], + [ + 37.706817, + 55.55442 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706817, + 55.55451 + ], + [ + 37.706817, + 55.5546 + ], + [ + 37.706976, + 55.5546 + ], + [ + 37.706976, + 55.55451 + ], + [ + 37.706817, + 55.55451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706817, + 55.5546 + ], + [ + 37.706817, + 55.55469 + ], + [ + 37.706976, + 55.55469 + ], + [ + 37.706976, + 55.5546 + ], + [ + 37.706817, + 55.5546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706817, + 55.55469 + ], + [ + 37.706817, + 55.55478 + ], + [ + 37.706976, + 55.55478 + ], + [ + 37.706976, + 55.55469 + ], + [ + 37.706817, + 55.55469 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706817, + 55.55478 + ], + [ + 37.706817, + 55.554869 + ], + [ + 37.706976, + 55.554869 + ], + [ + 37.706976, + 55.55478 + ], + [ + 37.706817, + 55.55478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706817, + 55.554869 + ], + [ + 37.706817, + 55.554959 + ], + [ + 37.706976, + 55.554959 + ], + [ + 37.706976, + 55.554869 + ], + [ + 37.706817, + 55.554869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706817, + 55.554959 + ], + [ + 37.706817, + 55.555049 + ], + [ + 37.706976, + 55.555049 + ], + [ + 37.706976, + 55.554959 + ], + [ + 37.706817, + 55.554959 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706817, + 55.555049 + ], + [ + 37.706817, + 55.555139 + ], + [ + 37.706976, + 55.555139 + ], + [ + 37.706976, + 55.555049 + ], + [ + 37.706817, + 55.555049 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706817, + 55.555139 + ], + [ + 37.706817, + 55.555229 + ], + [ + 37.706976, + 55.555229 + ], + [ + 37.706976, + 55.555139 + ], + [ + 37.706817, + 55.555139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706817, + 55.555229 + ], + [ + 37.706817, + 55.555319 + ], + [ + 37.706976, + 55.555319 + ], + [ + 37.706976, + 55.555229 + ], + [ + 37.706817, + 55.555229 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706817, + 55.555319 + ], + [ + 37.706817, + 55.555409 + ], + [ + 37.706976, + 55.555409 + ], + [ + 37.706976, + 55.555319 + ], + [ + 37.706817, + 55.555319 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706817, + 55.555409 + ], + [ + 37.706817, + 55.555499 + ], + [ + 37.706976, + 55.555499 + ], + [ + 37.706976, + 55.555409 + ], + [ + 37.706817, + 55.555409 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706817, + 55.555499 + ], + [ + 37.706817, + 55.555589 + ], + [ + 37.706976, + 55.555589 + ], + [ + 37.706976, + 55.555499 + ], + [ + 37.706817, + 55.555499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706817, + 55.555589 + ], + [ + 37.706817, + 55.555679 + ], + [ + 37.706976, + 55.555679 + ], + [ + 37.706976, + 55.555589 + ], + [ + 37.706817, + 55.555589 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706976, + 55.551992 + ], + [ + 37.706976, + 55.552082 + ], + [ + 37.707135, + 55.552082 + ], + [ + 37.707135, + 55.551992 + ], + [ + 37.706976, + 55.551992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706976, + 55.552082 + ], + [ + 37.706976, + 55.552171 + ], + [ + 37.707135, + 55.552171 + ], + [ + 37.707135, + 55.552082 + ], + [ + 37.706976, + 55.552082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706976, + 55.552171 + ], + [ + 37.706976, + 55.552261 + ], + [ + 37.707135, + 55.552261 + ], + [ + 37.707135, + 55.552171 + ], + [ + 37.706976, + 55.552171 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706976, + 55.552261 + ], + [ + 37.706976, + 55.552351 + ], + [ + 37.707135, + 55.552351 + ], + [ + 37.707135, + 55.552261 + ], + [ + 37.706976, + 55.552261 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706976, + 55.552351 + ], + [ + 37.706976, + 55.552441 + ], + [ + 37.707135, + 55.552441 + ], + [ + 37.707135, + 55.552351 + ], + [ + 37.706976, + 55.552351 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706976, + 55.552441 + ], + [ + 37.706976, + 55.552531 + ], + [ + 37.707135, + 55.552531 + ], + [ + 37.707135, + 55.552441 + ], + [ + 37.706976, + 55.552441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706976, + 55.552531 + ], + [ + 37.706976, + 55.552621 + ], + [ + 37.707135, + 55.552621 + ], + [ + 37.707135, + 55.552531 + ], + [ + 37.706976, + 55.552531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706976, + 55.552621 + ], + [ + 37.706976, + 55.552711 + ], + [ + 37.707135, + 55.552711 + ], + [ + 37.707135, + 55.552621 + ], + [ + 37.706976, + 55.552621 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706976, + 55.552711 + ], + [ + 37.706976, + 55.552801 + ], + [ + 37.707135, + 55.552801 + ], + [ + 37.707135, + 55.552711 + ], + [ + 37.706976, + 55.552711 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706976, + 55.552801 + ], + [ + 37.706976, + 55.552891 + ], + [ + 37.707135, + 55.552891 + ], + [ + 37.707135, + 55.552801 + ], + [ + 37.706976, + 55.552801 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706976, + 55.552891 + ], + [ + 37.706976, + 55.552981 + ], + [ + 37.707135, + 55.552981 + ], + [ + 37.707135, + 55.552891 + ], + [ + 37.706976, + 55.552891 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706976, + 55.552981 + ], + [ + 37.706976, + 55.553071 + ], + [ + 37.707135, + 55.553071 + ], + [ + 37.707135, + 55.552981 + ], + [ + 37.706976, + 55.552981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706976, + 55.553071 + ], + [ + 37.706976, + 55.553161 + ], + [ + 37.707135, + 55.553161 + ], + [ + 37.707135, + 55.553071 + ], + [ + 37.706976, + 55.553071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706976, + 55.553161 + ], + [ + 37.706976, + 55.553251 + ], + [ + 37.707135, + 55.553251 + ], + [ + 37.707135, + 55.553161 + ], + [ + 37.706976, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706976, + 55.553251 + ], + [ + 37.706976, + 55.553341 + ], + [ + 37.707135, + 55.553341 + ], + [ + 37.707135, + 55.553251 + ], + [ + 37.706976, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706976, + 55.553341 + ], + [ + 37.706976, + 55.553431 + ], + [ + 37.707135, + 55.553431 + ], + [ + 37.707135, + 55.553341 + ], + [ + 37.706976, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706976, + 55.553431 + ], + [ + 37.706976, + 55.55352 + ], + [ + 37.707135, + 55.55352 + ], + [ + 37.707135, + 55.553431 + ], + [ + 37.706976, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706976, + 55.55352 + ], + [ + 37.706976, + 55.55361 + ], + [ + 37.707135, + 55.55361 + ], + [ + 37.707135, + 55.55352 + ], + [ + 37.706976, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706976, + 55.55361 + ], + [ + 37.706976, + 55.5537 + ], + [ + 37.707135, + 55.5537 + ], + [ + 37.707135, + 55.55361 + ], + [ + 37.706976, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706976, + 55.5537 + ], + [ + 37.706976, + 55.55379 + ], + [ + 37.707135, + 55.55379 + ], + [ + 37.707135, + 55.5537 + ], + [ + 37.706976, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706976, + 55.55379 + ], + [ + 37.706976, + 55.55388 + ], + [ + 37.707135, + 55.55388 + ], + [ + 37.707135, + 55.55379 + ], + [ + 37.706976, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706976, + 55.55388 + ], + [ + 37.706976, + 55.55397 + ], + [ + 37.707135, + 55.55397 + ], + [ + 37.707135, + 55.55388 + ], + [ + 37.706976, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706976, + 55.55397 + ], + [ + 37.706976, + 55.55406 + ], + [ + 37.707135, + 55.55406 + ], + [ + 37.707135, + 55.55397 + ], + [ + 37.706976, + 55.55397 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706976, + 55.55406 + ], + [ + 37.706976, + 55.55415 + ], + [ + 37.707135, + 55.55415 + ], + [ + 37.707135, + 55.55406 + ], + [ + 37.706976, + 55.55406 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706976, + 55.55415 + ], + [ + 37.706976, + 55.55424 + ], + [ + 37.707135, + 55.55424 + ], + [ + 37.707135, + 55.55415 + ], + [ + 37.706976, + 55.55415 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706976, + 55.55424 + ], + [ + 37.706976, + 55.55433 + ], + [ + 37.707135, + 55.55433 + ], + [ + 37.707135, + 55.55424 + ], + [ + 37.706976, + 55.55424 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706976, + 55.55433 + ], + [ + 37.706976, + 55.55442 + ], + [ + 37.707135, + 55.55442 + ], + [ + 37.707135, + 55.55433 + ], + [ + 37.706976, + 55.55433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706976, + 55.55442 + ], + [ + 37.706976, + 55.55451 + ], + [ + 37.707135, + 55.55451 + ], + [ + 37.707135, + 55.55442 + ], + [ + 37.706976, + 55.55442 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706976, + 55.55451 + ], + [ + 37.706976, + 55.5546 + ], + [ + 37.707135, + 55.5546 + ], + [ + 37.707135, + 55.55451 + ], + [ + 37.706976, + 55.55451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706976, + 55.5546 + ], + [ + 37.706976, + 55.55469 + ], + [ + 37.707135, + 55.55469 + ], + [ + 37.707135, + 55.5546 + ], + [ + 37.706976, + 55.5546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706976, + 55.55469 + ], + [ + 37.706976, + 55.55478 + ], + [ + 37.707135, + 55.55478 + ], + [ + 37.707135, + 55.55469 + ], + [ + 37.706976, + 55.55469 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706976, + 55.55478 + ], + [ + 37.706976, + 55.554869 + ], + [ + 37.707135, + 55.554869 + ], + [ + 37.707135, + 55.55478 + ], + [ + 37.706976, + 55.55478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706976, + 55.554869 + ], + [ + 37.706976, + 55.554959 + ], + [ + 37.707135, + 55.554959 + ], + [ + 37.707135, + 55.554869 + ], + [ + 37.706976, + 55.554869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706976, + 55.554959 + ], + [ + 37.706976, + 55.555049 + ], + [ + 37.707135, + 55.555049 + ], + [ + 37.707135, + 55.554959 + ], + [ + 37.706976, + 55.554959 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706976, + 55.555049 + ], + [ + 37.706976, + 55.555139 + ], + [ + 37.707135, + 55.555139 + ], + [ + 37.707135, + 55.555049 + ], + [ + 37.706976, + 55.555049 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706976, + 55.555139 + ], + [ + 37.706976, + 55.555229 + ], + [ + 37.707135, + 55.555229 + ], + [ + 37.707135, + 55.555139 + ], + [ + 37.706976, + 55.555139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706976, + 55.555229 + ], + [ + 37.706976, + 55.555319 + ], + [ + 37.707135, + 55.555319 + ], + [ + 37.707135, + 55.555229 + ], + [ + 37.706976, + 55.555229 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706976, + 55.555319 + ], + [ + 37.706976, + 55.555409 + ], + [ + 37.707135, + 55.555409 + ], + [ + 37.707135, + 55.555319 + ], + [ + 37.706976, + 55.555319 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706976, + 55.555409 + ], + [ + 37.706976, + 55.555499 + ], + [ + 37.707135, + 55.555499 + ], + [ + 37.707135, + 55.555409 + ], + [ + 37.706976, + 55.555409 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706976, + 55.555499 + ], + [ + 37.706976, + 55.555589 + ], + [ + 37.707135, + 55.555589 + ], + [ + 37.707135, + 55.555499 + ], + [ + 37.706976, + 55.555499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706976, + 55.555589 + ], + [ + 37.706976, + 55.555679 + ], + [ + 37.707135, + 55.555679 + ], + [ + 37.707135, + 55.555589 + ], + [ + 37.706976, + 55.555589 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.706976, + 55.555679 + ], + [ + 37.706976, + 55.555769 + ], + [ + 37.707135, + 55.555769 + ], + [ + 37.707135, + 55.555679 + ], + [ + 37.706976, + 55.555679 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707135, + 55.552261 + ], + [ + 37.707135, + 55.552351 + ], + [ + 37.707294, + 55.552351 + ], + [ + 37.707294, + 55.552261 + ], + [ + 37.707135, + 55.552261 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707135, + 55.552351 + ], + [ + 37.707135, + 55.552441 + ], + [ + 37.707294, + 55.552441 + ], + [ + 37.707294, + 55.552351 + ], + [ + 37.707135, + 55.552351 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707135, + 55.552441 + ], + [ + 37.707135, + 55.552531 + ], + [ + 37.707294, + 55.552531 + ], + [ + 37.707294, + 55.552441 + ], + [ + 37.707135, + 55.552441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707135, + 55.552531 + ], + [ + 37.707135, + 55.552621 + ], + [ + 37.707294, + 55.552621 + ], + [ + 37.707294, + 55.552531 + ], + [ + 37.707135, + 55.552531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707135, + 55.552621 + ], + [ + 37.707135, + 55.552711 + ], + [ + 37.707294, + 55.552711 + ], + [ + 37.707294, + 55.552621 + ], + [ + 37.707135, + 55.552621 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707135, + 55.552711 + ], + [ + 37.707135, + 55.552801 + ], + [ + 37.707294, + 55.552801 + ], + [ + 37.707294, + 55.552711 + ], + [ + 37.707135, + 55.552711 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707135, + 55.552801 + ], + [ + 37.707135, + 55.552891 + ], + [ + 37.707294, + 55.552891 + ], + [ + 37.707294, + 55.552801 + ], + [ + 37.707135, + 55.552801 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707135, + 55.552891 + ], + [ + 37.707135, + 55.552981 + ], + [ + 37.707294, + 55.552981 + ], + [ + 37.707294, + 55.552891 + ], + [ + 37.707135, + 55.552891 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707135, + 55.552981 + ], + [ + 37.707135, + 55.553071 + ], + [ + 37.707294, + 55.553071 + ], + [ + 37.707294, + 55.552981 + ], + [ + 37.707135, + 55.552981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707135, + 55.553071 + ], + [ + 37.707135, + 55.553161 + ], + [ + 37.707294, + 55.553161 + ], + [ + 37.707294, + 55.553071 + ], + [ + 37.707135, + 55.553071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707135, + 55.553161 + ], + [ + 37.707135, + 55.553251 + ], + [ + 37.707294, + 55.553251 + ], + [ + 37.707294, + 55.553161 + ], + [ + 37.707135, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707135, + 55.553251 + ], + [ + 37.707135, + 55.553341 + ], + [ + 37.707294, + 55.553341 + ], + [ + 37.707294, + 55.553251 + ], + [ + 37.707135, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707135, + 55.553341 + ], + [ + 37.707135, + 55.553431 + ], + [ + 37.707294, + 55.553431 + ], + [ + 37.707294, + 55.553341 + ], + [ + 37.707135, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707135, + 55.553431 + ], + [ + 37.707135, + 55.55352 + ], + [ + 37.707294, + 55.55352 + ], + [ + 37.707294, + 55.553431 + ], + [ + 37.707135, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707135, + 55.55352 + ], + [ + 37.707135, + 55.55361 + ], + [ + 37.707294, + 55.55361 + ], + [ + 37.707294, + 55.55352 + ], + [ + 37.707135, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707135, + 55.55361 + ], + [ + 37.707135, + 55.5537 + ], + [ + 37.707294, + 55.5537 + ], + [ + 37.707294, + 55.55361 + ], + [ + 37.707135, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707135, + 55.5537 + ], + [ + 37.707135, + 55.55379 + ], + [ + 37.707294, + 55.55379 + ], + [ + 37.707294, + 55.5537 + ], + [ + 37.707135, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707135, + 55.55379 + ], + [ + 37.707135, + 55.55388 + ], + [ + 37.707294, + 55.55388 + ], + [ + 37.707294, + 55.55379 + ], + [ + 37.707135, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707135, + 55.55388 + ], + [ + 37.707135, + 55.55397 + ], + [ + 37.707294, + 55.55397 + ], + [ + 37.707294, + 55.55388 + ], + [ + 37.707135, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707135, + 55.55397 + ], + [ + 37.707135, + 55.55406 + ], + [ + 37.707294, + 55.55406 + ], + [ + 37.707294, + 55.55397 + ], + [ + 37.707135, + 55.55397 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707135, + 55.55406 + ], + [ + 37.707135, + 55.55415 + ], + [ + 37.707294, + 55.55415 + ], + [ + 37.707294, + 55.55406 + ], + [ + 37.707135, + 55.55406 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707135, + 55.55415 + ], + [ + 37.707135, + 55.55424 + ], + [ + 37.707294, + 55.55424 + ], + [ + 37.707294, + 55.55415 + ], + [ + 37.707135, + 55.55415 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707135, + 55.55424 + ], + [ + 37.707135, + 55.55433 + ], + [ + 37.707294, + 55.55433 + ], + [ + 37.707294, + 55.55424 + ], + [ + 37.707135, + 55.55424 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707135, + 55.55433 + ], + [ + 37.707135, + 55.55442 + ], + [ + 37.707294, + 55.55442 + ], + [ + 37.707294, + 55.55433 + ], + [ + 37.707135, + 55.55433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707135, + 55.55442 + ], + [ + 37.707135, + 55.55451 + ], + [ + 37.707294, + 55.55451 + ], + [ + 37.707294, + 55.55442 + ], + [ + 37.707135, + 55.55442 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707135, + 55.55451 + ], + [ + 37.707135, + 55.5546 + ], + [ + 37.707294, + 55.5546 + ], + [ + 37.707294, + 55.55451 + ], + [ + 37.707135, + 55.55451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707135, + 55.5546 + ], + [ + 37.707135, + 55.55469 + ], + [ + 37.707294, + 55.55469 + ], + [ + 37.707294, + 55.5546 + ], + [ + 37.707135, + 55.5546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707135, + 55.55469 + ], + [ + 37.707135, + 55.55478 + ], + [ + 37.707294, + 55.55478 + ], + [ + 37.707294, + 55.55469 + ], + [ + 37.707135, + 55.55469 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707135, + 55.55478 + ], + [ + 37.707135, + 55.554869 + ], + [ + 37.707294, + 55.554869 + ], + [ + 37.707294, + 55.55478 + ], + [ + 37.707135, + 55.55478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707135, + 55.554869 + ], + [ + 37.707135, + 55.554959 + ], + [ + 37.707294, + 55.554959 + ], + [ + 37.707294, + 55.554869 + ], + [ + 37.707135, + 55.554869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707135, + 55.554959 + ], + [ + 37.707135, + 55.555049 + ], + [ + 37.707294, + 55.555049 + ], + [ + 37.707294, + 55.554959 + ], + [ + 37.707135, + 55.554959 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707135, + 55.555049 + ], + [ + 37.707135, + 55.555139 + ], + [ + 37.707294, + 55.555139 + ], + [ + 37.707294, + 55.555049 + ], + [ + 37.707135, + 55.555049 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707135, + 55.555139 + ], + [ + 37.707135, + 55.555229 + ], + [ + 37.707294, + 55.555229 + ], + [ + 37.707294, + 55.555139 + ], + [ + 37.707135, + 55.555139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707135, + 55.555229 + ], + [ + 37.707135, + 55.555319 + ], + [ + 37.707294, + 55.555319 + ], + [ + 37.707294, + 55.555229 + ], + [ + 37.707135, + 55.555229 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707135, + 55.555319 + ], + [ + 37.707135, + 55.555409 + ], + [ + 37.707294, + 55.555409 + ], + [ + 37.707294, + 55.555319 + ], + [ + 37.707135, + 55.555319 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707135, + 55.555409 + ], + [ + 37.707135, + 55.555499 + ], + [ + 37.707294, + 55.555499 + ], + [ + 37.707294, + 55.555409 + ], + [ + 37.707135, + 55.555409 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707135, + 55.555499 + ], + [ + 37.707135, + 55.555589 + ], + [ + 37.707294, + 55.555589 + ], + [ + 37.707294, + 55.555499 + ], + [ + 37.707135, + 55.555499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707135, + 55.555589 + ], + [ + 37.707135, + 55.555679 + ], + [ + 37.707294, + 55.555679 + ], + [ + 37.707294, + 55.555589 + ], + [ + 37.707135, + 55.555589 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707135, + 55.555679 + ], + [ + 37.707135, + 55.555769 + ], + [ + 37.707294, + 55.555769 + ], + [ + 37.707294, + 55.555679 + ], + [ + 37.707135, + 55.555679 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707294, + 55.552441 + ], + [ + 37.707294, + 55.552531 + ], + [ + 37.707453, + 55.552531 + ], + [ + 37.707453, + 55.552441 + ], + [ + 37.707294, + 55.552441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707294, + 55.552531 + ], + [ + 37.707294, + 55.552621 + ], + [ + 37.707453, + 55.552621 + ], + [ + 37.707453, + 55.552531 + ], + [ + 37.707294, + 55.552531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707294, + 55.552621 + ], + [ + 37.707294, + 55.552711 + ], + [ + 37.707453, + 55.552711 + ], + [ + 37.707453, + 55.552621 + ], + [ + 37.707294, + 55.552621 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707294, + 55.552711 + ], + [ + 37.707294, + 55.552801 + ], + [ + 37.707453, + 55.552801 + ], + [ + 37.707453, + 55.552711 + ], + [ + 37.707294, + 55.552711 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707294, + 55.552801 + ], + [ + 37.707294, + 55.552891 + ], + [ + 37.707453, + 55.552891 + ], + [ + 37.707453, + 55.552801 + ], + [ + 37.707294, + 55.552801 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707294, + 55.552891 + ], + [ + 37.707294, + 55.552981 + ], + [ + 37.707453, + 55.552981 + ], + [ + 37.707453, + 55.552891 + ], + [ + 37.707294, + 55.552891 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707294, + 55.552981 + ], + [ + 37.707294, + 55.553071 + ], + [ + 37.707453, + 55.553071 + ], + [ + 37.707453, + 55.552981 + ], + [ + 37.707294, + 55.552981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707294, + 55.553071 + ], + [ + 37.707294, + 55.553161 + ], + [ + 37.707453, + 55.553161 + ], + [ + 37.707453, + 55.553071 + ], + [ + 37.707294, + 55.553071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707294, + 55.553161 + ], + [ + 37.707294, + 55.553251 + ], + [ + 37.707453, + 55.553251 + ], + [ + 37.707453, + 55.553161 + ], + [ + 37.707294, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707294, + 55.553251 + ], + [ + 37.707294, + 55.553341 + ], + [ + 37.707453, + 55.553341 + ], + [ + 37.707453, + 55.553251 + ], + [ + 37.707294, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707294, + 55.553341 + ], + [ + 37.707294, + 55.553431 + ], + [ + 37.707453, + 55.553431 + ], + [ + 37.707453, + 55.553341 + ], + [ + 37.707294, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707294, + 55.553431 + ], + [ + 37.707294, + 55.55352 + ], + [ + 37.707453, + 55.55352 + ], + [ + 37.707453, + 55.553431 + ], + [ + 37.707294, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707294, + 55.55352 + ], + [ + 37.707294, + 55.55361 + ], + [ + 37.707453, + 55.55361 + ], + [ + 37.707453, + 55.55352 + ], + [ + 37.707294, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707294, + 55.55361 + ], + [ + 37.707294, + 55.5537 + ], + [ + 37.707453, + 55.5537 + ], + [ + 37.707453, + 55.55361 + ], + [ + 37.707294, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707294, + 55.5537 + ], + [ + 37.707294, + 55.55379 + ], + [ + 37.707453, + 55.55379 + ], + [ + 37.707453, + 55.5537 + ], + [ + 37.707294, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707294, + 55.55379 + ], + [ + 37.707294, + 55.55388 + ], + [ + 37.707453, + 55.55388 + ], + [ + 37.707453, + 55.55379 + ], + [ + 37.707294, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707294, + 55.55388 + ], + [ + 37.707294, + 55.55397 + ], + [ + 37.707453, + 55.55397 + ], + [ + 37.707453, + 55.55388 + ], + [ + 37.707294, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707294, + 55.55397 + ], + [ + 37.707294, + 55.55406 + ], + [ + 37.707453, + 55.55406 + ], + [ + 37.707453, + 55.55397 + ], + [ + 37.707294, + 55.55397 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707294, + 55.55406 + ], + [ + 37.707294, + 55.55415 + ], + [ + 37.707453, + 55.55415 + ], + [ + 37.707453, + 55.55406 + ], + [ + 37.707294, + 55.55406 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707294, + 55.55415 + ], + [ + 37.707294, + 55.55424 + ], + [ + 37.707453, + 55.55424 + ], + [ + 37.707453, + 55.55415 + ], + [ + 37.707294, + 55.55415 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707294, + 55.55424 + ], + [ + 37.707294, + 55.55433 + ], + [ + 37.707453, + 55.55433 + ], + [ + 37.707453, + 55.55424 + ], + [ + 37.707294, + 55.55424 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707294, + 55.55433 + ], + [ + 37.707294, + 55.55442 + ], + [ + 37.707453, + 55.55442 + ], + [ + 37.707453, + 55.55433 + ], + [ + 37.707294, + 55.55433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707294, + 55.55442 + ], + [ + 37.707294, + 55.55451 + ], + [ + 37.707453, + 55.55451 + ], + [ + 37.707453, + 55.55442 + ], + [ + 37.707294, + 55.55442 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707294, + 55.55451 + ], + [ + 37.707294, + 55.5546 + ], + [ + 37.707453, + 55.5546 + ], + [ + 37.707453, + 55.55451 + ], + [ + 37.707294, + 55.55451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707294, + 55.5546 + ], + [ + 37.707294, + 55.55469 + ], + [ + 37.707453, + 55.55469 + ], + [ + 37.707453, + 55.5546 + ], + [ + 37.707294, + 55.5546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707294, + 55.55469 + ], + [ + 37.707294, + 55.55478 + ], + [ + 37.707453, + 55.55478 + ], + [ + 37.707453, + 55.55469 + ], + [ + 37.707294, + 55.55469 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707294, + 55.55478 + ], + [ + 37.707294, + 55.554869 + ], + [ + 37.707453, + 55.554869 + ], + [ + 37.707453, + 55.55478 + ], + [ + 37.707294, + 55.55478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707294, + 55.554869 + ], + [ + 37.707294, + 55.554959 + ], + [ + 37.707453, + 55.554959 + ], + [ + 37.707453, + 55.554869 + ], + [ + 37.707294, + 55.554869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707294, + 55.554959 + ], + [ + 37.707294, + 55.555049 + ], + [ + 37.707453, + 55.555049 + ], + [ + 37.707453, + 55.554959 + ], + [ + 37.707294, + 55.554959 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707294, + 55.555049 + ], + [ + 37.707294, + 55.555139 + ], + [ + 37.707453, + 55.555139 + ], + [ + 37.707453, + 55.555049 + ], + [ + 37.707294, + 55.555049 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707294, + 55.555139 + ], + [ + 37.707294, + 55.555229 + ], + [ + 37.707453, + 55.555229 + ], + [ + 37.707453, + 55.555139 + ], + [ + 37.707294, + 55.555139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707294, + 55.555229 + ], + [ + 37.707294, + 55.555319 + ], + [ + 37.707453, + 55.555319 + ], + [ + 37.707453, + 55.555229 + ], + [ + 37.707294, + 55.555229 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707294, + 55.555319 + ], + [ + 37.707294, + 55.555409 + ], + [ + 37.707453, + 55.555409 + ], + [ + 37.707453, + 55.555319 + ], + [ + 37.707294, + 55.555319 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707294, + 55.555409 + ], + [ + 37.707294, + 55.555499 + ], + [ + 37.707453, + 55.555499 + ], + [ + 37.707453, + 55.555409 + ], + [ + 37.707294, + 55.555409 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707294, + 55.555499 + ], + [ + 37.707294, + 55.555589 + ], + [ + 37.707453, + 55.555589 + ], + [ + 37.707453, + 55.555499 + ], + [ + 37.707294, + 55.555499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707294, + 55.555589 + ], + [ + 37.707294, + 55.555679 + ], + [ + 37.707453, + 55.555679 + ], + [ + 37.707453, + 55.555589 + ], + [ + 37.707294, + 55.555589 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707294, + 55.555679 + ], + [ + 37.707294, + 55.555769 + ], + [ + 37.707453, + 55.555769 + ], + [ + 37.707453, + 55.555679 + ], + [ + 37.707294, + 55.555679 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707294, + 55.555769 + ], + [ + 37.707294, + 55.555859 + ], + [ + 37.707453, + 55.555859 + ], + [ + 37.707453, + 55.555769 + ], + [ + 37.707294, + 55.555769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707453, + 55.552621 + ], + [ + 37.707453, + 55.552711 + ], + [ + 37.707612, + 55.552711 + ], + [ + 37.707612, + 55.552621 + ], + [ + 37.707453, + 55.552621 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707453, + 55.552711 + ], + [ + 37.707453, + 55.552801 + ], + [ + 37.707612, + 55.552801 + ], + [ + 37.707612, + 55.552711 + ], + [ + 37.707453, + 55.552711 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707453, + 55.552801 + ], + [ + 37.707453, + 55.552891 + ], + [ + 37.707612, + 55.552891 + ], + [ + 37.707612, + 55.552801 + ], + [ + 37.707453, + 55.552801 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707453, + 55.552891 + ], + [ + 37.707453, + 55.552981 + ], + [ + 37.707612, + 55.552981 + ], + [ + 37.707612, + 55.552891 + ], + [ + 37.707453, + 55.552891 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707453, + 55.552981 + ], + [ + 37.707453, + 55.553071 + ], + [ + 37.707612, + 55.553071 + ], + [ + 37.707612, + 55.552981 + ], + [ + 37.707453, + 55.552981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707453, + 55.553071 + ], + [ + 37.707453, + 55.553161 + ], + [ + 37.707612, + 55.553161 + ], + [ + 37.707612, + 55.553071 + ], + [ + 37.707453, + 55.553071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707453, + 55.553161 + ], + [ + 37.707453, + 55.553251 + ], + [ + 37.707612, + 55.553251 + ], + [ + 37.707612, + 55.553161 + ], + [ + 37.707453, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707453, + 55.553251 + ], + [ + 37.707453, + 55.553341 + ], + [ + 37.707612, + 55.553341 + ], + [ + 37.707612, + 55.553251 + ], + [ + 37.707453, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707453, + 55.553341 + ], + [ + 37.707453, + 55.553431 + ], + [ + 37.707612, + 55.553431 + ], + [ + 37.707612, + 55.553341 + ], + [ + 37.707453, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707453, + 55.553431 + ], + [ + 37.707453, + 55.55352 + ], + [ + 37.707612, + 55.55352 + ], + [ + 37.707612, + 55.553431 + ], + [ + 37.707453, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707453, + 55.55352 + ], + [ + 37.707453, + 55.55361 + ], + [ + 37.707612, + 55.55361 + ], + [ + 37.707612, + 55.55352 + ], + [ + 37.707453, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707453, + 55.55361 + ], + [ + 37.707453, + 55.5537 + ], + [ + 37.707612, + 55.5537 + ], + [ + 37.707612, + 55.55361 + ], + [ + 37.707453, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707453, + 55.5537 + ], + [ + 37.707453, + 55.55379 + ], + [ + 37.707612, + 55.55379 + ], + [ + 37.707612, + 55.5537 + ], + [ + 37.707453, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707453, + 55.55379 + ], + [ + 37.707453, + 55.55388 + ], + [ + 37.707612, + 55.55388 + ], + [ + 37.707612, + 55.55379 + ], + [ + 37.707453, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707453, + 55.55388 + ], + [ + 37.707453, + 55.55397 + ], + [ + 37.707612, + 55.55397 + ], + [ + 37.707612, + 55.55388 + ], + [ + 37.707453, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707453, + 55.55397 + ], + [ + 37.707453, + 55.55406 + ], + [ + 37.707612, + 55.55406 + ], + [ + 37.707612, + 55.55397 + ], + [ + 37.707453, + 55.55397 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707453, + 55.55406 + ], + [ + 37.707453, + 55.55415 + ], + [ + 37.707612, + 55.55415 + ], + [ + 37.707612, + 55.55406 + ], + [ + 37.707453, + 55.55406 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707453, + 55.55415 + ], + [ + 37.707453, + 55.55424 + ], + [ + 37.707612, + 55.55424 + ], + [ + 37.707612, + 55.55415 + ], + [ + 37.707453, + 55.55415 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707453, + 55.55424 + ], + [ + 37.707453, + 55.55433 + ], + [ + 37.707612, + 55.55433 + ], + [ + 37.707612, + 55.55424 + ], + [ + 37.707453, + 55.55424 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707453, + 55.55433 + ], + [ + 37.707453, + 55.55442 + ], + [ + 37.707612, + 55.55442 + ], + [ + 37.707612, + 55.55433 + ], + [ + 37.707453, + 55.55433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707453, + 55.55442 + ], + [ + 37.707453, + 55.55451 + ], + [ + 37.707612, + 55.55451 + ], + [ + 37.707612, + 55.55442 + ], + [ + 37.707453, + 55.55442 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707453, + 55.55451 + ], + [ + 37.707453, + 55.5546 + ], + [ + 37.707612, + 55.5546 + ], + [ + 37.707612, + 55.55451 + ], + [ + 37.707453, + 55.55451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707453, + 55.5546 + ], + [ + 37.707453, + 55.55469 + ], + [ + 37.707612, + 55.55469 + ], + [ + 37.707612, + 55.5546 + ], + [ + 37.707453, + 55.5546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707453, + 55.55469 + ], + [ + 37.707453, + 55.55478 + ], + [ + 37.707612, + 55.55478 + ], + [ + 37.707612, + 55.55469 + ], + [ + 37.707453, + 55.55469 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707453, + 55.55478 + ], + [ + 37.707453, + 55.554869 + ], + [ + 37.707612, + 55.554869 + ], + [ + 37.707612, + 55.55478 + ], + [ + 37.707453, + 55.55478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707453, + 55.554869 + ], + [ + 37.707453, + 55.554959 + ], + [ + 37.707612, + 55.554959 + ], + [ + 37.707612, + 55.554869 + ], + [ + 37.707453, + 55.554869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707453, + 55.554959 + ], + [ + 37.707453, + 55.555049 + ], + [ + 37.707612, + 55.555049 + ], + [ + 37.707612, + 55.554959 + ], + [ + 37.707453, + 55.554959 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707453, + 55.555049 + ], + [ + 37.707453, + 55.555139 + ], + [ + 37.707612, + 55.555139 + ], + [ + 37.707612, + 55.555049 + ], + [ + 37.707453, + 55.555049 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707453, + 55.555139 + ], + [ + 37.707453, + 55.555229 + ], + [ + 37.707612, + 55.555229 + ], + [ + 37.707612, + 55.555139 + ], + [ + 37.707453, + 55.555139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707453, + 55.555229 + ], + [ + 37.707453, + 55.555319 + ], + [ + 37.707612, + 55.555319 + ], + [ + 37.707612, + 55.555229 + ], + [ + 37.707453, + 55.555229 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707453, + 55.555319 + ], + [ + 37.707453, + 55.555409 + ], + [ + 37.707612, + 55.555409 + ], + [ + 37.707612, + 55.555319 + ], + [ + 37.707453, + 55.555319 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707453, + 55.555409 + ], + [ + 37.707453, + 55.555499 + ], + [ + 37.707612, + 55.555499 + ], + [ + 37.707612, + 55.555409 + ], + [ + 37.707453, + 55.555409 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707453, + 55.555499 + ], + [ + 37.707453, + 55.555589 + ], + [ + 37.707612, + 55.555589 + ], + [ + 37.707612, + 55.555499 + ], + [ + 37.707453, + 55.555499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707453, + 55.555589 + ], + [ + 37.707453, + 55.555679 + ], + [ + 37.707612, + 55.555679 + ], + [ + 37.707612, + 55.555589 + ], + [ + 37.707453, + 55.555589 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707453, + 55.555679 + ], + [ + 37.707453, + 55.555769 + ], + [ + 37.707612, + 55.555769 + ], + [ + 37.707612, + 55.555679 + ], + [ + 37.707453, + 55.555679 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707453, + 55.555769 + ], + [ + 37.707453, + 55.555859 + ], + [ + 37.707612, + 55.555859 + ], + [ + 37.707612, + 55.555769 + ], + [ + 37.707453, + 55.555769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707612, + 55.552801 + ], + [ + 37.707612, + 55.552891 + ], + [ + 37.707771, + 55.552891 + ], + [ + 37.707771, + 55.552801 + ], + [ + 37.707612, + 55.552801 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707612, + 55.552891 + ], + [ + 37.707612, + 55.552981 + ], + [ + 37.707771, + 55.552981 + ], + [ + 37.707771, + 55.552891 + ], + [ + 37.707612, + 55.552891 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707612, + 55.552981 + ], + [ + 37.707612, + 55.553071 + ], + [ + 37.707771, + 55.553071 + ], + [ + 37.707771, + 55.552981 + ], + [ + 37.707612, + 55.552981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707612, + 55.553071 + ], + [ + 37.707612, + 55.553161 + ], + [ + 37.707771, + 55.553161 + ], + [ + 37.707771, + 55.553071 + ], + [ + 37.707612, + 55.553071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707612, + 55.553161 + ], + [ + 37.707612, + 55.553251 + ], + [ + 37.707771, + 55.553251 + ], + [ + 37.707771, + 55.553161 + ], + [ + 37.707612, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707612, + 55.553251 + ], + [ + 37.707612, + 55.553341 + ], + [ + 37.707771, + 55.553341 + ], + [ + 37.707771, + 55.553251 + ], + [ + 37.707612, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707612, + 55.553341 + ], + [ + 37.707612, + 55.553431 + ], + [ + 37.707771, + 55.553431 + ], + [ + 37.707771, + 55.553341 + ], + [ + 37.707612, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707612, + 55.553431 + ], + [ + 37.707612, + 55.55352 + ], + [ + 37.707771, + 55.55352 + ], + [ + 37.707771, + 55.553431 + ], + [ + 37.707612, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707612, + 55.55352 + ], + [ + 37.707612, + 55.55361 + ], + [ + 37.707771, + 55.55361 + ], + [ + 37.707771, + 55.55352 + ], + [ + 37.707612, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707612, + 55.55361 + ], + [ + 37.707612, + 55.5537 + ], + [ + 37.707771, + 55.5537 + ], + [ + 37.707771, + 55.55361 + ], + [ + 37.707612, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707612, + 55.5537 + ], + [ + 37.707612, + 55.55379 + ], + [ + 37.707771, + 55.55379 + ], + [ + 37.707771, + 55.5537 + ], + [ + 37.707612, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707612, + 55.55379 + ], + [ + 37.707612, + 55.55388 + ], + [ + 37.707771, + 55.55388 + ], + [ + 37.707771, + 55.55379 + ], + [ + 37.707612, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707612, + 55.55388 + ], + [ + 37.707612, + 55.55397 + ], + [ + 37.707771, + 55.55397 + ], + [ + 37.707771, + 55.55388 + ], + [ + 37.707612, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707612, + 55.55397 + ], + [ + 37.707612, + 55.55406 + ], + [ + 37.707771, + 55.55406 + ], + [ + 37.707771, + 55.55397 + ], + [ + 37.707612, + 55.55397 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707612, + 55.55406 + ], + [ + 37.707612, + 55.55415 + ], + [ + 37.707771, + 55.55415 + ], + [ + 37.707771, + 55.55406 + ], + [ + 37.707612, + 55.55406 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707612, + 55.55415 + ], + [ + 37.707612, + 55.55424 + ], + [ + 37.707771, + 55.55424 + ], + [ + 37.707771, + 55.55415 + ], + [ + 37.707612, + 55.55415 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707612, + 55.55424 + ], + [ + 37.707612, + 55.55433 + ], + [ + 37.707771, + 55.55433 + ], + [ + 37.707771, + 55.55424 + ], + [ + 37.707612, + 55.55424 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707612, + 55.55433 + ], + [ + 37.707612, + 55.55442 + ], + [ + 37.707771, + 55.55442 + ], + [ + 37.707771, + 55.55433 + ], + [ + 37.707612, + 55.55433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707612, + 55.55442 + ], + [ + 37.707612, + 55.55451 + ], + [ + 37.707771, + 55.55451 + ], + [ + 37.707771, + 55.55442 + ], + [ + 37.707612, + 55.55442 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707612, + 55.55451 + ], + [ + 37.707612, + 55.5546 + ], + [ + 37.707771, + 55.5546 + ], + [ + 37.707771, + 55.55451 + ], + [ + 37.707612, + 55.55451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707612, + 55.5546 + ], + [ + 37.707612, + 55.55469 + ], + [ + 37.707771, + 55.55469 + ], + [ + 37.707771, + 55.5546 + ], + [ + 37.707612, + 55.5546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707612, + 55.55469 + ], + [ + 37.707612, + 55.55478 + ], + [ + 37.707771, + 55.55478 + ], + [ + 37.707771, + 55.55469 + ], + [ + 37.707612, + 55.55469 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707612, + 55.55478 + ], + [ + 37.707612, + 55.554869 + ], + [ + 37.707771, + 55.554869 + ], + [ + 37.707771, + 55.55478 + ], + [ + 37.707612, + 55.55478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707612, + 55.554869 + ], + [ + 37.707612, + 55.554959 + ], + [ + 37.707771, + 55.554959 + ], + [ + 37.707771, + 55.554869 + ], + [ + 37.707612, + 55.554869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707612, + 55.554959 + ], + [ + 37.707612, + 55.555049 + ], + [ + 37.707771, + 55.555049 + ], + [ + 37.707771, + 55.554959 + ], + [ + 37.707612, + 55.554959 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707612, + 55.555049 + ], + [ + 37.707612, + 55.555139 + ], + [ + 37.707771, + 55.555139 + ], + [ + 37.707771, + 55.555049 + ], + [ + 37.707612, + 55.555049 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707612, + 55.555139 + ], + [ + 37.707612, + 55.555229 + ], + [ + 37.707771, + 55.555229 + ], + [ + 37.707771, + 55.555139 + ], + [ + 37.707612, + 55.555139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707612, + 55.555229 + ], + [ + 37.707612, + 55.555319 + ], + [ + 37.707771, + 55.555319 + ], + [ + 37.707771, + 55.555229 + ], + [ + 37.707612, + 55.555229 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707612, + 55.555319 + ], + [ + 37.707612, + 55.555409 + ], + [ + 37.707771, + 55.555409 + ], + [ + 37.707771, + 55.555319 + ], + [ + 37.707612, + 55.555319 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707612, + 55.555409 + ], + [ + 37.707612, + 55.555499 + ], + [ + 37.707771, + 55.555499 + ], + [ + 37.707771, + 55.555409 + ], + [ + 37.707612, + 55.555409 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707612, + 55.555499 + ], + [ + 37.707612, + 55.555589 + ], + [ + 37.707771, + 55.555589 + ], + [ + 37.707771, + 55.555499 + ], + [ + 37.707612, + 55.555499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707612, + 55.555589 + ], + [ + 37.707612, + 55.555679 + ], + [ + 37.707771, + 55.555679 + ], + [ + 37.707771, + 55.555589 + ], + [ + 37.707612, + 55.555589 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707612, + 55.555679 + ], + [ + 37.707612, + 55.555769 + ], + [ + 37.707771, + 55.555769 + ], + [ + 37.707771, + 55.555679 + ], + [ + 37.707612, + 55.555679 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707612, + 55.555769 + ], + [ + 37.707612, + 55.555859 + ], + [ + 37.707771, + 55.555859 + ], + [ + 37.707771, + 55.555769 + ], + [ + 37.707612, + 55.555769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707612, + 55.555859 + ], + [ + 37.707612, + 55.555949 + ], + [ + 37.707771, + 55.555949 + ], + [ + 37.707771, + 55.555859 + ], + [ + 37.707612, + 55.555859 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707771, + 55.552981 + ], + [ + 37.707771, + 55.553071 + ], + [ + 37.70793, + 55.553071 + ], + [ + 37.70793, + 55.552981 + ], + [ + 37.707771, + 55.552981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707771, + 55.553071 + ], + [ + 37.707771, + 55.553161 + ], + [ + 37.70793, + 55.553161 + ], + [ + 37.70793, + 55.553071 + ], + [ + 37.707771, + 55.553071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707771, + 55.553161 + ], + [ + 37.707771, + 55.553251 + ], + [ + 37.70793, + 55.553251 + ], + [ + 37.70793, + 55.553161 + ], + [ + 37.707771, + 55.553161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707771, + 55.553251 + ], + [ + 37.707771, + 55.553341 + ], + [ + 37.70793, + 55.553341 + ], + [ + 37.70793, + 55.553251 + ], + [ + 37.707771, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707771, + 55.553341 + ], + [ + 37.707771, + 55.553431 + ], + [ + 37.70793, + 55.553431 + ], + [ + 37.70793, + 55.553341 + ], + [ + 37.707771, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707771, + 55.553431 + ], + [ + 37.707771, + 55.55352 + ], + [ + 37.70793, + 55.55352 + ], + [ + 37.70793, + 55.553431 + ], + [ + 37.707771, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707771, + 55.55352 + ], + [ + 37.707771, + 55.55361 + ], + [ + 37.70793, + 55.55361 + ], + [ + 37.70793, + 55.55352 + ], + [ + 37.707771, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707771, + 55.55361 + ], + [ + 37.707771, + 55.5537 + ], + [ + 37.70793, + 55.5537 + ], + [ + 37.70793, + 55.55361 + ], + [ + 37.707771, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707771, + 55.5537 + ], + [ + 37.707771, + 55.55379 + ], + [ + 37.70793, + 55.55379 + ], + [ + 37.70793, + 55.5537 + ], + [ + 37.707771, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707771, + 55.55379 + ], + [ + 37.707771, + 55.55388 + ], + [ + 37.70793, + 55.55388 + ], + [ + 37.70793, + 55.55379 + ], + [ + 37.707771, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707771, + 55.55388 + ], + [ + 37.707771, + 55.55397 + ], + [ + 37.70793, + 55.55397 + ], + [ + 37.70793, + 55.55388 + ], + [ + 37.707771, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707771, + 55.55397 + ], + [ + 37.707771, + 55.55406 + ], + [ + 37.70793, + 55.55406 + ], + [ + 37.70793, + 55.55397 + ], + [ + 37.707771, + 55.55397 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707771, + 55.55406 + ], + [ + 37.707771, + 55.55415 + ], + [ + 37.70793, + 55.55415 + ], + [ + 37.70793, + 55.55406 + ], + [ + 37.707771, + 55.55406 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707771, + 55.55415 + ], + [ + 37.707771, + 55.55424 + ], + [ + 37.70793, + 55.55424 + ], + [ + 37.70793, + 55.55415 + ], + [ + 37.707771, + 55.55415 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707771, + 55.55424 + ], + [ + 37.707771, + 55.55433 + ], + [ + 37.70793, + 55.55433 + ], + [ + 37.70793, + 55.55424 + ], + [ + 37.707771, + 55.55424 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707771, + 55.55433 + ], + [ + 37.707771, + 55.55442 + ], + [ + 37.70793, + 55.55442 + ], + [ + 37.70793, + 55.55433 + ], + [ + 37.707771, + 55.55433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707771, + 55.55442 + ], + [ + 37.707771, + 55.55451 + ], + [ + 37.70793, + 55.55451 + ], + [ + 37.70793, + 55.55442 + ], + [ + 37.707771, + 55.55442 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707771, + 55.55451 + ], + [ + 37.707771, + 55.5546 + ], + [ + 37.70793, + 55.5546 + ], + [ + 37.70793, + 55.55451 + ], + [ + 37.707771, + 55.55451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707771, + 55.5546 + ], + [ + 37.707771, + 55.55469 + ], + [ + 37.70793, + 55.55469 + ], + [ + 37.70793, + 55.5546 + ], + [ + 37.707771, + 55.5546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707771, + 55.55469 + ], + [ + 37.707771, + 55.55478 + ], + [ + 37.70793, + 55.55478 + ], + [ + 37.70793, + 55.55469 + ], + [ + 37.707771, + 55.55469 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707771, + 55.55478 + ], + [ + 37.707771, + 55.554869 + ], + [ + 37.70793, + 55.554869 + ], + [ + 37.70793, + 55.55478 + ], + [ + 37.707771, + 55.55478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707771, + 55.554869 + ], + [ + 37.707771, + 55.554959 + ], + [ + 37.70793, + 55.554959 + ], + [ + 37.70793, + 55.554869 + ], + [ + 37.707771, + 55.554869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707771, + 55.554959 + ], + [ + 37.707771, + 55.555049 + ], + [ + 37.70793, + 55.555049 + ], + [ + 37.70793, + 55.554959 + ], + [ + 37.707771, + 55.554959 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707771, + 55.555049 + ], + [ + 37.707771, + 55.555139 + ], + [ + 37.70793, + 55.555139 + ], + [ + 37.70793, + 55.555049 + ], + [ + 37.707771, + 55.555049 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707771, + 55.555139 + ], + [ + 37.707771, + 55.555229 + ], + [ + 37.70793, + 55.555229 + ], + [ + 37.70793, + 55.555139 + ], + [ + 37.707771, + 55.555139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707771, + 55.555229 + ], + [ + 37.707771, + 55.555319 + ], + [ + 37.70793, + 55.555319 + ], + [ + 37.70793, + 55.555229 + ], + [ + 37.707771, + 55.555229 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707771, + 55.555319 + ], + [ + 37.707771, + 55.555409 + ], + [ + 37.70793, + 55.555409 + ], + [ + 37.70793, + 55.555319 + ], + [ + 37.707771, + 55.555319 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707771, + 55.555409 + ], + [ + 37.707771, + 55.555499 + ], + [ + 37.70793, + 55.555499 + ], + [ + 37.70793, + 55.555409 + ], + [ + 37.707771, + 55.555409 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707771, + 55.555499 + ], + [ + 37.707771, + 55.555589 + ], + [ + 37.70793, + 55.555589 + ], + [ + 37.70793, + 55.555499 + ], + [ + 37.707771, + 55.555499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707771, + 55.555589 + ], + [ + 37.707771, + 55.555679 + ], + [ + 37.70793, + 55.555679 + ], + [ + 37.70793, + 55.555589 + ], + [ + 37.707771, + 55.555589 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707771, + 55.555679 + ], + [ + 37.707771, + 55.555769 + ], + [ + 37.70793, + 55.555769 + ], + [ + 37.70793, + 55.555679 + ], + [ + 37.707771, + 55.555679 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707771, + 55.555769 + ], + [ + 37.707771, + 55.555859 + ], + [ + 37.70793, + 55.555859 + ], + [ + 37.70793, + 55.555769 + ], + [ + 37.707771, + 55.555769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.707771, + 55.555859 + ], + [ + 37.707771, + 55.555949 + ], + [ + 37.70793, + 55.555949 + ], + [ + 37.70793, + 55.555859 + ], + [ + 37.707771, + 55.555859 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70793, + 55.553251 + ], + [ + 37.70793, + 55.553341 + ], + [ + 37.708089, + 55.553341 + ], + [ + 37.708089, + 55.553251 + ], + [ + 37.70793, + 55.553251 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70793, + 55.553341 + ], + [ + 37.70793, + 55.553431 + ], + [ + 37.708089, + 55.553431 + ], + [ + 37.708089, + 55.553341 + ], + [ + 37.70793, + 55.553341 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70793, + 55.553431 + ], + [ + 37.70793, + 55.55352 + ], + [ + 37.708089, + 55.55352 + ], + [ + 37.708089, + 55.553431 + ], + [ + 37.70793, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70793, + 55.55352 + ], + [ + 37.70793, + 55.55361 + ], + [ + 37.708089, + 55.55361 + ], + [ + 37.708089, + 55.55352 + ], + [ + 37.70793, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70793, + 55.55361 + ], + [ + 37.70793, + 55.5537 + ], + [ + 37.708089, + 55.5537 + ], + [ + 37.708089, + 55.55361 + ], + [ + 37.70793, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70793, + 55.5537 + ], + [ + 37.70793, + 55.55379 + ], + [ + 37.708089, + 55.55379 + ], + [ + 37.708089, + 55.5537 + ], + [ + 37.70793, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70793, + 55.55379 + ], + [ + 37.70793, + 55.55388 + ], + [ + 37.708089, + 55.55388 + ], + [ + 37.708089, + 55.55379 + ], + [ + 37.70793, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70793, + 55.55388 + ], + [ + 37.70793, + 55.55397 + ], + [ + 37.708089, + 55.55397 + ], + [ + 37.708089, + 55.55388 + ], + [ + 37.70793, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70793, + 55.55397 + ], + [ + 37.70793, + 55.55406 + ], + [ + 37.708089, + 55.55406 + ], + [ + 37.708089, + 55.55397 + ], + [ + 37.70793, + 55.55397 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70793, + 55.55406 + ], + [ + 37.70793, + 55.55415 + ], + [ + 37.708089, + 55.55415 + ], + [ + 37.708089, + 55.55406 + ], + [ + 37.70793, + 55.55406 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70793, + 55.55415 + ], + [ + 37.70793, + 55.55424 + ], + [ + 37.708089, + 55.55424 + ], + [ + 37.708089, + 55.55415 + ], + [ + 37.70793, + 55.55415 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70793, + 55.55424 + ], + [ + 37.70793, + 55.55433 + ], + [ + 37.708089, + 55.55433 + ], + [ + 37.708089, + 55.55424 + ], + [ + 37.70793, + 55.55424 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70793, + 55.55433 + ], + [ + 37.70793, + 55.55442 + ], + [ + 37.708089, + 55.55442 + ], + [ + 37.708089, + 55.55433 + ], + [ + 37.70793, + 55.55433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70793, + 55.55442 + ], + [ + 37.70793, + 55.55451 + ], + [ + 37.708089, + 55.55451 + ], + [ + 37.708089, + 55.55442 + ], + [ + 37.70793, + 55.55442 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70793, + 55.55451 + ], + [ + 37.70793, + 55.5546 + ], + [ + 37.708089, + 55.5546 + ], + [ + 37.708089, + 55.55451 + ], + [ + 37.70793, + 55.55451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70793, + 55.5546 + ], + [ + 37.70793, + 55.55469 + ], + [ + 37.708089, + 55.55469 + ], + [ + 37.708089, + 55.5546 + ], + [ + 37.70793, + 55.5546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70793, + 55.55469 + ], + [ + 37.70793, + 55.55478 + ], + [ + 37.708089, + 55.55478 + ], + [ + 37.708089, + 55.55469 + ], + [ + 37.70793, + 55.55469 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70793, + 55.55478 + ], + [ + 37.70793, + 55.554869 + ], + [ + 37.708089, + 55.554869 + ], + [ + 37.708089, + 55.55478 + ], + [ + 37.70793, + 55.55478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70793, + 55.554869 + ], + [ + 37.70793, + 55.554959 + ], + [ + 37.708089, + 55.554959 + ], + [ + 37.708089, + 55.554869 + ], + [ + 37.70793, + 55.554869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70793, + 55.554959 + ], + [ + 37.70793, + 55.555049 + ], + [ + 37.708089, + 55.555049 + ], + [ + 37.708089, + 55.554959 + ], + [ + 37.70793, + 55.554959 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70793, + 55.555049 + ], + [ + 37.70793, + 55.555139 + ], + [ + 37.708089, + 55.555139 + ], + [ + 37.708089, + 55.555049 + ], + [ + 37.70793, + 55.555049 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70793, + 55.555139 + ], + [ + 37.70793, + 55.555229 + ], + [ + 37.708089, + 55.555229 + ], + [ + 37.708089, + 55.555139 + ], + [ + 37.70793, + 55.555139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70793, + 55.555229 + ], + [ + 37.70793, + 55.555319 + ], + [ + 37.708089, + 55.555319 + ], + [ + 37.708089, + 55.555229 + ], + [ + 37.70793, + 55.555229 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70793, + 55.555319 + ], + [ + 37.70793, + 55.555409 + ], + [ + 37.708089, + 55.555409 + ], + [ + 37.708089, + 55.555319 + ], + [ + 37.70793, + 55.555319 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70793, + 55.555409 + ], + [ + 37.70793, + 55.555499 + ], + [ + 37.708089, + 55.555499 + ], + [ + 37.708089, + 55.555409 + ], + [ + 37.70793, + 55.555409 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70793, + 55.555499 + ], + [ + 37.70793, + 55.555589 + ], + [ + 37.708089, + 55.555589 + ], + [ + 37.708089, + 55.555499 + ], + [ + 37.70793, + 55.555499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70793, + 55.555589 + ], + [ + 37.70793, + 55.555679 + ], + [ + 37.708089, + 55.555679 + ], + [ + 37.708089, + 55.555589 + ], + [ + 37.70793, + 55.555589 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70793, + 55.555679 + ], + [ + 37.70793, + 55.555769 + ], + [ + 37.708089, + 55.555769 + ], + [ + 37.708089, + 55.555679 + ], + [ + 37.70793, + 55.555679 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70793, + 55.555769 + ], + [ + 37.70793, + 55.555859 + ], + [ + 37.708089, + 55.555859 + ], + [ + 37.708089, + 55.555769 + ], + [ + 37.70793, + 55.555769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70793, + 55.555859 + ], + [ + 37.70793, + 55.555949 + ], + [ + 37.708089, + 55.555949 + ], + [ + 37.708089, + 55.555859 + ], + [ + 37.70793, + 55.555859 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70793, + 55.555949 + ], + [ + 37.70793, + 55.556039 + ], + [ + 37.708089, + 55.556039 + ], + [ + 37.708089, + 55.555949 + ], + [ + 37.70793, + 55.555949 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708089, + 55.553431 + ], + [ + 37.708089, + 55.55352 + ], + [ + 37.708248, + 55.55352 + ], + [ + 37.708248, + 55.553431 + ], + [ + 37.708089, + 55.553431 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708089, + 55.55352 + ], + [ + 37.708089, + 55.55361 + ], + [ + 37.708248, + 55.55361 + ], + [ + 37.708248, + 55.55352 + ], + [ + 37.708089, + 55.55352 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708089, + 55.55361 + ], + [ + 37.708089, + 55.5537 + ], + [ + 37.708248, + 55.5537 + ], + [ + 37.708248, + 55.55361 + ], + [ + 37.708089, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708089, + 55.5537 + ], + [ + 37.708089, + 55.55379 + ], + [ + 37.708248, + 55.55379 + ], + [ + 37.708248, + 55.5537 + ], + [ + 37.708089, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708089, + 55.55379 + ], + [ + 37.708089, + 55.55388 + ], + [ + 37.708248, + 55.55388 + ], + [ + 37.708248, + 55.55379 + ], + [ + 37.708089, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708089, + 55.55388 + ], + [ + 37.708089, + 55.55397 + ], + [ + 37.708248, + 55.55397 + ], + [ + 37.708248, + 55.55388 + ], + [ + 37.708089, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708089, + 55.55397 + ], + [ + 37.708089, + 55.55406 + ], + [ + 37.708248, + 55.55406 + ], + [ + 37.708248, + 55.55397 + ], + [ + 37.708089, + 55.55397 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708089, + 55.55406 + ], + [ + 37.708089, + 55.55415 + ], + [ + 37.708248, + 55.55415 + ], + [ + 37.708248, + 55.55406 + ], + [ + 37.708089, + 55.55406 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708089, + 55.55415 + ], + [ + 37.708089, + 55.55424 + ], + [ + 37.708248, + 55.55424 + ], + [ + 37.708248, + 55.55415 + ], + [ + 37.708089, + 55.55415 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708089, + 55.55424 + ], + [ + 37.708089, + 55.55433 + ], + [ + 37.708248, + 55.55433 + ], + [ + 37.708248, + 55.55424 + ], + [ + 37.708089, + 55.55424 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708089, + 55.55433 + ], + [ + 37.708089, + 55.55442 + ], + [ + 37.708248, + 55.55442 + ], + [ + 37.708248, + 55.55433 + ], + [ + 37.708089, + 55.55433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708089, + 55.55442 + ], + [ + 37.708089, + 55.55451 + ], + [ + 37.708248, + 55.55451 + ], + [ + 37.708248, + 55.55442 + ], + [ + 37.708089, + 55.55442 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708089, + 55.55451 + ], + [ + 37.708089, + 55.5546 + ], + [ + 37.708248, + 55.5546 + ], + [ + 37.708248, + 55.55451 + ], + [ + 37.708089, + 55.55451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708089, + 55.5546 + ], + [ + 37.708089, + 55.55469 + ], + [ + 37.708248, + 55.55469 + ], + [ + 37.708248, + 55.5546 + ], + [ + 37.708089, + 55.5546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708089, + 55.55469 + ], + [ + 37.708089, + 55.55478 + ], + [ + 37.708248, + 55.55478 + ], + [ + 37.708248, + 55.55469 + ], + [ + 37.708089, + 55.55469 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708089, + 55.55478 + ], + [ + 37.708089, + 55.554869 + ], + [ + 37.708248, + 55.554869 + ], + [ + 37.708248, + 55.55478 + ], + [ + 37.708089, + 55.55478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708089, + 55.554869 + ], + [ + 37.708089, + 55.554959 + ], + [ + 37.708248, + 55.554959 + ], + [ + 37.708248, + 55.554869 + ], + [ + 37.708089, + 55.554869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708089, + 55.554959 + ], + [ + 37.708089, + 55.555049 + ], + [ + 37.708248, + 55.555049 + ], + [ + 37.708248, + 55.554959 + ], + [ + 37.708089, + 55.554959 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708089, + 55.555049 + ], + [ + 37.708089, + 55.555139 + ], + [ + 37.708248, + 55.555139 + ], + [ + 37.708248, + 55.555049 + ], + [ + 37.708089, + 55.555049 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708089, + 55.555139 + ], + [ + 37.708089, + 55.555229 + ], + [ + 37.708248, + 55.555229 + ], + [ + 37.708248, + 55.555139 + ], + [ + 37.708089, + 55.555139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708089, + 55.555229 + ], + [ + 37.708089, + 55.555319 + ], + [ + 37.708248, + 55.555319 + ], + [ + 37.708248, + 55.555229 + ], + [ + 37.708089, + 55.555229 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708089, + 55.555319 + ], + [ + 37.708089, + 55.555409 + ], + [ + 37.708248, + 55.555409 + ], + [ + 37.708248, + 55.555319 + ], + [ + 37.708089, + 55.555319 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708089, + 55.555409 + ], + [ + 37.708089, + 55.555499 + ], + [ + 37.708248, + 55.555499 + ], + [ + 37.708248, + 55.555409 + ], + [ + 37.708089, + 55.555409 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708089, + 55.555499 + ], + [ + 37.708089, + 55.555589 + ], + [ + 37.708248, + 55.555589 + ], + [ + 37.708248, + 55.555499 + ], + [ + 37.708089, + 55.555499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708089, + 55.555589 + ], + [ + 37.708089, + 55.555679 + ], + [ + 37.708248, + 55.555679 + ], + [ + 37.708248, + 55.555589 + ], + [ + 37.708089, + 55.555589 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708089, + 55.555679 + ], + [ + 37.708089, + 55.555769 + ], + [ + 37.708248, + 55.555769 + ], + [ + 37.708248, + 55.555679 + ], + [ + 37.708089, + 55.555679 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708089, + 55.555769 + ], + [ + 37.708089, + 55.555859 + ], + [ + 37.708248, + 55.555859 + ], + [ + 37.708248, + 55.555769 + ], + [ + 37.708089, + 55.555769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708089, + 55.555859 + ], + [ + 37.708089, + 55.555949 + ], + [ + 37.708248, + 55.555949 + ], + [ + 37.708248, + 55.555859 + ], + [ + 37.708089, + 55.555859 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708089, + 55.555949 + ], + [ + 37.708089, + 55.556039 + ], + [ + 37.708248, + 55.556039 + ], + [ + 37.708248, + 55.555949 + ], + [ + 37.708089, + 55.555949 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708248, + 55.55361 + ], + [ + 37.708248, + 55.5537 + ], + [ + 37.708407, + 55.5537 + ], + [ + 37.708407, + 55.55361 + ], + [ + 37.708248, + 55.55361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708248, + 55.5537 + ], + [ + 37.708248, + 55.55379 + ], + [ + 37.708407, + 55.55379 + ], + [ + 37.708407, + 55.5537 + ], + [ + 37.708248, + 55.5537 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708248, + 55.55379 + ], + [ + 37.708248, + 55.55388 + ], + [ + 37.708407, + 55.55388 + ], + [ + 37.708407, + 55.55379 + ], + [ + 37.708248, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708248, + 55.55388 + ], + [ + 37.708248, + 55.55397 + ], + [ + 37.708407, + 55.55397 + ], + [ + 37.708407, + 55.55388 + ], + [ + 37.708248, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708248, + 55.55397 + ], + [ + 37.708248, + 55.55406 + ], + [ + 37.708407, + 55.55406 + ], + [ + 37.708407, + 55.55397 + ], + [ + 37.708248, + 55.55397 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708248, + 55.55406 + ], + [ + 37.708248, + 55.55415 + ], + [ + 37.708407, + 55.55415 + ], + [ + 37.708407, + 55.55406 + ], + [ + 37.708248, + 55.55406 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708248, + 55.55415 + ], + [ + 37.708248, + 55.55424 + ], + [ + 37.708407, + 55.55424 + ], + [ + 37.708407, + 55.55415 + ], + [ + 37.708248, + 55.55415 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708248, + 55.55424 + ], + [ + 37.708248, + 55.55433 + ], + [ + 37.708407, + 55.55433 + ], + [ + 37.708407, + 55.55424 + ], + [ + 37.708248, + 55.55424 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708248, + 55.55433 + ], + [ + 37.708248, + 55.55442 + ], + [ + 37.708407, + 55.55442 + ], + [ + 37.708407, + 55.55433 + ], + [ + 37.708248, + 55.55433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708248, + 55.55442 + ], + [ + 37.708248, + 55.55451 + ], + [ + 37.708407, + 55.55451 + ], + [ + 37.708407, + 55.55442 + ], + [ + 37.708248, + 55.55442 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708248, + 55.55451 + ], + [ + 37.708248, + 55.5546 + ], + [ + 37.708407, + 55.5546 + ], + [ + 37.708407, + 55.55451 + ], + [ + 37.708248, + 55.55451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708248, + 55.5546 + ], + [ + 37.708248, + 55.55469 + ], + [ + 37.708407, + 55.55469 + ], + [ + 37.708407, + 55.5546 + ], + [ + 37.708248, + 55.5546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708248, + 55.55469 + ], + [ + 37.708248, + 55.55478 + ], + [ + 37.708407, + 55.55478 + ], + [ + 37.708407, + 55.55469 + ], + [ + 37.708248, + 55.55469 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708248, + 55.55478 + ], + [ + 37.708248, + 55.554869 + ], + [ + 37.708407, + 55.554869 + ], + [ + 37.708407, + 55.55478 + ], + [ + 37.708248, + 55.55478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708248, + 55.554869 + ], + [ + 37.708248, + 55.554959 + ], + [ + 37.708407, + 55.554959 + ], + [ + 37.708407, + 55.554869 + ], + [ + 37.708248, + 55.554869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708248, + 55.554959 + ], + [ + 37.708248, + 55.555049 + ], + [ + 37.708407, + 55.555049 + ], + [ + 37.708407, + 55.554959 + ], + [ + 37.708248, + 55.554959 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708248, + 55.555049 + ], + [ + 37.708248, + 55.555139 + ], + [ + 37.708407, + 55.555139 + ], + [ + 37.708407, + 55.555049 + ], + [ + 37.708248, + 55.555049 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708248, + 55.555139 + ], + [ + 37.708248, + 55.555229 + ], + [ + 37.708407, + 55.555229 + ], + [ + 37.708407, + 55.555139 + ], + [ + 37.708248, + 55.555139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708248, + 55.555229 + ], + [ + 37.708248, + 55.555319 + ], + [ + 37.708407, + 55.555319 + ], + [ + 37.708407, + 55.555229 + ], + [ + 37.708248, + 55.555229 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708248, + 55.555319 + ], + [ + 37.708248, + 55.555409 + ], + [ + 37.708407, + 55.555409 + ], + [ + 37.708407, + 55.555319 + ], + [ + 37.708248, + 55.555319 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708248, + 55.555409 + ], + [ + 37.708248, + 55.555499 + ], + [ + 37.708407, + 55.555499 + ], + [ + 37.708407, + 55.555409 + ], + [ + 37.708248, + 55.555409 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708248, + 55.555499 + ], + [ + 37.708248, + 55.555589 + ], + [ + 37.708407, + 55.555589 + ], + [ + 37.708407, + 55.555499 + ], + [ + 37.708248, + 55.555499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708248, + 55.555589 + ], + [ + 37.708248, + 55.555679 + ], + [ + 37.708407, + 55.555679 + ], + [ + 37.708407, + 55.555589 + ], + [ + 37.708248, + 55.555589 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708248, + 55.555679 + ], + [ + 37.708248, + 55.555769 + ], + [ + 37.708407, + 55.555769 + ], + [ + 37.708407, + 55.555679 + ], + [ + 37.708248, + 55.555679 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708248, + 55.555769 + ], + [ + 37.708248, + 55.555859 + ], + [ + 37.708407, + 55.555859 + ], + [ + 37.708407, + 55.555769 + ], + [ + 37.708248, + 55.555769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708248, + 55.555859 + ], + [ + 37.708248, + 55.555949 + ], + [ + 37.708407, + 55.555949 + ], + [ + 37.708407, + 55.555859 + ], + [ + 37.708248, + 55.555859 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708248, + 55.555949 + ], + [ + 37.708248, + 55.556039 + ], + [ + 37.708407, + 55.556039 + ], + [ + 37.708407, + 55.555949 + ], + [ + 37.708248, + 55.555949 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708407, + 55.55379 + ], + [ + 37.708407, + 55.55388 + ], + [ + 37.708566, + 55.55388 + ], + [ + 37.708566, + 55.55379 + ], + [ + 37.708407, + 55.55379 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708407, + 55.55388 + ], + [ + 37.708407, + 55.55397 + ], + [ + 37.708566, + 55.55397 + ], + [ + 37.708566, + 55.55388 + ], + [ + 37.708407, + 55.55388 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708407, + 55.55397 + ], + [ + 37.708407, + 55.55406 + ], + [ + 37.708566, + 55.55406 + ], + [ + 37.708566, + 55.55397 + ], + [ + 37.708407, + 55.55397 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708407, + 55.55406 + ], + [ + 37.708407, + 55.55415 + ], + [ + 37.708566, + 55.55415 + ], + [ + 37.708566, + 55.55406 + ], + [ + 37.708407, + 55.55406 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708407, + 55.55415 + ], + [ + 37.708407, + 55.55424 + ], + [ + 37.708566, + 55.55424 + ], + [ + 37.708566, + 55.55415 + ], + [ + 37.708407, + 55.55415 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708407, + 55.55424 + ], + [ + 37.708407, + 55.55433 + ], + [ + 37.708566, + 55.55433 + ], + [ + 37.708566, + 55.55424 + ], + [ + 37.708407, + 55.55424 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708407, + 55.55433 + ], + [ + 37.708407, + 55.55442 + ], + [ + 37.708566, + 55.55442 + ], + [ + 37.708566, + 55.55433 + ], + [ + 37.708407, + 55.55433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708407, + 55.55442 + ], + [ + 37.708407, + 55.55451 + ], + [ + 37.708566, + 55.55451 + ], + [ + 37.708566, + 55.55442 + ], + [ + 37.708407, + 55.55442 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708407, + 55.55451 + ], + [ + 37.708407, + 55.5546 + ], + [ + 37.708566, + 55.5546 + ], + [ + 37.708566, + 55.55451 + ], + [ + 37.708407, + 55.55451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708407, + 55.5546 + ], + [ + 37.708407, + 55.55469 + ], + [ + 37.708566, + 55.55469 + ], + [ + 37.708566, + 55.5546 + ], + [ + 37.708407, + 55.5546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708407, + 55.55469 + ], + [ + 37.708407, + 55.55478 + ], + [ + 37.708566, + 55.55478 + ], + [ + 37.708566, + 55.55469 + ], + [ + 37.708407, + 55.55469 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708407, + 55.55478 + ], + [ + 37.708407, + 55.554869 + ], + [ + 37.708566, + 55.554869 + ], + [ + 37.708566, + 55.55478 + ], + [ + 37.708407, + 55.55478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708407, + 55.554869 + ], + [ + 37.708407, + 55.554959 + ], + [ + 37.708566, + 55.554959 + ], + [ + 37.708566, + 55.554869 + ], + [ + 37.708407, + 55.554869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708407, + 55.554959 + ], + [ + 37.708407, + 55.555049 + ], + [ + 37.708566, + 55.555049 + ], + [ + 37.708566, + 55.554959 + ], + [ + 37.708407, + 55.554959 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708407, + 55.555049 + ], + [ + 37.708407, + 55.555139 + ], + [ + 37.708566, + 55.555139 + ], + [ + 37.708566, + 55.555049 + ], + [ + 37.708407, + 55.555049 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708407, + 55.555139 + ], + [ + 37.708407, + 55.555229 + ], + [ + 37.708566, + 55.555229 + ], + [ + 37.708566, + 55.555139 + ], + [ + 37.708407, + 55.555139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708407, + 55.555229 + ], + [ + 37.708407, + 55.555319 + ], + [ + 37.708566, + 55.555319 + ], + [ + 37.708566, + 55.555229 + ], + [ + 37.708407, + 55.555229 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708407, + 55.555319 + ], + [ + 37.708407, + 55.555409 + ], + [ + 37.708566, + 55.555409 + ], + [ + 37.708566, + 55.555319 + ], + [ + 37.708407, + 55.555319 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708407, + 55.555409 + ], + [ + 37.708407, + 55.555499 + ], + [ + 37.708566, + 55.555499 + ], + [ + 37.708566, + 55.555409 + ], + [ + 37.708407, + 55.555409 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708407, + 55.555499 + ], + [ + 37.708407, + 55.555589 + ], + [ + 37.708566, + 55.555589 + ], + [ + 37.708566, + 55.555499 + ], + [ + 37.708407, + 55.555499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708407, + 55.555589 + ], + [ + 37.708407, + 55.555679 + ], + [ + 37.708566, + 55.555679 + ], + [ + 37.708566, + 55.555589 + ], + [ + 37.708407, + 55.555589 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708407, + 55.555679 + ], + [ + 37.708407, + 55.555769 + ], + [ + 37.708566, + 55.555769 + ], + [ + 37.708566, + 55.555679 + ], + [ + 37.708407, + 55.555679 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708407, + 55.555769 + ], + [ + 37.708407, + 55.555859 + ], + [ + 37.708566, + 55.555859 + ], + [ + 37.708566, + 55.555769 + ], + [ + 37.708407, + 55.555769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708407, + 55.555859 + ], + [ + 37.708407, + 55.555949 + ], + [ + 37.708566, + 55.555949 + ], + [ + 37.708566, + 55.555859 + ], + [ + 37.708407, + 55.555859 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708407, + 55.555949 + ], + [ + 37.708407, + 55.556039 + ], + [ + 37.708566, + 55.556039 + ], + [ + 37.708566, + 55.555949 + ], + [ + 37.708407, + 55.555949 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708407, + 55.556039 + ], + [ + 37.708407, + 55.556128 + ], + [ + 37.708566, + 55.556128 + ], + [ + 37.708566, + 55.556039 + ], + [ + 37.708407, + 55.556039 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708566, + 55.55397 + ], + [ + 37.708566, + 55.55406 + ], + [ + 37.708725, + 55.55406 + ], + [ + 37.708725, + 55.55397 + ], + [ + 37.708566, + 55.55397 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708566, + 55.55406 + ], + [ + 37.708566, + 55.55415 + ], + [ + 37.708725, + 55.55415 + ], + [ + 37.708725, + 55.55406 + ], + [ + 37.708566, + 55.55406 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708566, + 55.55415 + ], + [ + 37.708566, + 55.55424 + ], + [ + 37.708725, + 55.55424 + ], + [ + 37.708725, + 55.55415 + ], + [ + 37.708566, + 55.55415 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708566, + 55.55424 + ], + [ + 37.708566, + 55.55433 + ], + [ + 37.708725, + 55.55433 + ], + [ + 37.708725, + 55.55424 + ], + [ + 37.708566, + 55.55424 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708566, + 55.55433 + ], + [ + 37.708566, + 55.55442 + ], + [ + 37.708725, + 55.55442 + ], + [ + 37.708725, + 55.55433 + ], + [ + 37.708566, + 55.55433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708566, + 55.55442 + ], + [ + 37.708566, + 55.55451 + ], + [ + 37.708725, + 55.55451 + ], + [ + 37.708725, + 55.55442 + ], + [ + 37.708566, + 55.55442 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708566, + 55.55451 + ], + [ + 37.708566, + 55.5546 + ], + [ + 37.708725, + 55.5546 + ], + [ + 37.708725, + 55.55451 + ], + [ + 37.708566, + 55.55451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708566, + 55.5546 + ], + [ + 37.708566, + 55.55469 + ], + [ + 37.708725, + 55.55469 + ], + [ + 37.708725, + 55.5546 + ], + [ + 37.708566, + 55.5546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708566, + 55.55469 + ], + [ + 37.708566, + 55.55478 + ], + [ + 37.708725, + 55.55478 + ], + [ + 37.708725, + 55.55469 + ], + [ + 37.708566, + 55.55469 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708566, + 55.55478 + ], + [ + 37.708566, + 55.554869 + ], + [ + 37.708725, + 55.554869 + ], + [ + 37.708725, + 55.55478 + ], + [ + 37.708566, + 55.55478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708566, + 55.554869 + ], + [ + 37.708566, + 55.554959 + ], + [ + 37.708725, + 55.554959 + ], + [ + 37.708725, + 55.554869 + ], + [ + 37.708566, + 55.554869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708566, + 55.554959 + ], + [ + 37.708566, + 55.555049 + ], + [ + 37.708725, + 55.555049 + ], + [ + 37.708725, + 55.554959 + ], + [ + 37.708566, + 55.554959 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708566, + 55.555049 + ], + [ + 37.708566, + 55.555139 + ], + [ + 37.708725, + 55.555139 + ], + [ + 37.708725, + 55.555049 + ], + [ + 37.708566, + 55.555049 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708566, + 55.555139 + ], + [ + 37.708566, + 55.555229 + ], + [ + 37.708725, + 55.555229 + ], + [ + 37.708725, + 55.555139 + ], + [ + 37.708566, + 55.555139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708566, + 55.555229 + ], + [ + 37.708566, + 55.555319 + ], + [ + 37.708725, + 55.555319 + ], + [ + 37.708725, + 55.555229 + ], + [ + 37.708566, + 55.555229 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708566, + 55.555319 + ], + [ + 37.708566, + 55.555409 + ], + [ + 37.708725, + 55.555409 + ], + [ + 37.708725, + 55.555319 + ], + [ + 37.708566, + 55.555319 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708566, + 55.555409 + ], + [ + 37.708566, + 55.555499 + ], + [ + 37.708725, + 55.555499 + ], + [ + 37.708725, + 55.555409 + ], + [ + 37.708566, + 55.555409 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708566, + 55.555499 + ], + [ + 37.708566, + 55.555589 + ], + [ + 37.708725, + 55.555589 + ], + [ + 37.708725, + 55.555499 + ], + [ + 37.708566, + 55.555499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708566, + 55.555589 + ], + [ + 37.708566, + 55.555679 + ], + [ + 37.708725, + 55.555679 + ], + [ + 37.708725, + 55.555589 + ], + [ + 37.708566, + 55.555589 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708566, + 55.555679 + ], + [ + 37.708566, + 55.555769 + ], + [ + 37.708725, + 55.555769 + ], + [ + 37.708725, + 55.555679 + ], + [ + 37.708566, + 55.555679 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708566, + 55.555769 + ], + [ + 37.708566, + 55.555859 + ], + [ + 37.708725, + 55.555859 + ], + [ + 37.708725, + 55.555769 + ], + [ + 37.708566, + 55.555769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708566, + 55.555859 + ], + [ + 37.708566, + 55.555949 + ], + [ + 37.708725, + 55.555949 + ], + [ + 37.708725, + 55.555859 + ], + [ + 37.708566, + 55.555859 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708566, + 55.555949 + ], + [ + 37.708566, + 55.556039 + ], + [ + 37.708725, + 55.556039 + ], + [ + 37.708725, + 55.555949 + ], + [ + 37.708566, + 55.555949 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708566, + 55.556039 + ], + [ + 37.708566, + 55.556128 + ], + [ + 37.708725, + 55.556128 + ], + [ + 37.708725, + 55.556039 + ], + [ + 37.708566, + 55.556039 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708725, + 55.55415 + ], + [ + 37.708725, + 55.55424 + ], + [ + 37.708884, + 55.55424 + ], + [ + 37.708884, + 55.55415 + ], + [ + 37.708725, + 55.55415 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708725, + 55.55424 + ], + [ + 37.708725, + 55.55433 + ], + [ + 37.708884, + 55.55433 + ], + [ + 37.708884, + 55.55424 + ], + [ + 37.708725, + 55.55424 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708725, + 55.55433 + ], + [ + 37.708725, + 55.55442 + ], + [ + 37.708884, + 55.55442 + ], + [ + 37.708884, + 55.55433 + ], + [ + 37.708725, + 55.55433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708725, + 55.55442 + ], + [ + 37.708725, + 55.55451 + ], + [ + 37.708884, + 55.55451 + ], + [ + 37.708884, + 55.55442 + ], + [ + 37.708725, + 55.55442 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708725, + 55.55451 + ], + [ + 37.708725, + 55.5546 + ], + [ + 37.708884, + 55.5546 + ], + [ + 37.708884, + 55.55451 + ], + [ + 37.708725, + 55.55451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708725, + 55.5546 + ], + [ + 37.708725, + 55.55469 + ], + [ + 37.708884, + 55.55469 + ], + [ + 37.708884, + 55.5546 + ], + [ + 37.708725, + 55.5546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708725, + 55.55469 + ], + [ + 37.708725, + 55.55478 + ], + [ + 37.708884, + 55.55478 + ], + [ + 37.708884, + 55.55469 + ], + [ + 37.708725, + 55.55469 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708725, + 55.55478 + ], + [ + 37.708725, + 55.554869 + ], + [ + 37.708884, + 55.554869 + ], + [ + 37.708884, + 55.55478 + ], + [ + 37.708725, + 55.55478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708725, + 55.554869 + ], + [ + 37.708725, + 55.554959 + ], + [ + 37.708884, + 55.554959 + ], + [ + 37.708884, + 55.554869 + ], + [ + 37.708725, + 55.554869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708725, + 55.554959 + ], + [ + 37.708725, + 55.555049 + ], + [ + 37.708884, + 55.555049 + ], + [ + 37.708884, + 55.554959 + ], + [ + 37.708725, + 55.554959 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708725, + 55.555049 + ], + [ + 37.708725, + 55.555139 + ], + [ + 37.708884, + 55.555139 + ], + [ + 37.708884, + 55.555049 + ], + [ + 37.708725, + 55.555049 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708725, + 55.555139 + ], + [ + 37.708725, + 55.555229 + ], + [ + 37.708884, + 55.555229 + ], + [ + 37.708884, + 55.555139 + ], + [ + 37.708725, + 55.555139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708725, + 55.555229 + ], + [ + 37.708725, + 55.555319 + ], + [ + 37.708884, + 55.555319 + ], + [ + 37.708884, + 55.555229 + ], + [ + 37.708725, + 55.555229 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708725, + 55.555319 + ], + [ + 37.708725, + 55.555409 + ], + [ + 37.708884, + 55.555409 + ], + [ + 37.708884, + 55.555319 + ], + [ + 37.708725, + 55.555319 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708725, + 55.555409 + ], + [ + 37.708725, + 55.555499 + ], + [ + 37.708884, + 55.555499 + ], + [ + 37.708884, + 55.555409 + ], + [ + 37.708725, + 55.555409 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708725, + 55.555499 + ], + [ + 37.708725, + 55.555589 + ], + [ + 37.708884, + 55.555589 + ], + [ + 37.708884, + 55.555499 + ], + [ + 37.708725, + 55.555499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708725, + 55.555589 + ], + [ + 37.708725, + 55.555679 + ], + [ + 37.708884, + 55.555679 + ], + [ + 37.708884, + 55.555589 + ], + [ + 37.708725, + 55.555589 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708725, + 55.555679 + ], + [ + 37.708725, + 55.555769 + ], + [ + 37.708884, + 55.555769 + ], + [ + 37.708884, + 55.555679 + ], + [ + 37.708725, + 55.555679 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708725, + 55.555769 + ], + [ + 37.708725, + 55.555859 + ], + [ + 37.708884, + 55.555859 + ], + [ + 37.708884, + 55.555769 + ], + [ + 37.708725, + 55.555769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708725, + 55.555859 + ], + [ + 37.708725, + 55.555949 + ], + [ + 37.708884, + 55.555949 + ], + [ + 37.708884, + 55.555859 + ], + [ + 37.708725, + 55.555859 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708725, + 55.555949 + ], + [ + 37.708725, + 55.556039 + ], + [ + 37.708884, + 55.556039 + ], + [ + 37.708884, + 55.555949 + ], + [ + 37.708725, + 55.555949 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708725, + 55.556039 + ], + [ + 37.708725, + 55.556128 + ], + [ + 37.708884, + 55.556128 + ], + [ + 37.708884, + 55.556039 + ], + [ + 37.708725, + 55.556039 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708884, + 55.55442 + ], + [ + 37.708884, + 55.55451 + ], + [ + 37.709043, + 55.55451 + ], + [ + 37.709043, + 55.55442 + ], + [ + 37.708884, + 55.55442 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708884, + 55.55451 + ], + [ + 37.708884, + 55.5546 + ], + [ + 37.709043, + 55.5546 + ], + [ + 37.709043, + 55.55451 + ], + [ + 37.708884, + 55.55451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708884, + 55.5546 + ], + [ + 37.708884, + 55.55469 + ], + [ + 37.709043, + 55.55469 + ], + [ + 37.709043, + 55.5546 + ], + [ + 37.708884, + 55.5546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708884, + 55.55469 + ], + [ + 37.708884, + 55.55478 + ], + [ + 37.709043, + 55.55478 + ], + [ + 37.709043, + 55.55469 + ], + [ + 37.708884, + 55.55469 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708884, + 55.55478 + ], + [ + 37.708884, + 55.554869 + ], + [ + 37.709043, + 55.554869 + ], + [ + 37.709043, + 55.55478 + ], + [ + 37.708884, + 55.55478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708884, + 55.554869 + ], + [ + 37.708884, + 55.554959 + ], + [ + 37.709043, + 55.554959 + ], + [ + 37.709043, + 55.554869 + ], + [ + 37.708884, + 55.554869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708884, + 55.554959 + ], + [ + 37.708884, + 55.555049 + ], + [ + 37.709043, + 55.555049 + ], + [ + 37.709043, + 55.554959 + ], + [ + 37.708884, + 55.554959 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708884, + 55.555049 + ], + [ + 37.708884, + 55.555139 + ], + [ + 37.709043, + 55.555139 + ], + [ + 37.709043, + 55.555049 + ], + [ + 37.708884, + 55.555049 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708884, + 55.555139 + ], + [ + 37.708884, + 55.555229 + ], + [ + 37.709043, + 55.555229 + ], + [ + 37.709043, + 55.555139 + ], + [ + 37.708884, + 55.555139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708884, + 55.555229 + ], + [ + 37.708884, + 55.555319 + ], + [ + 37.709043, + 55.555319 + ], + [ + 37.709043, + 55.555229 + ], + [ + 37.708884, + 55.555229 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708884, + 55.555319 + ], + [ + 37.708884, + 55.555409 + ], + [ + 37.709043, + 55.555409 + ], + [ + 37.709043, + 55.555319 + ], + [ + 37.708884, + 55.555319 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708884, + 55.555409 + ], + [ + 37.708884, + 55.555499 + ], + [ + 37.709043, + 55.555499 + ], + [ + 37.709043, + 55.555409 + ], + [ + 37.708884, + 55.555409 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708884, + 55.555499 + ], + [ + 37.708884, + 55.555589 + ], + [ + 37.709043, + 55.555589 + ], + [ + 37.709043, + 55.555499 + ], + [ + 37.708884, + 55.555499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708884, + 55.555589 + ], + [ + 37.708884, + 55.555679 + ], + [ + 37.709043, + 55.555679 + ], + [ + 37.709043, + 55.555589 + ], + [ + 37.708884, + 55.555589 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708884, + 55.555679 + ], + [ + 37.708884, + 55.555769 + ], + [ + 37.709043, + 55.555769 + ], + [ + 37.709043, + 55.555679 + ], + [ + 37.708884, + 55.555679 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708884, + 55.555769 + ], + [ + 37.708884, + 55.555859 + ], + [ + 37.709043, + 55.555859 + ], + [ + 37.709043, + 55.555769 + ], + [ + 37.708884, + 55.555769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708884, + 55.555859 + ], + [ + 37.708884, + 55.555949 + ], + [ + 37.709043, + 55.555949 + ], + [ + 37.709043, + 55.555859 + ], + [ + 37.708884, + 55.555859 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708884, + 55.555949 + ], + [ + 37.708884, + 55.556039 + ], + [ + 37.709043, + 55.556039 + ], + [ + 37.709043, + 55.555949 + ], + [ + 37.708884, + 55.555949 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.708884, + 55.556039 + ], + [ + 37.708884, + 55.556128 + ], + [ + 37.709043, + 55.556128 + ], + [ + 37.709043, + 55.556039 + ], + [ + 37.708884, + 55.556039 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.709043, + 55.5546 + ], + [ + 37.709043, + 55.55469 + ], + [ + 37.709201, + 55.55469 + ], + [ + 37.709201, + 55.5546 + ], + [ + 37.709043, + 55.5546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.709043, + 55.55469 + ], + [ + 37.709043, + 55.55478 + ], + [ + 37.709201, + 55.55478 + ], + [ + 37.709201, + 55.55469 + ], + [ + 37.709043, + 55.55469 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.709043, + 55.55478 + ], + [ + 37.709043, + 55.554869 + ], + [ + 37.709201, + 55.554869 + ], + [ + 37.709201, + 55.55478 + ], + [ + 37.709043, + 55.55478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.709043, + 55.554869 + ], + [ + 37.709043, + 55.554959 + ], + [ + 37.709201, + 55.554959 + ], + [ + 37.709201, + 55.554869 + ], + [ + 37.709043, + 55.554869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.709043, + 55.554959 + ], + [ + 37.709043, + 55.555049 + ], + [ + 37.709201, + 55.555049 + ], + [ + 37.709201, + 55.554959 + ], + [ + 37.709043, + 55.554959 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.709043, + 55.555049 + ], + [ + 37.709043, + 55.555139 + ], + [ + 37.709201, + 55.555139 + ], + [ + 37.709201, + 55.555049 + ], + [ + 37.709043, + 55.555049 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.709043, + 55.555139 + ], + [ + 37.709043, + 55.555229 + ], + [ + 37.709201, + 55.555229 + ], + [ + 37.709201, + 55.555139 + ], + [ + 37.709043, + 55.555139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.709043, + 55.555229 + ], + [ + 37.709043, + 55.555319 + ], + [ + 37.709201, + 55.555319 + ], + [ + 37.709201, + 55.555229 + ], + [ + 37.709043, + 55.555229 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.709043, + 55.555319 + ], + [ + 37.709043, + 55.555409 + ], + [ + 37.709201, + 55.555409 + ], + [ + 37.709201, + 55.555319 + ], + [ + 37.709043, + 55.555319 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.709043, + 55.555409 + ], + [ + 37.709043, + 55.555499 + ], + [ + 37.709201, + 55.555499 + ], + [ + 37.709201, + 55.555409 + ], + [ + 37.709043, + 55.555409 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.709043, + 55.555499 + ], + [ + 37.709043, + 55.555589 + ], + [ + 37.709201, + 55.555589 + ], + [ + 37.709201, + 55.555499 + ], + [ + 37.709043, + 55.555499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.709043, + 55.555589 + ], + [ + 37.709043, + 55.555679 + ], + [ + 37.709201, + 55.555679 + ], + [ + 37.709201, + 55.555589 + ], + [ + 37.709043, + 55.555589 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.709043, + 55.555679 + ], + [ + 37.709043, + 55.555769 + ], + [ + 37.709201, + 55.555769 + ], + [ + 37.709201, + 55.555679 + ], + [ + 37.709043, + 55.555679 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.709043, + 55.555769 + ], + [ + 37.709043, + 55.555859 + ], + [ + 37.709201, + 55.555859 + ], + [ + 37.709201, + 55.555769 + ], + [ + 37.709043, + 55.555769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.709043, + 55.555859 + ], + [ + 37.709043, + 55.555949 + ], + [ + 37.709201, + 55.555949 + ], + [ + 37.709201, + 55.555859 + ], + [ + 37.709043, + 55.555859 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.709043, + 55.555949 + ], + [ + 37.709043, + 55.556039 + ], + [ + 37.709201, + 55.556039 + ], + [ + 37.709201, + 55.555949 + ], + [ + 37.709043, + 55.555949 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.709201, + 55.55478 + ], + [ + 37.709201, + 55.554869 + ], + [ + 37.70936, + 55.554869 + ], + [ + 37.70936, + 55.55478 + ], + [ + 37.709201, + 55.55478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.709201, + 55.554869 + ], + [ + 37.709201, + 55.554959 + ], + [ + 37.70936, + 55.554959 + ], + [ + 37.70936, + 55.554869 + ], + [ + 37.709201, + 55.554869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.709201, + 55.554959 + ], + [ + 37.709201, + 55.555049 + ], + [ + 37.70936, + 55.555049 + ], + [ + 37.70936, + 55.554959 + ], + [ + 37.709201, + 55.554959 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.709201, + 55.555049 + ], + [ + 37.709201, + 55.555139 + ], + [ + 37.70936, + 55.555139 + ], + [ + 37.70936, + 55.555049 + ], + [ + 37.709201, + 55.555049 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.709201, + 55.555139 + ], + [ + 37.709201, + 55.555229 + ], + [ + 37.70936, + 55.555229 + ], + [ + 37.70936, + 55.555139 + ], + [ + 37.709201, + 55.555139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.709201, + 55.555229 + ], + [ + 37.709201, + 55.555319 + ], + [ + 37.70936, + 55.555319 + ], + [ + 37.70936, + 55.555229 + ], + [ + 37.709201, + 55.555229 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.709201, + 55.555319 + ], + [ + 37.709201, + 55.555409 + ], + [ + 37.70936, + 55.555409 + ], + [ + 37.70936, + 55.555319 + ], + [ + 37.709201, + 55.555319 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.709201, + 55.555409 + ], + [ + 37.709201, + 55.555499 + ], + [ + 37.70936, + 55.555499 + ], + [ + 37.70936, + 55.555409 + ], + [ + 37.709201, + 55.555409 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.709201, + 55.555499 + ], + [ + 37.709201, + 55.555589 + ], + [ + 37.70936, + 55.555589 + ], + [ + 37.70936, + 55.555499 + ], + [ + 37.709201, + 55.555499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.709201, + 55.555589 + ], + [ + 37.709201, + 55.555679 + ], + [ + 37.70936, + 55.555679 + ], + [ + 37.70936, + 55.555589 + ], + [ + 37.709201, + 55.555589 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.709201, + 55.555679 + ], + [ + 37.709201, + 55.555769 + ], + [ + 37.70936, + 55.555769 + ], + [ + 37.70936, + 55.555679 + ], + [ + 37.709201, + 55.555679 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.709201, + 55.555769 + ], + [ + 37.709201, + 55.555859 + ], + [ + 37.70936, + 55.555859 + ], + [ + 37.70936, + 55.555769 + ], + [ + 37.709201, + 55.555769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.709201, + 55.555859 + ], + [ + 37.709201, + 55.555949 + ], + [ + 37.70936, + 55.555949 + ], + [ + 37.70936, + 55.555859 + ], + [ + 37.709201, + 55.555859 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70936, + 55.554959 + ], + [ + 37.70936, + 55.555049 + ], + [ + 37.709519, + 55.555049 + ], + [ + 37.709519, + 55.554959 + ], + [ + 37.70936, + 55.554959 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70936, + 55.555049 + ], + [ + 37.70936, + 55.555139 + ], + [ + 37.709519, + 55.555139 + ], + [ + 37.709519, + 55.555049 + ], + [ + 37.70936, + 55.555049 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70936, + 55.555139 + ], + [ + 37.70936, + 55.555229 + ], + [ + 37.709519, + 55.555229 + ], + [ + 37.709519, + 55.555139 + ], + [ + 37.70936, + 55.555139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70936, + 55.555229 + ], + [ + 37.70936, + 55.555319 + ], + [ + 37.709519, + 55.555319 + ], + [ + 37.709519, + 55.555229 + ], + [ + 37.70936, + 55.555229 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70936, + 55.555319 + ], + [ + 37.70936, + 55.555409 + ], + [ + 37.709519, + 55.555409 + ], + [ + 37.709519, + 55.555319 + ], + [ + 37.70936, + 55.555319 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70936, + 55.555409 + ], + [ + 37.70936, + 55.555499 + ], + [ + 37.709519, + 55.555499 + ], + [ + 37.709519, + 55.555409 + ], + [ + 37.70936, + 55.555409 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70936, + 55.555499 + ], + [ + 37.70936, + 55.555589 + ], + [ + 37.709519, + 55.555589 + ], + [ + 37.709519, + 55.555499 + ], + [ + 37.70936, + 55.555499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70936, + 55.555589 + ], + [ + 37.70936, + 55.555679 + ], + [ + 37.709519, + 55.555679 + ], + [ + 37.709519, + 55.555589 + ], + [ + 37.70936, + 55.555589 + ] + ] + ] + } + }, + { + "type": "Feature", + "bbox": [ + 37.69975662231445, + 55.55151096909941, + 37.70958423614502, + 55.55615949302079 + ], + "properties": { + "stroke": "#F00", + "stroke-width": 6, + "fill-opacity": 0 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.69975662231445, + 55.55151096909941 + ], + [ + 37.70958423614502, + 55.55151096909941 + ], + [ + 37.70958423614502, + 55.55615949302079 + ], + [ + 37.69975662231445, + 55.55615949302079 + ], + [ + 37.69975662231445, + 55.55151096909941 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "stroke": "#00F", + "stroke-width": 6, + "fill-opacity": 0 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.70651578903198, + 55.55151096909941 + ], + [ + 37.70958423614502, + 55.555297797727704 + ], + [ + 37.709230184555054, + 55.555850013083 + ], + [ + 37.70885467529296, + 55.55615949302079 + ], + [ + 37.70013213157654, + 55.55376247689539 + ], + [ + 37.69975662231445, + 55.55329519343182 + ], + [ + 37.70651578903198, + 55.55151096909941 + ] + ] + ] + } + } + ] } diff --git a/packages/turf-square-grid/test/out/london-20-miles.geojson b/packages/turf-square-grid/test/out/london-20-miles.geojson index 344d0dcfae..31b163228c 100644 --- a/packages/turf-square-grid/test/out/london-20-miles.geojson +++ b/packages/turf-square-grid/test/out/london-20-miles.geojson @@ -1,63 +1,108 @@ { - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-0.552977, 51.358112], - [-0.552977, 51.647575], - [-0.090637, 51.647575], - [-0.090637, 51.358112], - [-0.552977, 51.358112] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-0.090637, 51.358112], - [-0.090637, 51.647575], - [0.371702, 51.647575], - [0.371702, 51.358112], - [-0.090637, 51.358112] - ] - ] - } - }, - { - "type": "Feature", - "bbox": [ - -0.6207275390625, - 51.23784668914442, - 0.439453125, - 51.767839887322154 - ], - "properties": { - "stroke": "#F00", - "stroke-width": 6, - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-0.6207275390625, 51.23784668914442], - [0.439453125, 51.23784668914442], - [0.439453125, 51.767839887322154], - [-0.6207275390625, 51.767839887322154], - [-0.6207275390625, 51.23784668914442] - ] - ] - } - } - ] + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.552977, + 51.358112 + ], + [ + -0.552977, + 51.647575 + ], + [ + -0.090637, + 51.647575 + ], + [ + -0.090637, + 51.358112 + ], + [ + -0.552977, + 51.358112 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.090637, + 51.358112 + ], + [ + -0.090637, + 51.647575 + ], + [ + 0.371702, + 51.647575 + ], + [ + 0.371702, + 51.358112 + ], + [ + -0.090637, + 51.358112 + ] + ] + ] + } + }, + { + "type": "Feature", + "bbox": [ + -0.6207275390625, + 51.23784668914442, + 0.439453125, + 51.767839887322154 + ], + "properties": { + "stroke": "#F00", + "stroke-width": 6, + "fill-opacity": 0 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.6207275390625, + 51.23784668914442 + ], + [ + 0.439453125, + 51.23784668914442 + ], + [ + 0.439453125, + 51.767839887322154 + ], + [ + -0.6207275390625, + 51.767839887322154 + ], + [ + -0.6207275390625, + 51.23784668914442 + ] + ] + ] + } + } + ] } diff --git a/packages/turf-square-grid/test/out/piedemont-mask.geojson b/packages/turf-square-grid/test/out/piedemont-mask.geojson index 836001a47b..664d241fcd 100644 --- a/packages/turf-square-grid/test/out/piedemont-mask.geojson +++ b/packages/turf-square-grid/test/out/piedemont-mask.geojson @@ -1,1598 +1,3233 @@ { - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [6.396892, 45.009611], - [6.396892, 45.190526], - [6.648645, 45.190526], - [6.648645, 45.009611], - [6.396892, 45.009611] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [6.648645, 44.285953], - [6.648645, 44.466868], - [6.900398, 44.466868], - [6.900398, 44.285953], - [6.648645, 44.285953] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [6.648645, 44.466868], - [6.648645, 44.647782], - [6.900398, 44.647782], - [6.900398, 44.466868], - [6.648645, 44.466868] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [6.648645, 44.828697], - [6.648645, 45.009611], - [6.900398, 45.009611], - [6.900398, 44.828697], - [6.648645, 44.828697] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [6.648645, 45.009611], - [6.648645, 45.190526], - [6.900398, 45.190526], - [6.900398, 45.009611], - [6.648645, 45.009611] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [6.900398, 44.105039], - [6.900398, 44.285953], - [7.152151, 44.285953], - [7.152151, 44.105039], - [6.900398, 44.105039] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [6.900398, 44.285953], - [6.900398, 44.466868], - [7.152151, 44.466868], - [7.152151, 44.285953], - [6.900398, 44.285953] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [6.900398, 44.466868], - [6.900398, 44.647782], - [7.152151, 44.647782], - [7.152151, 44.466868], - [6.900398, 44.466868] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [6.900398, 44.647782], - [6.900398, 44.828697], - [7.152151, 44.828697], - [7.152151, 44.647782], - [6.900398, 44.647782] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [6.900398, 44.828697], - [6.900398, 45.009611], - [7.152151, 45.009611], - [7.152151, 44.828697], - [6.900398, 44.828697] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [6.900398, 45.009611], - [6.900398, 45.190526], - [7.152151, 45.190526], - [7.152151, 45.009611], - [6.900398, 45.009611] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [6.900398, 45.190526], - [6.900398, 45.37144], - [7.152151, 45.37144], - [7.152151, 45.190526], - [6.900398, 45.190526] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [6.900398, 45.37144], - [6.900398, 45.552355], - [7.152151, 45.552355], - [7.152151, 45.37144], - [6.900398, 45.37144] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [7.152151, 44.105039], - [7.152151, 44.285953], - [7.403904, 44.285953], - [7.403904, 44.105039], - [7.152151, 44.105039] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [7.152151, 44.285953], - [7.152151, 44.466868], - [7.403904, 44.466868], - [7.403904, 44.285953], - [7.152151, 44.285953] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [7.152151, 44.466868], - [7.152151, 44.647782], - [7.403904, 44.647782], - [7.403904, 44.466868], - [7.152151, 44.466868] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [7.152151, 44.647782], - [7.152151, 44.828697], - [7.403904, 44.828697], - [7.403904, 44.647782], - [7.152151, 44.647782] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [7.152151, 44.828697], - [7.152151, 45.009611], - [7.403904, 45.009611], - [7.403904, 44.828697], - [7.152151, 44.828697] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [7.152151, 45.009611], - [7.152151, 45.190526], - [7.403904, 45.190526], - [7.403904, 45.009611], - [7.152151, 45.009611] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [7.152151, 45.190526], - [7.152151, 45.37144], - [7.403904, 45.37144], - [7.403904, 45.190526], - [7.152151, 45.190526] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [7.152151, 45.37144], - [7.152151, 45.552355], - [7.403904, 45.552355], - [7.403904, 45.37144], - [7.152151, 45.37144] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [7.403904, 44.105039], - [7.403904, 44.285953], - [7.655657, 44.285953], - [7.655657, 44.105039], - [7.403904, 44.105039] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [7.403904, 44.285953], - [7.403904, 44.466868], - [7.655657, 44.466868], - [7.655657, 44.285953], - [7.403904, 44.285953] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [7.403904, 44.466868], - [7.403904, 44.647782], - [7.655657, 44.647782], - [7.655657, 44.466868], - [7.403904, 44.466868] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [7.403904, 44.647782], - [7.403904, 44.828697], - [7.655657, 44.828697], - [7.655657, 44.647782], - [7.403904, 44.647782] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [7.403904, 44.828697], - [7.403904, 45.009611], - [7.655657, 45.009611], - [7.655657, 44.828697], - [7.403904, 44.828697] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [7.403904, 45.009611], - [7.403904, 45.190526], - [7.655657, 45.190526], - [7.655657, 45.009611], - [7.403904, 45.009611] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [7.403904, 45.190526], - [7.403904, 45.37144], - [7.655657, 45.37144], - [7.655657, 45.190526], - [7.403904, 45.190526] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [7.403904, 45.37144], - [7.403904, 45.552355], - [7.655657, 45.552355], - [7.655657, 45.37144], - [7.403904, 45.37144] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [7.403904, 45.552355], - [7.403904, 45.733269], - [7.655657, 45.733269], - [7.655657, 45.552355], - [7.403904, 45.552355] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [7.655657, 44.105039], - [7.655657, 44.285953], - [7.90741, 44.285953], - [7.90741, 44.105039], - [7.655657, 44.105039] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [7.655657, 44.285953], - [7.655657, 44.466868], - [7.90741, 44.466868], - [7.90741, 44.285953], - [7.655657, 44.285953] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [7.655657, 44.466868], - [7.655657, 44.647782], - [7.90741, 44.647782], - [7.90741, 44.466868], - [7.655657, 44.466868] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [7.655657, 44.647782], - [7.655657, 44.828697], - [7.90741, 44.828697], - [7.90741, 44.647782], - [7.655657, 44.647782] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [7.655657, 44.828697], - [7.655657, 45.009611], - [7.90741, 45.009611], - [7.90741, 44.828697], - [7.655657, 44.828697] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [7.655657, 45.009611], - [7.655657, 45.190526], - [7.90741, 45.190526], - [7.90741, 45.009611], - [7.655657, 45.009611] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [7.655657, 45.190526], - [7.655657, 45.37144], - [7.90741, 45.37144], - [7.90741, 45.190526], - [7.655657, 45.190526] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [7.655657, 45.37144], - [7.655657, 45.552355], - [7.90741, 45.552355], - [7.90741, 45.37144], - [7.655657, 45.37144] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [7.655657, 45.552355], - [7.655657, 45.733269], - [7.90741, 45.733269], - [7.90741, 45.552355], - [7.655657, 45.552355] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [7.655657, 45.733269], - [7.655657, 45.914184], - [7.90741, 45.914184], - [7.90741, 45.733269], - [7.655657, 45.733269] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [7.655657, 45.914184], - [7.655657, 46.095098], - [7.90741, 46.095098], - [7.90741, 45.914184], - [7.655657, 45.914184] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [7.90741, 44.105039], - [7.90741, 44.285953], - [8.159163, 44.285953], - [8.159163, 44.105039], - [7.90741, 44.105039] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [7.90741, 44.285953], - [7.90741, 44.466868], - [8.159163, 44.466868], - [8.159163, 44.285953], - [7.90741, 44.285953] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [7.90741, 44.466868], - [7.90741, 44.647782], - [8.159163, 44.647782], - [8.159163, 44.466868], - [7.90741, 44.466868] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [7.90741, 44.647782], - [7.90741, 44.828697], - [8.159163, 44.828697], - [8.159163, 44.647782], - [7.90741, 44.647782] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [7.90741, 44.828697], - [7.90741, 45.009611], - [8.159163, 45.009611], - [8.159163, 44.828697], - [7.90741, 44.828697] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [7.90741, 45.009611], - [7.90741, 45.190526], - [8.159163, 45.190526], - [8.159163, 45.009611], - [7.90741, 45.009611] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [7.90741, 45.190526], - [7.90741, 45.37144], - [8.159163, 45.37144], - [8.159163, 45.190526], - [7.90741, 45.190526] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [7.90741, 45.37144], - [7.90741, 45.552355], - [8.159163, 45.552355], - [8.159163, 45.37144], - [7.90741, 45.37144] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [7.90741, 45.552355], - [7.90741, 45.733269], - [8.159163, 45.733269], - [8.159163, 45.552355], - [7.90741, 45.552355] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [7.90741, 45.733269], - [7.90741, 45.914184], - [8.159163, 45.914184], - [8.159163, 45.733269], - [7.90741, 45.733269] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [7.90741, 45.914184], - [7.90741, 46.095098], - [8.159163, 46.095098], - [8.159163, 45.914184], - [7.90741, 45.914184] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [7.90741, 46.095098], - [7.90741, 46.276013], - [8.159163, 46.276013], - [8.159163, 46.095098], - [7.90741, 46.095098] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [7.90741, 46.276013], - [7.90741, 46.456927], - [8.159163, 46.456927], - [8.159163, 46.276013], - [7.90741, 46.276013] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [8.159163, 44.285953], - [8.159163, 44.466868], - [8.410916, 44.466868], - [8.410916, 44.285953], - [8.159163, 44.285953] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [8.159163, 44.466868], - [8.159163, 44.647782], - [8.410916, 44.647782], - [8.410916, 44.466868], - [8.159163, 44.466868] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [8.159163, 44.647782], - [8.159163, 44.828697], - [8.410916, 44.828697], - [8.410916, 44.647782], - [8.159163, 44.647782] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [8.159163, 44.828697], - [8.159163, 45.009611], - [8.410916, 45.009611], - [8.410916, 44.828697], - [8.159163, 44.828697] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [8.159163, 45.009611], - [8.159163, 45.190526], - [8.410916, 45.190526], - [8.410916, 45.009611], - [8.159163, 45.009611] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [8.159163, 45.190526], - [8.159163, 45.37144], - [8.410916, 45.37144], - [8.410916, 45.190526], - [8.159163, 45.190526] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [8.159163, 45.37144], - [8.159163, 45.552355], - [8.410916, 45.552355], - [8.410916, 45.37144], - [8.159163, 45.37144] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [8.159163, 45.552355], - [8.159163, 45.733269], - [8.410916, 45.733269], - [8.410916, 45.552355], - [8.159163, 45.552355] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [8.159163, 45.733269], - [8.159163, 45.914184], - [8.410916, 45.914184], - [8.410916, 45.733269], - [8.159163, 45.733269] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [8.159163, 45.914184], - [8.159163, 46.095098], - [8.410916, 46.095098], - [8.410916, 45.914184], - [8.159163, 45.914184] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [8.159163, 46.095098], - [8.159163, 46.276013], - [8.410916, 46.276013], - [8.410916, 46.095098], - [8.159163, 46.095098] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [8.159163, 46.276013], - [8.159163, 46.456927], - [8.410916, 46.456927], - [8.410916, 46.276013], - [8.159163, 46.276013] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [8.410916, 44.466868], - [8.410916, 44.647782], - [8.662669, 44.647782], - [8.662669, 44.466868], - [8.410916, 44.466868] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [8.410916, 44.647782], - [8.410916, 44.828697], - [8.662669, 44.828697], - [8.662669, 44.647782], - [8.410916, 44.647782] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [8.410916, 44.828697], - [8.410916, 45.009611], - [8.662669, 45.009611], - [8.662669, 44.828697], - [8.410916, 44.828697] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [8.410916, 45.009611], - [8.410916, 45.190526], - [8.662669, 45.190526], - [8.662669, 45.009611], - [8.410916, 45.009611] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [8.410916, 45.190526], - [8.410916, 45.37144], - [8.662669, 45.37144], - [8.662669, 45.190526], - [8.410916, 45.190526] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [8.410916, 45.37144], - [8.410916, 45.552355], - [8.662669, 45.552355], - [8.662669, 45.37144], - [8.410916, 45.37144] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [8.410916, 45.552355], - [8.410916, 45.733269], - [8.662669, 45.733269], - [8.662669, 45.552355], - [8.410916, 45.552355] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [8.410916, 45.733269], - [8.410916, 45.914184], - [8.662669, 45.914184], - [8.662669, 45.733269], - [8.410916, 45.733269] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [8.410916, 45.914184], - [8.410916, 46.095098], - [8.662669, 46.095098], - [8.662669, 45.914184], - [8.410916, 45.914184] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [8.410916, 46.095098], - [8.410916, 46.276013], - [8.662669, 46.276013], - [8.662669, 46.095098], - [8.410916, 46.095098] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [8.410916, 46.276013], - [8.410916, 46.456927], - [8.662669, 46.456927], - [8.662669, 46.276013], - [8.410916, 46.276013] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [8.662669, 44.466868], - [8.662669, 44.647782], - [8.914422, 44.647782], - [8.914422, 44.466868], - [8.662669, 44.466868] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [8.662669, 44.647782], - [8.662669, 44.828697], - [8.914422, 44.828697], - [8.914422, 44.647782], - [8.662669, 44.647782] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [8.662669, 44.828697], - [8.662669, 45.009611], - [8.914422, 45.009611], - [8.914422, 44.828697], - [8.662669, 44.828697] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [8.662669, 45.009611], - [8.662669, 45.190526], - [8.914422, 45.190526], - [8.914422, 45.009611], - [8.662669, 45.009611] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [8.662669, 45.190526], - [8.662669, 45.37144], - [8.914422, 45.37144], - [8.914422, 45.190526], - [8.662669, 45.190526] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [8.662669, 45.37144], - [8.662669, 45.552355], - [8.914422, 45.552355], - [8.914422, 45.37144], - [8.662669, 45.37144] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [8.662669, 45.552355], - [8.662669, 45.733269], - [8.914422, 45.733269], - [8.914422, 45.552355], - [8.662669, 45.552355] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [8.662669, 45.914184], - [8.662669, 46.095098], - [8.914422, 46.095098], - [8.914422, 45.914184], - [8.662669, 45.914184] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [8.662669, 46.095098], - [8.662669, 46.276013], - [8.914422, 46.276013], - [8.914422, 46.095098], - [8.662669, 46.095098] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [8.914422, 44.466868], - [8.914422, 44.647782], - [9.166174, 44.647782], - [9.166174, 44.466868], - [8.914422, 44.466868] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [8.914422, 44.647782], - [8.914422, 44.828697], - [9.166174, 44.828697], - [9.166174, 44.647782], - [8.914422, 44.647782] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [8.914422, 44.828697], - [8.914422, 45.009611], - [9.166174, 45.009611], - [9.166174, 44.828697], - [8.914422, 44.828697] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [8.914422, 45.009611], - [8.914422, 45.190526], - [9.166174, 45.190526], - [9.166174, 45.009611], - [8.914422, 45.009611] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [9.166174, 44.466868], - [9.166174, 44.647782], - [9.417927, 44.647782], - [9.417927, 44.466868], - [9.166174, 44.466868] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [9.166174, 44.647782], - [9.166174, 44.828697], - [9.417927, 44.828697], - [9.417927, 44.647782], - [9.166174, 44.647782] - ] - ] - } - }, - { - "type": "Feature", - "bbox": [ - 6.3775634765625, - 44.05601169578525, - 9.437255859375, - 46.50595444552049 - ], - "properties": { - "stroke": "#F00", - "stroke-width": 6, - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [6.3775634765625, 44.05601169578525], - [9.437255859375, 44.05601169578525], - [9.437255859375, 46.50595444552049], - [6.3775634765625, 46.50595444552049], - [6.3775634765625, 44.05601169578525] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "stroke": "#00F", - "stroke-width": 6, - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [8.382568359375012, 46.456781428126554], - [8.313903808593762, 46.41892578708079], - [8.31939697265626, 46.379149058330775], - [8.099670410156264, 46.26913887119718], - [8.171081542968762, 46.1893382140708], - [7.8799438476562615, 45.94160076422079], - [7.907409667968761, 45.627484212338246], - [7.7247619628906365, 45.55444852652113], - [7.5833129882812615, 45.5900172453615], - [7.484436035156261, 45.58136746810096], - [7.347106933593762, 45.527516684421215], - [7.116394042968763, 45.46976215263039], - [7.176818847656262, 45.408092022812276], - [7.094421386718762, 45.222677199620094], - [6.980438232421887, 45.20719857986464], - [6.9515991210937615, 45.17332441090049], - [6.900787353515638, 45.166547157856016], - [6.900787353515638, 45.14621056019852], - [6.854095458984387, 45.1278045274732], - [6.7813110351562615, 45.164610651725425], - [6.749725341796888, 45.1394300814679], - [6.687927246093762, 45.1394300814679], - [6.6302490234375, 45.10987715527803], - [6.65496826171875, 45.069156265623505], - [6.6741943359375, 45.02015580433459], - [6.755218505859382, 45.0182143279711], - [6.749725341796875, 44.90744135615697], - [6.815643310546875, 44.872415981701394], - [6.900787353515625, 44.84515927771909], - [6.946105957031258, 44.86560301534198], - [7.017517089843757, 44.8344477567128], - [7.002410888671875, 44.78378451819761], - [7.032623291015625, 44.73210119404699], - [7.0751953125, 44.68330096401701], - [6.990051269531262, 44.69404054463802], - [6.8637084960937615, 44.51021754644927], - [6.9021606445312615, 44.36509667482153], - [7.055969238281263, 44.219615400229195], - [7.3965454101562615, 44.125056482685174], - [7.6712036132812615, 44.180234276372886], - [7.7151489257812615, 44.09350315285844], - [7.770080566406262, 44.136884638560495], - [8.02825927734376, 44.140826830775524], - [8.08868408203126, 44.321883129398586], - [8.247985839843762, 44.52196830685208], - [8.357849121093762, 44.48670891691767], - [8.599548339843762, 44.537632301346086], - [8.665466308593762, 44.58851118961441], - [8.802795410156264, 44.51805165000559], - [8.912658691406264, 44.592423107178654], - [8.912658691406264, 44.67841867818858], - [9.017028808593762, 44.6725593921204], - [9.139251708984387, 44.57970841241188], - [9.213409423828137, 44.6061127451739], - [9.221649169921887, 44.75453548416007], - [9.066467285156264, 44.85002749260048], - [8.896179199218762, 45.05606124274412], - [8.775329589843762, 45.01530198999206], - [8.659973144531262, 45.02695045318543], - [8.522644042968764, 45.28841433167348], - [8.550109863281262, 45.3617951914213], - [8.63800048828126, 45.34828480683997], - [8.676452636718762, 45.30773430004872], - [8.76983642578126, 45.35407536661812], - [8.734130859375014, 45.38494834654319], - [8.846740722656262, 45.40423540168332], - [8.725891113281262, 45.51789504294005], - [8.654479980468762, 45.70809729528788], - [8.56109619140626, 45.79242458189573], - [8.599548339843762, 45.832626782661585], - [8.580322265625012, 45.90529985724794], - [8.725891113281262, 46.02557483126793], - [8.717651367187512, 46.0998999106273], - [8.610534667968762, 46.14178273759229], - [8.539123535156262, 46.221652456379104], - [8.451232910156262, 46.25774588045678], - [8.445739746093764, 46.30899569419854], - [8.47045898437501, 46.34313560260196], - [8.462219238281264, 46.462457505996056], - [8.382568359375012, 46.456781428126554] - ] - ] - } - } - ] + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.396892, + 45.009611 + ], + [ + 6.396892, + 45.190526 + ], + [ + 6.648645, + 45.190526 + ], + [ + 6.648645, + 45.009611 + ], + [ + 6.396892, + 45.009611 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.648645, + 44.285953 + ], + [ + 6.648645, + 44.466868 + ], + [ + 6.900398, + 44.466868 + ], + [ + 6.900398, + 44.285953 + ], + [ + 6.648645, + 44.285953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.648645, + 44.466868 + ], + [ + 6.648645, + 44.647782 + ], + [ + 6.900398, + 44.647782 + ], + [ + 6.900398, + 44.466868 + ], + [ + 6.648645, + 44.466868 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.648645, + 44.828697 + ], + [ + 6.648645, + 45.009611 + ], + [ + 6.900398, + 45.009611 + ], + [ + 6.900398, + 44.828697 + ], + [ + 6.648645, + 44.828697 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.648645, + 45.009611 + ], + [ + 6.648645, + 45.190526 + ], + [ + 6.900398, + 45.190526 + ], + [ + 6.900398, + 45.009611 + ], + [ + 6.648645, + 45.009611 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.900398, + 44.105039 + ], + [ + 6.900398, + 44.285953 + ], + [ + 7.152151, + 44.285953 + ], + [ + 7.152151, + 44.105039 + ], + [ + 6.900398, + 44.105039 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.900398, + 44.285953 + ], + [ + 6.900398, + 44.466868 + ], + [ + 7.152151, + 44.466868 + ], + [ + 7.152151, + 44.285953 + ], + [ + 6.900398, + 44.285953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.900398, + 44.466868 + ], + [ + 6.900398, + 44.647782 + ], + [ + 7.152151, + 44.647782 + ], + [ + 7.152151, + 44.466868 + ], + [ + 6.900398, + 44.466868 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.900398, + 44.647782 + ], + [ + 6.900398, + 44.828697 + ], + [ + 7.152151, + 44.828697 + ], + [ + 7.152151, + 44.647782 + ], + [ + 6.900398, + 44.647782 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.900398, + 44.828697 + ], + [ + 6.900398, + 45.009611 + ], + [ + 7.152151, + 45.009611 + ], + [ + 7.152151, + 44.828697 + ], + [ + 6.900398, + 44.828697 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.900398, + 45.009611 + ], + [ + 6.900398, + 45.190526 + ], + [ + 7.152151, + 45.190526 + ], + [ + 7.152151, + 45.009611 + ], + [ + 6.900398, + 45.009611 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.900398, + 45.190526 + ], + [ + 6.900398, + 45.37144 + ], + [ + 7.152151, + 45.37144 + ], + [ + 7.152151, + 45.190526 + ], + [ + 6.900398, + 45.190526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.900398, + 45.37144 + ], + [ + 6.900398, + 45.552355 + ], + [ + 7.152151, + 45.552355 + ], + [ + 7.152151, + 45.37144 + ], + [ + 6.900398, + 45.37144 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.152151, + 44.105039 + ], + [ + 7.152151, + 44.285953 + ], + [ + 7.403904, + 44.285953 + ], + [ + 7.403904, + 44.105039 + ], + [ + 7.152151, + 44.105039 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.152151, + 44.285953 + ], + [ + 7.152151, + 44.466868 + ], + [ + 7.403904, + 44.466868 + ], + [ + 7.403904, + 44.285953 + ], + [ + 7.152151, + 44.285953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.152151, + 44.466868 + ], + [ + 7.152151, + 44.647782 + ], + [ + 7.403904, + 44.647782 + ], + [ + 7.403904, + 44.466868 + ], + [ + 7.152151, + 44.466868 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.152151, + 44.647782 + ], + [ + 7.152151, + 44.828697 + ], + [ + 7.403904, + 44.828697 + ], + [ + 7.403904, + 44.647782 + ], + [ + 7.152151, + 44.647782 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.152151, + 44.828697 + ], + [ + 7.152151, + 45.009611 + ], + [ + 7.403904, + 45.009611 + ], + [ + 7.403904, + 44.828697 + ], + [ + 7.152151, + 44.828697 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.152151, + 45.009611 + ], + [ + 7.152151, + 45.190526 + ], + [ + 7.403904, + 45.190526 + ], + [ + 7.403904, + 45.009611 + ], + [ + 7.152151, + 45.009611 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.152151, + 45.190526 + ], + [ + 7.152151, + 45.37144 + ], + [ + 7.403904, + 45.37144 + ], + [ + 7.403904, + 45.190526 + ], + [ + 7.152151, + 45.190526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.152151, + 45.37144 + ], + [ + 7.152151, + 45.552355 + ], + [ + 7.403904, + 45.552355 + ], + [ + 7.403904, + 45.37144 + ], + [ + 7.152151, + 45.37144 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.403904, + 44.105039 + ], + [ + 7.403904, + 44.285953 + ], + [ + 7.655657, + 44.285953 + ], + [ + 7.655657, + 44.105039 + ], + [ + 7.403904, + 44.105039 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.403904, + 44.285953 + ], + [ + 7.403904, + 44.466868 + ], + [ + 7.655657, + 44.466868 + ], + [ + 7.655657, + 44.285953 + ], + [ + 7.403904, + 44.285953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.403904, + 44.466868 + ], + [ + 7.403904, + 44.647782 + ], + [ + 7.655657, + 44.647782 + ], + [ + 7.655657, + 44.466868 + ], + [ + 7.403904, + 44.466868 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.403904, + 44.647782 + ], + [ + 7.403904, + 44.828697 + ], + [ + 7.655657, + 44.828697 + ], + [ + 7.655657, + 44.647782 + ], + [ + 7.403904, + 44.647782 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.403904, + 44.828697 + ], + [ + 7.403904, + 45.009611 + ], + [ + 7.655657, + 45.009611 + ], + [ + 7.655657, + 44.828697 + ], + [ + 7.403904, + 44.828697 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.403904, + 45.009611 + ], + [ + 7.403904, + 45.190526 + ], + [ + 7.655657, + 45.190526 + ], + [ + 7.655657, + 45.009611 + ], + [ + 7.403904, + 45.009611 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.403904, + 45.190526 + ], + [ + 7.403904, + 45.37144 + ], + [ + 7.655657, + 45.37144 + ], + [ + 7.655657, + 45.190526 + ], + [ + 7.403904, + 45.190526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.403904, + 45.37144 + ], + [ + 7.403904, + 45.552355 + ], + [ + 7.655657, + 45.552355 + ], + [ + 7.655657, + 45.37144 + ], + [ + 7.403904, + 45.37144 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.403904, + 45.552355 + ], + [ + 7.403904, + 45.733269 + ], + [ + 7.655657, + 45.733269 + ], + [ + 7.655657, + 45.552355 + ], + [ + 7.403904, + 45.552355 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.655657, + 44.105039 + ], + [ + 7.655657, + 44.285953 + ], + [ + 7.90741, + 44.285953 + ], + [ + 7.90741, + 44.105039 + ], + [ + 7.655657, + 44.105039 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.655657, + 44.285953 + ], + [ + 7.655657, + 44.466868 + ], + [ + 7.90741, + 44.466868 + ], + [ + 7.90741, + 44.285953 + ], + [ + 7.655657, + 44.285953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.655657, + 44.466868 + ], + [ + 7.655657, + 44.647782 + ], + [ + 7.90741, + 44.647782 + ], + [ + 7.90741, + 44.466868 + ], + [ + 7.655657, + 44.466868 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.655657, + 44.647782 + ], + [ + 7.655657, + 44.828697 + ], + [ + 7.90741, + 44.828697 + ], + [ + 7.90741, + 44.647782 + ], + [ + 7.655657, + 44.647782 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.655657, + 44.828697 + ], + [ + 7.655657, + 45.009611 + ], + [ + 7.90741, + 45.009611 + ], + [ + 7.90741, + 44.828697 + ], + [ + 7.655657, + 44.828697 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.655657, + 45.009611 + ], + [ + 7.655657, + 45.190526 + ], + [ + 7.90741, + 45.190526 + ], + [ + 7.90741, + 45.009611 + ], + [ + 7.655657, + 45.009611 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.655657, + 45.190526 + ], + [ + 7.655657, + 45.37144 + ], + [ + 7.90741, + 45.37144 + ], + [ + 7.90741, + 45.190526 + ], + [ + 7.655657, + 45.190526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.655657, + 45.37144 + ], + [ + 7.655657, + 45.552355 + ], + [ + 7.90741, + 45.552355 + ], + [ + 7.90741, + 45.37144 + ], + [ + 7.655657, + 45.37144 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.655657, + 45.552355 + ], + [ + 7.655657, + 45.733269 + ], + [ + 7.90741, + 45.733269 + ], + [ + 7.90741, + 45.552355 + ], + [ + 7.655657, + 45.552355 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.655657, + 45.733269 + ], + [ + 7.655657, + 45.914184 + ], + [ + 7.90741, + 45.914184 + ], + [ + 7.90741, + 45.733269 + ], + [ + 7.655657, + 45.733269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.655657, + 45.914184 + ], + [ + 7.655657, + 46.095098 + ], + [ + 7.90741, + 46.095098 + ], + [ + 7.90741, + 45.914184 + ], + [ + 7.655657, + 45.914184 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.90741, + 44.105039 + ], + [ + 7.90741, + 44.285953 + ], + [ + 8.159163, + 44.285953 + ], + [ + 8.159163, + 44.105039 + ], + [ + 7.90741, + 44.105039 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.90741, + 44.285953 + ], + [ + 7.90741, + 44.466868 + ], + [ + 8.159163, + 44.466868 + ], + [ + 8.159163, + 44.285953 + ], + [ + 7.90741, + 44.285953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.90741, + 44.466868 + ], + [ + 7.90741, + 44.647782 + ], + [ + 8.159163, + 44.647782 + ], + [ + 8.159163, + 44.466868 + ], + [ + 7.90741, + 44.466868 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.90741, + 44.647782 + ], + [ + 7.90741, + 44.828697 + ], + [ + 8.159163, + 44.828697 + ], + [ + 8.159163, + 44.647782 + ], + [ + 7.90741, + 44.647782 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.90741, + 44.828697 + ], + [ + 7.90741, + 45.009611 + ], + [ + 8.159163, + 45.009611 + ], + [ + 8.159163, + 44.828697 + ], + [ + 7.90741, + 44.828697 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.90741, + 45.009611 + ], + [ + 7.90741, + 45.190526 + ], + [ + 8.159163, + 45.190526 + ], + [ + 8.159163, + 45.009611 + ], + [ + 7.90741, + 45.009611 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.90741, + 45.190526 + ], + [ + 7.90741, + 45.37144 + ], + [ + 8.159163, + 45.37144 + ], + [ + 8.159163, + 45.190526 + ], + [ + 7.90741, + 45.190526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.90741, + 45.37144 + ], + [ + 7.90741, + 45.552355 + ], + [ + 8.159163, + 45.552355 + ], + [ + 8.159163, + 45.37144 + ], + [ + 7.90741, + 45.37144 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.90741, + 45.552355 + ], + [ + 7.90741, + 45.733269 + ], + [ + 8.159163, + 45.733269 + ], + [ + 8.159163, + 45.552355 + ], + [ + 7.90741, + 45.552355 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.90741, + 45.733269 + ], + [ + 7.90741, + 45.914184 + ], + [ + 8.159163, + 45.914184 + ], + [ + 8.159163, + 45.733269 + ], + [ + 7.90741, + 45.733269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.90741, + 45.914184 + ], + [ + 7.90741, + 46.095098 + ], + [ + 8.159163, + 46.095098 + ], + [ + 8.159163, + 45.914184 + ], + [ + 7.90741, + 45.914184 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.90741, + 46.095098 + ], + [ + 7.90741, + 46.276013 + ], + [ + 8.159163, + 46.276013 + ], + [ + 8.159163, + 46.095098 + ], + [ + 7.90741, + 46.095098 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.90741, + 46.276013 + ], + [ + 7.90741, + 46.456927 + ], + [ + 8.159163, + 46.456927 + ], + [ + 8.159163, + 46.276013 + ], + [ + 7.90741, + 46.276013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.159163, + 44.285953 + ], + [ + 8.159163, + 44.466868 + ], + [ + 8.410916, + 44.466868 + ], + [ + 8.410916, + 44.285953 + ], + [ + 8.159163, + 44.285953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.159163, + 44.466868 + ], + [ + 8.159163, + 44.647782 + ], + [ + 8.410916, + 44.647782 + ], + [ + 8.410916, + 44.466868 + ], + [ + 8.159163, + 44.466868 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.159163, + 44.647782 + ], + [ + 8.159163, + 44.828697 + ], + [ + 8.410916, + 44.828697 + ], + [ + 8.410916, + 44.647782 + ], + [ + 8.159163, + 44.647782 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.159163, + 44.828697 + ], + [ + 8.159163, + 45.009611 + ], + [ + 8.410916, + 45.009611 + ], + [ + 8.410916, + 44.828697 + ], + [ + 8.159163, + 44.828697 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.159163, + 45.009611 + ], + [ + 8.159163, + 45.190526 + ], + [ + 8.410916, + 45.190526 + ], + [ + 8.410916, + 45.009611 + ], + [ + 8.159163, + 45.009611 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.159163, + 45.190526 + ], + [ + 8.159163, + 45.37144 + ], + [ + 8.410916, + 45.37144 + ], + [ + 8.410916, + 45.190526 + ], + [ + 8.159163, + 45.190526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.159163, + 45.37144 + ], + [ + 8.159163, + 45.552355 + ], + [ + 8.410916, + 45.552355 + ], + [ + 8.410916, + 45.37144 + ], + [ + 8.159163, + 45.37144 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.159163, + 45.552355 + ], + [ + 8.159163, + 45.733269 + ], + [ + 8.410916, + 45.733269 + ], + [ + 8.410916, + 45.552355 + ], + [ + 8.159163, + 45.552355 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.159163, + 45.733269 + ], + [ + 8.159163, + 45.914184 + ], + [ + 8.410916, + 45.914184 + ], + [ + 8.410916, + 45.733269 + ], + [ + 8.159163, + 45.733269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.159163, + 45.914184 + ], + [ + 8.159163, + 46.095098 + ], + [ + 8.410916, + 46.095098 + ], + [ + 8.410916, + 45.914184 + ], + [ + 8.159163, + 45.914184 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.159163, + 46.095098 + ], + [ + 8.159163, + 46.276013 + ], + [ + 8.410916, + 46.276013 + ], + [ + 8.410916, + 46.095098 + ], + [ + 8.159163, + 46.095098 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.159163, + 46.276013 + ], + [ + 8.159163, + 46.456927 + ], + [ + 8.410916, + 46.456927 + ], + [ + 8.410916, + 46.276013 + ], + [ + 8.159163, + 46.276013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.410916, + 44.466868 + ], + [ + 8.410916, + 44.647782 + ], + [ + 8.662669, + 44.647782 + ], + [ + 8.662669, + 44.466868 + ], + [ + 8.410916, + 44.466868 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.410916, + 44.647782 + ], + [ + 8.410916, + 44.828697 + ], + [ + 8.662669, + 44.828697 + ], + [ + 8.662669, + 44.647782 + ], + [ + 8.410916, + 44.647782 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.410916, + 44.828697 + ], + [ + 8.410916, + 45.009611 + ], + [ + 8.662669, + 45.009611 + ], + [ + 8.662669, + 44.828697 + ], + [ + 8.410916, + 44.828697 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.410916, + 45.009611 + ], + [ + 8.410916, + 45.190526 + ], + [ + 8.662669, + 45.190526 + ], + [ + 8.662669, + 45.009611 + ], + [ + 8.410916, + 45.009611 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.410916, + 45.190526 + ], + [ + 8.410916, + 45.37144 + ], + [ + 8.662669, + 45.37144 + ], + [ + 8.662669, + 45.190526 + ], + [ + 8.410916, + 45.190526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.410916, + 45.37144 + ], + [ + 8.410916, + 45.552355 + ], + [ + 8.662669, + 45.552355 + ], + [ + 8.662669, + 45.37144 + ], + [ + 8.410916, + 45.37144 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.410916, + 45.552355 + ], + [ + 8.410916, + 45.733269 + ], + [ + 8.662669, + 45.733269 + ], + [ + 8.662669, + 45.552355 + ], + [ + 8.410916, + 45.552355 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.410916, + 45.733269 + ], + [ + 8.410916, + 45.914184 + ], + [ + 8.662669, + 45.914184 + ], + [ + 8.662669, + 45.733269 + ], + [ + 8.410916, + 45.733269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.410916, + 45.914184 + ], + [ + 8.410916, + 46.095098 + ], + [ + 8.662669, + 46.095098 + ], + [ + 8.662669, + 45.914184 + ], + [ + 8.410916, + 45.914184 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.410916, + 46.095098 + ], + [ + 8.410916, + 46.276013 + ], + [ + 8.662669, + 46.276013 + ], + [ + 8.662669, + 46.095098 + ], + [ + 8.410916, + 46.095098 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.410916, + 46.276013 + ], + [ + 8.410916, + 46.456927 + ], + [ + 8.662669, + 46.456927 + ], + [ + 8.662669, + 46.276013 + ], + [ + 8.410916, + 46.276013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.662669, + 44.466868 + ], + [ + 8.662669, + 44.647782 + ], + [ + 8.914422, + 44.647782 + ], + [ + 8.914422, + 44.466868 + ], + [ + 8.662669, + 44.466868 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.662669, + 44.647782 + ], + [ + 8.662669, + 44.828697 + ], + [ + 8.914422, + 44.828697 + ], + [ + 8.914422, + 44.647782 + ], + [ + 8.662669, + 44.647782 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.662669, + 44.828697 + ], + [ + 8.662669, + 45.009611 + ], + [ + 8.914422, + 45.009611 + ], + [ + 8.914422, + 44.828697 + ], + [ + 8.662669, + 44.828697 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.662669, + 45.009611 + ], + [ + 8.662669, + 45.190526 + ], + [ + 8.914422, + 45.190526 + ], + [ + 8.914422, + 45.009611 + ], + [ + 8.662669, + 45.009611 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.662669, + 45.190526 + ], + [ + 8.662669, + 45.37144 + ], + [ + 8.914422, + 45.37144 + ], + [ + 8.914422, + 45.190526 + ], + [ + 8.662669, + 45.190526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.662669, + 45.37144 + ], + [ + 8.662669, + 45.552355 + ], + [ + 8.914422, + 45.552355 + ], + [ + 8.914422, + 45.37144 + ], + [ + 8.662669, + 45.37144 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.662669, + 45.552355 + ], + [ + 8.662669, + 45.733269 + ], + [ + 8.914422, + 45.733269 + ], + [ + 8.914422, + 45.552355 + ], + [ + 8.662669, + 45.552355 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.662669, + 45.914184 + ], + [ + 8.662669, + 46.095098 + ], + [ + 8.914422, + 46.095098 + ], + [ + 8.914422, + 45.914184 + ], + [ + 8.662669, + 45.914184 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.662669, + 46.095098 + ], + [ + 8.662669, + 46.276013 + ], + [ + 8.914422, + 46.276013 + ], + [ + 8.914422, + 46.095098 + ], + [ + 8.662669, + 46.095098 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.914422, + 44.466868 + ], + [ + 8.914422, + 44.647782 + ], + [ + 9.166174, + 44.647782 + ], + [ + 9.166174, + 44.466868 + ], + [ + 8.914422, + 44.466868 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.914422, + 44.647782 + ], + [ + 8.914422, + 44.828697 + ], + [ + 9.166174, + 44.828697 + ], + [ + 9.166174, + 44.647782 + ], + [ + 8.914422, + 44.647782 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.914422, + 44.828697 + ], + [ + 8.914422, + 45.009611 + ], + [ + 9.166174, + 45.009611 + ], + [ + 9.166174, + 44.828697 + ], + [ + 8.914422, + 44.828697 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.914422, + 45.009611 + ], + [ + 8.914422, + 45.190526 + ], + [ + 9.166174, + 45.190526 + ], + [ + 9.166174, + 45.009611 + ], + [ + 8.914422, + 45.009611 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.166174, + 44.466868 + ], + [ + 9.166174, + 44.647782 + ], + [ + 9.417927, + 44.647782 + ], + [ + 9.417927, + 44.466868 + ], + [ + 9.166174, + 44.466868 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.166174, + 44.647782 + ], + [ + 9.166174, + 44.828697 + ], + [ + 9.417927, + 44.828697 + ], + [ + 9.417927, + 44.647782 + ], + [ + 9.166174, + 44.647782 + ] + ] + ] + } + }, + { + "type": "Feature", + "bbox": [ + 6.3775634765625, + 44.05601169578525, + 9.437255859375, + 46.50595444552049 + ], + "properties": { + "stroke": "#F00", + "stroke-width": 6, + "fill-opacity": 0 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.3775634765625, + 44.05601169578525 + ], + [ + 9.437255859375, + 44.05601169578525 + ], + [ + 9.437255859375, + 46.50595444552049 + ], + [ + 6.3775634765625, + 46.50595444552049 + ], + [ + 6.3775634765625, + 44.05601169578525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "stroke": "#00F", + "stroke-width": 6, + "fill-opacity": 0 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.382568359375012, + 46.456781428126554 + ], + [ + 8.313903808593762, + 46.41892578708079 + ], + [ + 8.31939697265626, + 46.379149058330775 + ], + [ + 8.099670410156264, + 46.26913887119718 + ], + [ + 8.171081542968762, + 46.1893382140708 + ], + [ + 7.8799438476562615, + 45.94160076422079 + ], + [ + 7.907409667968761, + 45.627484212338246 + ], + [ + 7.7247619628906365, + 45.55444852652113 + ], + [ + 7.5833129882812615, + 45.5900172453615 + ], + [ + 7.484436035156261, + 45.58136746810096 + ], + [ + 7.347106933593762, + 45.527516684421215 + ], + [ + 7.116394042968763, + 45.46976215263039 + ], + [ + 7.176818847656262, + 45.408092022812276 + ], + [ + 7.094421386718762, + 45.222677199620094 + ], + [ + 6.980438232421887, + 45.20719857986464 + ], + [ + 6.9515991210937615, + 45.17332441090049 + ], + [ + 6.900787353515638, + 45.166547157856016 + ], + [ + 6.900787353515638, + 45.14621056019852 + ], + [ + 6.854095458984387, + 45.1278045274732 + ], + [ + 6.7813110351562615, + 45.164610651725425 + ], + [ + 6.749725341796888, + 45.1394300814679 + ], + [ + 6.687927246093762, + 45.1394300814679 + ], + [ + 6.6302490234375, + 45.10987715527803 + ], + [ + 6.65496826171875, + 45.069156265623505 + ], + [ + 6.6741943359375, + 45.02015580433459 + ], + [ + 6.755218505859382, + 45.0182143279711 + ], + [ + 6.749725341796875, + 44.90744135615697 + ], + [ + 6.815643310546875, + 44.872415981701394 + ], + [ + 6.900787353515625, + 44.84515927771909 + ], + [ + 6.946105957031258, + 44.86560301534198 + ], + [ + 7.017517089843757, + 44.8344477567128 + ], + [ + 7.002410888671875, + 44.78378451819761 + ], + [ + 7.032623291015625, + 44.73210119404699 + ], + [ + 7.0751953125, + 44.68330096401701 + ], + [ + 6.990051269531262, + 44.69404054463802 + ], + [ + 6.8637084960937615, + 44.51021754644927 + ], + [ + 6.9021606445312615, + 44.36509667482153 + ], + [ + 7.055969238281263, + 44.219615400229195 + ], + [ + 7.3965454101562615, + 44.125056482685174 + ], + [ + 7.6712036132812615, + 44.180234276372886 + ], + [ + 7.7151489257812615, + 44.09350315285844 + ], + [ + 7.770080566406262, + 44.136884638560495 + ], + [ + 8.02825927734376, + 44.140826830775524 + ], + [ + 8.08868408203126, + 44.321883129398586 + ], + [ + 8.247985839843762, + 44.52196830685208 + ], + [ + 8.357849121093762, + 44.48670891691767 + ], + [ + 8.599548339843762, + 44.537632301346086 + ], + [ + 8.665466308593762, + 44.58851118961441 + ], + [ + 8.802795410156264, + 44.51805165000559 + ], + [ + 8.912658691406264, + 44.592423107178654 + ], + [ + 8.912658691406264, + 44.67841867818858 + ], + [ + 9.017028808593762, + 44.6725593921204 + ], + [ + 9.139251708984387, + 44.57970841241188 + ], + [ + 9.213409423828137, + 44.6061127451739 + ], + [ + 9.221649169921887, + 44.75453548416007 + ], + [ + 9.066467285156264, + 44.85002749260048 + ], + [ + 8.896179199218762, + 45.05606124274412 + ], + [ + 8.775329589843762, + 45.01530198999206 + ], + [ + 8.659973144531262, + 45.02695045318543 + ], + [ + 8.522644042968764, + 45.28841433167348 + ], + [ + 8.550109863281262, + 45.3617951914213 + ], + [ + 8.63800048828126, + 45.34828480683997 + ], + [ + 8.676452636718762, + 45.30773430004872 + ], + [ + 8.76983642578126, + 45.35407536661812 + ], + [ + 8.734130859375014, + 45.38494834654319 + ], + [ + 8.846740722656262, + 45.40423540168332 + ], + [ + 8.725891113281262, + 45.51789504294005 + ], + [ + 8.654479980468762, + 45.70809729528788 + ], + [ + 8.56109619140626, + 45.79242458189573 + ], + [ + 8.599548339843762, + 45.832626782661585 + ], + [ + 8.580322265625012, + 45.90529985724794 + ], + [ + 8.725891113281262, + 46.02557483126793 + ], + [ + 8.717651367187512, + 46.0998999106273 + ], + [ + 8.610534667968762, + 46.14178273759229 + ], + [ + 8.539123535156262, + 46.221652456379104 + ], + [ + 8.451232910156262, + 46.25774588045678 + ], + [ + 8.445739746093764, + 46.30899569419854 + ], + [ + 8.47045898437501, + 46.34313560260196 + ], + [ + 8.462219238281264, + 46.462457505996056 + ], + [ + 8.382568359375012, + 46.456781428126554 + ] + ] + ] + } + } + ] } diff --git a/packages/turf-square-grid/test/out/properties.geojson b/packages/turf-square-grid/test/out/properties.geojson index ab6583645b..82c0da8387 100644 --- a/packages/turf-square-grid/test/out/properties.geojson +++ b/packages/turf-square-grid/test/out/properties.geojson @@ -1,664 +1,1207 @@ { - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [2.137036, 41.39763], - [2.137036, 41.406623], - [2.149021, 41.406623], - [2.149021, 41.39763], - [2.137036, 41.39763] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [2.137036, 41.406623], - [2.137036, 41.415616], - [2.149021, 41.415616], - [2.149021, 41.406623], - [2.137036, 41.406623] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [2.149021, 41.388636], - [2.149021, 41.39763], - [2.161006, 41.39763], - [2.161006, 41.388636], - [2.149021, 41.388636] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [2.149021, 41.39763], - [2.149021, 41.406623], - [2.161006, 41.406623], - [2.161006, 41.39763], - [2.149021, 41.39763] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [2.149021, 41.406623], - [2.149021, 41.415616], - [2.161006, 41.415616], - [2.161006, 41.406623], - [2.149021, 41.406623] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [2.161006, 41.379643], - [2.161006, 41.388636], - [2.172991, 41.388636], - [2.172991, 41.379643], - [2.161006, 41.379643] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [2.161006, 41.388636], - [2.161006, 41.39763], - [2.172991, 41.39763], - [2.172991, 41.388636], - [2.161006, 41.388636] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [2.161006, 41.39763], - [2.161006, 41.406623], - [2.172991, 41.406623], - [2.172991, 41.39763], - [2.161006, 41.39763] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [2.161006, 41.406623], - [2.161006, 41.415616], - [2.172991, 41.415616], - [2.172991, 41.406623], - [2.161006, 41.406623] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [2.161006, 41.415616], - [2.161006, 41.424609], - [2.172991, 41.424609], - [2.172991, 41.415616], - [2.161006, 41.415616] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [2.161006, 41.424609], - [2.161006, 41.433602], - [2.172991, 41.433602], - [2.172991, 41.424609], - [2.161006, 41.424609] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [2.161006, 41.433602], - [2.161006, 41.442596], - [2.172991, 41.442596], - [2.172991, 41.433602], - [2.161006, 41.433602] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [2.172991, 41.379643], - [2.172991, 41.388636], - [2.184976, 41.388636], - [2.184976, 41.379643], - [2.172991, 41.379643] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [2.172991, 41.388636], - [2.172991, 41.39763], - [2.184976, 41.39763], - [2.184976, 41.388636], - [2.172991, 41.388636] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [2.172991, 41.39763], - [2.172991, 41.406623], - [2.184976, 41.406623], - [2.184976, 41.39763], - [2.172991, 41.39763] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [2.172991, 41.406623], - [2.172991, 41.415616], - [2.184976, 41.415616], - [2.184976, 41.406623], - [2.172991, 41.406623] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [2.172991, 41.415616], - [2.172991, 41.424609], - [2.184976, 41.424609], - [2.184976, 41.415616], - [2.172991, 41.415616] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [2.172991, 41.424609], - [2.172991, 41.433602], - [2.184976, 41.433602], - [2.184976, 41.424609], - [2.172991, 41.424609] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [2.172991, 41.433602], - [2.172991, 41.442596], - [2.184976, 41.442596], - [2.184976, 41.433602], - [2.172991, 41.433602] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [2.184976, 41.379643], - [2.184976, 41.388636], - [2.196961, 41.388636], - [2.196961, 41.379643], - [2.184976, 41.379643] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [2.184976, 41.388636], - [2.184976, 41.39763], - [2.196961, 41.39763], - [2.196961, 41.388636], - [2.184976, 41.388636] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [2.184976, 41.39763], - [2.184976, 41.406623], - [2.196961, 41.406623], - [2.196961, 41.39763], - [2.184976, 41.39763] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [2.184976, 41.406623], - [2.184976, 41.415616], - [2.196961, 41.415616], - [2.196961, 41.406623], - [2.184976, 41.406623] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [2.184976, 41.415616], - [2.184976, 41.424609], - [2.196961, 41.424609], - [2.196961, 41.415616], - [2.184976, 41.415616] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [2.184976, 41.424609], - [2.184976, 41.433602], - [2.196961, 41.433602], - [2.196961, 41.424609], - [2.184976, 41.424609] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [2.184976, 41.433602], - [2.184976, 41.442596], - [2.196961, 41.442596], - [2.196961, 41.433602], - [2.184976, 41.433602] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [2.196961, 41.388636], - [2.196961, 41.39763], - [2.208947, 41.39763], - [2.208947, 41.388636], - [2.196961, 41.388636] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [2.196961, 41.39763], - [2.196961, 41.406623], - [2.208947, 41.406623], - [2.208947, 41.39763], - [2.196961, 41.39763] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [2.196961, 41.406623], - [2.196961, 41.415616], - [2.208947, 41.415616], - [2.208947, 41.406623], - [2.196961, 41.406623] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [2.196961, 41.415616], - [2.196961, 41.424609], - [2.208947, 41.424609], - [2.208947, 41.415616], - [2.196961, 41.415616] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [2.196961, 41.424609], - [2.196961, 41.433602], - [2.208947, 41.433602], - [2.208947, 41.424609], - [2.196961, 41.424609] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [2.208947, 41.39763], - [2.208947, 41.406623], - [2.220932, 41.406623], - [2.220932, 41.39763], - [2.208947, 41.39763] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [2.208947, 41.406623], - [2.208947, 41.415616], - [2.220932, 41.415616], - [2.220932, 41.406623], - [2.208947, 41.406623] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [2.208947, 41.415616], - [2.208947, 41.424609], - [2.220932, 41.424609], - [2.220932, 41.415616], - [2.208947, 41.415616] - ] - ] - } - }, - { - "type": "Feature", - "bbox": [ - 2.131519317626953, - 41.37835427979543, - 2.2264480590820312, - 41.44388449101261 - ], - "properties": { - "stroke": "#F00", - "stroke-width": 6, - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [2.131519317626953, 41.37835427979543], - [2.2264480590820312, 41.37835427979543], - [2.2264480590820312, 41.44388449101261], - [2.131519317626953, 41.44388449101261], - [2.131519317626953, 41.37835427979543] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "stroke": "#00F", - "stroke-width": 6, - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [2.223186492919922, 41.416856461155575], - [2.1716880798339844, 41.44182560856202], - [2.1636199951171875, 41.41608406639095], - [2.1334075927734375, 41.407200866420744], - [2.1845626831054683, 41.37977115211044], - [2.223186492919922, 41.416856461155575] - ] - ] - } - } - ] + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.137036, + 41.39763 + ], + [ + 2.137036, + 41.406623 + ], + [ + 2.149021, + 41.406623 + ], + [ + 2.149021, + 41.39763 + ], + [ + 2.137036, + 41.39763 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.137036, + 41.406623 + ], + [ + 2.137036, + 41.415616 + ], + [ + 2.149021, + 41.415616 + ], + [ + 2.149021, + 41.406623 + ], + [ + 2.137036, + 41.406623 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.149021, + 41.388636 + ], + [ + 2.149021, + 41.39763 + ], + [ + 2.161006, + 41.39763 + ], + [ + 2.161006, + 41.388636 + ], + [ + 2.149021, + 41.388636 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.149021, + 41.39763 + ], + [ + 2.149021, + 41.406623 + ], + [ + 2.161006, + 41.406623 + ], + [ + 2.161006, + 41.39763 + ], + [ + 2.149021, + 41.39763 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.149021, + 41.406623 + ], + [ + 2.149021, + 41.415616 + ], + [ + 2.161006, + 41.415616 + ], + [ + 2.161006, + 41.406623 + ], + [ + 2.149021, + 41.406623 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.161006, + 41.379643 + ], + [ + 2.161006, + 41.388636 + ], + [ + 2.172991, + 41.388636 + ], + [ + 2.172991, + 41.379643 + ], + [ + 2.161006, + 41.379643 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.161006, + 41.388636 + ], + [ + 2.161006, + 41.39763 + ], + [ + 2.172991, + 41.39763 + ], + [ + 2.172991, + 41.388636 + ], + [ + 2.161006, + 41.388636 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.161006, + 41.39763 + ], + [ + 2.161006, + 41.406623 + ], + [ + 2.172991, + 41.406623 + ], + [ + 2.172991, + 41.39763 + ], + [ + 2.161006, + 41.39763 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.161006, + 41.406623 + ], + [ + 2.161006, + 41.415616 + ], + [ + 2.172991, + 41.415616 + ], + [ + 2.172991, + 41.406623 + ], + [ + 2.161006, + 41.406623 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.161006, + 41.415616 + ], + [ + 2.161006, + 41.424609 + ], + [ + 2.172991, + 41.424609 + ], + [ + 2.172991, + 41.415616 + ], + [ + 2.161006, + 41.415616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.161006, + 41.424609 + ], + [ + 2.161006, + 41.433602 + ], + [ + 2.172991, + 41.433602 + ], + [ + 2.172991, + 41.424609 + ], + [ + 2.161006, + 41.424609 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.161006, + 41.433602 + ], + [ + 2.161006, + 41.442596 + ], + [ + 2.172991, + 41.442596 + ], + [ + 2.172991, + 41.433602 + ], + [ + 2.161006, + 41.433602 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.172991, + 41.379643 + ], + [ + 2.172991, + 41.388636 + ], + [ + 2.184976, + 41.388636 + ], + [ + 2.184976, + 41.379643 + ], + [ + 2.172991, + 41.379643 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.172991, + 41.388636 + ], + [ + 2.172991, + 41.39763 + ], + [ + 2.184976, + 41.39763 + ], + [ + 2.184976, + 41.388636 + ], + [ + 2.172991, + 41.388636 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.172991, + 41.39763 + ], + [ + 2.172991, + 41.406623 + ], + [ + 2.184976, + 41.406623 + ], + [ + 2.184976, + 41.39763 + ], + [ + 2.172991, + 41.39763 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.172991, + 41.406623 + ], + [ + 2.172991, + 41.415616 + ], + [ + 2.184976, + 41.415616 + ], + [ + 2.184976, + 41.406623 + ], + [ + 2.172991, + 41.406623 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.172991, + 41.415616 + ], + [ + 2.172991, + 41.424609 + ], + [ + 2.184976, + 41.424609 + ], + [ + 2.184976, + 41.415616 + ], + [ + 2.172991, + 41.415616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.172991, + 41.424609 + ], + [ + 2.172991, + 41.433602 + ], + [ + 2.184976, + 41.433602 + ], + [ + 2.184976, + 41.424609 + ], + [ + 2.172991, + 41.424609 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.172991, + 41.433602 + ], + [ + 2.172991, + 41.442596 + ], + [ + 2.184976, + 41.442596 + ], + [ + 2.184976, + 41.433602 + ], + [ + 2.172991, + 41.433602 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.184976, + 41.379643 + ], + [ + 2.184976, + 41.388636 + ], + [ + 2.196961, + 41.388636 + ], + [ + 2.196961, + 41.379643 + ], + [ + 2.184976, + 41.379643 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.184976, + 41.388636 + ], + [ + 2.184976, + 41.39763 + ], + [ + 2.196961, + 41.39763 + ], + [ + 2.196961, + 41.388636 + ], + [ + 2.184976, + 41.388636 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.184976, + 41.39763 + ], + [ + 2.184976, + 41.406623 + ], + [ + 2.196961, + 41.406623 + ], + [ + 2.196961, + 41.39763 + ], + [ + 2.184976, + 41.39763 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.184976, + 41.406623 + ], + [ + 2.184976, + 41.415616 + ], + [ + 2.196961, + 41.415616 + ], + [ + 2.196961, + 41.406623 + ], + [ + 2.184976, + 41.406623 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.184976, + 41.415616 + ], + [ + 2.184976, + 41.424609 + ], + [ + 2.196961, + 41.424609 + ], + [ + 2.196961, + 41.415616 + ], + [ + 2.184976, + 41.415616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.184976, + 41.424609 + ], + [ + 2.184976, + 41.433602 + ], + [ + 2.196961, + 41.433602 + ], + [ + 2.196961, + 41.424609 + ], + [ + 2.184976, + 41.424609 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.184976, + 41.433602 + ], + [ + 2.184976, + 41.442596 + ], + [ + 2.196961, + 41.442596 + ], + [ + 2.196961, + 41.433602 + ], + [ + 2.184976, + 41.433602 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.196961, + 41.388636 + ], + [ + 2.196961, + 41.39763 + ], + [ + 2.208947, + 41.39763 + ], + [ + 2.208947, + 41.388636 + ], + [ + 2.196961, + 41.388636 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.196961, + 41.39763 + ], + [ + 2.196961, + 41.406623 + ], + [ + 2.208947, + 41.406623 + ], + [ + 2.208947, + 41.39763 + ], + [ + 2.196961, + 41.39763 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.196961, + 41.406623 + ], + [ + 2.196961, + 41.415616 + ], + [ + 2.208947, + 41.415616 + ], + [ + 2.208947, + 41.406623 + ], + [ + 2.196961, + 41.406623 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.196961, + 41.415616 + ], + [ + 2.196961, + 41.424609 + ], + [ + 2.208947, + 41.424609 + ], + [ + 2.208947, + 41.415616 + ], + [ + 2.196961, + 41.415616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.196961, + 41.424609 + ], + [ + 2.196961, + 41.433602 + ], + [ + 2.208947, + 41.433602 + ], + [ + 2.208947, + 41.424609 + ], + [ + 2.196961, + 41.424609 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.208947, + 41.39763 + ], + [ + 2.208947, + 41.406623 + ], + [ + 2.220932, + 41.406623 + ], + [ + 2.220932, + 41.39763 + ], + [ + 2.208947, + 41.39763 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.208947, + 41.406623 + ], + [ + 2.208947, + 41.415616 + ], + [ + 2.220932, + 41.415616 + ], + [ + 2.220932, + 41.406623 + ], + [ + 2.208947, + 41.406623 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.208947, + 41.415616 + ], + [ + 2.208947, + 41.424609 + ], + [ + 2.220932, + 41.424609 + ], + [ + 2.220932, + 41.415616 + ], + [ + 2.208947, + 41.415616 + ] + ] + ] + } + }, + { + "type": "Feature", + "bbox": [ + 2.131519317626953, + 41.37835427979543, + 2.2264480590820312, + 41.44388449101261 + ], + "properties": { + "stroke": "#F00", + "stroke-width": 6, + "fill-opacity": 0 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.131519317626953, + 41.37835427979543 + ], + [ + 2.2264480590820312, + 41.37835427979543 + ], + [ + 2.2264480590820312, + 41.44388449101261 + ], + [ + 2.131519317626953, + 41.44388449101261 + ], + [ + 2.131519317626953, + 41.37835427979543 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "stroke": "#00F", + "stroke-width": 6, + "fill-opacity": 0 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.223186492919922, + 41.416856461155575 + ], + [ + 2.1716880798339844, + 41.44182560856202 + ], + [ + 2.1636199951171875, + 41.41608406639095 + ], + [ + 2.1334075927734375, + 41.407200866420744 + ], + [ + 2.1845626831054683, + 41.37977115211044 + ], + [ + 2.223186492919922, + 41.416856461155575 + ] + ] + ] + } + } + ] } diff --git a/packages/turf-square-grid/test/out/resolute.geojson b/packages/turf-square-grid/test/out/resolute.geojson index 2c5c55bf65..8b96b4e998 100644 --- a/packages/turf-square-grid/test/out/resolute.geojson +++ b/packages/turf-square-grid/test/out/resolute.geojson @@ -1,95 +1,170 @@ { - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-95.630499, 74.504464], - [-95.630499, 74.685378], - [-94.954834, 74.685378], - [-94.954834, 74.504464], - [-95.630499, 74.504464] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-95.630499, 74.685378], - [-95.630499, 74.866293], - [-94.954834, 74.866293], - [-94.954834, 74.685378], - [-95.630499, 74.685378] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-94.954834, 74.504464], - [-94.954834, 74.685378], - [-94.279169, 74.685378], - [-94.279169, 74.504464], - [-94.954834, 74.504464] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-94.954834, 74.685378], - [-94.954834, 74.866293], - [-94.279169, 74.866293], - [-94.279169, 74.685378], - [-94.954834, 74.685378] - ] - ] - } - }, - { - "type": "Feature", - "bbox": [ - -95.877685546875, - 74.46849062193377, - -94.031982421875, - 74.90226611990785 - ], - "properties": { - "stroke": "#F00", - "stroke-width": 6, - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [-95.877685546875, 74.46849062193377], - [-94.031982421875, 74.46849062193377], - [-94.031982421875, 74.90226611990785], - [-95.877685546875, 74.90226611990785], - [-95.877685546875, 74.46849062193377] - ] - ] - } - } - ] + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.630499, + 74.504464 + ], + [ + -95.630499, + 74.685378 + ], + [ + -94.954834, + 74.685378 + ], + [ + -94.954834, + 74.504464 + ], + [ + -95.630499, + 74.504464 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.630499, + 74.685378 + ], + [ + -95.630499, + 74.866293 + ], + [ + -94.954834, + 74.866293 + ], + [ + -94.954834, + 74.685378 + ], + [ + -95.630499, + 74.685378 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.954834, + 74.504464 + ], + [ + -94.954834, + 74.685378 + ], + [ + -94.279169, + 74.685378 + ], + [ + -94.279169, + 74.504464 + ], + [ + -94.954834, + 74.504464 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.954834, + 74.685378 + ], + [ + -94.954834, + 74.866293 + ], + [ + -94.279169, + 74.866293 + ], + [ + -94.279169, + 74.685378 + ], + [ + -94.954834, + 74.685378 + ] + ] + ] + } + }, + { + "type": "Feature", + "bbox": [ + -95.877685546875, + 74.46849062193377, + -94.031982421875, + 74.90226611990785 + ], + "properties": { + "stroke": "#F00", + "stroke-width": 6, + "fill-opacity": 0 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.877685546875, + 74.46849062193377 + ], + [ + -94.031982421875, + 74.46849062193377 + ], + [ + -94.031982421875, + 74.90226611990785 + ], + [ + -95.877685546875, + 74.90226611990785 + ], + [ + -95.877685546875, + 74.46849062193377 + ] + ] + ] + } + } + ] } From 6ddf4fb12f61ce686ca2d9aa321a81fbc6272734 Mon Sep 17 00:00:00 2001 From: Rowan Winsemius Date: Sat, 31 Jul 2021 21:35:40 +1000 Subject: [PATCH 5/9] prettier --- .../test/out/big-bbox.geojson | 2042 +- .../test/out/fiji-10-miles.geojson | 1013 +- .../test/out/issue-1215.geojson | 78064 ++++++---------- .../test/out/london-20-miles.geojson | 167 +- .../test/out/piedemont-mask.geojson | 4827 +- .../test/out/properties.geojson | 1867 +- .../test/out/resolute.geojson | 261 +- 7 files changed, 30036 insertions(+), 58205 deletions(-) diff --git a/packages/turf-square-grid/test/out/big-bbox.geojson b/packages/turf-square-grid/test/out/big-bbox.geojson index 3f9885c95b..fcbcbed7ed 100644 --- a/packages/turf-square-grid/test/out/big-bbox.geojson +++ b/packages/turf-square-grid/test/out/big-bbox.geojson @@ -1,1348 +1,698 @@ { - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -199.504452, - -77.132893 - ], - [ - -199.504452, - -69.896314 - ], - [ - -125.15625, - -69.896314 - ], - [ - -125.15625, - -77.132893 - ], - [ - -199.504452, - -77.132893 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -199.504452, - -69.896314 - ], - [ - -199.504452, - -62.659735 - ], - [ - -125.15625, - -62.659735 - ], - [ - -125.15625, - -69.896314 - ], - [ - -199.504452, - -69.896314 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -199.504452, - -62.659735 - ], - [ - -199.504452, - -55.423156 - ], - [ - -125.15625, - -55.423156 - ], - [ - -125.15625, - -62.659735 - ], - [ - -199.504452, - -62.659735 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -199.504452, - -55.423156 - ], - [ - -199.504452, - -48.186577 - ], - [ - -125.15625, - -48.186577 - ], - [ - -125.15625, - -55.423156 - ], - [ - -199.504452, - -55.423156 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -199.504452, - -48.186577 - ], - [ - -199.504452, - -40.949997 - ], - [ - -125.15625, - -40.949997 - ], - [ - -125.15625, - -48.186577 - ], - [ - -199.504452, - -48.186577 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -199.504452, - -40.949997 - ], - [ - -199.504452, - -33.713418 - ], - [ - -125.15625, - -33.713418 - ], - [ - -125.15625, - -40.949997 - ], - [ - -199.504452, - -40.949997 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -199.504452, - -33.713418 - ], - [ - -199.504452, - -26.476839 - ], - [ - -125.15625, - -26.476839 - ], - [ - -125.15625, - -33.713418 - ], - [ - -199.504452, - -33.713418 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -199.504452, - -26.476839 - ], - [ - -199.504452, - -19.24026 - ], - [ - -125.15625, - -19.24026 - ], - [ - -125.15625, - -26.476839 - ], - [ - -199.504452, - -26.476839 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -199.504452, - -19.24026 - ], - [ - -199.504452, - -12.003681 - ], - [ - -125.15625, - -12.003681 - ], - [ - -125.15625, - -19.24026 - ], - [ - -199.504452, - -19.24026 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -199.504452, - -12.003681 - ], - [ - -199.504452, - -4.767102 - ], - [ - -125.15625, - -4.767102 - ], - [ - -125.15625, - -12.003681 - ], - [ - -199.504452, - -12.003681 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -199.504452, - -4.767102 - ], - [ - -199.504452, - 2.469478 - ], - [ - -125.15625, - 2.469478 - ], - [ - -125.15625, - -4.767102 - ], - [ - -199.504452, - -4.767102 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -199.504452, - 2.469478 - ], - [ - -199.504452, - 9.706057 - ], - [ - -125.15625, - 9.706057 - ], - [ - -125.15625, - 2.469478 - ], - [ - -199.504452, - 2.469478 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -199.504452, - 9.706057 - ], - [ - -199.504452, - 16.942636 - ], - [ - -125.15625, - 16.942636 - ], - [ - -125.15625, - 9.706057 - ], - [ - -199.504452, - 9.706057 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -199.504452, - 16.942636 - ], - [ - -199.504452, - 24.179215 - ], - [ - -125.15625, - 24.179215 - ], - [ - -125.15625, - 16.942636 - ], - [ - -199.504452, - 16.942636 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -199.504452, - 24.179215 - ], - [ - -199.504452, - 31.415794 - ], - [ - -125.15625, - 31.415794 - ], - [ - -125.15625, - 24.179215 - ], - [ - -199.504452, - 24.179215 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -199.504452, - 31.415794 - ], - [ - -199.504452, - 38.652373 - ], - [ - -125.15625, - 38.652373 - ], - [ - -125.15625, - 31.415794 - ], - [ - -199.504452, - 31.415794 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -199.504452, - 38.652373 - ], - [ - -199.504452, - 45.888952 - ], - [ - -125.15625, - 45.888952 - ], - [ - -125.15625, - 38.652373 - ], - [ - -199.504452, - 38.652373 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -199.504452, - 45.888952 - ], - [ - -199.504452, - 53.125532 - ], - [ - -125.15625, - 53.125532 - ], - [ - -125.15625, - 45.888952 - ], - [ - -199.504452, - 45.888952 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -199.504452, - 53.125532 - ], - [ - -199.504452, - 60.362111 - ], - [ - -125.15625, - 60.362111 - ], - [ - -125.15625, - 53.125532 - ], - [ - -199.504452, - 53.125532 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -199.504452, - 60.362111 - ], - [ - -199.504452, - 67.59869 - ], - [ - -125.15625, - 67.59869 - ], - [ - -125.15625, - 60.362111 - ], - [ - -199.504452, - 60.362111 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -199.504452, - 67.59869 - ], - [ - -199.504452, - 74.835269 - ], - [ - -125.15625, - 74.835269 - ], - [ - -125.15625, - 67.59869 - ], - [ - -199.504452, - 67.59869 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -125.15625, - -77.132893 - ], - [ - -125.15625, - -69.896314 - ], - [ - -50.808048, - -69.896314 - ], - [ - -50.808048, - -77.132893 - ], - [ - -125.15625, - -77.132893 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -125.15625, - -69.896314 - ], - [ - -125.15625, - -62.659735 - ], - [ - -50.808048, - -62.659735 - ], - [ - -50.808048, - -69.896314 - ], - [ - -125.15625, - -69.896314 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -125.15625, - -62.659735 - ], - [ - -125.15625, - -55.423156 - ], - [ - -50.808048, - -55.423156 - ], - [ - -50.808048, - -62.659735 - ], - [ - -125.15625, - -62.659735 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -125.15625, - -55.423156 - ], - [ - -125.15625, - -48.186577 - ], - [ - -50.808048, - -48.186577 - ], - [ - -50.808048, - -55.423156 - ], - [ - -125.15625, - -55.423156 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -125.15625, - -48.186577 - ], - [ - -125.15625, - -40.949997 - ], - [ - -50.808048, - -40.949997 - ], - [ - -50.808048, - -48.186577 - ], - [ - -125.15625, - -48.186577 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -125.15625, - -40.949997 - ], - [ - -125.15625, - -33.713418 - ], - [ - -50.808048, - -33.713418 - ], - [ - -50.808048, - -40.949997 - ], - [ - -125.15625, - -40.949997 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -125.15625, - -33.713418 - ], - [ - -125.15625, - -26.476839 - ], - [ - -50.808048, - -26.476839 - ], - [ - -50.808048, - -33.713418 - ], - [ - -125.15625, - -33.713418 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -125.15625, - -26.476839 - ], - [ - -125.15625, - -19.24026 - ], - [ - -50.808048, - -19.24026 - ], - [ - -50.808048, - -26.476839 - ], - [ - -125.15625, - -26.476839 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -125.15625, - -19.24026 - ], - [ - -125.15625, - -12.003681 - ], - [ - -50.808048, - -12.003681 - ], - [ - -50.808048, - -19.24026 - ], - [ - -125.15625, - -19.24026 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -125.15625, - -12.003681 - ], - [ - -125.15625, - -4.767102 - ], - [ - -50.808048, - -4.767102 - ], - [ - -50.808048, - -12.003681 - ], - [ - -125.15625, - -12.003681 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -125.15625, - -4.767102 - ], - [ - -125.15625, - 2.469478 - ], - [ - -50.808048, - 2.469478 - ], - [ - -50.808048, - -4.767102 - ], - [ - -125.15625, - -4.767102 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -125.15625, - 2.469478 - ], - [ - -125.15625, - 9.706057 - ], - [ - -50.808048, - 9.706057 - ], - [ - -50.808048, - 2.469478 - ], - [ - -125.15625, - 2.469478 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -125.15625, - 9.706057 - ], - [ - -125.15625, - 16.942636 - ], - [ - -50.808048, - 16.942636 - ], - [ - -50.808048, - 9.706057 - ], - [ - -125.15625, - 9.706057 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -125.15625, - 16.942636 - ], - [ - -125.15625, - 24.179215 - ], - [ - -50.808048, - 24.179215 - ], - [ - -50.808048, - 16.942636 - ], - [ - -125.15625, - 16.942636 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -125.15625, - 24.179215 - ], - [ - -125.15625, - 31.415794 - ], - [ - -50.808048, - 31.415794 - ], - [ - -50.808048, - 24.179215 - ], - [ - -125.15625, - 24.179215 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -125.15625, - 31.415794 - ], - [ - -125.15625, - 38.652373 - ], - [ - -50.808048, - 38.652373 - ], - [ - -50.808048, - 31.415794 - ], - [ - -125.15625, - 31.415794 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -125.15625, - 38.652373 - ], - [ - -125.15625, - 45.888952 - ], - [ - -50.808048, - 45.888952 - ], - [ - -50.808048, - 38.652373 - ], - [ - -125.15625, - 38.652373 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -125.15625, - 45.888952 - ], - [ - -125.15625, - 53.125532 - ], - [ - -50.808048, - 53.125532 - ], - [ - -50.808048, - 45.888952 - ], - [ - -125.15625, - 45.888952 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -125.15625, - 53.125532 - ], - [ - -125.15625, - 60.362111 - ], - [ - -50.808048, - 60.362111 - ], - [ - -50.808048, - 53.125532 - ], - [ - -125.15625, - 53.125532 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -125.15625, - 60.362111 - ], - [ - -125.15625, - 67.59869 - ], - [ - -50.808048, - 67.59869 - ], - [ - -50.808048, - 60.362111 - ], - [ - -125.15625, - 60.362111 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -125.15625, - 67.59869 - ], - [ - -125.15625, - 74.835269 - ], - [ - -50.808048, - 74.835269 - ], - [ - -50.808048, - 67.59869 - ], - [ - -125.15625, - 67.59869 - ] - ] - ] - } - }, - { - "type": "Feature", - "bbox": [ - -220.78125, - -80.64703474739618, - -29.53125, - 78.34941069014629 - ], - "properties": { - "stroke": "#F00", - "stroke-width": 6, - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -220.78125, - -80.64703474739618 - ], - [ - -29.53125, - -80.64703474739618 - ], - [ - -29.53125, - 78.34941069014629 - ], - [ - -220.78125, - 78.34941069014629 - ], - [ - -220.78125, - -80.64703474739618 - ] - ] - ] - } - } - ] + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-199.504452, -77.132893], + [-199.504452, -69.896314], + [-125.15625, -69.896314], + [-125.15625, -77.132893], + [-199.504452, -77.132893] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-199.504452, -69.896314], + [-199.504452, -62.659735], + [-125.15625, -62.659735], + [-125.15625, -69.896314], + [-199.504452, -69.896314] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-199.504452, -62.659735], + [-199.504452, -55.423156], + [-125.15625, -55.423156], + [-125.15625, -62.659735], + [-199.504452, -62.659735] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-199.504452, -55.423156], + [-199.504452, -48.186577], + [-125.15625, -48.186577], + [-125.15625, -55.423156], + [-199.504452, -55.423156] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-199.504452, -48.186577], + [-199.504452, -40.949997], + [-125.15625, -40.949997], + [-125.15625, -48.186577], + [-199.504452, -48.186577] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-199.504452, -40.949997], + [-199.504452, -33.713418], + [-125.15625, -33.713418], + [-125.15625, -40.949997], + [-199.504452, -40.949997] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-199.504452, -33.713418], + [-199.504452, -26.476839], + [-125.15625, -26.476839], + [-125.15625, -33.713418], + [-199.504452, -33.713418] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-199.504452, -26.476839], + [-199.504452, -19.24026], + [-125.15625, -19.24026], + [-125.15625, -26.476839], + [-199.504452, -26.476839] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-199.504452, -19.24026], + [-199.504452, -12.003681], + [-125.15625, -12.003681], + [-125.15625, -19.24026], + [-199.504452, -19.24026] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-199.504452, -12.003681], + [-199.504452, -4.767102], + [-125.15625, -4.767102], + [-125.15625, -12.003681], + [-199.504452, -12.003681] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-199.504452, -4.767102], + [-199.504452, 2.469478], + [-125.15625, 2.469478], + [-125.15625, -4.767102], + [-199.504452, -4.767102] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-199.504452, 2.469478], + [-199.504452, 9.706057], + [-125.15625, 9.706057], + [-125.15625, 2.469478], + [-199.504452, 2.469478] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-199.504452, 9.706057], + [-199.504452, 16.942636], + [-125.15625, 16.942636], + [-125.15625, 9.706057], + [-199.504452, 9.706057] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-199.504452, 16.942636], + [-199.504452, 24.179215], + [-125.15625, 24.179215], + [-125.15625, 16.942636], + [-199.504452, 16.942636] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-199.504452, 24.179215], + [-199.504452, 31.415794], + [-125.15625, 31.415794], + [-125.15625, 24.179215], + [-199.504452, 24.179215] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-199.504452, 31.415794], + [-199.504452, 38.652373], + [-125.15625, 38.652373], + [-125.15625, 31.415794], + [-199.504452, 31.415794] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-199.504452, 38.652373], + [-199.504452, 45.888952], + [-125.15625, 45.888952], + [-125.15625, 38.652373], + [-199.504452, 38.652373] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-199.504452, 45.888952], + [-199.504452, 53.125532], + [-125.15625, 53.125532], + [-125.15625, 45.888952], + [-199.504452, 45.888952] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-199.504452, 53.125532], + [-199.504452, 60.362111], + [-125.15625, 60.362111], + [-125.15625, 53.125532], + [-199.504452, 53.125532] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-199.504452, 60.362111], + [-199.504452, 67.59869], + [-125.15625, 67.59869], + [-125.15625, 60.362111], + [-199.504452, 60.362111] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-199.504452, 67.59869], + [-199.504452, 74.835269], + [-125.15625, 74.835269], + [-125.15625, 67.59869], + [-199.504452, 67.59869] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -77.132893], + [-125.15625, -69.896314], + [-50.808048, -69.896314], + [-50.808048, -77.132893], + [-125.15625, -77.132893] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -69.896314], + [-125.15625, -62.659735], + [-50.808048, -62.659735], + [-50.808048, -69.896314], + [-125.15625, -69.896314] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -62.659735], + [-125.15625, -55.423156], + [-50.808048, -55.423156], + [-50.808048, -62.659735], + [-125.15625, -62.659735] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -55.423156], + [-125.15625, -48.186577], + [-50.808048, -48.186577], + [-50.808048, -55.423156], + [-125.15625, -55.423156] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -48.186577], + [-125.15625, -40.949997], + [-50.808048, -40.949997], + [-50.808048, -48.186577], + [-125.15625, -48.186577] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -40.949997], + [-125.15625, -33.713418], + [-50.808048, -33.713418], + [-50.808048, -40.949997], + [-125.15625, -40.949997] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -33.713418], + [-125.15625, -26.476839], + [-50.808048, -26.476839], + [-50.808048, -33.713418], + [-125.15625, -33.713418] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -26.476839], + [-125.15625, -19.24026], + [-50.808048, -19.24026], + [-50.808048, -26.476839], + [-125.15625, -26.476839] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -19.24026], + [-125.15625, -12.003681], + [-50.808048, -12.003681], + [-50.808048, -19.24026], + [-125.15625, -19.24026] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -12.003681], + [-125.15625, -4.767102], + [-50.808048, -4.767102], + [-50.808048, -12.003681], + [-125.15625, -12.003681] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -4.767102], + [-125.15625, 2.469478], + [-50.808048, 2.469478], + [-50.808048, -4.767102], + [-125.15625, -4.767102] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 2.469478], + [-125.15625, 9.706057], + [-50.808048, 9.706057], + [-50.808048, 2.469478], + [-125.15625, 2.469478] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 9.706057], + [-125.15625, 16.942636], + [-50.808048, 16.942636], + [-50.808048, 9.706057], + [-125.15625, 9.706057] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 16.942636], + [-125.15625, 24.179215], + [-50.808048, 24.179215], + [-50.808048, 16.942636], + [-125.15625, 16.942636] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 24.179215], + [-125.15625, 31.415794], + [-50.808048, 31.415794], + [-50.808048, 24.179215], + [-125.15625, 24.179215] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 31.415794], + [-125.15625, 38.652373], + [-50.808048, 38.652373], + [-50.808048, 31.415794], + [-125.15625, 31.415794] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 38.652373], + [-125.15625, 45.888952], + [-50.808048, 45.888952], + [-50.808048, 38.652373], + [-125.15625, 38.652373] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 45.888952], + [-125.15625, 53.125532], + [-50.808048, 53.125532], + [-50.808048, 45.888952], + [-125.15625, 45.888952] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 53.125532], + [-125.15625, 60.362111], + [-50.808048, 60.362111], + [-50.808048, 53.125532], + [-125.15625, 53.125532] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 60.362111], + [-125.15625, 67.59869], + [-50.808048, 67.59869], + [-50.808048, 60.362111], + [-125.15625, 60.362111] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 67.59869], + [-125.15625, 74.835269], + [-50.808048, 74.835269], + [-50.808048, 67.59869], + [-125.15625, 67.59869] + ] + ] + } + }, + { + "type": "Feature", + "bbox": [-220.78125, -80.64703474739618, -29.53125, 78.34941069014629], + "properties": { + "stroke": "#F00", + "stroke-width": 6, + "fill-opacity": 0 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-220.78125, -80.64703474739618], + [-29.53125, -80.64703474739618], + [-29.53125, 78.34941069014629], + [-220.78125, 78.34941069014629], + [-220.78125, -80.64703474739618] + ] + ] + } + } + ] } diff --git a/packages/turf-square-grid/test/out/fiji-10-miles.geojson b/packages/turf-square-grid/test/out/fiji-10-miles.geojson index a31c9ccf44..151ba92f0d 100644 --- a/packages/turf-square-grid/test/out/fiji-10-miles.geojson +++ b/packages/turf-square-grid/test/out/fiji-10-miles.geojson @@ -1,666 +1,351 @@ { - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -180.340249, - -17.114729 - ], - [ - -180.340249, - -16.969998 - ], - [ - -180.188768, - -16.969998 - ], - [ - -180.188768, - -17.114729 - ], - [ - -180.340249, - -17.114729 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -180.340249, - -16.969998 - ], - [ - -180.340249, - -16.825266 - ], - [ - -180.188768, - -16.825266 - ], - [ - -180.188768, - -16.969998 - ], - [ - -180.340249, - -16.969998 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -180.340249, - -16.825266 - ], - [ - -180.340249, - -16.680534 - ], - [ - -180.188768, - -16.680534 - ], - [ - -180.188768, - -16.825266 - ], - [ - -180.340249, - -16.825266 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -180.340249, - -16.680534 - ], - [ - -180.340249, - -16.535803 - ], - [ - -180.188768, - -16.535803 - ], - [ - -180.188768, - -16.680534 - ], - [ - -180.340249, - -16.680534 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -180.188768, - -17.114729 - ], - [ - -180.188768, - -16.969998 - ], - [ - -180.037288, - -16.969998 - ], - [ - -180.037288, - -17.114729 - ], - [ - -180.188768, - -17.114729 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -180.188768, - -16.969998 - ], - [ - -180.188768, - -16.825266 - ], - [ - -180.037288, - -16.825266 - ], - [ - -180.037288, - -16.969998 - ], - [ - -180.188768, - -16.969998 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -180.188768, - -16.825266 - ], - [ - -180.188768, - -16.680534 - ], - [ - -180.037288, - -16.680534 - ], - [ - -180.037288, - -16.825266 - ], - [ - -180.188768, - -16.825266 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -180.188768, - -16.680534 - ], - [ - -180.188768, - -16.535803 - ], - [ - -180.037288, - -16.535803 - ], - [ - -180.037288, - -16.680534 - ], - [ - -180.188768, - -16.680534 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -180.037288, - -17.114729 - ], - [ - -180.037288, - -16.969998 - ], - [ - -179.885808, - -16.969998 - ], - [ - -179.885808, - -17.114729 - ], - [ - -180.037288, - -17.114729 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -180.037288, - -16.969998 - ], - [ - -180.037288, - -16.825266 - ], - [ - -179.885808, - -16.825266 - ], - [ - -179.885808, - -16.969998 - ], - [ - -180.037288, - -16.969998 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -180.037288, - -16.825266 - ], - [ - -180.037288, - -16.680534 - ], - [ - -179.885808, - -16.680534 - ], - [ - -179.885808, - -16.825266 - ], - [ - -180.037288, - -16.825266 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -180.037288, - -16.680534 - ], - [ - -180.037288, - -16.535803 - ], - [ - -179.885808, - -16.535803 - ], - [ - -179.885808, - -16.680534 - ], - [ - -180.037288, - -16.680534 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -179.885808, - -17.114729 - ], - [ - -179.885808, - -16.969998 - ], - [ - -179.734327, - -16.969998 - ], - [ - -179.734327, - -17.114729 - ], - [ - -179.885808, - -17.114729 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -179.885808, - -16.969998 - ], - [ - -179.885808, - -16.825266 - ], - [ - -179.734327, - -16.825266 - ], - [ - -179.734327, - -16.969998 - ], - [ - -179.885808, - -16.969998 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -179.885808, - -16.825266 - ], - [ - -179.885808, - -16.680534 - ], - [ - -179.734327, - -16.680534 - ], - [ - -179.734327, - -16.825266 - ], - [ - -179.885808, - -16.825266 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -179.885808, - -16.680534 - ], - [ - -179.885808, - -16.535803 - ], - [ - -179.734327, - -16.535803 - ], - [ - -179.734327, - -16.680534 - ], - [ - -179.885808, - -16.680534 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -179.734327, - -17.114729 - ], - [ - -179.734327, - -16.969998 - ], - [ - -179.582847, - -16.969998 - ], - [ - -179.582847, - -17.114729 - ], - [ - -179.734327, - -17.114729 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -179.734327, - -16.969998 - ], - [ - -179.734327, - -16.825266 - ], - [ - -179.582847, - -16.825266 - ], - [ - -179.582847, - -16.969998 - ], - [ - -179.734327, - -16.969998 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -179.734327, - -16.825266 - ], - [ - -179.734327, - -16.680534 - ], - [ - -179.582847, - -16.680534 - ], - [ - -179.582847, - -16.825266 - ], - [ - -179.734327, - -16.825266 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -179.734327, - -16.680534 - ], - [ - -179.734327, - -16.535803 - ], - [ - -179.582847, - -16.535803 - ], - [ - -179.582847, - -16.680534 - ], - [ - -179.734327, - -16.680534 - ] - ] - ] - } - }, - { - "type": "Feature", - "bbox": [ - -180.3460693359375, - -17.16703442146408, - -179.5770263671875, - -16.48349760264812 - ], - "properties": { - "stroke": "#F00", - "stroke-width": 6, - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -180.3460693359375, - -17.16703442146408 - ], - [ - -179.5770263671875, - -17.16703442146408 - ], - [ - -179.5770263671875, - -16.48349760264812 - ], - [ - -180.3460693359375, - -16.48349760264812 - ], - [ - -180.3460693359375, - -17.16703442146408 - ] - ] - ] - } - } - ] + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-180.340249, -17.114729], + [-180.340249, -16.969998], + [-180.188768, -16.969998], + [-180.188768, -17.114729], + [-180.340249, -17.114729] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-180.340249, -16.969998], + [-180.340249, -16.825266], + [-180.188768, -16.825266], + [-180.188768, -16.969998], + [-180.340249, -16.969998] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-180.340249, -16.825266], + [-180.340249, -16.680534], + [-180.188768, -16.680534], + [-180.188768, -16.825266], + [-180.340249, -16.825266] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-180.340249, -16.680534], + [-180.340249, -16.535803], + [-180.188768, -16.535803], + [-180.188768, -16.680534], + [-180.340249, -16.680534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-180.188768, -17.114729], + [-180.188768, -16.969998], + [-180.037288, -16.969998], + [-180.037288, -17.114729], + [-180.188768, -17.114729] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-180.188768, -16.969998], + [-180.188768, -16.825266], + [-180.037288, -16.825266], + [-180.037288, -16.969998], + [-180.188768, -16.969998] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-180.188768, -16.825266], + [-180.188768, -16.680534], + [-180.037288, -16.680534], + [-180.037288, -16.825266], + [-180.188768, -16.825266] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-180.188768, -16.680534], + [-180.188768, -16.535803], + [-180.037288, -16.535803], + [-180.037288, -16.680534], + [-180.188768, -16.680534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-180.037288, -17.114729], + [-180.037288, -16.969998], + [-179.885808, -16.969998], + [-179.885808, -17.114729], + [-180.037288, -17.114729] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-180.037288, -16.969998], + [-180.037288, -16.825266], + [-179.885808, -16.825266], + [-179.885808, -16.969998], + [-180.037288, -16.969998] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-180.037288, -16.825266], + [-180.037288, -16.680534], + [-179.885808, -16.680534], + [-179.885808, -16.825266], + [-180.037288, -16.825266] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-180.037288, -16.680534], + [-180.037288, -16.535803], + [-179.885808, -16.535803], + [-179.885808, -16.680534], + [-180.037288, -16.680534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-179.885808, -17.114729], + [-179.885808, -16.969998], + [-179.734327, -16.969998], + [-179.734327, -17.114729], + [-179.885808, -17.114729] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-179.885808, -16.969998], + [-179.885808, -16.825266], + [-179.734327, -16.825266], + [-179.734327, -16.969998], + [-179.885808, -16.969998] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-179.885808, -16.825266], + [-179.885808, -16.680534], + [-179.734327, -16.680534], + [-179.734327, -16.825266], + [-179.885808, -16.825266] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-179.885808, -16.680534], + [-179.885808, -16.535803], + [-179.734327, -16.535803], + [-179.734327, -16.680534], + [-179.885808, -16.680534] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-179.734327, -17.114729], + [-179.734327, -16.969998], + [-179.582847, -16.969998], + [-179.582847, -17.114729], + [-179.734327, -17.114729] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-179.734327, -16.969998], + [-179.734327, -16.825266], + [-179.582847, -16.825266], + [-179.582847, -16.969998], + [-179.734327, -16.969998] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-179.734327, -16.825266], + [-179.734327, -16.680534], + [-179.582847, -16.680534], + [-179.582847, -16.825266], + [-179.734327, -16.825266] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-179.734327, -16.680534], + [-179.734327, -16.535803], + [-179.582847, -16.535803], + [-179.582847, -16.680534], + [-179.734327, -16.680534] + ] + ] + } + }, + { + "type": "Feature", + "bbox": [ + -180.3460693359375, + -17.16703442146408, + -179.5770263671875, + -16.48349760264812 + ], + "properties": { + "stroke": "#F00", + "stroke-width": 6, + "fill-opacity": 0 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-180.3460693359375, -17.16703442146408], + [-179.5770263671875, -17.16703442146408], + [-179.5770263671875, -16.48349760264812], + [-180.3460693359375, -16.48349760264812], + [-180.3460693359375, -17.16703442146408] + ] + ] + } + } + ] } diff --git a/packages/turf-square-grid/test/out/issue-1215.geojson b/packages/turf-square-grid/test/out/issue-1215.geojson index df5e2af9f6..a858b77e6b 100644 --- a/packages/turf-square-grid/test/out/issue-1215.geojson +++ b/packages/turf-square-grid/test/out/issue-1215.geojson @@ -1,51487 +1,26581 @@ { - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.699821, - 55.553161 - ], - [ - 37.699821, - 55.553251 - ], - [ - 37.69998, - 55.553251 - ], - [ - 37.69998, - 55.553161 - ], - [ - 37.699821, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.699821, - 55.553251 - ], - [ - 37.699821, - 55.553341 - ], - [ - 37.69998, - 55.553341 - ], - [ - 37.69998, - 55.553251 - ], - [ - 37.699821, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.699821, - 55.553341 - ], - [ - 37.699821, - 55.553431 - ], - [ - 37.69998, - 55.553431 - ], - [ - 37.69998, - 55.553341 - ], - [ - 37.699821, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.699821, - 55.553431 - ], - [ - 37.699821, - 55.55352 - ], - [ - 37.69998, - 55.55352 - ], - [ - 37.69998, - 55.553431 - ], - [ - 37.699821, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.699821, - 55.55352 - ], - [ - 37.699821, - 55.55361 - ], - [ - 37.69998, - 55.55361 - ], - [ - 37.69998, - 55.55352 - ], - [ - 37.699821, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.69998, - 55.553161 - ], - [ - 37.69998, - 55.553251 - ], - [ - 37.700139, - 55.553251 - ], - [ - 37.700139, - 55.553161 - ], - [ - 37.69998, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.69998, - 55.553251 - ], - [ - 37.69998, - 55.553341 - ], - [ - 37.700139, - 55.553341 - ], - [ - 37.700139, - 55.553251 - ], - [ - 37.69998, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.69998, - 55.553341 - ], - [ - 37.69998, - 55.553431 - ], - [ - 37.700139, - 55.553431 - ], - [ - 37.700139, - 55.553341 - ], - [ - 37.69998, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.69998, - 55.553431 - ], - [ - 37.69998, - 55.55352 - ], - [ - 37.700139, - 55.55352 - ], - [ - 37.700139, - 55.553431 - ], - [ - 37.69998, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.69998, - 55.55352 - ], - [ - 37.69998, - 55.55361 - ], - [ - 37.700139, - 55.55361 - ], - [ - 37.700139, - 55.55352 - ], - [ - 37.69998, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.69998, - 55.55361 - ], - [ - 37.69998, - 55.5537 - ], - [ - 37.700139, - 55.5537 - ], - [ - 37.700139, - 55.55361 - ], - [ - 37.69998, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.69998, - 55.5537 - ], - [ - 37.69998, - 55.55379 - ], - [ - 37.700139, - 55.55379 - ], - [ - 37.700139, - 55.5537 - ], - [ - 37.69998, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700139, - 55.553071 - ], - [ - 37.700139, - 55.553161 - ], - [ - 37.700298, - 55.553161 - ], - [ - 37.700298, - 55.553071 - ], - [ - 37.700139, - 55.553071 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700139, - 55.553161 - ], - [ - 37.700139, - 55.553251 - ], - [ - 37.700298, - 55.553251 - ], - [ - 37.700298, - 55.553161 - ], - [ - 37.700139, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700139, - 55.553251 - ], - [ - 37.700139, - 55.553341 - ], - [ - 37.700298, - 55.553341 - ], - [ - 37.700298, - 55.553251 - ], - [ - 37.700139, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700139, - 55.553341 - ], - [ - 37.700139, - 55.553431 - ], - [ - 37.700298, - 55.553431 - ], - [ - 37.700298, - 55.553341 - ], - [ - 37.700139, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700139, - 55.553431 - ], - [ - 37.700139, - 55.55352 - ], - [ - 37.700298, - 55.55352 - ], - [ - 37.700298, - 55.553431 - ], - [ - 37.700139, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700139, - 55.55352 - ], - [ - 37.700139, - 55.55361 - ], - [ - 37.700298, - 55.55361 - ], - [ - 37.700298, - 55.55352 - ], - [ - 37.700139, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700139, - 55.55361 - ], - [ - 37.700139, - 55.5537 - ], - [ - 37.700298, - 55.5537 - ], - [ - 37.700298, - 55.55361 - ], - [ - 37.700139, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700139, - 55.5537 - ], - [ - 37.700139, - 55.55379 - ], - [ - 37.700298, - 55.55379 - ], - [ - 37.700298, - 55.5537 - ], - [ - 37.700139, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700139, - 55.55379 - ], - [ - 37.700139, - 55.55388 - ], - [ - 37.700298, - 55.55388 - ], - [ - 37.700298, - 55.55379 - ], - [ - 37.700139, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700298, - 55.553071 - ], - [ - 37.700298, - 55.553161 - ], - [ - 37.700457, - 55.553161 - ], - [ - 37.700457, - 55.553071 - ], - [ - 37.700298, - 55.553071 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700298, - 55.553161 - ], - [ - 37.700298, - 55.553251 - ], - [ - 37.700457, - 55.553251 - ], - [ - 37.700457, - 55.553161 - ], - [ - 37.700298, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700298, - 55.553251 - ], - [ - 37.700298, - 55.553341 - ], - [ - 37.700457, - 55.553341 - ], - [ - 37.700457, - 55.553251 - ], - [ - 37.700298, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700298, - 55.553341 - ], - [ - 37.700298, - 55.553431 - ], - [ - 37.700457, - 55.553431 - ], - [ - 37.700457, - 55.553341 - ], - [ - 37.700298, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700298, - 55.553431 - ], - [ - 37.700298, - 55.55352 - ], - [ - 37.700457, - 55.55352 - ], - [ - 37.700457, - 55.553431 - ], - [ - 37.700298, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700298, - 55.55352 - ], - [ - 37.700298, - 55.55361 - ], - [ - 37.700457, - 55.55361 - ], - [ - 37.700457, - 55.55352 - ], - [ - 37.700298, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700298, - 55.55361 - ], - [ - 37.700298, - 55.5537 - ], - [ - 37.700457, - 55.5537 - ], - [ - 37.700457, - 55.55361 - ], - [ - 37.700298, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700298, - 55.5537 - ], - [ - 37.700298, - 55.55379 - ], - [ - 37.700457, - 55.55379 - ], - [ - 37.700457, - 55.5537 - ], - [ - 37.700298, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700298, - 55.55379 - ], - [ - 37.700298, - 55.55388 - ], - [ - 37.700457, - 55.55388 - ], - [ - 37.700457, - 55.55379 - ], - [ - 37.700298, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700457, - 55.552981 - ], - [ - 37.700457, - 55.553071 - ], - [ - 37.700616, - 55.553071 - ], - [ - 37.700616, - 55.552981 - ], - [ - 37.700457, - 55.552981 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700457, - 55.553071 - ], - [ - 37.700457, - 55.553161 - ], - [ - 37.700616, - 55.553161 - ], - [ - 37.700616, - 55.553071 - ], - [ - 37.700457, - 55.553071 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700457, - 55.553161 - ], - [ - 37.700457, - 55.553251 - ], - [ - 37.700616, - 55.553251 - ], - [ - 37.700616, - 55.553161 - ], - [ - 37.700457, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700457, - 55.553251 - ], - [ - 37.700457, - 55.553341 - ], - [ - 37.700616, - 55.553341 - ], - [ - 37.700616, - 55.553251 - ], - [ - 37.700457, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700457, - 55.553341 - ], - [ - 37.700457, - 55.553431 - ], - [ - 37.700616, - 55.553431 - ], - [ - 37.700616, - 55.553341 - ], - [ - 37.700457, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700457, - 55.553431 - ], - [ - 37.700457, - 55.55352 - ], - [ - 37.700616, - 55.55352 - ], - [ - 37.700616, - 55.553431 - ], - [ - 37.700457, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700457, - 55.55352 - ], - [ - 37.700457, - 55.55361 - ], - [ - 37.700616, - 55.55361 - ], - [ - 37.700616, - 55.55352 - ], - [ - 37.700457, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700457, - 55.55361 - ], - [ - 37.700457, - 55.5537 - ], - [ - 37.700616, - 55.5537 - ], - [ - 37.700616, - 55.55361 - ], - [ - 37.700457, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700457, - 55.5537 - ], - [ - 37.700457, - 55.55379 - ], - [ - 37.700616, - 55.55379 - ], - [ - 37.700616, - 55.5537 - ], - [ - 37.700457, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700457, - 55.55379 - ], - [ - 37.700457, - 55.55388 - ], - [ - 37.700616, - 55.55388 - ], - [ - 37.700616, - 55.55379 - ], - [ - 37.700457, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700457, - 55.55388 - ], - [ - 37.700457, - 55.55397 - ], - [ - 37.700616, - 55.55397 - ], - [ - 37.700616, - 55.55388 - ], - [ - 37.700457, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700616, - 55.552981 - ], - [ - 37.700616, - 55.553071 - ], - [ - 37.700775, - 55.553071 - ], - [ - 37.700775, - 55.552981 - ], - [ - 37.700616, - 55.552981 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700616, - 55.553071 - ], - [ - 37.700616, - 55.553161 - ], - [ - 37.700775, - 55.553161 - ], - [ - 37.700775, - 55.553071 - ], - [ - 37.700616, - 55.553071 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700616, - 55.553161 - ], - [ - 37.700616, - 55.553251 - ], - [ - 37.700775, - 55.553251 - ], - [ - 37.700775, - 55.553161 - ], - [ - 37.700616, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700616, - 55.553251 - ], - [ - 37.700616, - 55.553341 - ], - [ - 37.700775, - 55.553341 - ], - [ - 37.700775, - 55.553251 - ], - [ - 37.700616, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700616, - 55.553341 - ], - [ - 37.700616, - 55.553431 - ], - [ - 37.700775, - 55.553431 - ], - [ - 37.700775, - 55.553341 - ], - [ - 37.700616, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700616, - 55.553431 - ], - [ - 37.700616, - 55.55352 - ], - [ - 37.700775, - 55.55352 - ], - [ - 37.700775, - 55.553431 - ], - [ - 37.700616, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700616, - 55.55352 - ], - [ - 37.700616, - 55.55361 - ], - [ - 37.700775, - 55.55361 - ], - [ - 37.700775, - 55.55352 - ], - [ - 37.700616, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700616, - 55.55361 - ], - [ - 37.700616, - 55.5537 - ], - [ - 37.700775, - 55.5537 - ], - [ - 37.700775, - 55.55361 - ], - [ - 37.700616, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700616, - 55.5537 - ], - [ - 37.700616, - 55.55379 - ], - [ - 37.700775, - 55.55379 - ], - [ - 37.700775, - 55.5537 - ], - [ - 37.700616, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700616, - 55.55379 - ], - [ - 37.700616, - 55.55388 - ], - [ - 37.700775, - 55.55388 - ], - [ - 37.700775, - 55.55379 - ], - [ - 37.700616, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700616, - 55.55388 - ], - [ - 37.700616, - 55.55397 - ], - [ - 37.700775, - 55.55397 - ], - [ - 37.700775, - 55.55388 - ], - [ - 37.700616, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700775, - 55.552981 - ], - [ - 37.700775, - 55.553071 - ], - [ - 37.700934, - 55.553071 - ], - [ - 37.700934, - 55.552981 - ], - [ - 37.700775, - 55.552981 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700775, - 55.553071 - ], - [ - 37.700775, - 55.553161 - ], - [ - 37.700934, - 55.553161 - ], - [ - 37.700934, - 55.553071 - ], - [ - 37.700775, - 55.553071 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700775, - 55.553161 - ], - [ - 37.700775, - 55.553251 - ], - [ - 37.700934, - 55.553251 - ], - [ - 37.700934, - 55.553161 - ], - [ - 37.700775, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700775, - 55.553251 - ], - [ - 37.700775, - 55.553341 - ], - [ - 37.700934, - 55.553341 - ], - [ - 37.700934, - 55.553251 - ], - [ - 37.700775, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700775, - 55.553341 - ], - [ - 37.700775, - 55.553431 - ], - [ - 37.700934, - 55.553431 - ], - [ - 37.700934, - 55.553341 - ], - [ - 37.700775, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700775, - 55.553431 - ], - [ - 37.700775, - 55.55352 - ], - [ - 37.700934, - 55.55352 - ], - [ - 37.700934, - 55.553431 - ], - [ - 37.700775, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700775, - 55.55352 - ], - [ - 37.700775, - 55.55361 - ], - [ - 37.700934, - 55.55361 - ], - [ - 37.700934, - 55.55352 - ], - [ - 37.700775, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700775, - 55.55361 - ], - [ - 37.700775, - 55.5537 - ], - [ - 37.700934, - 55.5537 - ], - [ - 37.700934, - 55.55361 - ], - [ - 37.700775, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700775, - 55.5537 - ], - [ - 37.700775, - 55.55379 - ], - [ - 37.700934, - 55.55379 - ], - [ - 37.700934, - 55.5537 - ], - [ - 37.700775, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700775, - 55.55379 - ], - [ - 37.700775, - 55.55388 - ], - [ - 37.700934, - 55.55388 - ], - [ - 37.700934, - 55.55379 - ], - [ - 37.700775, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700775, - 55.55388 - ], - [ - 37.700775, - 55.55397 - ], - [ - 37.700934, - 55.55397 - ], - [ - 37.700934, - 55.55388 - ], - [ - 37.700775, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700775, - 55.55397 - ], - [ - 37.700775, - 55.55406 - ], - [ - 37.700934, - 55.55406 - ], - [ - 37.700934, - 55.55397 - ], - [ - 37.700775, - 55.55397 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700934, - 55.552891 - ], - [ - 37.700934, - 55.552981 - ], - [ - 37.701093, - 55.552981 - ], - [ - 37.701093, - 55.552891 - ], - [ - 37.700934, - 55.552891 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700934, - 55.552981 - ], - [ - 37.700934, - 55.553071 - ], - [ - 37.701093, - 55.553071 - ], - [ - 37.701093, - 55.552981 - ], - [ - 37.700934, - 55.552981 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700934, - 55.553071 - ], - [ - 37.700934, - 55.553161 - ], - [ - 37.701093, - 55.553161 - ], - [ - 37.701093, - 55.553071 - ], - [ - 37.700934, - 55.553071 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700934, - 55.553161 - ], - [ - 37.700934, - 55.553251 - ], - [ - 37.701093, - 55.553251 - ], - [ - 37.701093, - 55.553161 - ], - [ - 37.700934, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700934, - 55.553251 - ], - [ - 37.700934, - 55.553341 - ], - [ - 37.701093, - 55.553341 - ], - [ - 37.701093, - 55.553251 - ], - [ - 37.700934, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700934, - 55.553341 - ], - [ - 37.700934, - 55.553431 - ], - [ - 37.701093, - 55.553431 - ], - [ - 37.701093, - 55.553341 - ], - [ - 37.700934, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700934, - 55.553431 - ], - [ - 37.700934, - 55.55352 - ], - [ - 37.701093, - 55.55352 - ], - [ - 37.701093, - 55.553431 - ], - [ - 37.700934, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700934, - 55.55352 - ], - [ - 37.700934, - 55.55361 - ], - [ - 37.701093, - 55.55361 - ], - [ - 37.701093, - 55.55352 - ], - [ - 37.700934, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700934, - 55.55361 - ], - [ - 37.700934, - 55.5537 - ], - [ - 37.701093, - 55.5537 - ], - [ - 37.701093, - 55.55361 - ], - [ - 37.700934, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700934, - 55.5537 - ], - [ - 37.700934, - 55.55379 - ], - [ - 37.701093, - 55.55379 - ], - [ - 37.701093, - 55.5537 - ], - [ - 37.700934, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700934, - 55.55379 - ], - [ - 37.700934, - 55.55388 - ], - [ - 37.701093, - 55.55388 - ], - [ - 37.701093, - 55.55379 - ], - [ - 37.700934, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700934, - 55.55388 - ], - [ - 37.700934, - 55.55397 - ], - [ - 37.701093, - 55.55397 - ], - [ - 37.701093, - 55.55388 - ], - [ - 37.700934, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.700934, - 55.55397 - ], - [ - 37.700934, - 55.55406 - ], - [ - 37.701093, - 55.55406 - ], - [ - 37.701093, - 55.55397 - ], - [ - 37.700934, - 55.55397 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701093, - 55.552891 - ], - [ - 37.701093, - 55.552981 - ], - [ - 37.701252, - 55.552981 - ], - [ - 37.701252, - 55.552891 - ], - [ - 37.701093, - 55.552891 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701093, - 55.552981 - ], - [ - 37.701093, - 55.553071 - ], - [ - 37.701252, - 55.553071 - ], - [ - 37.701252, - 55.552981 - ], - [ - 37.701093, - 55.552981 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701093, - 55.553071 - ], - [ - 37.701093, - 55.553161 - ], - [ - 37.701252, - 55.553161 - ], - [ - 37.701252, - 55.553071 - ], - [ - 37.701093, - 55.553071 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701093, - 55.553161 - ], - [ - 37.701093, - 55.553251 - ], - [ - 37.701252, - 55.553251 - ], - [ - 37.701252, - 55.553161 - ], - [ - 37.701093, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701093, - 55.553251 - ], - [ - 37.701093, - 55.553341 - ], - [ - 37.701252, - 55.553341 - ], - [ - 37.701252, - 55.553251 - ], - [ - 37.701093, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701093, - 55.553341 - ], - [ - 37.701093, - 55.553431 - ], - [ - 37.701252, - 55.553431 - ], - [ - 37.701252, - 55.553341 - ], - [ - 37.701093, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701093, - 55.553431 - ], - [ - 37.701093, - 55.55352 - ], - [ - 37.701252, - 55.55352 - ], - [ - 37.701252, - 55.553431 - ], - [ - 37.701093, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701093, - 55.55352 - ], - [ - 37.701093, - 55.55361 - ], - [ - 37.701252, - 55.55361 - ], - [ - 37.701252, - 55.55352 - ], - [ - 37.701093, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701093, - 55.55361 - ], - [ - 37.701093, - 55.5537 - ], - [ - 37.701252, - 55.5537 - ], - [ - 37.701252, - 55.55361 - ], - [ - 37.701093, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701093, - 55.5537 - ], - [ - 37.701093, - 55.55379 - ], - [ - 37.701252, - 55.55379 - ], - [ - 37.701252, - 55.5537 - ], - [ - 37.701093, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701093, - 55.55379 - ], - [ - 37.701093, - 55.55388 - ], - [ - 37.701252, - 55.55388 - ], - [ - 37.701252, - 55.55379 - ], - [ - 37.701093, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701093, - 55.55388 - ], - [ - 37.701093, - 55.55397 - ], - [ - 37.701252, - 55.55397 - ], - [ - 37.701252, - 55.55388 - ], - [ - 37.701093, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701093, - 55.55397 - ], - [ - 37.701093, - 55.55406 - ], - [ - 37.701252, - 55.55406 - ], - [ - 37.701252, - 55.55397 - ], - [ - 37.701093, - 55.55397 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701093, - 55.55406 - ], - [ - 37.701093, - 55.55415 - ], - [ - 37.701252, - 55.55415 - ], - [ - 37.701252, - 55.55406 - ], - [ - 37.701093, - 55.55406 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701252, - 55.552801 - ], - [ - 37.701252, - 55.552891 - ], - [ - 37.701411, - 55.552891 - ], - [ - 37.701411, - 55.552801 - ], - [ - 37.701252, - 55.552801 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701252, - 55.552891 - ], - [ - 37.701252, - 55.552981 - ], - [ - 37.701411, - 55.552981 - ], - [ - 37.701411, - 55.552891 - ], - [ - 37.701252, - 55.552891 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701252, - 55.552981 - ], - [ - 37.701252, - 55.553071 - ], - [ - 37.701411, - 55.553071 - ], - [ - 37.701411, - 55.552981 - ], - [ - 37.701252, - 55.552981 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701252, - 55.553071 - ], - [ - 37.701252, - 55.553161 - ], - [ - 37.701411, - 55.553161 - ], - [ - 37.701411, - 55.553071 - ], - [ - 37.701252, - 55.553071 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701252, - 55.553161 - ], - [ - 37.701252, - 55.553251 - ], - [ - 37.701411, - 55.553251 - ], - [ - 37.701411, - 55.553161 - ], - [ - 37.701252, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701252, - 55.553251 - ], - [ - 37.701252, - 55.553341 - ], - [ - 37.701411, - 55.553341 - ], - [ - 37.701411, - 55.553251 - ], - [ - 37.701252, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701252, - 55.553341 - ], - [ - 37.701252, - 55.553431 - ], - [ - 37.701411, - 55.553431 - ], - [ - 37.701411, - 55.553341 - ], - [ - 37.701252, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701252, - 55.553431 - ], - [ - 37.701252, - 55.55352 - ], - [ - 37.701411, - 55.55352 - ], - [ - 37.701411, - 55.553431 - ], - [ - 37.701252, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701252, - 55.55352 - ], - [ - 37.701252, - 55.55361 - ], - [ - 37.701411, - 55.55361 - ], - [ - 37.701411, - 55.55352 - ], - [ - 37.701252, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701252, - 55.55361 - ], - [ - 37.701252, - 55.5537 - ], - [ - 37.701411, - 55.5537 - ], - [ - 37.701411, - 55.55361 - ], - [ - 37.701252, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701252, - 55.5537 - ], - [ - 37.701252, - 55.55379 - ], - [ - 37.701411, - 55.55379 - ], - [ - 37.701411, - 55.5537 - ], - [ - 37.701252, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701252, - 55.55379 - ], - [ - 37.701252, - 55.55388 - ], - [ - 37.701411, - 55.55388 - ], - [ - 37.701411, - 55.55379 - ], - [ - 37.701252, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701252, - 55.55388 - ], - [ - 37.701252, - 55.55397 - ], - [ - 37.701411, - 55.55397 - ], - [ - 37.701411, - 55.55388 - ], - [ - 37.701252, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701252, - 55.55397 - ], - [ - 37.701252, - 55.55406 - ], - [ - 37.701411, - 55.55406 - ], - [ - 37.701411, - 55.55397 - ], - [ - 37.701252, - 55.55397 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701252, - 55.55406 - ], - [ - 37.701252, - 55.55415 - ], - [ - 37.701411, - 55.55415 - ], - [ - 37.701411, - 55.55406 - ], - [ - 37.701252, - 55.55406 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701411, - 55.552801 - ], - [ - 37.701411, - 55.552891 - ], - [ - 37.70157, - 55.552891 - ], - [ - 37.70157, - 55.552801 - ], - [ - 37.701411, - 55.552801 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701411, - 55.552891 - ], - [ - 37.701411, - 55.552981 - ], - [ - 37.70157, - 55.552981 - ], - [ - 37.70157, - 55.552891 - ], - [ - 37.701411, - 55.552891 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701411, - 55.552981 - ], - [ - 37.701411, - 55.553071 - ], - [ - 37.70157, - 55.553071 - ], - [ - 37.70157, - 55.552981 - ], - [ - 37.701411, - 55.552981 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701411, - 55.553071 - ], - [ - 37.701411, - 55.553161 - ], - [ - 37.70157, - 55.553161 - ], - [ - 37.70157, - 55.553071 - ], - [ - 37.701411, - 55.553071 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701411, - 55.553161 - ], - [ - 37.701411, - 55.553251 - ], - [ - 37.70157, - 55.553251 - ], - [ - 37.70157, - 55.553161 - ], - [ - 37.701411, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701411, - 55.553251 - ], - [ - 37.701411, - 55.553341 - ], - [ - 37.70157, - 55.553341 - ], - [ - 37.70157, - 55.553251 - ], - [ - 37.701411, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701411, - 55.553341 - ], - [ - 37.701411, - 55.553431 - ], - [ - 37.70157, - 55.553431 - ], - [ - 37.70157, - 55.553341 - ], - [ - 37.701411, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701411, - 55.553431 - ], - [ - 37.701411, - 55.55352 - ], - [ - 37.70157, - 55.55352 - ], - [ - 37.70157, - 55.553431 - ], - [ - 37.701411, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701411, - 55.55352 - ], - [ - 37.701411, - 55.55361 - ], - [ - 37.70157, - 55.55361 - ], - [ - 37.70157, - 55.55352 - ], - [ - 37.701411, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701411, - 55.55361 - ], - [ - 37.701411, - 55.5537 - ], - [ - 37.70157, - 55.5537 - ], - [ - 37.70157, - 55.55361 - ], - [ - 37.701411, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701411, - 55.5537 - ], - [ - 37.701411, - 55.55379 - ], - [ - 37.70157, - 55.55379 - ], - [ - 37.70157, - 55.5537 - ], - [ - 37.701411, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701411, - 55.55379 - ], - [ - 37.701411, - 55.55388 - ], - [ - 37.70157, - 55.55388 - ], - [ - 37.70157, - 55.55379 - ], - [ - 37.701411, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701411, - 55.55388 - ], - [ - 37.701411, - 55.55397 - ], - [ - 37.70157, - 55.55397 - ], - [ - 37.70157, - 55.55388 - ], - [ - 37.701411, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701411, - 55.55397 - ], - [ - 37.701411, - 55.55406 - ], - [ - 37.70157, - 55.55406 - ], - [ - 37.70157, - 55.55397 - ], - [ - 37.701411, - 55.55397 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701411, - 55.55406 - ], - [ - 37.701411, - 55.55415 - ], - [ - 37.70157, - 55.55415 - ], - [ - 37.70157, - 55.55406 - ], - [ - 37.701411, - 55.55406 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701411, - 55.55415 - ], - [ - 37.701411, - 55.55424 - ], - [ - 37.70157, - 55.55424 - ], - [ - 37.70157, - 55.55415 - ], - [ - 37.701411, - 55.55415 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70157, - 55.552711 - ], - [ - 37.70157, - 55.552801 - ], - [ - 37.701729, - 55.552801 - ], - [ - 37.701729, - 55.552711 - ], - [ - 37.70157, - 55.552711 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70157, - 55.552801 - ], - [ - 37.70157, - 55.552891 - ], - [ - 37.701729, - 55.552891 - ], - [ - 37.701729, - 55.552801 - ], - [ - 37.70157, - 55.552801 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70157, - 55.552891 - ], - [ - 37.70157, - 55.552981 - ], - [ - 37.701729, - 55.552981 - ], - [ - 37.701729, - 55.552891 - ], - [ - 37.70157, - 55.552891 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70157, - 55.552981 - ], - [ - 37.70157, - 55.553071 - ], - [ - 37.701729, - 55.553071 - ], - [ - 37.701729, - 55.552981 - ], - [ - 37.70157, - 55.552981 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70157, - 55.553071 - ], - [ - 37.70157, - 55.553161 - ], - [ - 37.701729, - 55.553161 - ], - [ - 37.701729, - 55.553071 - ], - [ - 37.70157, - 55.553071 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70157, - 55.553161 - ], - [ - 37.70157, - 55.553251 - ], - [ - 37.701729, - 55.553251 - ], - [ - 37.701729, - 55.553161 - ], - [ - 37.70157, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70157, - 55.553251 - ], - [ - 37.70157, - 55.553341 - ], - [ - 37.701729, - 55.553341 - ], - [ - 37.701729, - 55.553251 - ], - [ - 37.70157, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70157, - 55.553341 - ], - [ - 37.70157, - 55.553431 - ], - [ - 37.701729, - 55.553431 - ], - [ - 37.701729, - 55.553341 - ], - [ - 37.70157, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70157, - 55.553431 - ], - [ - 37.70157, - 55.55352 - ], - [ - 37.701729, - 55.55352 - ], - [ - 37.701729, - 55.553431 - ], - [ - 37.70157, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70157, - 55.55352 - ], - [ - 37.70157, - 55.55361 - ], - [ - 37.701729, - 55.55361 - ], - [ - 37.701729, - 55.55352 - ], - [ - 37.70157, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70157, - 55.55361 - ], - [ - 37.70157, - 55.5537 - ], - [ - 37.701729, - 55.5537 - ], - [ - 37.701729, - 55.55361 - ], - [ - 37.70157, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70157, - 55.5537 - ], - [ - 37.70157, - 55.55379 - ], - [ - 37.701729, - 55.55379 - ], - [ - 37.701729, - 55.5537 - ], - [ - 37.70157, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70157, - 55.55379 - ], - [ - 37.70157, - 55.55388 - ], - [ - 37.701729, - 55.55388 - ], - [ - 37.701729, - 55.55379 - ], - [ - 37.70157, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70157, - 55.55388 - ], - [ - 37.70157, - 55.55397 - ], - [ - 37.701729, - 55.55397 - ], - [ - 37.701729, - 55.55388 - ], - [ - 37.70157, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70157, - 55.55397 - ], - [ - 37.70157, - 55.55406 - ], - [ - 37.701729, - 55.55406 - ], - [ - 37.701729, - 55.55397 - ], - [ - 37.70157, - 55.55397 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70157, - 55.55406 - ], - [ - 37.70157, - 55.55415 - ], - [ - 37.701729, - 55.55415 - ], - [ - 37.701729, - 55.55406 - ], - [ - 37.70157, - 55.55406 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70157, - 55.55415 - ], - [ - 37.70157, - 55.55424 - ], - [ - 37.701729, - 55.55424 - ], - [ - 37.701729, - 55.55415 - ], - [ - 37.70157, - 55.55415 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701729, - 55.552711 - ], - [ - 37.701729, - 55.552801 - ], - [ - 37.701888, - 55.552801 - ], - [ - 37.701888, - 55.552711 - ], - [ - 37.701729, - 55.552711 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701729, - 55.552801 - ], - [ - 37.701729, - 55.552891 - ], - [ - 37.701888, - 55.552891 - ], - [ - 37.701888, - 55.552801 - ], - [ - 37.701729, - 55.552801 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701729, - 55.552891 - ], - [ - 37.701729, - 55.552981 - ], - [ - 37.701888, - 55.552981 - ], - [ - 37.701888, - 55.552891 - ], - [ - 37.701729, - 55.552891 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701729, - 55.552981 - ], - [ - 37.701729, - 55.553071 - ], - [ - 37.701888, - 55.553071 - ], - [ - 37.701888, - 55.552981 - ], - [ - 37.701729, - 55.552981 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701729, - 55.553071 - ], - [ - 37.701729, - 55.553161 - ], - [ - 37.701888, - 55.553161 - ], - [ - 37.701888, - 55.553071 - ], - [ - 37.701729, - 55.553071 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701729, - 55.553161 - ], - [ - 37.701729, - 55.553251 - ], - [ - 37.701888, - 55.553251 - ], - [ - 37.701888, - 55.553161 - ], - [ - 37.701729, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701729, - 55.553251 - ], - [ - 37.701729, - 55.553341 - ], - [ - 37.701888, - 55.553341 - ], - [ - 37.701888, - 55.553251 - ], - [ - 37.701729, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701729, - 55.553341 - ], - [ - 37.701729, - 55.553431 - ], - [ - 37.701888, - 55.553431 - ], - [ - 37.701888, - 55.553341 - ], - [ - 37.701729, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701729, - 55.553431 - ], - [ - 37.701729, - 55.55352 - ], - [ - 37.701888, - 55.55352 - ], - [ - 37.701888, - 55.553431 - ], - [ - 37.701729, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701729, - 55.55352 - ], - [ - 37.701729, - 55.55361 - ], - [ - 37.701888, - 55.55361 - ], - [ - 37.701888, - 55.55352 - ], - [ - 37.701729, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701729, - 55.55361 - ], - [ - 37.701729, - 55.5537 - ], - [ - 37.701888, - 55.5537 - ], - [ - 37.701888, - 55.55361 - ], - [ - 37.701729, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701729, - 55.5537 - ], - [ - 37.701729, - 55.55379 - ], - [ - 37.701888, - 55.55379 - ], - [ - 37.701888, - 55.5537 - ], - [ - 37.701729, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701729, - 55.55379 - ], - [ - 37.701729, - 55.55388 - ], - [ - 37.701888, - 55.55388 - ], - [ - 37.701888, - 55.55379 - ], - [ - 37.701729, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701729, - 55.55388 - ], - [ - 37.701729, - 55.55397 - ], - [ - 37.701888, - 55.55397 - ], - [ - 37.701888, - 55.55388 - ], - [ - 37.701729, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701729, - 55.55397 - ], - [ - 37.701729, - 55.55406 - ], - [ - 37.701888, - 55.55406 - ], - [ - 37.701888, - 55.55397 - ], - [ - 37.701729, - 55.55397 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701729, - 55.55406 - ], - [ - 37.701729, - 55.55415 - ], - [ - 37.701888, - 55.55415 - ], - [ - 37.701888, - 55.55406 - ], - [ - 37.701729, - 55.55406 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701729, - 55.55415 - ], - [ - 37.701729, - 55.55424 - ], - [ - 37.701888, - 55.55424 - ], - [ - 37.701888, - 55.55415 - ], - [ - 37.701729, - 55.55415 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701729, - 55.55424 - ], - [ - 37.701729, - 55.55433 - ], - [ - 37.701888, - 55.55433 - ], - [ - 37.701888, - 55.55424 - ], - [ - 37.701729, - 55.55424 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701888, - 55.552621 - ], - [ - 37.701888, - 55.552711 - ], - [ - 37.702047, - 55.552711 - ], - [ - 37.702047, - 55.552621 - ], - [ - 37.701888, - 55.552621 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701888, - 55.552711 - ], - [ - 37.701888, - 55.552801 - ], - [ - 37.702047, - 55.552801 - ], - [ - 37.702047, - 55.552711 - ], - [ - 37.701888, - 55.552711 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701888, - 55.552801 - ], - [ - 37.701888, - 55.552891 - ], - [ - 37.702047, - 55.552891 - ], - [ - 37.702047, - 55.552801 - ], - [ - 37.701888, - 55.552801 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701888, - 55.552891 - ], - [ - 37.701888, - 55.552981 - ], - [ - 37.702047, - 55.552981 - ], - [ - 37.702047, - 55.552891 - ], - [ - 37.701888, - 55.552891 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701888, - 55.552981 - ], - [ - 37.701888, - 55.553071 - ], - [ - 37.702047, - 55.553071 - ], - [ - 37.702047, - 55.552981 - ], - [ - 37.701888, - 55.552981 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701888, - 55.553071 - ], - [ - 37.701888, - 55.553161 - ], - [ - 37.702047, - 55.553161 - ], - [ - 37.702047, - 55.553071 - ], - [ - 37.701888, - 55.553071 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701888, - 55.553161 - ], - [ - 37.701888, - 55.553251 - ], - [ - 37.702047, - 55.553251 - ], - [ - 37.702047, - 55.553161 - ], - [ - 37.701888, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701888, - 55.553251 - ], - [ - 37.701888, - 55.553341 - ], - [ - 37.702047, - 55.553341 - ], - [ - 37.702047, - 55.553251 - ], - [ - 37.701888, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701888, - 55.553341 - ], - [ - 37.701888, - 55.553431 - ], - [ - 37.702047, - 55.553431 - ], - [ - 37.702047, - 55.553341 - ], - [ - 37.701888, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701888, - 55.553431 - ], - [ - 37.701888, - 55.55352 - ], - [ - 37.702047, - 55.55352 - ], - [ - 37.702047, - 55.553431 - ], - [ - 37.701888, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701888, - 55.55352 - ], - [ - 37.701888, - 55.55361 - ], - [ - 37.702047, - 55.55361 - ], - [ - 37.702047, - 55.55352 - ], - [ - 37.701888, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701888, - 55.55361 - ], - [ - 37.701888, - 55.5537 - ], - [ - 37.702047, - 55.5537 - ], - [ - 37.702047, - 55.55361 - ], - [ - 37.701888, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701888, - 55.5537 - ], - [ - 37.701888, - 55.55379 - ], - [ - 37.702047, - 55.55379 - ], - [ - 37.702047, - 55.5537 - ], - [ - 37.701888, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701888, - 55.55379 - ], - [ - 37.701888, - 55.55388 - ], - [ - 37.702047, - 55.55388 - ], - [ - 37.702047, - 55.55379 - ], - [ - 37.701888, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701888, - 55.55388 - ], - [ - 37.701888, - 55.55397 - ], - [ - 37.702047, - 55.55397 - ], - [ - 37.702047, - 55.55388 - ], - [ - 37.701888, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701888, - 55.55397 - ], - [ - 37.701888, - 55.55406 - ], - [ - 37.702047, - 55.55406 - ], - [ - 37.702047, - 55.55397 - ], - [ - 37.701888, - 55.55397 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701888, - 55.55406 - ], - [ - 37.701888, - 55.55415 - ], - [ - 37.702047, - 55.55415 - ], - [ - 37.702047, - 55.55406 - ], - [ - 37.701888, - 55.55406 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701888, - 55.55415 - ], - [ - 37.701888, - 55.55424 - ], - [ - 37.702047, - 55.55424 - ], - [ - 37.702047, - 55.55415 - ], - [ - 37.701888, - 55.55415 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.701888, - 55.55424 - ], - [ - 37.701888, - 55.55433 - ], - [ - 37.702047, - 55.55433 - ], - [ - 37.702047, - 55.55424 - ], - [ - 37.701888, - 55.55424 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702047, - 55.552621 - ], - [ - 37.702047, - 55.552711 - ], - [ - 37.702206, - 55.552711 - ], - [ - 37.702206, - 55.552621 - ], - [ - 37.702047, - 55.552621 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702047, - 55.552711 - ], - [ - 37.702047, - 55.552801 - ], - [ - 37.702206, - 55.552801 - ], - [ - 37.702206, - 55.552711 - ], - [ - 37.702047, - 55.552711 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702047, - 55.552801 - ], - [ - 37.702047, - 55.552891 - ], - [ - 37.702206, - 55.552891 - ], - [ - 37.702206, - 55.552801 - ], - [ - 37.702047, - 55.552801 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702047, - 55.552891 - ], - [ - 37.702047, - 55.552981 - ], - [ - 37.702206, - 55.552981 - ], - [ - 37.702206, - 55.552891 - ], - [ - 37.702047, - 55.552891 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702047, - 55.552981 - ], - [ - 37.702047, - 55.553071 - ], - [ - 37.702206, - 55.553071 - ], - [ - 37.702206, - 55.552981 - ], - [ - 37.702047, - 55.552981 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702047, - 55.553071 - ], - [ - 37.702047, - 55.553161 - ], - [ - 37.702206, - 55.553161 - ], - [ - 37.702206, - 55.553071 - ], - [ - 37.702047, - 55.553071 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702047, - 55.553161 - ], - [ - 37.702047, - 55.553251 - ], - [ - 37.702206, - 55.553251 - ], - [ - 37.702206, - 55.553161 - ], - [ - 37.702047, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702047, - 55.553251 - ], - [ - 37.702047, - 55.553341 - ], - [ - 37.702206, - 55.553341 - ], - [ - 37.702206, - 55.553251 - ], - [ - 37.702047, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702047, - 55.553341 - ], - [ - 37.702047, - 55.553431 - ], - [ - 37.702206, - 55.553431 - ], - [ - 37.702206, - 55.553341 - ], - [ - 37.702047, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702047, - 55.553431 - ], - [ - 37.702047, - 55.55352 - ], - [ - 37.702206, - 55.55352 - ], - [ - 37.702206, - 55.553431 - ], - [ - 37.702047, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702047, - 55.55352 - ], - [ - 37.702047, - 55.55361 - ], - [ - 37.702206, - 55.55361 - ], - [ - 37.702206, - 55.55352 - ], - [ - 37.702047, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702047, - 55.55361 - ], - [ - 37.702047, - 55.5537 - ], - [ - 37.702206, - 55.5537 - ], - [ - 37.702206, - 55.55361 - ], - [ - 37.702047, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702047, - 55.5537 - ], - [ - 37.702047, - 55.55379 - ], - [ - 37.702206, - 55.55379 - ], - [ - 37.702206, - 55.5537 - ], - [ - 37.702047, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702047, - 55.55379 - ], - [ - 37.702047, - 55.55388 - ], - [ - 37.702206, - 55.55388 - ], - [ - 37.702206, - 55.55379 - ], - [ - 37.702047, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702047, - 55.55388 - ], - [ - 37.702047, - 55.55397 - ], - [ - 37.702206, - 55.55397 - ], - [ - 37.702206, - 55.55388 - ], - [ - 37.702047, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702047, - 55.55397 - ], - [ - 37.702047, - 55.55406 - ], - [ - 37.702206, - 55.55406 - ], - [ - 37.702206, - 55.55397 - ], - [ - 37.702047, - 55.55397 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702047, - 55.55406 - ], - [ - 37.702047, - 55.55415 - ], - [ - 37.702206, - 55.55415 - ], - [ - 37.702206, - 55.55406 - ], - [ - 37.702047, - 55.55406 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702047, - 55.55415 - ], - [ - 37.702047, - 55.55424 - ], - [ - 37.702206, - 55.55424 - ], - [ - 37.702206, - 55.55415 - ], - [ - 37.702047, - 55.55415 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702047, - 55.55424 - ], - [ - 37.702047, - 55.55433 - ], - [ - 37.702206, - 55.55433 - ], - [ - 37.702206, - 55.55424 - ], - [ - 37.702047, - 55.55424 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702047, - 55.55433 - ], - [ - 37.702047, - 55.55442 - ], - [ - 37.702206, - 55.55442 - ], - [ - 37.702206, - 55.55433 - ], - [ - 37.702047, - 55.55433 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702206, - 55.552531 - ], - [ - 37.702206, - 55.552621 - ], - [ - 37.702365, - 55.552621 - ], - [ - 37.702365, - 55.552531 - ], - [ - 37.702206, - 55.552531 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702206, - 55.552621 - ], - [ - 37.702206, - 55.552711 - ], - [ - 37.702365, - 55.552711 - ], - [ - 37.702365, - 55.552621 - ], - [ - 37.702206, - 55.552621 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702206, - 55.552711 - ], - [ - 37.702206, - 55.552801 - ], - [ - 37.702365, - 55.552801 - ], - [ - 37.702365, - 55.552711 - ], - [ - 37.702206, - 55.552711 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702206, - 55.552801 - ], - [ - 37.702206, - 55.552891 - ], - [ - 37.702365, - 55.552891 - ], - [ - 37.702365, - 55.552801 - ], - [ - 37.702206, - 55.552801 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702206, - 55.552891 - ], - [ - 37.702206, - 55.552981 - ], - [ - 37.702365, - 55.552981 - ], - [ - 37.702365, - 55.552891 - ], - [ - 37.702206, - 55.552891 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702206, - 55.552981 - ], - [ - 37.702206, - 55.553071 - ], - [ - 37.702365, - 55.553071 - ], - [ - 37.702365, - 55.552981 - ], - [ - 37.702206, - 55.552981 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702206, - 55.553071 - ], - [ - 37.702206, - 55.553161 - ], - [ - 37.702365, - 55.553161 - ], - [ - 37.702365, - 55.553071 - ], - [ - 37.702206, - 55.553071 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702206, - 55.553161 - ], - [ - 37.702206, - 55.553251 - ], - [ - 37.702365, - 55.553251 - ], - [ - 37.702365, - 55.553161 - ], - [ - 37.702206, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702206, - 55.553251 - ], - [ - 37.702206, - 55.553341 - ], - [ - 37.702365, - 55.553341 - ], - [ - 37.702365, - 55.553251 - ], - [ - 37.702206, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702206, - 55.553341 - ], - [ - 37.702206, - 55.553431 - ], - [ - 37.702365, - 55.553431 - ], - [ - 37.702365, - 55.553341 - ], - [ - 37.702206, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702206, - 55.553431 - ], - [ - 37.702206, - 55.55352 - ], - [ - 37.702365, - 55.55352 - ], - [ - 37.702365, - 55.553431 - ], - [ - 37.702206, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702206, - 55.55352 - ], - [ - 37.702206, - 55.55361 - ], - [ - 37.702365, - 55.55361 - ], - [ - 37.702365, - 55.55352 - ], - [ - 37.702206, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702206, - 55.55361 - ], - [ - 37.702206, - 55.5537 - ], - [ - 37.702365, - 55.5537 - ], - [ - 37.702365, - 55.55361 - ], - [ - 37.702206, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702206, - 55.5537 - ], - [ - 37.702206, - 55.55379 - ], - [ - 37.702365, - 55.55379 - ], - [ - 37.702365, - 55.5537 - ], - [ - 37.702206, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702206, - 55.55379 - ], - [ - 37.702206, - 55.55388 - ], - [ - 37.702365, - 55.55388 - ], - [ - 37.702365, - 55.55379 - ], - [ - 37.702206, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702206, - 55.55388 - ], - [ - 37.702206, - 55.55397 - ], - [ - 37.702365, - 55.55397 - ], - [ - 37.702365, - 55.55388 - ], - [ - 37.702206, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702206, - 55.55397 - ], - [ - 37.702206, - 55.55406 - ], - [ - 37.702365, - 55.55406 - ], - [ - 37.702365, - 55.55397 - ], - [ - 37.702206, - 55.55397 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702206, - 55.55406 - ], - [ - 37.702206, - 55.55415 - ], - [ - 37.702365, - 55.55415 - ], - [ - 37.702365, - 55.55406 - ], - [ - 37.702206, - 55.55406 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702206, - 55.55415 - ], - [ - 37.702206, - 55.55424 - ], - [ - 37.702365, - 55.55424 - ], - [ - 37.702365, - 55.55415 - ], - [ - 37.702206, - 55.55415 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702206, - 55.55424 - ], - [ - 37.702206, - 55.55433 - ], - [ - 37.702365, - 55.55433 - ], - [ - 37.702365, - 55.55424 - ], - [ - 37.702206, - 55.55424 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702206, - 55.55433 - ], - [ - 37.702206, - 55.55442 - ], - [ - 37.702365, - 55.55442 - ], - [ - 37.702365, - 55.55433 - ], - [ - 37.702206, - 55.55433 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702365, - 55.552531 - ], - [ - 37.702365, - 55.552621 - ], - [ - 37.702524, - 55.552621 - ], - [ - 37.702524, - 55.552531 - ], - [ - 37.702365, - 55.552531 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702365, - 55.552621 - ], - [ - 37.702365, - 55.552711 - ], - [ - 37.702524, - 55.552711 - ], - [ - 37.702524, - 55.552621 - ], - [ - 37.702365, - 55.552621 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702365, - 55.552711 - ], - [ - 37.702365, - 55.552801 - ], - [ - 37.702524, - 55.552801 - ], - [ - 37.702524, - 55.552711 - ], - [ - 37.702365, - 55.552711 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702365, - 55.552801 - ], - [ - 37.702365, - 55.552891 - ], - [ - 37.702524, - 55.552891 - ], - [ - 37.702524, - 55.552801 - ], - [ - 37.702365, - 55.552801 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702365, - 55.552891 - ], - [ - 37.702365, - 55.552981 - ], - [ - 37.702524, - 55.552981 - ], - [ - 37.702524, - 55.552891 - ], - [ - 37.702365, - 55.552891 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702365, - 55.552981 - ], - [ - 37.702365, - 55.553071 - ], - [ - 37.702524, - 55.553071 - ], - [ - 37.702524, - 55.552981 - ], - [ - 37.702365, - 55.552981 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702365, - 55.553071 - ], - [ - 37.702365, - 55.553161 - ], - [ - 37.702524, - 55.553161 - ], - [ - 37.702524, - 55.553071 - ], - [ - 37.702365, - 55.553071 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702365, - 55.553161 - ], - [ - 37.702365, - 55.553251 - ], - [ - 37.702524, - 55.553251 - ], - [ - 37.702524, - 55.553161 - ], - [ - 37.702365, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702365, - 55.553251 - ], - [ - 37.702365, - 55.553341 - ], - [ - 37.702524, - 55.553341 - ], - [ - 37.702524, - 55.553251 - ], - [ - 37.702365, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702365, - 55.553341 - ], - [ - 37.702365, - 55.553431 - ], - [ - 37.702524, - 55.553431 - ], - [ - 37.702524, - 55.553341 - ], - [ - 37.702365, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702365, - 55.553431 - ], - [ - 37.702365, - 55.55352 - ], - [ - 37.702524, - 55.55352 - ], - [ - 37.702524, - 55.553431 - ], - [ - 37.702365, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702365, - 55.55352 - ], - [ - 37.702365, - 55.55361 - ], - [ - 37.702524, - 55.55361 - ], - [ - 37.702524, - 55.55352 - ], - [ - 37.702365, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702365, - 55.55361 - ], - [ - 37.702365, - 55.5537 - ], - [ - 37.702524, - 55.5537 - ], - [ - 37.702524, - 55.55361 - ], - [ - 37.702365, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702365, - 55.5537 - ], - [ - 37.702365, - 55.55379 - ], - [ - 37.702524, - 55.55379 - ], - [ - 37.702524, - 55.5537 - ], - [ - 37.702365, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702365, - 55.55379 - ], - [ - 37.702365, - 55.55388 - ], - [ - 37.702524, - 55.55388 - ], - [ - 37.702524, - 55.55379 - ], - [ - 37.702365, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702365, - 55.55388 - ], - [ - 37.702365, - 55.55397 - ], - [ - 37.702524, - 55.55397 - ], - [ - 37.702524, - 55.55388 - ], - [ - 37.702365, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702365, - 55.55397 - ], - [ - 37.702365, - 55.55406 - ], - [ - 37.702524, - 55.55406 - ], - [ - 37.702524, - 55.55397 - ], - [ - 37.702365, - 55.55397 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702365, - 55.55406 - ], - [ - 37.702365, - 55.55415 - ], - [ - 37.702524, - 55.55415 - ], - [ - 37.702524, - 55.55406 - ], - [ - 37.702365, - 55.55406 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702365, - 55.55415 - ], - [ - 37.702365, - 55.55424 - ], - [ - 37.702524, - 55.55424 - ], - [ - 37.702524, - 55.55415 - ], - [ - 37.702365, - 55.55415 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702365, - 55.55424 - ], - [ - 37.702365, - 55.55433 - ], - [ - 37.702524, - 55.55433 - ], - [ - 37.702524, - 55.55424 - ], - [ - 37.702365, - 55.55424 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702365, - 55.55433 - ], - [ - 37.702365, - 55.55442 - ], - [ - 37.702524, - 55.55442 - ], - [ - 37.702524, - 55.55433 - ], - [ - 37.702365, - 55.55433 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702365, - 55.55442 - ], - [ - 37.702365, - 55.55451 - ], - [ - 37.702524, - 55.55451 - ], - [ - 37.702524, - 55.55442 - ], - [ - 37.702365, - 55.55442 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702524, - 55.552441 - ], - [ - 37.702524, - 55.552531 - ], - [ - 37.702683, - 55.552531 - ], - [ - 37.702683, - 55.552441 - ], - [ - 37.702524, - 55.552441 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702524, - 55.552531 - ], - [ - 37.702524, - 55.552621 - ], - [ - 37.702683, - 55.552621 - ], - [ - 37.702683, - 55.552531 - ], - [ - 37.702524, - 55.552531 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702524, - 55.552621 - ], - [ - 37.702524, - 55.552711 - ], - [ - 37.702683, - 55.552711 - ], - [ - 37.702683, - 55.552621 - ], - [ - 37.702524, - 55.552621 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702524, - 55.552711 - ], - [ - 37.702524, - 55.552801 - ], - [ - 37.702683, - 55.552801 - ], - [ - 37.702683, - 55.552711 - ], - [ - 37.702524, - 55.552711 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702524, - 55.552801 - ], - [ - 37.702524, - 55.552891 - ], - [ - 37.702683, - 55.552891 - ], - [ - 37.702683, - 55.552801 - ], - [ - 37.702524, - 55.552801 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702524, - 55.552891 - ], - [ - 37.702524, - 55.552981 - ], - [ - 37.702683, - 55.552981 - ], - [ - 37.702683, - 55.552891 - ], - [ - 37.702524, - 55.552891 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702524, - 55.552981 - ], - [ - 37.702524, - 55.553071 - ], - [ - 37.702683, - 55.553071 - ], - [ - 37.702683, - 55.552981 - ], - [ - 37.702524, - 55.552981 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702524, - 55.553071 - ], - [ - 37.702524, - 55.553161 - ], - [ - 37.702683, - 55.553161 - ], - [ - 37.702683, - 55.553071 - ], - [ - 37.702524, - 55.553071 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702524, - 55.553161 - ], - [ - 37.702524, - 55.553251 - ], - [ - 37.702683, - 55.553251 - ], - [ - 37.702683, - 55.553161 - ], - [ - 37.702524, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702524, - 55.553251 - ], - [ - 37.702524, - 55.553341 - ], - [ - 37.702683, - 55.553341 - ], - [ - 37.702683, - 55.553251 - ], - [ - 37.702524, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702524, - 55.553341 - ], - [ - 37.702524, - 55.553431 - ], - [ - 37.702683, - 55.553431 - ], - [ - 37.702683, - 55.553341 - ], - [ - 37.702524, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702524, - 55.553431 - ], - [ - 37.702524, - 55.55352 - ], - [ - 37.702683, - 55.55352 - ], - [ - 37.702683, - 55.553431 - ], - [ - 37.702524, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702524, - 55.55352 - ], - [ - 37.702524, - 55.55361 - ], - [ - 37.702683, - 55.55361 - ], - [ - 37.702683, - 55.55352 - ], - [ - 37.702524, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702524, - 55.55361 - ], - [ - 37.702524, - 55.5537 - ], - [ - 37.702683, - 55.5537 - ], - [ - 37.702683, - 55.55361 - ], - [ - 37.702524, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702524, - 55.5537 - ], - [ - 37.702524, - 55.55379 - ], - [ - 37.702683, - 55.55379 - ], - [ - 37.702683, - 55.5537 - ], - [ - 37.702524, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702524, - 55.55379 - ], - [ - 37.702524, - 55.55388 - ], - [ - 37.702683, - 55.55388 - ], - [ - 37.702683, - 55.55379 - ], - [ - 37.702524, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702524, - 55.55388 - ], - [ - 37.702524, - 55.55397 - ], - [ - 37.702683, - 55.55397 - ], - [ - 37.702683, - 55.55388 - ], - [ - 37.702524, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702524, - 55.55397 - ], - [ - 37.702524, - 55.55406 - ], - [ - 37.702683, - 55.55406 - ], - [ - 37.702683, - 55.55397 - ], - [ - 37.702524, - 55.55397 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702524, - 55.55406 - ], - [ - 37.702524, - 55.55415 - ], - [ - 37.702683, - 55.55415 - ], - [ - 37.702683, - 55.55406 - ], - [ - 37.702524, - 55.55406 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702524, - 55.55415 - ], - [ - 37.702524, - 55.55424 - ], - [ - 37.702683, - 55.55424 - ], - [ - 37.702683, - 55.55415 - ], - [ - 37.702524, - 55.55415 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702524, - 55.55424 - ], - [ - 37.702524, - 55.55433 - ], - [ - 37.702683, - 55.55433 - ], - [ - 37.702683, - 55.55424 - ], - [ - 37.702524, - 55.55424 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702524, - 55.55433 - ], - [ - 37.702524, - 55.55442 - ], - [ - 37.702683, - 55.55442 - ], - [ - 37.702683, - 55.55433 - ], - [ - 37.702524, - 55.55433 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702524, - 55.55442 - ], - [ - 37.702524, - 55.55451 - ], - [ - 37.702683, - 55.55451 - ], - [ - 37.702683, - 55.55442 - ], - [ - 37.702524, - 55.55442 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702683, - 55.552441 - ], - [ - 37.702683, - 55.552531 - ], - [ - 37.702842, - 55.552531 - ], - [ - 37.702842, - 55.552441 - ], - [ - 37.702683, - 55.552441 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702683, - 55.552531 - ], - [ - 37.702683, - 55.552621 - ], - [ - 37.702842, - 55.552621 - ], - [ - 37.702842, - 55.552531 - ], - [ - 37.702683, - 55.552531 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702683, - 55.552621 - ], - [ - 37.702683, - 55.552711 - ], - [ - 37.702842, - 55.552711 - ], - [ - 37.702842, - 55.552621 - ], - [ - 37.702683, - 55.552621 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702683, - 55.552711 - ], - [ - 37.702683, - 55.552801 - ], - [ - 37.702842, - 55.552801 - ], - [ - 37.702842, - 55.552711 - ], - [ - 37.702683, - 55.552711 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702683, - 55.552801 - ], - [ - 37.702683, - 55.552891 - ], - [ - 37.702842, - 55.552891 - ], - [ - 37.702842, - 55.552801 - ], - [ - 37.702683, - 55.552801 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702683, - 55.552891 - ], - [ - 37.702683, - 55.552981 - ], - [ - 37.702842, - 55.552981 - ], - [ - 37.702842, - 55.552891 - ], - [ - 37.702683, - 55.552891 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702683, - 55.552981 - ], - [ - 37.702683, - 55.553071 - ], - [ - 37.702842, - 55.553071 - ], - [ - 37.702842, - 55.552981 - ], - [ - 37.702683, - 55.552981 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702683, - 55.553071 - ], - [ - 37.702683, - 55.553161 - ], - [ - 37.702842, - 55.553161 - ], - [ - 37.702842, - 55.553071 - ], - [ - 37.702683, - 55.553071 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702683, - 55.553161 - ], - [ - 37.702683, - 55.553251 - ], - [ - 37.702842, - 55.553251 - ], - [ - 37.702842, - 55.553161 - ], - [ - 37.702683, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702683, - 55.553251 - ], - [ - 37.702683, - 55.553341 - ], - [ - 37.702842, - 55.553341 - ], - [ - 37.702842, - 55.553251 - ], - [ - 37.702683, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702683, - 55.553341 - ], - [ - 37.702683, - 55.553431 - ], - [ - 37.702842, - 55.553431 - ], - [ - 37.702842, - 55.553341 - ], - [ - 37.702683, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702683, - 55.553431 - ], - [ - 37.702683, - 55.55352 - ], - [ - 37.702842, - 55.55352 - ], - [ - 37.702842, - 55.553431 - ], - [ - 37.702683, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702683, - 55.55352 - ], - [ - 37.702683, - 55.55361 - ], - [ - 37.702842, - 55.55361 - ], - [ - 37.702842, - 55.55352 - ], - [ - 37.702683, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702683, - 55.55361 - ], - [ - 37.702683, - 55.5537 - ], - [ - 37.702842, - 55.5537 - ], - [ - 37.702842, - 55.55361 - ], - [ - 37.702683, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702683, - 55.5537 - ], - [ - 37.702683, - 55.55379 - ], - [ - 37.702842, - 55.55379 - ], - [ - 37.702842, - 55.5537 - ], - [ - 37.702683, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702683, - 55.55379 - ], - [ - 37.702683, - 55.55388 - ], - [ - 37.702842, - 55.55388 - ], - [ - 37.702842, - 55.55379 - ], - [ - 37.702683, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702683, - 55.55388 - ], - [ - 37.702683, - 55.55397 - ], - [ - 37.702842, - 55.55397 - ], - [ - 37.702842, - 55.55388 - ], - [ - 37.702683, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702683, - 55.55397 - ], - [ - 37.702683, - 55.55406 - ], - [ - 37.702842, - 55.55406 - ], - [ - 37.702842, - 55.55397 - ], - [ - 37.702683, - 55.55397 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702683, - 55.55406 - ], - [ - 37.702683, - 55.55415 - ], - [ - 37.702842, - 55.55415 - ], - [ - 37.702842, - 55.55406 - ], - [ - 37.702683, - 55.55406 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702683, - 55.55415 - ], - [ - 37.702683, - 55.55424 - ], - [ - 37.702842, - 55.55424 - ], - [ - 37.702842, - 55.55415 - ], - [ - 37.702683, - 55.55415 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702683, - 55.55424 - ], - [ - 37.702683, - 55.55433 - ], - [ - 37.702842, - 55.55433 - ], - [ - 37.702842, - 55.55424 - ], - [ - 37.702683, - 55.55424 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702683, - 55.55433 - ], - [ - 37.702683, - 55.55442 - ], - [ - 37.702842, - 55.55442 - ], - [ - 37.702842, - 55.55433 - ], - [ - 37.702683, - 55.55433 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702683, - 55.55442 - ], - [ - 37.702683, - 55.55451 - ], - [ - 37.702842, - 55.55451 - ], - [ - 37.702842, - 55.55442 - ], - [ - 37.702683, - 55.55442 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702842, - 55.552351 - ], - [ - 37.702842, - 55.552441 - ], - [ - 37.703001, - 55.552441 - ], - [ - 37.703001, - 55.552351 - ], - [ - 37.702842, - 55.552351 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702842, - 55.552441 - ], - [ - 37.702842, - 55.552531 - ], - [ - 37.703001, - 55.552531 - ], - [ - 37.703001, - 55.552441 - ], - [ - 37.702842, - 55.552441 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702842, - 55.552531 - ], - [ - 37.702842, - 55.552621 - ], - [ - 37.703001, - 55.552621 - ], - [ - 37.703001, - 55.552531 - ], - [ - 37.702842, - 55.552531 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702842, - 55.552621 - ], - [ - 37.702842, - 55.552711 - ], - [ - 37.703001, - 55.552711 - ], - [ - 37.703001, - 55.552621 - ], - [ - 37.702842, - 55.552621 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702842, - 55.552711 - ], - [ - 37.702842, - 55.552801 - ], - [ - 37.703001, - 55.552801 - ], - [ - 37.703001, - 55.552711 - ], - [ - 37.702842, - 55.552711 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702842, - 55.552801 - ], - [ - 37.702842, - 55.552891 - ], - [ - 37.703001, - 55.552891 - ], - [ - 37.703001, - 55.552801 - ], - [ - 37.702842, - 55.552801 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702842, - 55.552891 - ], - [ - 37.702842, - 55.552981 - ], - [ - 37.703001, - 55.552981 - ], - [ - 37.703001, - 55.552891 - ], - [ - 37.702842, - 55.552891 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702842, - 55.552981 - ], - [ - 37.702842, - 55.553071 - ], - [ - 37.703001, - 55.553071 - ], - [ - 37.703001, - 55.552981 - ], - [ - 37.702842, - 55.552981 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702842, - 55.553071 - ], - [ - 37.702842, - 55.553161 - ], - [ - 37.703001, - 55.553161 - ], - [ - 37.703001, - 55.553071 - ], - [ - 37.702842, - 55.553071 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702842, - 55.553161 - ], - [ - 37.702842, - 55.553251 - ], - [ - 37.703001, - 55.553251 - ], - [ - 37.703001, - 55.553161 - ], - [ - 37.702842, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702842, - 55.553251 - ], - [ - 37.702842, - 55.553341 - ], - [ - 37.703001, - 55.553341 - ], - [ - 37.703001, - 55.553251 - ], - [ - 37.702842, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702842, - 55.553341 - ], - [ - 37.702842, - 55.553431 - ], - [ - 37.703001, - 55.553431 - ], - [ - 37.703001, - 55.553341 - ], - [ - 37.702842, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702842, - 55.553431 - ], - [ - 37.702842, - 55.55352 - ], - [ - 37.703001, - 55.55352 - ], - [ - 37.703001, - 55.553431 - ], - [ - 37.702842, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702842, - 55.55352 - ], - [ - 37.702842, - 55.55361 - ], - [ - 37.703001, - 55.55361 - ], - [ - 37.703001, - 55.55352 - ], - [ - 37.702842, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702842, - 55.55361 - ], - [ - 37.702842, - 55.5537 - ], - [ - 37.703001, - 55.5537 - ], - [ - 37.703001, - 55.55361 - ], - [ - 37.702842, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702842, - 55.5537 - ], - [ - 37.702842, - 55.55379 - ], - [ - 37.703001, - 55.55379 - ], - [ - 37.703001, - 55.5537 - ], - [ - 37.702842, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702842, - 55.55379 - ], - [ - 37.702842, - 55.55388 - ], - [ - 37.703001, - 55.55388 - ], - [ - 37.703001, - 55.55379 - ], - [ - 37.702842, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702842, - 55.55388 - ], - [ - 37.702842, - 55.55397 - ], - [ - 37.703001, - 55.55397 - ], - [ - 37.703001, - 55.55388 - ], - [ - 37.702842, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702842, - 55.55397 - ], - [ - 37.702842, - 55.55406 - ], - [ - 37.703001, - 55.55406 - ], - [ - 37.703001, - 55.55397 - ], - [ - 37.702842, - 55.55397 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702842, - 55.55406 - ], - [ - 37.702842, - 55.55415 - ], - [ - 37.703001, - 55.55415 - ], - [ - 37.703001, - 55.55406 - ], - [ - 37.702842, - 55.55406 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702842, - 55.55415 - ], - [ - 37.702842, - 55.55424 - ], - [ - 37.703001, - 55.55424 - ], - [ - 37.703001, - 55.55415 - ], - [ - 37.702842, - 55.55415 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702842, - 55.55424 - ], - [ - 37.702842, - 55.55433 - ], - [ - 37.703001, - 55.55433 - ], - [ - 37.703001, - 55.55424 - ], - [ - 37.702842, - 55.55424 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702842, - 55.55433 - ], - [ - 37.702842, - 55.55442 - ], - [ - 37.703001, - 55.55442 - ], - [ - 37.703001, - 55.55433 - ], - [ - 37.702842, - 55.55433 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702842, - 55.55442 - ], - [ - 37.702842, - 55.55451 - ], - [ - 37.703001, - 55.55451 - ], - [ - 37.703001, - 55.55442 - ], - [ - 37.702842, - 55.55442 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.702842, - 55.55451 - ], - [ - 37.702842, - 55.5546 - ], - [ - 37.703001, - 55.5546 - ], - [ - 37.703001, - 55.55451 - ], - [ - 37.702842, - 55.55451 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703001, - 55.552351 - ], - [ - 37.703001, - 55.552441 - ], - [ - 37.70316, - 55.552441 - ], - [ - 37.70316, - 55.552351 - ], - [ - 37.703001, - 55.552351 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703001, - 55.552441 - ], - [ - 37.703001, - 55.552531 - ], - [ - 37.70316, - 55.552531 - ], - [ - 37.70316, - 55.552441 - ], - [ - 37.703001, - 55.552441 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703001, - 55.552531 - ], - [ - 37.703001, - 55.552621 - ], - [ - 37.70316, - 55.552621 - ], - [ - 37.70316, - 55.552531 - ], - [ - 37.703001, - 55.552531 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703001, - 55.552621 - ], - [ - 37.703001, - 55.552711 - ], - [ - 37.70316, - 55.552711 - ], - [ - 37.70316, - 55.552621 - ], - [ - 37.703001, - 55.552621 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703001, - 55.552711 - ], - [ - 37.703001, - 55.552801 - ], - [ - 37.70316, - 55.552801 - ], - [ - 37.70316, - 55.552711 - ], - [ - 37.703001, - 55.552711 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703001, - 55.552801 - ], - [ - 37.703001, - 55.552891 - ], - [ - 37.70316, - 55.552891 - ], - [ - 37.70316, - 55.552801 - ], - [ - 37.703001, - 55.552801 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703001, - 55.552891 - ], - [ - 37.703001, - 55.552981 - ], - [ - 37.70316, - 55.552981 - ], - [ - 37.70316, - 55.552891 - ], - [ - 37.703001, - 55.552891 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703001, - 55.552981 - ], - [ - 37.703001, - 55.553071 - ], - [ - 37.70316, - 55.553071 - ], - [ - 37.70316, - 55.552981 - ], - [ - 37.703001, - 55.552981 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703001, - 55.553071 - ], - [ - 37.703001, - 55.553161 - ], - [ - 37.70316, - 55.553161 - ], - [ - 37.70316, - 55.553071 - ], - [ - 37.703001, - 55.553071 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703001, - 55.553161 - ], - [ - 37.703001, - 55.553251 - ], - [ - 37.70316, - 55.553251 - ], - [ - 37.70316, - 55.553161 - ], - [ - 37.703001, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703001, - 55.553251 - ], - [ - 37.703001, - 55.553341 - ], - [ - 37.70316, - 55.553341 - ], - [ - 37.70316, - 55.553251 - ], - [ - 37.703001, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703001, - 55.553341 - ], - [ - 37.703001, - 55.553431 - ], - [ - 37.70316, - 55.553431 - ], - [ - 37.70316, - 55.553341 - ], - [ - 37.703001, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703001, - 55.553431 - ], - [ - 37.703001, - 55.55352 - ], - [ - 37.70316, - 55.55352 - ], - [ - 37.70316, - 55.553431 - ], - [ - 37.703001, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703001, - 55.55352 - ], - [ - 37.703001, - 55.55361 - ], - [ - 37.70316, - 55.55361 - ], - [ - 37.70316, - 55.55352 - ], - [ - 37.703001, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703001, - 55.55361 - ], - [ - 37.703001, - 55.5537 - ], - [ - 37.70316, - 55.5537 - ], - [ - 37.70316, - 55.55361 - ], - [ - 37.703001, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703001, - 55.5537 - ], - [ - 37.703001, - 55.55379 - ], - [ - 37.70316, - 55.55379 - ], - [ - 37.70316, - 55.5537 - ], - [ - 37.703001, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703001, - 55.55379 - ], - [ - 37.703001, - 55.55388 - ], - [ - 37.70316, - 55.55388 - ], - [ - 37.70316, - 55.55379 - ], - [ - 37.703001, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703001, - 55.55388 - ], - [ - 37.703001, - 55.55397 - ], - [ - 37.70316, - 55.55397 - ], - [ - 37.70316, - 55.55388 - ], - [ - 37.703001, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703001, - 55.55397 - ], - [ - 37.703001, - 55.55406 - ], - [ - 37.70316, - 55.55406 - ], - [ - 37.70316, - 55.55397 - ], - [ - 37.703001, - 55.55397 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703001, - 55.55406 - ], - [ - 37.703001, - 55.55415 - ], - [ - 37.70316, - 55.55415 - ], - [ - 37.70316, - 55.55406 - ], - [ - 37.703001, - 55.55406 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703001, - 55.55415 - ], - [ - 37.703001, - 55.55424 - ], - [ - 37.70316, - 55.55424 - ], - [ - 37.70316, - 55.55415 - ], - [ - 37.703001, - 55.55415 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703001, - 55.55424 - ], - [ - 37.703001, - 55.55433 - ], - [ - 37.70316, - 55.55433 - ], - [ - 37.70316, - 55.55424 - ], - [ - 37.703001, - 55.55424 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703001, - 55.55433 - ], - [ - 37.703001, - 55.55442 - ], - [ - 37.70316, - 55.55442 - ], - [ - 37.70316, - 55.55433 - ], - [ - 37.703001, - 55.55433 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703001, - 55.55442 - ], - [ - 37.703001, - 55.55451 - ], - [ - 37.70316, - 55.55451 - ], - [ - 37.70316, - 55.55442 - ], - [ - 37.703001, - 55.55442 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703001, - 55.55451 - ], - [ - 37.703001, - 55.5546 - ], - [ - 37.70316, - 55.5546 - ], - [ - 37.70316, - 55.55451 - ], - [ - 37.703001, - 55.55451 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70316, - 55.552351 - ], - [ - 37.70316, - 55.552441 - ], - [ - 37.703319, - 55.552441 - ], - [ - 37.703319, - 55.552351 - ], - [ - 37.70316, - 55.552351 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70316, - 55.552441 - ], - [ - 37.70316, - 55.552531 - ], - [ - 37.703319, - 55.552531 - ], - [ - 37.703319, - 55.552441 - ], - [ - 37.70316, - 55.552441 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70316, - 55.552531 - ], - [ - 37.70316, - 55.552621 - ], - [ - 37.703319, - 55.552621 - ], - [ - 37.703319, - 55.552531 - ], - [ - 37.70316, - 55.552531 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70316, - 55.552621 - ], - [ - 37.70316, - 55.552711 - ], - [ - 37.703319, - 55.552711 - ], - [ - 37.703319, - 55.552621 - ], - [ - 37.70316, - 55.552621 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70316, - 55.552711 - ], - [ - 37.70316, - 55.552801 - ], - [ - 37.703319, - 55.552801 - ], - [ - 37.703319, - 55.552711 - ], - [ - 37.70316, - 55.552711 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70316, - 55.552801 - ], - [ - 37.70316, - 55.552891 - ], - [ - 37.703319, - 55.552891 - ], - [ - 37.703319, - 55.552801 - ], - [ - 37.70316, - 55.552801 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70316, - 55.552891 - ], - [ - 37.70316, - 55.552981 - ], - [ - 37.703319, - 55.552981 - ], - [ - 37.703319, - 55.552891 - ], - [ - 37.70316, - 55.552891 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70316, - 55.552981 - ], - [ - 37.70316, - 55.553071 - ], - [ - 37.703319, - 55.553071 - ], - [ - 37.703319, - 55.552981 - ], - [ - 37.70316, - 55.552981 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70316, - 55.553071 - ], - [ - 37.70316, - 55.553161 - ], - [ - 37.703319, - 55.553161 - ], - [ - 37.703319, - 55.553071 - ], - [ - 37.70316, - 55.553071 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70316, - 55.553161 - ], - [ - 37.70316, - 55.553251 - ], - [ - 37.703319, - 55.553251 - ], - [ - 37.703319, - 55.553161 - ], - [ - 37.70316, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70316, - 55.553251 - ], - [ - 37.70316, - 55.553341 - ], - [ - 37.703319, - 55.553341 - ], - [ - 37.703319, - 55.553251 - ], - [ - 37.70316, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70316, - 55.553341 - ], - [ - 37.70316, - 55.553431 - ], - [ - 37.703319, - 55.553431 - ], - [ - 37.703319, - 55.553341 - ], - [ - 37.70316, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70316, - 55.553431 - ], - [ - 37.70316, - 55.55352 - ], - [ - 37.703319, - 55.55352 - ], - [ - 37.703319, - 55.553431 - ], - [ - 37.70316, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70316, - 55.55352 - ], - [ - 37.70316, - 55.55361 - ], - [ - 37.703319, - 55.55361 - ], - [ - 37.703319, - 55.55352 - ], - [ - 37.70316, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70316, - 55.55361 - ], - [ - 37.70316, - 55.5537 - ], - [ - 37.703319, - 55.5537 - ], - [ - 37.703319, - 55.55361 - ], - [ - 37.70316, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70316, - 55.5537 - ], - [ - 37.70316, - 55.55379 - ], - [ - 37.703319, - 55.55379 - ], - [ - 37.703319, - 55.5537 - ], - [ - 37.70316, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70316, - 55.55379 - ], - [ - 37.70316, - 55.55388 - ], - [ - 37.703319, - 55.55388 - ], - [ - 37.703319, - 55.55379 - ], - [ - 37.70316, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70316, - 55.55388 - ], - [ - 37.70316, - 55.55397 - ], - [ - 37.703319, - 55.55397 - ], - [ - 37.703319, - 55.55388 - ], - [ - 37.70316, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70316, - 55.55397 - ], - [ - 37.70316, - 55.55406 - ], - [ - 37.703319, - 55.55406 - ], - [ - 37.703319, - 55.55397 - ], - [ - 37.70316, - 55.55397 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70316, - 55.55406 - ], - [ - 37.70316, - 55.55415 - ], - [ - 37.703319, - 55.55415 - ], - [ - 37.703319, - 55.55406 - ], - [ - 37.70316, - 55.55406 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70316, - 55.55415 - ], - [ - 37.70316, - 55.55424 - ], - [ - 37.703319, - 55.55424 - ], - [ - 37.703319, - 55.55415 - ], - [ - 37.70316, - 55.55415 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70316, - 55.55424 - ], - [ - 37.70316, - 55.55433 - ], - [ - 37.703319, - 55.55433 - ], - [ - 37.703319, - 55.55424 - ], - [ - 37.70316, - 55.55424 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70316, - 55.55433 - ], - [ - 37.70316, - 55.55442 - ], - [ - 37.703319, - 55.55442 - ], - [ - 37.703319, - 55.55433 - ], - [ - 37.70316, - 55.55433 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70316, - 55.55442 - ], - [ - 37.70316, - 55.55451 - ], - [ - 37.703319, - 55.55451 - ], - [ - 37.703319, - 55.55442 - ], - [ - 37.70316, - 55.55442 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70316, - 55.55451 - ], - [ - 37.70316, - 55.5546 - ], - [ - 37.703319, - 55.5546 - ], - [ - 37.703319, - 55.55451 - ], - [ - 37.70316, - 55.55451 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70316, - 55.5546 - ], - [ - 37.70316, - 55.55469 - ], - [ - 37.703319, - 55.55469 - ], - [ - 37.703319, - 55.5546 - ], - [ - 37.70316, - 55.5546 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703319, - 55.552261 - ], - [ - 37.703319, - 55.552351 - ], - [ - 37.703478, - 55.552351 - ], - [ - 37.703478, - 55.552261 - ], - [ - 37.703319, - 55.552261 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703319, - 55.552351 - ], - [ - 37.703319, - 55.552441 - ], - [ - 37.703478, - 55.552441 - ], - [ - 37.703478, - 55.552351 - ], - [ - 37.703319, - 55.552351 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703319, - 55.552441 - ], - [ - 37.703319, - 55.552531 - ], - [ - 37.703478, - 55.552531 - ], - [ - 37.703478, - 55.552441 - ], - [ - 37.703319, - 55.552441 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703319, - 55.552531 - ], - [ - 37.703319, - 55.552621 - ], - [ - 37.703478, - 55.552621 - ], - [ - 37.703478, - 55.552531 - ], - [ - 37.703319, - 55.552531 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703319, - 55.552621 - ], - [ - 37.703319, - 55.552711 - ], - [ - 37.703478, - 55.552711 - ], - [ - 37.703478, - 55.552621 - ], - [ - 37.703319, - 55.552621 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703319, - 55.552711 - ], - [ - 37.703319, - 55.552801 - ], - [ - 37.703478, - 55.552801 - ], - [ - 37.703478, - 55.552711 - ], - [ - 37.703319, - 55.552711 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703319, - 55.552801 - ], - [ - 37.703319, - 55.552891 - ], - [ - 37.703478, - 55.552891 - ], - [ - 37.703478, - 55.552801 - ], - [ - 37.703319, - 55.552801 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703319, - 55.552891 - ], - [ - 37.703319, - 55.552981 - ], - [ - 37.703478, - 55.552981 - ], - [ - 37.703478, - 55.552891 - ], - [ - 37.703319, - 55.552891 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703319, - 55.552981 - ], - [ - 37.703319, - 55.553071 - ], - [ - 37.703478, - 55.553071 - ], - [ - 37.703478, - 55.552981 - ], - [ - 37.703319, - 55.552981 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703319, - 55.553071 - ], - [ - 37.703319, - 55.553161 - ], - [ - 37.703478, - 55.553161 - ], - [ - 37.703478, - 55.553071 - ], - [ - 37.703319, - 55.553071 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703319, - 55.553161 - ], - [ - 37.703319, - 55.553251 - ], - [ - 37.703478, - 55.553251 - ], - [ - 37.703478, - 55.553161 - ], - [ - 37.703319, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703319, - 55.553251 - ], - [ - 37.703319, - 55.553341 - ], - [ - 37.703478, - 55.553341 - ], - [ - 37.703478, - 55.553251 - ], - [ - 37.703319, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703319, - 55.553341 - ], - [ - 37.703319, - 55.553431 - ], - [ - 37.703478, - 55.553431 - ], - [ - 37.703478, - 55.553341 - ], - [ - 37.703319, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703319, - 55.553431 - ], - [ - 37.703319, - 55.55352 - ], - [ - 37.703478, - 55.55352 - ], - [ - 37.703478, - 55.553431 - ], - [ - 37.703319, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703319, - 55.55352 - ], - [ - 37.703319, - 55.55361 - ], - [ - 37.703478, - 55.55361 - ], - [ - 37.703478, - 55.55352 - ], - [ - 37.703319, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703319, - 55.55361 - ], - [ - 37.703319, - 55.5537 - ], - [ - 37.703478, - 55.5537 - ], - [ - 37.703478, - 55.55361 - ], - [ - 37.703319, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703319, - 55.5537 - ], - [ - 37.703319, - 55.55379 - ], - [ - 37.703478, - 55.55379 - ], - [ - 37.703478, - 55.5537 - ], - [ - 37.703319, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703319, - 55.55379 - ], - [ - 37.703319, - 55.55388 - ], - [ - 37.703478, - 55.55388 - ], - [ - 37.703478, - 55.55379 - ], - [ - 37.703319, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703319, - 55.55388 - ], - [ - 37.703319, - 55.55397 - ], - [ - 37.703478, - 55.55397 - ], - [ - 37.703478, - 55.55388 - ], - [ - 37.703319, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703319, - 55.55397 - ], - [ - 37.703319, - 55.55406 - ], - [ - 37.703478, - 55.55406 - ], - [ - 37.703478, - 55.55397 - ], - [ - 37.703319, - 55.55397 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703319, - 55.55406 - ], - [ - 37.703319, - 55.55415 - ], - [ - 37.703478, - 55.55415 - ], - [ - 37.703478, - 55.55406 - ], - [ - 37.703319, - 55.55406 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703319, - 55.55415 - ], - [ - 37.703319, - 55.55424 - ], - [ - 37.703478, - 55.55424 - ], - [ - 37.703478, - 55.55415 - ], - [ - 37.703319, - 55.55415 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703319, - 55.55424 - ], - [ - 37.703319, - 55.55433 - ], - [ - 37.703478, - 55.55433 - ], - [ - 37.703478, - 55.55424 - ], - [ - 37.703319, - 55.55424 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703319, - 55.55433 - ], - [ - 37.703319, - 55.55442 - ], - [ - 37.703478, - 55.55442 - ], - [ - 37.703478, - 55.55433 - ], - [ - 37.703319, - 55.55433 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703319, - 55.55442 - ], - [ - 37.703319, - 55.55451 - ], - [ - 37.703478, - 55.55451 - ], - [ - 37.703478, - 55.55442 - ], - [ - 37.703319, - 55.55442 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703319, - 55.55451 - ], - [ - 37.703319, - 55.5546 - ], - [ - 37.703478, - 55.5546 - ], - [ - 37.703478, - 55.55451 - ], - [ - 37.703319, - 55.55451 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703319, - 55.5546 - ], - [ - 37.703319, - 55.55469 - ], - [ - 37.703478, - 55.55469 - ], - [ - 37.703478, - 55.5546 - ], - [ - 37.703319, - 55.5546 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703478, - 55.552261 - ], - [ - 37.703478, - 55.552351 - ], - [ - 37.703637, - 55.552351 - ], - [ - 37.703637, - 55.552261 - ], - [ - 37.703478, - 55.552261 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703478, - 55.552351 - ], - [ - 37.703478, - 55.552441 - ], - [ - 37.703637, - 55.552441 - ], - [ - 37.703637, - 55.552351 - ], - [ - 37.703478, - 55.552351 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703478, - 55.552441 - ], - [ - 37.703478, - 55.552531 - ], - [ - 37.703637, - 55.552531 - ], - [ - 37.703637, - 55.552441 - ], - [ - 37.703478, - 55.552441 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703478, - 55.552531 - ], - [ - 37.703478, - 55.552621 - ], - [ - 37.703637, - 55.552621 - ], - [ - 37.703637, - 55.552531 - ], - [ - 37.703478, - 55.552531 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703478, - 55.552621 - ], - [ - 37.703478, - 55.552711 - ], - [ - 37.703637, - 55.552711 - ], - [ - 37.703637, - 55.552621 - ], - [ - 37.703478, - 55.552621 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703478, - 55.552711 - ], - [ - 37.703478, - 55.552801 - ], - [ - 37.703637, - 55.552801 - ], - [ - 37.703637, - 55.552711 - ], - [ - 37.703478, - 55.552711 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703478, - 55.552801 - ], - [ - 37.703478, - 55.552891 - ], - [ - 37.703637, - 55.552891 - ], - [ - 37.703637, - 55.552801 - ], - [ - 37.703478, - 55.552801 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703478, - 55.552891 - ], - [ - 37.703478, - 55.552981 - ], - [ - 37.703637, - 55.552981 - ], - [ - 37.703637, - 55.552891 - ], - [ - 37.703478, - 55.552891 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703478, - 55.552981 - ], - [ - 37.703478, - 55.553071 - ], - [ - 37.703637, - 55.553071 - ], - [ - 37.703637, - 55.552981 - ], - [ - 37.703478, - 55.552981 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703478, - 55.553071 - ], - [ - 37.703478, - 55.553161 - ], - [ - 37.703637, - 55.553161 - ], - [ - 37.703637, - 55.553071 - ], - [ - 37.703478, - 55.553071 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703478, - 55.553161 - ], - [ - 37.703478, - 55.553251 - ], - [ - 37.703637, - 55.553251 - ], - [ - 37.703637, - 55.553161 - ], - [ - 37.703478, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703478, - 55.553251 - ], - [ - 37.703478, - 55.553341 - ], - [ - 37.703637, - 55.553341 - ], - [ - 37.703637, - 55.553251 - ], - [ - 37.703478, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703478, - 55.553341 - ], - [ - 37.703478, - 55.553431 - ], - [ - 37.703637, - 55.553431 - ], - [ - 37.703637, - 55.553341 - ], - [ - 37.703478, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703478, - 55.553431 - ], - [ - 37.703478, - 55.55352 - ], - [ - 37.703637, - 55.55352 - ], - [ - 37.703637, - 55.553431 - ], - [ - 37.703478, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703478, - 55.55352 - ], - [ - 37.703478, - 55.55361 - ], - [ - 37.703637, - 55.55361 - ], - [ - 37.703637, - 55.55352 - ], - [ - 37.703478, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703478, - 55.55361 - ], - [ - 37.703478, - 55.5537 - ], - [ - 37.703637, - 55.5537 - ], - [ - 37.703637, - 55.55361 - ], - [ - 37.703478, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703478, - 55.5537 - ], - [ - 37.703478, - 55.55379 - ], - [ - 37.703637, - 55.55379 - ], - [ - 37.703637, - 55.5537 - ], - [ - 37.703478, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703478, - 55.55379 - ], - [ - 37.703478, - 55.55388 - ], - [ - 37.703637, - 55.55388 - ], - [ - 37.703637, - 55.55379 - ], - [ - 37.703478, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703478, - 55.55388 - ], - [ - 37.703478, - 55.55397 - ], - [ - 37.703637, - 55.55397 - ], - [ - 37.703637, - 55.55388 - ], - [ - 37.703478, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703478, - 55.55397 - ], - [ - 37.703478, - 55.55406 - ], - [ - 37.703637, - 55.55406 - ], - [ - 37.703637, - 55.55397 - ], - [ - 37.703478, - 55.55397 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703478, - 55.55406 - ], - [ - 37.703478, - 55.55415 - ], - [ - 37.703637, - 55.55415 - ], - [ - 37.703637, - 55.55406 - ], - [ - 37.703478, - 55.55406 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703478, - 55.55415 - ], - [ - 37.703478, - 55.55424 - ], - [ - 37.703637, - 55.55424 - ], - [ - 37.703637, - 55.55415 - ], - [ - 37.703478, - 55.55415 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703478, - 55.55424 - ], - [ - 37.703478, - 55.55433 - ], - [ - 37.703637, - 55.55433 - ], - [ - 37.703637, - 55.55424 - ], - [ - 37.703478, - 55.55424 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703478, - 55.55433 - ], - [ - 37.703478, - 55.55442 - ], - [ - 37.703637, - 55.55442 - ], - [ - 37.703637, - 55.55433 - ], - [ - 37.703478, - 55.55433 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703478, - 55.55442 - ], - [ - 37.703478, - 55.55451 - ], - [ - 37.703637, - 55.55451 - ], - [ - 37.703637, - 55.55442 - ], - [ - 37.703478, - 55.55442 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703478, - 55.55451 - ], - [ - 37.703478, - 55.5546 - ], - [ - 37.703637, - 55.5546 - ], - [ - 37.703637, - 55.55451 - ], - [ - 37.703478, - 55.55451 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703478, - 55.5546 - ], - [ - 37.703478, - 55.55469 - ], - [ - 37.703637, - 55.55469 - ], - [ - 37.703637, - 55.5546 - ], - [ - 37.703478, - 55.5546 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703478, - 55.55469 - ], - [ - 37.703478, - 55.55478 - ], - [ - 37.703637, - 55.55478 - ], - [ - 37.703637, - 55.55469 - ], - [ - 37.703478, - 55.55469 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703637, - 55.552171 - ], - [ - 37.703637, - 55.552261 - ], - [ - 37.703796, - 55.552261 - ], - [ - 37.703796, - 55.552171 - ], - [ - 37.703637, - 55.552171 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703637, - 55.552261 - ], - [ - 37.703637, - 55.552351 - ], - [ - 37.703796, - 55.552351 - ], - [ - 37.703796, - 55.552261 - ], - [ - 37.703637, - 55.552261 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703637, - 55.552351 - ], - [ - 37.703637, - 55.552441 - ], - [ - 37.703796, - 55.552441 - ], - [ - 37.703796, - 55.552351 - ], - [ - 37.703637, - 55.552351 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703637, - 55.552441 - ], - [ - 37.703637, - 55.552531 - ], - [ - 37.703796, - 55.552531 - ], - [ - 37.703796, - 55.552441 - ], - [ - 37.703637, - 55.552441 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703637, - 55.552531 - ], - [ - 37.703637, - 55.552621 - ], - [ - 37.703796, - 55.552621 - ], - [ - 37.703796, - 55.552531 - ], - [ - 37.703637, - 55.552531 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703637, - 55.552621 - ], - [ - 37.703637, - 55.552711 - ], - [ - 37.703796, - 55.552711 - ], - [ - 37.703796, - 55.552621 - ], - [ - 37.703637, - 55.552621 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703637, - 55.552711 - ], - [ - 37.703637, - 55.552801 - ], - [ - 37.703796, - 55.552801 - ], - [ - 37.703796, - 55.552711 - ], - [ - 37.703637, - 55.552711 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703637, - 55.552801 - ], - [ - 37.703637, - 55.552891 - ], - [ - 37.703796, - 55.552891 - ], - [ - 37.703796, - 55.552801 - ], - [ - 37.703637, - 55.552801 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703637, - 55.552891 - ], - [ - 37.703637, - 55.552981 - ], - [ - 37.703796, - 55.552981 - ], - [ - 37.703796, - 55.552891 - ], - [ - 37.703637, - 55.552891 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703637, - 55.552981 - ], - [ - 37.703637, - 55.553071 - ], - [ - 37.703796, - 55.553071 - ], - [ - 37.703796, - 55.552981 - ], - [ - 37.703637, - 55.552981 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703637, - 55.553071 - ], - [ - 37.703637, - 55.553161 - ], - [ - 37.703796, - 55.553161 - ], - [ - 37.703796, - 55.553071 - ], - [ - 37.703637, - 55.553071 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703637, - 55.553161 - ], - [ - 37.703637, - 55.553251 - ], - [ - 37.703796, - 55.553251 - ], - [ - 37.703796, - 55.553161 - ], - [ - 37.703637, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703637, - 55.553251 - ], - [ - 37.703637, - 55.553341 - ], - [ - 37.703796, - 55.553341 - ], - [ - 37.703796, - 55.553251 - ], - [ - 37.703637, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703637, - 55.553341 - ], - [ - 37.703637, - 55.553431 - ], - [ - 37.703796, - 55.553431 - ], - [ - 37.703796, - 55.553341 - ], - [ - 37.703637, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703637, - 55.553431 - ], - [ - 37.703637, - 55.55352 - ], - [ - 37.703796, - 55.55352 - ], - [ - 37.703796, - 55.553431 - ], - [ - 37.703637, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703637, - 55.55352 - ], - [ - 37.703637, - 55.55361 - ], - [ - 37.703796, - 55.55361 - ], - [ - 37.703796, - 55.55352 - ], - [ - 37.703637, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703637, - 55.55361 - ], - [ - 37.703637, - 55.5537 - ], - [ - 37.703796, - 55.5537 - ], - [ - 37.703796, - 55.55361 - ], - [ - 37.703637, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703637, - 55.5537 - ], - [ - 37.703637, - 55.55379 - ], - [ - 37.703796, - 55.55379 - ], - [ - 37.703796, - 55.5537 - ], - [ - 37.703637, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703637, - 55.55379 - ], - [ - 37.703637, - 55.55388 - ], - [ - 37.703796, - 55.55388 - ], - [ - 37.703796, - 55.55379 - ], - [ - 37.703637, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703637, - 55.55388 - ], - [ - 37.703637, - 55.55397 - ], - [ - 37.703796, - 55.55397 - ], - [ - 37.703796, - 55.55388 - ], - [ - 37.703637, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703637, - 55.55397 - ], - [ - 37.703637, - 55.55406 - ], - [ - 37.703796, - 55.55406 - ], - [ - 37.703796, - 55.55397 - ], - [ - 37.703637, - 55.55397 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703637, - 55.55406 - ], - [ - 37.703637, - 55.55415 - ], - [ - 37.703796, - 55.55415 - ], - [ - 37.703796, - 55.55406 - ], - [ - 37.703637, - 55.55406 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703637, - 55.55415 - ], - [ - 37.703637, - 55.55424 - ], - [ - 37.703796, - 55.55424 - ], - [ - 37.703796, - 55.55415 - ], - [ - 37.703637, - 55.55415 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703637, - 55.55424 - ], - [ - 37.703637, - 55.55433 - ], - [ - 37.703796, - 55.55433 - ], - [ - 37.703796, - 55.55424 - ], - [ - 37.703637, - 55.55424 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703637, - 55.55433 - ], - [ - 37.703637, - 55.55442 - ], - [ - 37.703796, - 55.55442 - ], - [ - 37.703796, - 55.55433 - ], - [ - 37.703637, - 55.55433 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703637, - 55.55442 - ], - [ - 37.703637, - 55.55451 - ], - [ - 37.703796, - 55.55451 - ], - [ - 37.703796, - 55.55442 - ], - [ - 37.703637, - 55.55442 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703637, - 55.55451 - ], - [ - 37.703637, - 55.5546 - ], - [ - 37.703796, - 55.5546 - ], - [ - 37.703796, - 55.55451 - ], - [ - 37.703637, - 55.55451 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703637, - 55.5546 - ], - [ - 37.703637, - 55.55469 - ], - [ - 37.703796, - 55.55469 - ], - [ - 37.703796, - 55.5546 - ], - [ - 37.703637, - 55.5546 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703637, - 55.55469 - ], - [ - 37.703637, - 55.55478 - ], - [ - 37.703796, - 55.55478 - ], - [ - 37.703796, - 55.55469 - ], - [ - 37.703637, - 55.55469 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703796, - 55.552171 - ], - [ - 37.703796, - 55.552261 - ], - [ - 37.703955, - 55.552261 - ], - [ - 37.703955, - 55.552171 - ], - [ - 37.703796, - 55.552171 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703796, - 55.552261 - ], - [ - 37.703796, - 55.552351 - ], - [ - 37.703955, - 55.552351 - ], - [ - 37.703955, - 55.552261 - ], - [ - 37.703796, - 55.552261 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703796, - 55.552351 - ], - [ - 37.703796, - 55.552441 - ], - [ - 37.703955, - 55.552441 - ], - [ - 37.703955, - 55.552351 - ], - [ - 37.703796, - 55.552351 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703796, - 55.552441 - ], - [ - 37.703796, - 55.552531 - ], - [ - 37.703955, - 55.552531 - ], - [ - 37.703955, - 55.552441 - ], - [ - 37.703796, - 55.552441 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703796, - 55.552531 - ], - [ - 37.703796, - 55.552621 - ], - [ - 37.703955, - 55.552621 - ], - [ - 37.703955, - 55.552531 - ], - [ - 37.703796, - 55.552531 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703796, - 55.552621 - ], - [ - 37.703796, - 55.552711 - ], - [ - 37.703955, - 55.552711 - ], - [ - 37.703955, - 55.552621 - ], - [ - 37.703796, - 55.552621 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703796, - 55.552711 - ], - [ - 37.703796, - 55.552801 - ], - [ - 37.703955, - 55.552801 - ], - [ - 37.703955, - 55.552711 - ], - [ - 37.703796, - 55.552711 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703796, - 55.552801 - ], - [ - 37.703796, - 55.552891 - ], - [ - 37.703955, - 55.552891 - ], - [ - 37.703955, - 55.552801 - ], - [ - 37.703796, - 55.552801 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703796, - 55.552891 - ], - [ - 37.703796, - 55.552981 - ], - [ - 37.703955, - 55.552981 - ], - [ - 37.703955, - 55.552891 - ], - [ - 37.703796, - 55.552891 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703796, - 55.552981 - ], - [ - 37.703796, - 55.553071 - ], - [ - 37.703955, - 55.553071 - ], - [ - 37.703955, - 55.552981 - ], - [ - 37.703796, - 55.552981 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703796, - 55.553071 - ], - [ - 37.703796, - 55.553161 - ], - [ - 37.703955, - 55.553161 - ], - [ - 37.703955, - 55.553071 - ], - [ - 37.703796, - 55.553071 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703796, - 55.553161 - ], - [ - 37.703796, - 55.553251 - ], - [ - 37.703955, - 55.553251 - ], - [ - 37.703955, - 55.553161 - ], - [ - 37.703796, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703796, - 55.553251 - ], - [ - 37.703796, - 55.553341 - ], - [ - 37.703955, - 55.553341 - ], - [ - 37.703955, - 55.553251 - ], - [ - 37.703796, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703796, - 55.553341 - ], - [ - 37.703796, - 55.553431 - ], - [ - 37.703955, - 55.553431 - ], - [ - 37.703955, - 55.553341 - ], - [ - 37.703796, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703796, - 55.553431 - ], - [ - 37.703796, - 55.55352 - ], - [ - 37.703955, - 55.55352 - ], - [ - 37.703955, - 55.553431 - ], - [ - 37.703796, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703796, - 55.55352 - ], - [ - 37.703796, - 55.55361 - ], - [ - 37.703955, - 55.55361 - ], - [ - 37.703955, - 55.55352 - ], - [ - 37.703796, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703796, - 55.55361 - ], - [ - 37.703796, - 55.5537 - ], - [ - 37.703955, - 55.5537 - ], - [ - 37.703955, - 55.55361 - ], - [ - 37.703796, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703796, - 55.5537 - ], - [ - 37.703796, - 55.55379 - ], - [ - 37.703955, - 55.55379 - ], - [ - 37.703955, - 55.5537 - ], - [ - 37.703796, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703796, - 55.55379 - ], - [ - 37.703796, - 55.55388 - ], - [ - 37.703955, - 55.55388 - ], - [ - 37.703955, - 55.55379 - ], - [ - 37.703796, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703796, - 55.55388 - ], - [ - 37.703796, - 55.55397 - ], - [ - 37.703955, - 55.55397 - ], - [ - 37.703955, - 55.55388 - ], - [ - 37.703796, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703796, - 55.55397 - ], - [ - 37.703796, - 55.55406 - ], - [ - 37.703955, - 55.55406 - ], - [ - 37.703955, - 55.55397 - ], - [ - 37.703796, - 55.55397 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703796, - 55.55406 - ], - [ - 37.703796, - 55.55415 - ], - [ - 37.703955, - 55.55415 - ], - [ - 37.703955, - 55.55406 - ], - [ - 37.703796, - 55.55406 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703796, - 55.55415 - ], - [ - 37.703796, - 55.55424 - ], - [ - 37.703955, - 55.55424 - ], - [ - 37.703955, - 55.55415 - ], - [ - 37.703796, - 55.55415 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703796, - 55.55424 - ], - [ - 37.703796, - 55.55433 - ], - [ - 37.703955, - 55.55433 - ], - [ - 37.703955, - 55.55424 - ], - [ - 37.703796, - 55.55424 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703796, - 55.55433 - ], - [ - 37.703796, - 55.55442 - ], - [ - 37.703955, - 55.55442 - ], - [ - 37.703955, - 55.55433 - ], - [ - 37.703796, - 55.55433 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703796, - 55.55442 - ], - [ - 37.703796, - 55.55451 - ], - [ - 37.703955, - 55.55451 - ], - [ - 37.703955, - 55.55442 - ], - [ - 37.703796, - 55.55442 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703796, - 55.55451 - ], - [ - 37.703796, - 55.5546 - ], - [ - 37.703955, - 55.5546 - ], - [ - 37.703955, - 55.55451 - ], - [ - 37.703796, - 55.55451 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703796, - 55.5546 - ], - [ - 37.703796, - 55.55469 - ], - [ - 37.703955, - 55.55469 - ], - [ - 37.703955, - 55.5546 - ], - [ - 37.703796, - 55.5546 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703796, - 55.55469 - ], - [ - 37.703796, - 55.55478 - ], - [ - 37.703955, - 55.55478 - ], - [ - 37.703955, - 55.55469 - ], - [ - 37.703796, - 55.55469 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703796, - 55.55478 - ], - [ - 37.703796, - 55.554869 - ], - [ - 37.703955, - 55.554869 - ], - [ - 37.703955, - 55.55478 - ], - [ - 37.703796, - 55.55478 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703955, - 55.552082 - ], - [ - 37.703955, - 55.552171 - ], - [ - 37.704114, - 55.552171 - ], - [ - 37.704114, - 55.552082 - ], - [ - 37.703955, - 55.552082 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703955, - 55.552171 - ], - [ - 37.703955, - 55.552261 - ], - [ - 37.704114, - 55.552261 - ], - [ - 37.704114, - 55.552171 - ], - [ - 37.703955, - 55.552171 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703955, - 55.552261 - ], - [ - 37.703955, - 55.552351 - ], - [ - 37.704114, - 55.552351 - ], - [ - 37.704114, - 55.552261 - ], - [ - 37.703955, - 55.552261 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703955, - 55.552351 - ], - [ - 37.703955, - 55.552441 - ], - [ - 37.704114, - 55.552441 - ], - [ - 37.704114, - 55.552351 - ], - [ - 37.703955, - 55.552351 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703955, - 55.552441 - ], - [ - 37.703955, - 55.552531 - ], - [ - 37.704114, - 55.552531 - ], - [ - 37.704114, - 55.552441 - ], - [ - 37.703955, - 55.552441 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703955, - 55.552531 - ], - [ - 37.703955, - 55.552621 - ], - [ - 37.704114, - 55.552621 - ], - [ - 37.704114, - 55.552531 - ], - [ - 37.703955, - 55.552531 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703955, - 55.552621 - ], - [ - 37.703955, - 55.552711 - ], - [ - 37.704114, - 55.552711 - ], - [ - 37.704114, - 55.552621 - ], - [ - 37.703955, - 55.552621 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703955, - 55.552711 - ], - [ - 37.703955, - 55.552801 - ], - [ - 37.704114, - 55.552801 - ], - [ - 37.704114, - 55.552711 - ], - [ - 37.703955, - 55.552711 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703955, - 55.552801 - ], - [ - 37.703955, - 55.552891 - ], - [ - 37.704114, - 55.552891 - ], - [ - 37.704114, - 55.552801 - ], - [ - 37.703955, - 55.552801 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703955, - 55.552891 - ], - [ - 37.703955, - 55.552981 - ], - [ - 37.704114, - 55.552981 - ], - [ - 37.704114, - 55.552891 - ], - [ - 37.703955, - 55.552891 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703955, - 55.552981 - ], - [ - 37.703955, - 55.553071 - ], - [ - 37.704114, - 55.553071 - ], - [ - 37.704114, - 55.552981 - ], - [ - 37.703955, - 55.552981 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703955, - 55.553071 - ], - [ - 37.703955, - 55.553161 - ], - [ - 37.704114, - 55.553161 - ], - [ - 37.704114, - 55.553071 - ], - [ - 37.703955, - 55.553071 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703955, - 55.553161 - ], - [ - 37.703955, - 55.553251 - ], - [ - 37.704114, - 55.553251 - ], - [ - 37.704114, - 55.553161 - ], - [ - 37.703955, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703955, - 55.553251 - ], - [ - 37.703955, - 55.553341 - ], - [ - 37.704114, - 55.553341 - ], - [ - 37.704114, - 55.553251 - ], - [ - 37.703955, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703955, - 55.553341 - ], - [ - 37.703955, - 55.553431 - ], - [ - 37.704114, - 55.553431 - ], - [ - 37.704114, - 55.553341 - ], - [ - 37.703955, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703955, - 55.553431 - ], - [ - 37.703955, - 55.55352 - ], - [ - 37.704114, - 55.55352 - ], - [ - 37.704114, - 55.553431 - ], - [ - 37.703955, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703955, - 55.55352 - ], - [ - 37.703955, - 55.55361 - ], - [ - 37.704114, - 55.55361 - ], - [ - 37.704114, - 55.55352 - ], - [ - 37.703955, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703955, - 55.55361 - ], - [ - 37.703955, - 55.5537 - ], - [ - 37.704114, - 55.5537 - ], - [ - 37.704114, - 55.55361 - ], - [ - 37.703955, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703955, - 55.5537 - ], - [ - 37.703955, - 55.55379 - ], - [ - 37.704114, - 55.55379 - ], - [ - 37.704114, - 55.5537 - ], - [ - 37.703955, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703955, - 55.55379 - ], - [ - 37.703955, - 55.55388 - ], - [ - 37.704114, - 55.55388 - ], - [ - 37.704114, - 55.55379 - ], - [ - 37.703955, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703955, - 55.55388 - ], - [ - 37.703955, - 55.55397 - ], - [ - 37.704114, - 55.55397 - ], - [ - 37.704114, - 55.55388 - ], - [ - 37.703955, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703955, - 55.55397 - ], - [ - 37.703955, - 55.55406 - ], - [ - 37.704114, - 55.55406 - ], - [ - 37.704114, - 55.55397 - ], - [ - 37.703955, - 55.55397 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703955, - 55.55406 - ], - [ - 37.703955, - 55.55415 - ], - [ - 37.704114, - 55.55415 - ], - [ - 37.704114, - 55.55406 - ], - [ - 37.703955, - 55.55406 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703955, - 55.55415 - ], - [ - 37.703955, - 55.55424 - ], - [ - 37.704114, - 55.55424 - ], - [ - 37.704114, - 55.55415 - ], - [ - 37.703955, - 55.55415 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703955, - 55.55424 - ], - [ - 37.703955, - 55.55433 - ], - [ - 37.704114, - 55.55433 - ], - [ - 37.704114, - 55.55424 - ], - [ - 37.703955, - 55.55424 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703955, - 55.55433 - ], - [ - 37.703955, - 55.55442 - ], - [ - 37.704114, - 55.55442 - ], - [ - 37.704114, - 55.55433 - ], - [ - 37.703955, - 55.55433 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703955, - 55.55442 - ], - [ - 37.703955, - 55.55451 - ], - [ - 37.704114, - 55.55451 - ], - [ - 37.704114, - 55.55442 - ], - [ - 37.703955, - 55.55442 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703955, - 55.55451 - ], - [ - 37.703955, - 55.5546 - ], - [ - 37.704114, - 55.5546 - ], - [ - 37.704114, - 55.55451 - ], - [ - 37.703955, - 55.55451 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703955, - 55.5546 - ], - [ - 37.703955, - 55.55469 - ], - [ - 37.704114, - 55.55469 - ], - [ - 37.704114, - 55.5546 - ], - [ - 37.703955, - 55.5546 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703955, - 55.55469 - ], - [ - 37.703955, - 55.55478 - ], - [ - 37.704114, - 55.55478 - ], - [ - 37.704114, - 55.55469 - ], - [ - 37.703955, - 55.55469 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.703955, - 55.55478 - ], - [ - 37.703955, - 55.554869 - ], - [ - 37.704114, - 55.554869 - ], - [ - 37.704114, - 55.55478 - ], - [ - 37.703955, - 55.55478 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704114, - 55.552082 - ], - [ - 37.704114, - 55.552171 - ], - [ - 37.704273, - 55.552171 - ], - [ - 37.704273, - 55.552082 - ], - [ - 37.704114, - 55.552082 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704114, - 55.552171 - ], - [ - 37.704114, - 55.552261 - ], - [ - 37.704273, - 55.552261 - ], - [ - 37.704273, - 55.552171 - ], - [ - 37.704114, - 55.552171 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704114, - 55.552261 - ], - [ - 37.704114, - 55.552351 - ], - [ - 37.704273, - 55.552351 - ], - [ - 37.704273, - 55.552261 - ], - [ - 37.704114, - 55.552261 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704114, - 55.552351 - ], - [ - 37.704114, - 55.552441 - ], - [ - 37.704273, - 55.552441 - ], - [ - 37.704273, - 55.552351 - ], - [ - 37.704114, - 55.552351 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704114, - 55.552441 - ], - [ - 37.704114, - 55.552531 - ], - [ - 37.704273, - 55.552531 - ], - [ - 37.704273, - 55.552441 - ], - [ - 37.704114, - 55.552441 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704114, - 55.552531 - ], - [ - 37.704114, - 55.552621 - ], - [ - 37.704273, - 55.552621 - ], - [ - 37.704273, - 55.552531 - ], - [ - 37.704114, - 55.552531 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704114, - 55.552621 - ], - [ - 37.704114, - 55.552711 - ], - [ - 37.704273, - 55.552711 - ], - [ - 37.704273, - 55.552621 - ], - [ - 37.704114, - 55.552621 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704114, - 55.552711 - ], - [ - 37.704114, - 55.552801 - ], - [ - 37.704273, - 55.552801 - ], - [ - 37.704273, - 55.552711 - ], - [ - 37.704114, - 55.552711 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704114, - 55.552801 - ], - [ - 37.704114, - 55.552891 - ], - [ - 37.704273, - 55.552891 - ], - [ - 37.704273, - 55.552801 - ], - [ - 37.704114, - 55.552801 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704114, - 55.552891 - ], - [ - 37.704114, - 55.552981 - ], - [ - 37.704273, - 55.552981 - ], - [ - 37.704273, - 55.552891 - ], - [ - 37.704114, - 55.552891 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704114, - 55.552981 - ], - [ - 37.704114, - 55.553071 - ], - [ - 37.704273, - 55.553071 - ], - [ - 37.704273, - 55.552981 - ], - [ - 37.704114, - 55.552981 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704114, - 55.553071 - ], - [ - 37.704114, - 55.553161 - ], - [ - 37.704273, - 55.553161 - ], - [ - 37.704273, - 55.553071 - ], - [ - 37.704114, - 55.553071 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704114, - 55.553161 - ], - [ - 37.704114, - 55.553251 - ], - [ - 37.704273, - 55.553251 - ], - [ - 37.704273, - 55.553161 - ], - [ - 37.704114, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704114, - 55.553251 - ], - [ - 37.704114, - 55.553341 - ], - [ - 37.704273, - 55.553341 - ], - [ - 37.704273, - 55.553251 - ], - [ - 37.704114, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704114, - 55.553341 - ], - [ - 37.704114, - 55.553431 - ], - [ - 37.704273, - 55.553431 - ], - [ - 37.704273, - 55.553341 - ], - [ - 37.704114, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704114, - 55.553431 - ], - [ - 37.704114, - 55.55352 - ], - [ - 37.704273, - 55.55352 - ], - [ - 37.704273, - 55.553431 - ], - [ - 37.704114, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704114, - 55.55352 - ], - [ - 37.704114, - 55.55361 - ], - [ - 37.704273, - 55.55361 - ], - [ - 37.704273, - 55.55352 - ], - [ - 37.704114, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704114, - 55.55361 - ], - [ - 37.704114, - 55.5537 - ], - [ - 37.704273, - 55.5537 - ], - [ - 37.704273, - 55.55361 - ], - [ - 37.704114, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704114, - 55.5537 - ], - [ - 37.704114, - 55.55379 - ], - [ - 37.704273, - 55.55379 - ], - [ - 37.704273, - 55.5537 - ], - [ - 37.704114, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704114, - 55.55379 - ], - [ - 37.704114, - 55.55388 - ], - [ - 37.704273, - 55.55388 - ], - [ - 37.704273, - 55.55379 - ], - [ - 37.704114, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704114, - 55.55388 - ], - [ - 37.704114, - 55.55397 - ], - [ - 37.704273, - 55.55397 - ], - [ - 37.704273, - 55.55388 - ], - [ - 37.704114, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704114, - 55.55397 - ], - [ - 37.704114, - 55.55406 - ], - [ - 37.704273, - 55.55406 - ], - [ - 37.704273, - 55.55397 - ], - [ - 37.704114, - 55.55397 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704114, - 55.55406 - ], - [ - 37.704114, - 55.55415 - ], - [ - 37.704273, - 55.55415 - ], - [ - 37.704273, - 55.55406 - ], - [ - 37.704114, - 55.55406 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704114, - 55.55415 - ], - [ - 37.704114, - 55.55424 - ], - [ - 37.704273, - 55.55424 - ], - [ - 37.704273, - 55.55415 - ], - [ - 37.704114, - 55.55415 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704114, - 55.55424 - ], - [ - 37.704114, - 55.55433 - ], - [ - 37.704273, - 55.55433 - ], - [ - 37.704273, - 55.55424 - ], - [ - 37.704114, - 55.55424 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704114, - 55.55433 - ], - [ - 37.704114, - 55.55442 - ], - [ - 37.704273, - 55.55442 - ], - [ - 37.704273, - 55.55433 - ], - [ - 37.704114, - 55.55433 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704114, - 55.55442 - ], - [ - 37.704114, - 55.55451 - ], - [ - 37.704273, - 55.55451 - ], - [ - 37.704273, - 55.55442 - ], - [ - 37.704114, - 55.55442 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704114, - 55.55451 - ], - [ - 37.704114, - 55.5546 - ], - [ - 37.704273, - 55.5546 - ], - [ - 37.704273, - 55.55451 - ], - [ - 37.704114, - 55.55451 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704114, - 55.5546 - ], - [ - 37.704114, - 55.55469 - ], - [ - 37.704273, - 55.55469 - ], - [ - 37.704273, - 55.5546 - ], - [ - 37.704114, - 55.5546 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704114, - 55.55469 - ], - [ - 37.704114, - 55.55478 - ], - [ - 37.704273, - 55.55478 - ], - [ - 37.704273, - 55.55469 - ], - [ - 37.704114, - 55.55469 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704114, - 55.55478 - ], - [ - 37.704114, - 55.554869 - ], - [ - 37.704273, - 55.554869 - ], - [ - 37.704273, - 55.55478 - ], - [ - 37.704114, - 55.55478 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704114, - 55.554869 - ], - [ - 37.704114, - 55.554959 - ], - [ - 37.704273, - 55.554959 - ], - [ - 37.704273, - 55.554869 - ], - [ - 37.704114, - 55.554869 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704273, - 55.551992 - ], - [ - 37.704273, - 55.552082 - ], - [ - 37.704432, - 55.552082 - ], - [ - 37.704432, - 55.551992 - ], - [ - 37.704273, - 55.551992 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704273, - 55.552082 - ], - [ - 37.704273, - 55.552171 - ], - [ - 37.704432, - 55.552171 - ], - [ - 37.704432, - 55.552082 - ], - [ - 37.704273, - 55.552082 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704273, - 55.552171 - ], - [ - 37.704273, - 55.552261 - ], - [ - 37.704432, - 55.552261 - ], - [ - 37.704432, - 55.552171 - ], - [ - 37.704273, - 55.552171 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704273, - 55.552261 - ], - [ - 37.704273, - 55.552351 - ], - [ - 37.704432, - 55.552351 - ], - [ - 37.704432, - 55.552261 - ], - [ - 37.704273, - 55.552261 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704273, - 55.552351 - ], - [ - 37.704273, - 55.552441 - ], - [ - 37.704432, - 55.552441 - ], - [ - 37.704432, - 55.552351 - ], - [ - 37.704273, - 55.552351 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704273, - 55.552441 - ], - [ - 37.704273, - 55.552531 - ], - [ - 37.704432, - 55.552531 - ], - [ - 37.704432, - 55.552441 - ], - [ - 37.704273, - 55.552441 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704273, - 55.552531 - ], - [ - 37.704273, - 55.552621 - ], - [ - 37.704432, - 55.552621 - ], - [ - 37.704432, - 55.552531 - ], - [ - 37.704273, - 55.552531 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704273, - 55.552621 - ], - [ - 37.704273, - 55.552711 - ], - [ - 37.704432, - 55.552711 - ], - [ - 37.704432, - 55.552621 - ], - [ - 37.704273, - 55.552621 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704273, - 55.552711 - ], - [ - 37.704273, - 55.552801 - ], - [ - 37.704432, - 55.552801 - ], - [ - 37.704432, - 55.552711 - ], - [ - 37.704273, - 55.552711 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704273, - 55.552801 - ], - [ - 37.704273, - 55.552891 - ], - [ - 37.704432, - 55.552891 - ], - [ - 37.704432, - 55.552801 - ], - [ - 37.704273, - 55.552801 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704273, - 55.552891 - ], - [ - 37.704273, - 55.552981 - ], - [ - 37.704432, - 55.552981 - ], - [ - 37.704432, - 55.552891 - ], - [ - 37.704273, - 55.552891 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704273, - 55.552981 - ], - [ - 37.704273, - 55.553071 - ], - [ - 37.704432, - 55.553071 - ], - [ - 37.704432, - 55.552981 - ], - [ - 37.704273, - 55.552981 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704273, - 55.553071 - ], - [ - 37.704273, - 55.553161 - ], - [ - 37.704432, - 55.553161 - ], - [ - 37.704432, - 55.553071 - ], - [ - 37.704273, - 55.553071 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704273, - 55.553161 - ], - [ - 37.704273, - 55.553251 - ], - [ - 37.704432, - 55.553251 - ], - [ - 37.704432, - 55.553161 - ], - [ - 37.704273, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704273, - 55.553251 - ], - [ - 37.704273, - 55.553341 - ], - [ - 37.704432, - 55.553341 - ], - [ - 37.704432, - 55.553251 - ], - [ - 37.704273, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704273, - 55.553341 - ], - [ - 37.704273, - 55.553431 - ], - [ - 37.704432, - 55.553431 - ], - [ - 37.704432, - 55.553341 - ], - [ - 37.704273, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704273, - 55.553431 - ], - [ - 37.704273, - 55.55352 - ], - [ - 37.704432, - 55.55352 - ], - [ - 37.704432, - 55.553431 - ], - [ - 37.704273, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704273, - 55.55352 - ], - [ - 37.704273, - 55.55361 - ], - [ - 37.704432, - 55.55361 - ], - [ - 37.704432, - 55.55352 - ], - [ - 37.704273, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704273, - 55.55361 - ], - [ - 37.704273, - 55.5537 - ], - [ - 37.704432, - 55.5537 - ], - [ - 37.704432, - 55.55361 - ], - [ - 37.704273, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704273, - 55.5537 - ], - [ - 37.704273, - 55.55379 - ], - [ - 37.704432, - 55.55379 - ], - [ - 37.704432, - 55.5537 - ], - [ - 37.704273, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704273, - 55.55379 - ], - [ - 37.704273, - 55.55388 - ], - [ - 37.704432, - 55.55388 - ], - [ - 37.704432, - 55.55379 - ], - [ - 37.704273, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704273, - 55.55388 - ], - [ - 37.704273, - 55.55397 - ], - [ - 37.704432, - 55.55397 - ], - [ - 37.704432, - 55.55388 - ], - [ - 37.704273, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704273, - 55.55397 - ], - [ - 37.704273, - 55.55406 - ], - [ - 37.704432, - 55.55406 - ], - [ - 37.704432, - 55.55397 - ], - [ - 37.704273, - 55.55397 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704273, - 55.55406 - ], - [ - 37.704273, - 55.55415 - ], - [ - 37.704432, - 55.55415 - ], - [ - 37.704432, - 55.55406 - ], - [ - 37.704273, - 55.55406 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704273, - 55.55415 - ], - [ - 37.704273, - 55.55424 - ], - [ - 37.704432, - 55.55424 - ], - [ - 37.704432, - 55.55415 - ], - [ - 37.704273, - 55.55415 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704273, - 55.55424 - ], - [ - 37.704273, - 55.55433 - ], - [ - 37.704432, - 55.55433 - ], - [ - 37.704432, - 55.55424 - ], - [ - 37.704273, - 55.55424 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704273, - 55.55433 - ], - [ - 37.704273, - 55.55442 - ], - [ - 37.704432, - 55.55442 - ], - [ - 37.704432, - 55.55433 - ], - [ - 37.704273, - 55.55433 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704273, - 55.55442 - ], - [ - 37.704273, - 55.55451 - ], - [ - 37.704432, - 55.55451 - ], - [ - 37.704432, - 55.55442 - ], - [ - 37.704273, - 55.55442 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704273, - 55.55451 - ], - [ - 37.704273, - 55.5546 - ], - [ - 37.704432, - 55.5546 - ], - [ - 37.704432, - 55.55451 - ], - [ - 37.704273, - 55.55451 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704273, - 55.5546 - ], - [ - 37.704273, - 55.55469 - ], - [ - 37.704432, - 55.55469 - ], - [ - 37.704432, - 55.5546 - ], - [ - 37.704273, - 55.5546 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704273, - 55.55469 - ], - [ - 37.704273, - 55.55478 - ], - [ - 37.704432, - 55.55478 - ], - [ - 37.704432, - 55.55469 - ], - [ - 37.704273, - 55.55469 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704273, - 55.55478 - ], - [ - 37.704273, - 55.554869 - ], - [ - 37.704432, - 55.554869 - ], - [ - 37.704432, - 55.55478 - ], - [ - 37.704273, - 55.55478 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704273, - 55.554869 - ], - [ - 37.704273, - 55.554959 - ], - [ - 37.704432, - 55.554959 - ], - [ - 37.704432, - 55.554869 - ], - [ - 37.704273, - 55.554869 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704432, - 55.551992 - ], - [ - 37.704432, - 55.552082 - ], - [ - 37.704591, - 55.552082 - ], - [ - 37.704591, - 55.551992 - ], - [ - 37.704432, - 55.551992 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704432, - 55.552082 - ], - [ - 37.704432, - 55.552171 - ], - [ - 37.704591, - 55.552171 - ], - [ - 37.704591, - 55.552082 - ], - [ - 37.704432, - 55.552082 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704432, - 55.552171 - ], - [ - 37.704432, - 55.552261 - ], - [ - 37.704591, - 55.552261 - ], - [ - 37.704591, - 55.552171 - ], - [ - 37.704432, - 55.552171 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704432, - 55.552261 - ], - [ - 37.704432, - 55.552351 - ], - [ - 37.704591, - 55.552351 - ], - [ - 37.704591, - 55.552261 - ], - [ - 37.704432, - 55.552261 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704432, - 55.552351 - ], - [ - 37.704432, - 55.552441 - ], - [ - 37.704591, - 55.552441 - ], - [ - 37.704591, - 55.552351 - ], - [ - 37.704432, - 55.552351 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704432, - 55.552441 - ], - [ - 37.704432, - 55.552531 - ], - [ - 37.704591, - 55.552531 - ], - [ - 37.704591, - 55.552441 - ], - [ - 37.704432, - 55.552441 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704432, - 55.552531 - ], - [ - 37.704432, - 55.552621 - ], - [ - 37.704591, - 55.552621 - ], - [ - 37.704591, - 55.552531 - ], - [ - 37.704432, - 55.552531 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704432, - 55.552621 - ], - [ - 37.704432, - 55.552711 - ], - [ - 37.704591, - 55.552711 - ], - [ - 37.704591, - 55.552621 - ], - [ - 37.704432, - 55.552621 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704432, - 55.552711 - ], - [ - 37.704432, - 55.552801 - ], - [ - 37.704591, - 55.552801 - ], - [ - 37.704591, - 55.552711 - ], - [ - 37.704432, - 55.552711 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704432, - 55.552801 - ], - [ - 37.704432, - 55.552891 - ], - [ - 37.704591, - 55.552891 - ], - [ - 37.704591, - 55.552801 - ], - [ - 37.704432, - 55.552801 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704432, - 55.552891 - ], - [ - 37.704432, - 55.552981 - ], - [ - 37.704591, - 55.552981 - ], - [ - 37.704591, - 55.552891 - ], - [ - 37.704432, - 55.552891 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704432, - 55.552981 - ], - [ - 37.704432, - 55.553071 - ], - [ - 37.704591, - 55.553071 - ], - [ - 37.704591, - 55.552981 - ], - [ - 37.704432, - 55.552981 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704432, - 55.553071 - ], - [ - 37.704432, - 55.553161 - ], - [ - 37.704591, - 55.553161 - ], - [ - 37.704591, - 55.553071 - ], - [ - 37.704432, - 55.553071 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704432, - 55.553161 - ], - [ - 37.704432, - 55.553251 - ], - [ - 37.704591, - 55.553251 - ], - [ - 37.704591, - 55.553161 - ], - [ - 37.704432, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704432, - 55.553251 - ], - [ - 37.704432, - 55.553341 - ], - [ - 37.704591, - 55.553341 - ], - [ - 37.704591, - 55.553251 - ], - [ - 37.704432, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704432, - 55.553341 - ], - [ - 37.704432, - 55.553431 - ], - [ - 37.704591, - 55.553431 - ], - [ - 37.704591, - 55.553341 - ], - [ - 37.704432, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704432, - 55.553431 - ], - [ - 37.704432, - 55.55352 - ], - [ - 37.704591, - 55.55352 - ], - [ - 37.704591, - 55.553431 - ], - [ - 37.704432, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704432, - 55.55352 - ], - [ - 37.704432, - 55.55361 - ], - [ - 37.704591, - 55.55361 - ], - [ - 37.704591, - 55.55352 - ], - [ - 37.704432, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704432, - 55.55361 - ], - [ - 37.704432, - 55.5537 - ], - [ - 37.704591, - 55.5537 - ], - [ - 37.704591, - 55.55361 - ], - [ - 37.704432, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704432, - 55.5537 - ], - [ - 37.704432, - 55.55379 - ], - [ - 37.704591, - 55.55379 - ], - [ - 37.704591, - 55.5537 - ], - [ - 37.704432, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704432, - 55.55379 - ], - [ - 37.704432, - 55.55388 - ], - [ - 37.704591, - 55.55388 - ], - [ - 37.704591, - 55.55379 - ], - [ - 37.704432, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704432, - 55.55388 - ], - [ - 37.704432, - 55.55397 - ], - [ - 37.704591, - 55.55397 - ], - [ - 37.704591, - 55.55388 - ], - [ - 37.704432, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704432, - 55.55397 - ], - [ - 37.704432, - 55.55406 - ], - [ - 37.704591, - 55.55406 - ], - [ - 37.704591, - 55.55397 - ], - [ - 37.704432, - 55.55397 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704432, - 55.55406 - ], - [ - 37.704432, - 55.55415 - ], - [ - 37.704591, - 55.55415 - ], - [ - 37.704591, - 55.55406 - ], - [ - 37.704432, - 55.55406 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704432, - 55.55415 - ], - [ - 37.704432, - 55.55424 - ], - [ - 37.704591, - 55.55424 - ], - [ - 37.704591, - 55.55415 - ], - [ - 37.704432, - 55.55415 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704432, - 55.55424 - ], - [ - 37.704432, - 55.55433 - ], - [ - 37.704591, - 55.55433 - ], - [ - 37.704591, - 55.55424 - ], - [ - 37.704432, - 55.55424 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704432, - 55.55433 - ], - [ - 37.704432, - 55.55442 - ], - [ - 37.704591, - 55.55442 - ], - [ - 37.704591, - 55.55433 - ], - [ - 37.704432, - 55.55433 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704432, - 55.55442 - ], - [ - 37.704432, - 55.55451 - ], - [ - 37.704591, - 55.55451 - ], - [ - 37.704591, - 55.55442 - ], - [ - 37.704432, - 55.55442 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704432, - 55.55451 - ], - [ - 37.704432, - 55.5546 - ], - [ - 37.704591, - 55.5546 - ], - [ - 37.704591, - 55.55451 - ], - [ - 37.704432, - 55.55451 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704432, - 55.5546 - ], - [ - 37.704432, - 55.55469 - ], - [ - 37.704591, - 55.55469 - ], - [ - 37.704591, - 55.5546 - ], - [ - 37.704432, - 55.5546 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704432, - 55.55469 - ], - [ - 37.704432, - 55.55478 - ], - [ - 37.704591, - 55.55478 - ], - [ - 37.704591, - 55.55469 - ], - [ - 37.704432, - 55.55469 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704432, - 55.55478 - ], - [ - 37.704432, - 55.554869 - ], - [ - 37.704591, - 55.554869 - ], - [ - 37.704591, - 55.55478 - ], - [ - 37.704432, - 55.55478 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704432, - 55.554869 - ], - [ - 37.704432, - 55.554959 - ], - [ - 37.704591, - 55.554959 - ], - [ - 37.704591, - 55.554869 - ], - [ - 37.704432, - 55.554869 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704432, - 55.554959 - ], - [ - 37.704432, - 55.555049 - ], - [ - 37.704591, - 55.555049 - ], - [ - 37.704591, - 55.554959 - ], - [ - 37.704432, - 55.554959 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704591, - 55.551902 - ], - [ - 37.704591, - 55.551992 - ], - [ - 37.70475, - 55.551992 - ], - [ - 37.70475, - 55.551902 - ], - [ - 37.704591, - 55.551902 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704591, - 55.551992 - ], - [ - 37.704591, - 55.552082 - ], - [ - 37.70475, - 55.552082 - ], - [ - 37.70475, - 55.551992 - ], - [ - 37.704591, - 55.551992 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704591, - 55.552082 - ], - [ - 37.704591, - 55.552171 - ], - [ - 37.70475, - 55.552171 - ], - [ - 37.70475, - 55.552082 - ], - [ - 37.704591, - 55.552082 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704591, - 55.552171 - ], - [ - 37.704591, - 55.552261 - ], - [ - 37.70475, - 55.552261 - ], - [ - 37.70475, - 55.552171 - ], - [ - 37.704591, - 55.552171 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704591, - 55.552261 - ], - [ - 37.704591, - 55.552351 - ], - [ - 37.70475, - 55.552351 - ], - [ - 37.70475, - 55.552261 - ], - [ - 37.704591, - 55.552261 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704591, - 55.552351 - ], - [ - 37.704591, - 55.552441 - ], - [ - 37.70475, - 55.552441 - ], - [ - 37.70475, - 55.552351 - ], - [ - 37.704591, - 55.552351 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704591, - 55.552441 - ], - [ - 37.704591, - 55.552531 - ], - [ - 37.70475, - 55.552531 - ], - [ - 37.70475, - 55.552441 - ], - [ - 37.704591, - 55.552441 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704591, - 55.552531 - ], - [ - 37.704591, - 55.552621 - ], - [ - 37.70475, - 55.552621 - ], - [ - 37.70475, - 55.552531 - ], - [ - 37.704591, - 55.552531 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704591, - 55.552621 - ], - [ - 37.704591, - 55.552711 - ], - [ - 37.70475, - 55.552711 - ], - [ - 37.70475, - 55.552621 - ], - [ - 37.704591, - 55.552621 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704591, - 55.552711 - ], - [ - 37.704591, - 55.552801 - ], - [ - 37.70475, - 55.552801 - ], - [ - 37.70475, - 55.552711 - ], - [ - 37.704591, - 55.552711 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704591, - 55.552801 - ], - [ - 37.704591, - 55.552891 - ], - [ - 37.70475, - 55.552891 - ], - [ - 37.70475, - 55.552801 - ], - [ - 37.704591, - 55.552801 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704591, - 55.552891 - ], - [ - 37.704591, - 55.552981 - ], - [ - 37.70475, - 55.552981 - ], - [ - 37.70475, - 55.552891 - ], - [ - 37.704591, - 55.552891 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704591, - 55.552981 - ], - [ - 37.704591, - 55.553071 - ], - [ - 37.70475, - 55.553071 - ], - [ - 37.70475, - 55.552981 - ], - [ - 37.704591, - 55.552981 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704591, - 55.553071 - ], - [ - 37.704591, - 55.553161 - ], - [ - 37.70475, - 55.553161 - ], - [ - 37.70475, - 55.553071 - ], - [ - 37.704591, - 55.553071 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704591, - 55.553161 - ], - [ - 37.704591, - 55.553251 - ], - [ - 37.70475, - 55.553251 - ], - [ - 37.70475, - 55.553161 - ], - [ - 37.704591, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704591, - 55.553251 - ], - [ - 37.704591, - 55.553341 - ], - [ - 37.70475, - 55.553341 - ], - [ - 37.70475, - 55.553251 - ], - [ - 37.704591, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704591, - 55.553341 - ], - [ - 37.704591, - 55.553431 - ], - [ - 37.70475, - 55.553431 - ], - [ - 37.70475, - 55.553341 - ], - [ - 37.704591, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704591, - 55.553431 - ], - [ - 37.704591, - 55.55352 - ], - [ - 37.70475, - 55.55352 - ], - [ - 37.70475, - 55.553431 - ], - [ - 37.704591, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704591, - 55.55352 - ], - [ - 37.704591, - 55.55361 - ], - [ - 37.70475, - 55.55361 - ], - [ - 37.70475, - 55.55352 - ], - [ - 37.704591, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704591, - 55.55361 - ], - [ - 37.704591, - 55.5537 - ], - [ - 37.70475, - 55.5537 - ], - [ - 37.70475, - 55.55361 - ], - [ - 37.704591, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704591, - 55.5537 - ], - [ - 37.704591, - 55.55379 - ], - [ - 37.70475, - 55.55379 - ], - [ - 37.70475, - 55.5537 - ], - [ - 37.704591, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704591, - 55.55379 - ], - [ - 37.704591, - 55.55388 - ], - [ - 37.70475, - 55.55388 - ], - [ - 37.70475, - 55.55379 - ], - [ - 37.704591, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704591, - 55.55388 - ], - [ - 37.704591, - 55.55397 - ], - [ - 37.70475, - 55.55397 - ], - [ - 37.70475, - 55.55388 - ], - [ - 37.704591, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704591, - 55.55397 - ], - [ - 37.704591, - 55.55406 - ], - [ - 37.70475, - 55.55406 - ], - [ - 37.70475, - 55.55397 - ], - [ - 37.704591, - 55.55397 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704591, - 55.55406 - ], - [ - 37.704591, - 55.55415 - ], - [ - 37.70475, - 55.55415 - ], - [ - 37.70475, - 55.55406 - ], - [ - 37.704591, - 55.55406 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704591, - 55.55415 - ], - [ - 37.704591, - 55.55424 - ], - [ - 37.70475, - 55.55424 - ], - [ - 37.70475, - 55.55415 - ], - [ - 37.704591, - 55.55415 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704591, - 55.55424 - ], - [ - 37.704591, - 55.55433 - ], - [ - 37.70475, - 55.55433 - ], - [ - 37.70475, - 55.55424 - ], - [ - 37.704591, - 55.55424 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704591, - 55.55433 - ], - [ - 37.704591, - 55.55442 - ], - [ - 37.70475, - 55.55442 - ], - [ - 37.70475, - 55.55433 - ], - [ - 37.704591, - 55.55433 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704591, - 55.55442 - ], - [ - 37.704591, - 55.55451 - ], - [ - 37.70475, - 55.55451 - ], - [ - 37.70475, - 55.55442 - ], - [ - 37.704591, - 55.55442 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704591, - 55.55451 - ], - [ - 37.704591, - 55.5546 - ], - [ - 37.70475, - 55.5546 - ], - [ - 37.70475, - 55.55451 - ], - [ - 37.704591, - 55.55451 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704591, - 55.5546 - ], - [ - 37.704591, - 55.55469 - ], - [ - 37.70475, - 55.55469 - ], - [ - 37.70475, - 55.5546 - ], - [ - 37.704591, - 55.5546 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704591, - 55.55469 - ], - [ - 37.704591, - 55.55478 - ], - [ - 37.70475, - 55.55478 - ], - [ - 37.70475, - 55.55469 - ], - [ - 37.704591, - 55.55469 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704591, - 55.55478 - ], - [ - 37.704591, - 55.554869 - ], - [ - 37.70475, - 55.554869 - ], - [ - 37.70475, - 55.55478 - ], - [ - 37.704591, - 55.55478 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704591, - 55.554869 - ], - [ - 37.704591, - 55.554959 - ], - [ - 37.70475, - 55.554959 - ], - [ - 37.70475, - 55.554869 - ], - [ - 37.704591, - 55.554869 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704591, - 55.554959 - ], - [ - 37.704591, - 55.555049 - ], - [ - 37.70475, - 55.555049 - ], - [ - 37.70475, - 55.554959 - ], - [ - 37.704591, - 55.554959 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70475, - 55.551902 - ], - [ - 37.70475, - 55.551992 - ], - [ - 37.704909, - 55.551992 - ], - [ - 37.704909, - 55.551902 - ], - [ - 37.70475, - 55.551902 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70475, - 55.551992 - ], - [ - 37.70475, - 55.552082 - ], - [ - 37.704909, - 55.552082 - ], - [ - 37.704909, - 55.551992 - ], - [ - 37.70475, - 55.551992 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70475, - 55.552082 - ], - [ - 37.70475, - 55.552171 - ], - [ - 37.704909, - 55.552171 - ], - [ - 37.704909, - 55.552082 - ], - [ - 37.70475, - 55.552082 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70475, - 55.552171 - ], - [ - 37.70475, - 55.552261 - ], - [ - 37.704909, - 55.552261 - ], - [ - 37.704909, - 55.552171 - ], - [ - 37.70475, - 55.552171 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70475, - 55.552261 - ], - [ - 37.70475, - 55.552351 - ], - [ - 37.704909, - 55.552351 - ], - [ - 37.704909, - 55.552261 - ], - [ - 37.70475, - 55.552261 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70475, - 55.552351 - ], - [ - 37.70475, - 55.552441 - ], - [ - 37.704909, - 55.552441 - ], - [ - 37.704909, - 55.552351 - ], - [ - 37.70475, - 55.552351 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70475, - 55.552441 - ], - [ - 37.70475, - 55.552531 - ], - [ - 37.704909, - 55.552531 - ], - [ - 37.704909, - 55.552441 - ], - [ - 37.70475, - 55.552441 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70475, - 55.552531 - ], - [ - 37.70475, - 55.552621 - ], - [ - 37.704909, - 55.552621 - ], - [ - 37.704909, - 55.552531 - ], - [ - 37.70475, - 55.552531 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70475, - 55.552621 - ], - [ - 37.70475, - 55.552711 - ], - [ - 37.704909, - 55.552711 - ], - [ - 37.704909, - 55.552621 - ], - [ - 37.70475, - 55.552621 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70475, - 55.552711 - ], - [ - 37.70475, - 55.552801 - ], - [ - 37.704909, - 55.552801 - ], - [ - 37.704909, - 55.552711 - ], - [ - 37.70475, - 55.552711 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70475, - 55.552801 - ], - [ - 37.70475, - 55.552891 - ], - [ - 37.704909, - 55.552891 - ], - [ - 37.704909, - 55.552801 - ], - [ - 37.70475, - 55.552801 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70475, - 55.552891 - ], - [ - 37.70475, - 55.552981 - ], - [ - 37.704909, - 55.552981 - ], - [ - 37.704909, - 55.552891 - ], - [ - 37.70475, - 55.552891 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70475, - 55.552981 - ], - [ - 37.70475, - 55.553071 - ], - [ - 37.704909, - 55.553071 - ], - [ - 37.704909, - 55.552981 - ], - [ - 37.70475, - 55.552981 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70475, - 55.553071 - ], - [ - 37.70475, - 55.553161 - ], - [ - 37.704909, - 55.553161 - ], - [ - 37.704909, - 55.553071 - ], - [ - 37.70475, - 55.553071 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70475, - 55.553161 - ], - [ - 37.70475, - 55.553251 - ], - [ - 37.704909, - 55.553251 - ], - [ - 37.704909, - 55.553161 - ], - [ - 37.70475, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70475, - 55.553251 - ], - [ - 37.70475, - 55.553341 - ], - [ - 37.704909, - 55.553341 - ], - [ - 37.704909, - 55.553251 - ], - [ - 37.70475, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70475, - 55.553341 - ], - [ - 37.70475, - 55.553431 - ], - [ - 37.704909, - 55.553431 - ], - [ - 37.704909, - 55.553341 - ], - [ - 37.70475, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70475, - 55.553431 - ], - [ - 37.70475, - 55.55352 - ], - [ - 37.704909, - 55.55352 - ], - [ - 37.704909, - 55.553431 - ], - [ - 37.70475, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70475, - 55.55352 - ], - [ - 37.70475, - 55.55361 - ], - [ - 37.704909, - 55.55361 - ], - [ - 37.704909, - 55.55352 - ], - [ - 37.70475, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70475, - 55.55361 - ], - [ - 37.70475, - 55.5537 - ], - [ - 37.704909, - 55.5537 - ], - [ - 37.704909, - 55.55361 - ], - [ - 37.70475, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70475, - 55.5537 - ], - [ - 37.70475, - 55.55379 - ], - [ - 37.704909, - 55.55379 - ], - [ - 37.704909, - 55.5537 - ], - [ - 37.70475, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70475, - 55.55379 - ], - [ - 37.70475, - 55.55388 - ], - [ - 37.704909, - 55.55388 - ], - [ - 37.704909, - 55.55379 - ], - [ - 37.70475, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70475, - 55.55388 - ], - [ - 37.70475, - 55.55397 - ], - [ - 37.704909, - 55.55397 - ], - [ - 37.704909, - 55.55388 - ], - [ - 37.70475, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70475, - 55.55397 - ], - [ - 37.70475, - 55.55406 - ], - [ - 37.704909, - 55.55406 - ], - [ - 37.704909, - 55.55397 - ], - [ - 37.70475, - 55.55397 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70475, - 55.55406 - ], - [ - 37.70475, - 55.55415 - ], - [ - 37.704909, - 55.55415 - ], - [ - 37.704909, - 55.55406 - ], - [ - 37.70475, - 55.55406 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70475, - 55.55415 - ], - [ - 37.70475, - 55.55424 - ], - [ - 37.704909, - 55.55424 - ], - [ - 37.704909, - 55.55415 - ], - [ - 37.70475, - 55.55415 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70475, - 55.55424 - ], - [ - 37.70475, - 55.55433 - ], - [ - 37.704909, - 55.55433 - ], - [ - 37.704909, - 55.55424 - ], - [ - 37.70475, - 55.55424 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70475, - 55.55433 - ], - [ - 37.70475, - 55.55442 - ], - [ - 37.704909, - 55.55442 - ], - [ - 37.704909, - 55.55433 - ], - [ - 37.70475, - 55.55433 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70475, - 55.55442 - ], - [ - 37.70475, - 55.55451 - ], - [ - 37.704909, - 55.55451 - ], - [ - 37.704909, - 55.55442 - ], - [ - 37.70475, - 55.55442 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70475, - 55.55451 - ], - [ - 37.70475, - 55.5546 - ], - [ - 37.704909, - 55.5546 - ], - [ - 37.704909, - 55.55451 - ], - [ - 37.70475, - 55.55451 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70475, - 55.5546 - ], - [ - 37.70475, - 55.55469 - ], - [ - 37.704909, - 55.55469 - ], - [ - 37.704909, - 55.5546 - ], - [ - 37.70475, - 55.5546 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70475, - 55.55469 - ], - [ - 37.70475, - 55.55478 - ], - [ - 37.704909, - 55.55478 - ], - [ - 37.704909, - 55.55469 - ], - [ - 37.70475, - 55.55469 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70475, - 55.55478 - ], - [ - 37.70475, - 55.554869 - ], - [ - 37.704909, - 55.554869 - ], - [ - 37.704909, - 55.55478 - ], - [ - 37.70475, - 55.55478 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70475, - 55.554869 - ], - [ - 37.70475, - 55.554959 - ], - [ - 37.704909, - 55.554959 - ], - [ - 37.704909, - 55.554869 - ], - [ - 37.70475, - 55.554869 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70475, - 55.554959 - ], - [ - 37.70475, - 55.555049 - ], - [ - 37.704909, - 55.555049 - ], - [ - 37.704909, - 55.554959 - ], - [ - 37.70475, - 55.554959 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70475, - 55.555049 - ], - [ - 37.70475, - 55.555139 - ], - [ - 37.704909, - 55.555139 - ], - [ - 37.704909, - 55.555049 - ], - [ - 37.70475, - 55.555049 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704909, - 55.551812 - ], - [ - 37.704909, - 55.551902 - ], - [ - 37.705068, - 55.551902 - ], - [ - 37.705068, - 55.551812 - ], - [ - 37.704909, - 55.551812 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704909, - 55.551902 - ], - [ - 37.704909, - 55.551992 - ], - [ - 37.705068, - 55.551992 - ], - [ - 37.705068, - 55.551902 - ], - [ - 37.704909, - 55.551902 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704909, - 55.551992 - ], - [ - 37.704909, - 55.552082 - ], - [ - 37.705068, - 55.552082 - ], - [ - 37.705068, - 55.551992 - ], - [ - 37.704909, - 55.551992 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704909, - 55.552082 - ], - [ - 37.704909, - 55.552171 - ], - [ - 37.705068, - 55.552171 - ], - [ - 37.705068, - 55.552082 - ], - [ - 37.704909, - 55.552082 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704909, - 55.552171 - ], - [ - 37.704909, - 55.552261 - ], - [ - 37.705068, - 55.552261 - ], - [ - 37.705068, - 55.552171 - ], - [ - 37.704909, - 55.552171 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704909, - 55.552261 - ], - [ - 37.704909, - 55.552351 - ], - [ - 37.705068, - 55.552351 - ], - [ - 37.705068, - 55.552261 - ], - [ - 37.704909, - 55.552261 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704909, - 55.552351 - ], - [ - 37.704909, - 55.552441 - ], - [ - 37.705068, - 55.552441 - ], - [ - 37.705068, - 55.552351 - ], - [ - 37.704909, - 55.552351 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704909, - 55.552441 - ], - [ - 37.704909, - 55.552531 - ], - [ - 37.705068, - 55.552531 - ], - [ - 37.705068, - 55.552441 - ], - [ - 37.704909, - 55.552441 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704909, - 55.552531 - ], - [ - 37.704909, - 55.552621 - ], - [ - 37.705068, - 55.552621 - ], - [ - 37.705068, - 55.552531 - ], - [ - 37.704909, - 55.552531 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704909, - 55.552621 - ], - [ - 37.704909, - 55.552711 - ], - [ - 37.705068, - 55.552711 - ], - [ - 37.705068, - 55.552621 - ], - [ - 37.704909, - 55.552621 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704909, - 55.552711 - ], - [ - 37.704909, - 55.552801 - ], - [ - 37.705068, - 55.552801 - ], - [ - 37.705068, - 55.552711 - ], - [ - 37.704909, - 55.552711 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704909, - 55.552801 - ], - [ - 37.704909, - 55.552891 - ], - [ - 37.705068, - 55.552891 - ], - [ - 37.705068, - 55.552801 - ], - [ - 37.704909, - 55.552801 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704909, - 55.552891 - ], - [ - 37.704909, - 55.552981 - ], - [ - 37.705068, - 55.552981 - ], - [ - 37.705068, - 55.552891 - ], - [ - 37.704909, - 55.552891 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704909, - 55.552981 - ], - [ - 37.704909, - 55.553071 - ], - [ - 37.705068, - 55.553071 - ], - [ - 37.705068, - 55.552981 - ], - [ - 37.704909, - 55.552981 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704909, - 55.553071 - ], - [ - 37.704909, - 55.553161 - ], - [ - 37.705068, - 55.553161 - ], - [ - 37.705068, - 55.553071 - ], - [ - 37.704909, - 55.553071 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704909, - 55.553161 - ], - [ - 37.704909, - 55.553251 - ], - [ - 37.705068, - 55.553251 - ], - [ - 37.705068, - 55.553161 - ], - [ - 37.704909, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704909, - 55.553251 - ], - [ - 37.704909, - 55.553341 - ], - [ - 37.705068, - 55.553341 - ], - [ - 37.705068, - 55.553251 - ], - [ - 37.704909, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704909, - 55.553341 - ], - [ - 37.704909, - 55.553431 - ], - [ - 37.705068, - 55.553431 - ], - [ - 37.705068, - 55.553341 - ], - [ - 37.704909, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704909, - 55.553431 - ], - [ - 37.704909, - 55.55352 - ], - [ - 37.705068, - 55.55352 - ], - [ - 37.705068, - 55.553431 - ], - [ - 37.704909, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704909, - 55.55352 - ], - [ - 37.704909, - 55.55361 - ], - [ - 37.705068, - 55.55361 - ], - [ - 37.705068, - 55.55352 - ], - [ - 37.704909, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704909, - 55.55361 - ], - [ - 37.704909, - 55.5537 - ], - [ - 37.705068, - 55.5537 - ], - [ - 37.705068, - 55.55361 - ], - [ - 37.704909, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704909, - 55.5537 - ], - [ - 37.704909, - 55.55379 - ], - [ - 37.705068, - 55.55379 - ], - [ - 37.705068, - 55.5537 - ], - [ - 37.704909, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704909, - 55.55379 - ], - [ - 37.704909, - 55.55388 - ], - [ - 37.705068, - 55.55388 - ], - [ - 37.705068, - 55.55379 - ], - [ - 37.704909, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704909, - 55.55388 - ], - [ - 37.704909, - 55.55397 - ], - [ - 37.705068, - 55.55397 - ], - [ - 37.705068, - 55.55388 - ], - [ - 37.704909, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704909, - 55.55397 - ], - [ - 37.704909, - 55.55406 - ], - [ - 37.705068, - 55.55406 - ], - [ - 37.705068, - 55.55397 - ], - [ - 37.704909, - 55.55397 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704909, - 55.55406 - ], - [ - 37.704909, - 55.55415 - ], - [ - 37.705068, - 55.55415 - ], - [ - 37.705068, - 55.55406 - ], - [ - 37.704909, - 55.55406 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704909, - 55.55415 - ], - [ - 37.704909, - 55.55424 - ], - [ - 37.705068, - 55.55424 - ], - [ - 37.705068, - 55.55415 - ], - [ - 37.704909, - 55.55415 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704909, - 55.55424 - ], - [ - 37.704909, - 55.55433 - ], - [ - 37.705068, - 55.55433 - ], - [ - 37.705068, - 55.55424 - ], - [ - 37.704909, - 55.55424 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704909, - 55.55433 - ], - [ - 37.704909, - 55.55442 - ], - [ - 37.705068, - 55.55442 - ], - [ - 37.705068, - 55.55433 - ], - [ - 37.704909, - 55.55433 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704909, - 55.55442 - ], - [ - 37.704909, - 55.55451 - ], - [ - 37.705068, - 55.55451 - ], - [ - 37.705068, - 55.55442 - ], - [ - 37.704909, - 55.55442 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704909, - 55.55451 - ], - [ - 37.704909, - 55.5546 - ], - [ - 37.705068, - 55.5546 - ], - [ - 37.705068, - 55.55451 - ], - [ - 37.704909, - 55.55451 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704909, - 55.5546 - ], - [ - 37.704909, - 55.55469 - ], - [ - 37.705068, - 55.55469 - ], - [ - 37.705068, - 55.5546 - ], - [ - 37.704909, - 55.5546 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704909, - 55.55469 - ], - [ - 37.704909, - 55.55478 - ], - [ - 37.705068, - 55.55478 - ], - [ - 37.705068, - 55.55469 - ], - [ - 37.704909, - 55.55469 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704909, - 55.55478 - ], - [ - 37.704909, - 55.554869 - ], - [ - 37.705068, - 55.554869 - ], - [ - 37.705068, - 55.55478 - ], - [ - 37.704909, - 55.55478 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704909, - 55.554869 - ], - [ - 37.704909, - 55.554959 - ], - [ - 37.705068, - 55.554959 - ], - [ - 37.705068, - 55.554869 - ], - [ - 37.704909, - 55.554869 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704909, - 55.554959 - ], - [ - 37.704909, - 55.555049 - ], - [ - 37.705068, - 55.555049 - ], - [ - 37.705068, - 55.554959 - ], - [ - 37.704909, - 55.554959 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.704909, - 55.555049 - ], - [ - 37.704909, - 55.555139 - ], - [ - 37.705068, - 55.555139 - ], - [ - 37.705068, - 55.555049 - ], - [ - 37.704909, - 55.555049 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705068, - 55.551812 - ], - [ - 37.705068, - 55.551902 - ], - [ - 37.705227, - 55.551902 - ], - [ - 37.705227, - 55.551812 - ], - [ - 37.705068, - 55.551812 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705068, - 55.551902 - ], - [ - 37.705068, - 55.551992 - ], - [ - 37.705227, - 55.551992 - ], - [ - 37.705227, - 55.551902 - ], - [ - 37.705068, - 55.551902 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705068, - 55.551992 - ], - [ - 37.705068, - 55.552082 - ], - [ - 37.705227, - 55.552082 - ], - [ - 37.705227, - 55.551992 - ], - [ - 37.705068, - 55.551992 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705068, - 55.552082 - ], - [ - 37.705068, - 55.552171 - ], - [ - 37.705227, - 55.552171 - ], - [ - 37.705227, - 55.552082 - ], - [ - 37.705068, - 55.552082 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705068, - 55.552171 - ], - [ - 37.705068, - 55.552261 - ], - [ - 37.705227, - 55.552261 - ], - [ - 37.705227, - 55.552171 - ], - [ - 37.705068, - 55.552171 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705068, - 55.552261 - ], - [ - 37.705068, - 55.552351 - ], - [ - 37.705227, - 55.552351 - ], - [ - 37.705227, - 55.552261 - ], - [ - 37.705068, - 55.552261 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705068, - 55.552351 - ], - [ - 37.705068, - 55.552441 - ], - [ - 37.705227, - 55.552441 - ], - [ - 37.705227, - 55.552351 - ], - [ - 37.705068, - 55.552351 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705068, - 55.552441 - ], - [ - 37.705068, - 55.552531 - ], - [ - 37.705227, - 55.552531 - ], - [ - 37.705227, - 55.552441 - ], - [ - 37.705068, - 55.552441 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705068, - 55.552531 - ], - [ - 37.705068, - 55.552621 - ], - [ - 37.705227, - 55.552621 - ], - [ - 37.705227, - 55.552531 - ], - [ - 37.705068, - 55.552531 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705068, - 55.552621 - ], - [ - 37.705068, - 55.552711 - ], - [ - 37.705227, - 55.552711 - ], - [ - 37.705227, - 55.552621 - ], - [ - 37.705068, - 55.552621 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705068, - 55.552711 - ], - [ - 37.705068, - 55.552801 - ], - [ - 37.705227, - 55.552801 - ], - [ - 37.705227, - 55.552711 - ], - [ - 37.705068, - 55.552711 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705068, - 55.552801 - ], - [ - 37.705068, - 55.552891 - ], - [ - 37.705227, - 55.552891 - ], - [ - 37.705227, - 55.552801 - ], - [ - 37.705068, - 55.552801 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705068, - 55.552891 - ], - [ - 37.705068, - 55.552981 - ], - [ - 37.705227, - 55.552981 - ], - [ - 37.705227, - 55.552891 - ], - [ - 37.705068, - 55.552891 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705068, - 55.552981 - ], - [ - 37.705068, - 55.553071 - ], - [ - 37.705227, - 55.553071 - ], - [ - 37.705227, - 55.552981 - ], - [ - 37.705068, - 55.552981 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705068, - 55.553071 - ], - [ - 37.705068, - 55.553161 - ], - [ - 37.705227, - 55.553161 - ], - [ - 37.705227, - 55.553071 - ], - [ - 37.705068, - 55.553071 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705068, - 55.553161 - ], - [ - 37.705068, - 55.553251 - ], - [ - 37.705227, - 55.553251 - ], - [ - 37.705227, - 55.553161 - ], - [ - 37.705068, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705068, - 55.553251 - ], - [ - 37.705068, - 55.553341 - ], - [ - 37.705227, - 55.553341 - ], - [ - 37.705227, - 55.553251 - ], - [ - 37.705068, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705068, - 55.553341 - ], - [ - 37.705068, - 55.553431 - ], - [ - 37.705227, - 55.553431 - ], - [ - 37.705227, - 55.553341 - ], - [ - 37.705068, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705068, - 55.553431 - ], - [ - 37.705068, - 55.55352 - ], - [ - 37.705227, - 55.55352 - ], - [ - 37.705227, - 55.553431 - ], - [ - 37.705068, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705068, - 55.55352 - ], - [ - 37.705068, - 55.55361 - ], - [ - 37.705227, - 55.55361 - ], - [ - 37.705227, - 55.55352 - ], - [ - 37.705068, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705068, - 55.55361 - ], - [ - 37.705068, - 55.5537 - ], - [ - 37.705227, - 55.5537 - ], - [ - 37.705227, - 55.55361 - ], - [ - 37.705068, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705068, - 55.5537 - ], - [ - 37.705068, - 55.55379 - ], - [ - 37.705227, - 55.55379 - ], - [ - 37.705227, - 55.5537 - ], - [ - 37.705068, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705068, - 55.55379 - ], - [ - 37.705068, - 55.55388 - ], - [ - 37.705227, - 55.55388 - ], - [ - 37.705227, - 55.55379 - ], - [ - 37.705068, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705068, - 55.55388 - ], - [ - 37.705068, - 55.55397 - ], - [ - 37.705227, - 55.55397 - ], - [ - 37.705227, - 55.55388 - ], - [ - 37.705068, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705068, - 55.55397 - ], - [ - 37.705068, - 55.55406 - ], - [ - 37.705227, - 55.55406 - ], - [ - 37.705227, - 55.55397 - ], - [ - 37.705068, - 55.55397 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705068, - 55.55406 - ], - [ - 37.705068, - 55.55415 - ], - [ - 37.705227, - 55.55415 - ], - [ - 37.705227, - 55.55406 - ], - [ - 37.705068, - 55.55406 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705068, - 55.55415 - ], - [ - 37.705068, - 55.55424 - ], - [ - 37.705227, - 55.55424 - ], - [ - 37.705227, - 55.55415 - ], - [ - 37.705068, - 55.55415 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705068, - 55.55424 - ], - [ - 37.705068, - 55.55433 - ], - [ - 37.705227, - 55.55433 - ], - [ - 37.705227, - 55.55424 - ], - [ - 37.705068, - 55.55424 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705068, - 55.55433 - ], - [ - 37.705068, - 55.55442 - ], - [ - 37.705227, - 55.55442 - ], - [ - 37.705227, - 55.55433 - ], - [ - 37.705068, - 55.55433 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705068, - 55.55442 - ], - [ - 37.705068, - 55.55451 - ], - [ - 37.705227, - 55.55451 - ], - [ - 37.705227, - 55.55442 - ], - [ - 37.705068, - 55.55442 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705068, - 55.55451 - ], - [ - 37.705068, - 55.5546 - ], - [ - 37.705227, - 55.5546 - ], - [ - 37.705227, - 55.55451 - ], - [ - 37.705068, - 55.55451 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705068, - 55.5546 - ], - [ - 37.705068, - 55.55469 - ], - [ - 37.705227, - 55.55469 - ], - [ - 37.705227, - 55.5546 - ], - [ - 37.705068, - 55.5546 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705068, - 55.55469 - ], - [ - 37.705068, - 55.55478 - ], - [ - 37.705227, - 55.55478 - ], - [ - 37.705227, - 55.55469 - ], - [ - 37.705068, - 55.55469 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705068, - 55.55478 - ], - [ - 37.705068, - 55.554869 - ], - [ - 37.705227, - 55.554869 - ], - [ - 37.705227, - 55.55478 - ], - [ - 37.705068, - 55.55478 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705068, - 55.554869 - ], - [ - 37.705068, - 55.554959 - ], - [ - 37.705227, - 55.554959 - ], - [ - 37.705227, - 55.554869 - ], - [ - 37.705068, - 55.554869 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705068, - 55.554959 - ], - [ - 37.705068, - 55.555049 - ], - [ - 37.705227, - 55.555049 - ], - [ - 37.705227, - 55.554959 - ], - [ - 37.705068, - 55.554959 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705068, - 55.555049 - ], - [ - 37.705068, - 55.555139 - ], - [ - 37.705227, - 55.555139 - ], - [ - 37.705227, - 55.555049 - ], - [ - 37.705068, - 55.555049 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705068, - 55.555139 - ], - [ - 37.705068, - 55.555229 - ], - [ - 37.705227, - 55.555229 - ], - [ - 37.705227, - 55.555139 - ], - [ - 37.705068, - 55.555139 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705227, - 55.551722 - ], - [ - 37.705227, - 55.551812 - ], - [ - 37.705386, - 55.551812 - ], - [ - 37.705386, - 55.551722 - ], - [ - 37.705227, - 55.551722 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705227, - 55.551812 - ], - [ - 37.705227, - 55.551902 - ], - [ - 37.705386, - 55.551902 - ], - [ - 37.705386, - 55.551812 - ], - [ - 37.705227, - 55.551812 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705227, - 55.551902 - ], - [ - 37.705227, - 55.551992 - ], - [ - 37.705386, - 55.551992 - ], - [ - 37.705386, - 55.551902 - ], - [ - 37.705227, - 55.551902 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705227, - 55.551992 - ], - [ - 37.705227, - 55.552082 - ], - [ - 37.705386, - 55.552082 - ], - [ - 37.705386, - 55.551992 - ], - [ - 37.705227, - 55.551992 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705227, - 55.552082 - ], - [ - 37.705227, - 55.552171 - ], - [ - 37.705386, - 55.552171 - ], - [ - 37.705386, - 55.552082 - ], - [ - 37.705227, - 55.552082 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705227, - 55.552171 - ], - [ - 37.705227, - 55.552261 - ], - [ - 37.705386, - 55.552261 - ], - [ - 37.705386, - 55.552171 - ], - [ - 37.705227, - 55.552171 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705227, - 55.552261 - ], - [ - 37.705227, - 55.552351 - ], - [ - 37.705386, - 55.552351 - ], - [ - 37.705386, - 55.552261 - ], - [ - 37.705227, - 55.552261 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705227, - 55.552351 - ], - [ - 37.705227, - 55.552441 - ], - [ - 37.705386, - 55.552441 - ], - [ - 37.705386, - 55.552351 - ], - [ - 37.705227, - 55.552351 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705227, - 55.552441 - ], - [ - 37.705227, - 55.552531 - ], - [ - 37.705386, - 55.552531 - ], - [ - 37.705386, - 55.552441 - ], - [ - 37.705227, - 55.552441 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705227, - 55.552531 - ], - [ - 37.705227, - 55.552621 - ], - [ - 37.705386, - 55.552621 - ], - [ - 37.705386, - 55.552531 - ], - [ - 37.705227, - 55.552531 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705227, - 55.552621 - ], - [ - 37.705227, - 55.552711 - ], - [ - 37.705386, - 55.552711 - ], - [ - 37.705386, - 55.552621 - ], - [ - 37.705227, - 55.552621 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705227, - 55.552711 - ], - [ - 37.705227, - 55.552801 - ], - [ - 37.705386, - 55.552801 - ], - [ - 37.705386, - 55.552711 - ], - [ - 37.705227, - 55.552711 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705227, - 55.552801 - ], - [ - 37.705227, - 55.552891 - ], - [ - 37.705386, - 55.552891 - ], - [ - 37.705386, - 55.552801 - ], - [ - 37.705227, - 55.552801 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705227, - 55.552891 - ], - [ - 37.705227, - 55.552981 - ], - [ - 37.705386, - 55.552981 - ], - [ - 37.705386, - 55.552891 - ], - [ - 37.705227, - 55.552891 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705227, - 55.552981 - ], - [ - 37.705227, - 55.553071 - ], - [ - 37.705386, - 55.553071 - ], - [ - 37.705386, - 55.552981 - ], - [ - 37.705227, - 55.552981 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705227, - 55.553071 - ], - [ - 37.705227, - 55.553161 - ], - [ - 37.705386, - 55.553161 - ], - [ - 37.705386, - 55.553071 - ], - [ - 37.705227, - 55.553071 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705227, - 55.553161 - ], - [ - 37.705227, - 55.553251 - ], - [ - 37.705386, - 55.553251 - ], - [ - 37.705386, - 55.553161 - ], - [ - 37.705227, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705227, - 55.553251 - ], - [ - 37.705227, - 55.553341 - ], - [ - 37.705386, - 55.553341 - ], - [ - 37.705386, - 55.553251 - ], - [ - 37.705227, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705227, - 55.553341 - ], - [ - 37.705227, - 55.553431 - ], - [ - 37.705386, - 55.553431 - ], - [ - 37.705386, - 55.553341 - ], - [ - 37.705227, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705227, - 55.553431 - ], - [ - 37.705227, - 55.55352 - ], - [ - 37.705386, - 55.55352 - ], - [ - 37.705386, - 55.553431 - ], - [ - 37.705227, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705227, - 55.55352 - ], - [ - 37.705227, - 55.55361 - ], - [ - 37.705386, - 55.55361 - ], - [ - 37.705386, - 55.55352 - ], - [ - 37.705227, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705227, - 55.55361 - ], - [ - 37.705227, - 55.5537 - ], - [ - 37.705386, - 55.5537 - ], - [ - 37.705386, - 55.55361 - ], - [ - 37.705227, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705227, - 55.5537 - ], - [ - 37.705227, - 55.55379 - ], - [ - 37.705386, - 55.55379 - ], - [ - 37.705386, - 55.5537 - ], - [ - 37.705227, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705227, - 55.55379 - ], - [ - 37.705227, - 55.55388 - ], - [ - 37.705386, - 55.55388 - ], - [ - 37.705386, - 55.55379 - ], - [ - 37.705227, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705227, - 55.55388 - ], - [ - 37.705227, - 55.55397 - ], - [ - 37.705386, - 55.55397 - ], - [ - 37.705386, - 55.55388 - ], - [ - 37.705227, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705227, - 55.55397 - ], - [ - 37.705227, - 55.55406 - ], - [ - 37.705386, - 55.55406 - ], - [ - 37.705386, - 55.55397 - ], - [ - 37.705227, - 55.55397 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705227, - 55.55406 - ], - [ - 37.705227, - 55.55415 - ], - [ - 37.705386, - 55.55415 - ], - [ - 37.705386, - 55.55406 - ], - [ - 37.705227, - 55.55406 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705227, - 55.55415 - ], - [ - 37.705227, - 55.55424 - ], - [ - 37.705386, - 55.55424 - ], - [ - 37.705386, - 55.55415 - ], - [ - 37.705227, - 55.55415 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705227, - 55.55424 - ], - [ - 37.705227, - 55.55433 - ], - [ - 37.705386, - 55.55433 - ], - [ - 37.705386, - 55.55424 - ], - [ - 37.705227, - 55.55424 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705227, - 55.55433 - ], - [ - 37.705227, - 55.55442 - ], - [ - 37.705386, - 55.55442 - ], - [ - 37.705386, - 55.55433 - ], - [ - 37.705227, - 55.55433 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705227, - 55.55442 - ], - [ - 37.705227, - 55.55451 - ], - [ - 37.705386, - 55.55451 - ], - [ - 37.705386, - 55.55442 - ], - [ - 37.705227, - 55.55442 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705227, - 55.55451 - ], - [ - 37.705227, - 55.5546 - ], - [ - 37.705386, - 55.5546 - ], - [ - 37.705386, - 55.55451 - ], - [ - 37.705227, - 55.55451 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705227, - 55.5546 - ], - [ - 37.705227, - 55.55469 - ], - [ - 37.705386, - 55.55469 - ], - [ - 37.705386, - 55.5546 - ], - [ - 37.705227, - 55.5546 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705227, - 55.55469 - ], - [ - 37.705227, - 55.55478 - ], - [ - 37.705386, - 55.55478 - ], - [ - 37.705386, - 55.55469 - ], - [ - 37.705227, - 55.55469 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705227, - 55.55478 - ], - [ - 37.705227, - 55.554869 - ], - [ - 37.705386, - 55.554869 - ], - [ - 37.705386, - 55.55478 - ], - [ - 37.705227, - 55.55478 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705227, - 55.554869 - ], - [ - 37.705227, - 55.554959 - ], - [ - 37.705386, - 55.554959 - ], - [ - 37.705386, - 55.554869 - ], - [ - 37.705227, - 55.554869 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705227, - 55.554959 - ], - [ - 37.705227, - 55.555049 - ], - [ - 37.705386, - 55.555049 - ], - [ - 37.705386, - 55.554959 - ], - [ - 37.705227, - 55.554959 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705227, - 55.555049 - ], - [ - 37.705227, - 55.555139 - ], - [ - 37.705386, - 55.555139 - ], - [ - 37.705386, - 55.555049 - ], - [ - 37.705227, - 55.555049 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705227, - 55.555139 - ], - [ - 37.705227, - 55.555229 - ], - [ - 37.705386, - 55.555229 - ], - [ - 37.705386, - 55.555139 - ], - [ - 37.705227, - 55.555139 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705386, - 55.551722 - ], - [ - 37.705386, - 55.551812 - ], - [ - 37.705545, - 55.551812 - ], - [ - 37.705545, - 55.551722 - ], - [ - 37.705386, - 55.551722 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705386, - 55.551812 - ], - [ - 37.705386, - 55.551902 - ], - [ - 37.705545, - 55.551902 - ], - [ - 37.705545, - 55.551812 - ], - [ - 37.705386, - 55.551812 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705386, - 55.551902 - ], - [ - 37.705386, - 55.551992 - ], - [ - 37.705545, - 55.551992 - ], - [ - 37.705545, - 55.551902 - ], - [ - 37.705386, - 55.551902 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705386, - 55.551992 - ], - [ - 37.705386, - 55.552082 - ], - [ - 37.705545, - 55.552082 - ], - [ - 37.705545, - 55.551992 - ], - [ - 37.705386, - 55.551992 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705386, - 55.552082 - ], - [ - 37.705386, - 55.552171 - ], - [ - 37.705545, - 55.552171 - ], - [ - 37.705545, - 55.552082 - ], - [ - 37.705386, - 55.552082 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705386, - 55.552171 - ], - [ - 37.705386, - 55.552261 - ], - [ - 37.705545, - 55.552261 - ], - [ - 37.705545, - 55.552171 - ], - [ - 37.705386, - 55.552171 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705386, - 55.552261 - ], - [ - 37.705386, - 55.552351 - ], - [ - 37.705545, - 55.552351 - ], - [ - 37.705545, - 55.552261 - ], - [ - 37.705386, - 55.552261 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705386, - 55.552351 - ], - [ - 37.705386, - 55.552441 - ], - [ - 37.705545, - 55.552441 - ], - [ - 37.705545, - 55.552351 - ], - [ - 37.705386, - 55.552351 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705386, - 55.552441 - ], - [ - 37.705386, - 55.552531 - ], - [ - 37.705545, - 55.552531 - ], - [ - 37.705545, - 55.552441 - ], - [ - 37.705386, - 55.552441 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705386, - 55.552531 - ], - [ - 37.705386, - 55.552621 - ], - [ - 37.705545, - 55.552621 - ], - [ - 37.705545, - 55.552531 - ], - [ - 37.705386, - 55.552531 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705386, - 55.552621 - ], - [ - 37.705386, - 55.552711 - ], - [ - 37.705545, - 55.552711 - ], - [ - 37.705545, - 55.552621 - ], - [ - 37.705386, - 55.552621 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705386, - 55.552711 - ], - [ - 37.705386, - 55.552801 - ], - [ - 37.705545, - 55.552801 - ], - [ - 37.705545, - 55.552711 - ], - [ - 37.705386, - 55.552711 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705386, - 55.552801 - ], - [ - 37.705386, - 55.552891 - ], - [ - 37.705545, - 55.552891 - ], - [ - 37.705545, - 55.552801 - ], - [ - 37.705386, - 55.552801 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705386, - 55.552891 - ], - [ - 37.705386, - 55.552981 - ], - [ - 37.705545, - 55.552981 - ], - [ - 37.705545, - 55.552891 - ], - [ - 37.705386, - 55.552891 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705386, - 55.552981 - ], - [ - 37.705386, - 55.553071 - ], - [ - 37.705545, - 55.553071 - ], - [ - 37.705545, - 55.552981 - ], - [ - 37.705386, - 55.552981 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705386, - 55.553071 - ], - [ - 37.705386, - 55.553161 - ], - [ - 37.705545, - 55.553161 - ], - [ - 37.705545, - 55.553071 - ], - [ - 37.705386, - 55.553071 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705386, - 55.553161 - ], - [ - 37.705386, - 55.553251 - ], - [ - 37.705545, - 55.553251 - ], - [ - 37.705545, - 55.553161 - ], - [ - 37.705386, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705386, - 55.553251 - ], - [ - 37.705386, - 55.553341 - ], - [ - 37.705545, - 55.553341 - ], - [ - 37.705545, - 55.553251 - ], - [ - 37.705386, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705386, - 55.553341 - ], - [ - 37.705386, - 55.553431 - ], - [ - 37.705545, - 55.553431 - ], - [ - 37.705545, - 55.553341 - ], - [ - 37.705386, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705386, - 55.553431 - ], - [ - 37.705386, - 55.55352 - ], - [ - 37.705545, - 55.55352 - ], - [ - 37.705545, - 55.553431 - ], - [ - 37.705386, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705386, - 55.55352 - ], - [ - 37.705386, - 55.55361 - ], - [ - 37.705545, - 55.55361 - ], - [ - 37.705545, - 55.55352 - ], - [ - 37.705386, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705386, - 55.55361 - ], - [ - 37.705386, - 55.5537 - ], - [ - 37.705545, - 55.5537 - ], - [ - 37.705545, - 55.55361 - ], - [ - 37.705386, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705386, - 55.5537 - ], - [ - 37.705386, - 55.55379 - ], - [ - 37.705545, - 55.55379 - ], - [ - 37.705545, - 55.5537 - ], - [ - 37.705386, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705386, - 55.55379 - ], - [ - 37.705386, - 55.55388 - ], - [ - 37.705545, - 55.55388 - ], - [ - 37.705545, - 55.55379 - ], - [ - 37.705386, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705386, - 55.55388 - ], - [ - 37.705386, - 55.55397 - ], - [ - 37.705545, - 55.55397 - ], - [ - 37.705545, - 55.55388 - ], - [ - 37.705386, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705386, - 55.55397 - ], - [ - 37.705386, - 55.55406 - ], - [ - 37.705545, - 55.55406 - ], - [ - 37.705545, - 55.55397 - ], - [ - 37.705386, - 55.55397 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705386, - 55.55406 - ], - [ - 37.705386, - 55.55415 - ], - [ - 37.705545, - 55.55415 - ], - [ - 37.705545, - 55.55406 - ], - [ - 37.705386, - 55.55406 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705386, - 55.55415 - ], - [ - 37.705386, - 55.55424 - ], - [ - 37.705545, - 55.55424 - ], - [ - 37.705545, - 55.55415 - ], - [ - 37.705386, - 55.55415 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705386, - 55.55424 - ], - [ - 37.705386, - 55.55433 - ], - [ - 37.705545, - 55.55433 - ], - [ - 37.705545, - 55.55424 - ], - [ - 37.705386, - 55.55424 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705386, - 55.55433 - ], - [ - 37.705386, - 55.55442 - ], - [ - 37.705545, - 55.55442 - ], - [ - 37.705545, - 55.55433 - ], - [ - 37.705386, - 55.55433 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705386, - 55.55442 - ], - [ - 37.705386, - 55.55451 - ], - [ - 37.705545, - 55.55451 - ], - [ - 37.705545, - 55.55442 - ], - [ - 37.705386, - 55.55442 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705386, - 55.55451 - ], - [ - 37.705386, - 55.5546 - ], - [ - 37.705545, - 55.5546 - ], - [ - 37.705545, - 55.55451 - ], - [ - 37.705386, - 55.55451 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705386, - 55.5546 - ], - [ - 37.705386, - 55.55469 - ], - [ - 37.705545, - 55.55469 - ], - [ - 37.705545, - 55.5546 - ], - [ - 37.705386, - 55.5546 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705386, - 55.55469 - ], - [ - 37.705386, - 55.55478 - ], - [ - 37.705545, - 55.55478 - ], - [ - 37.705545, - 55.55469 - ], - [ - 37.705386, - 55.55469 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705386, - 55.55478 - ], - [ - 37.705386, - 55.554869 - ], - [ - 37.705545, - 55.554869 - ], - [ - 37.705545, - 55.55478 - ], - [ - 37.705386, - 55.55478 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705386, - 55.554869 - ], - [ - 37.705386, - 55.554959 - ], - [ - 37.705545, - 55.554959 - ], - [ - 37.705545, - 55.554869 - ], - [ - 37.705386, - 55.554869 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705386, - 55.554959 - ], - [ - 37.705386, - 55.555049 - ], - [ - 37.705545, - 55.555049 - ], - [ - 37.705545, - 55.554959 - ], - [ - 37.705386, - 55.554959 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705386, - 55.555049 - ], - [ - 37.705386, - 55.555139 - ], - [ - 37.705545, - 55.555139 - ], - [ - 37.705545, - 55.555049 - ], - [ - 37.705386, - 55.555049 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705386, - 55.555139 - ], - [ - 37.705386, - 55.555229 - ], - [ - 37.705545, - 55.555229 - ], - [ - 37.705545, - 55.555139 - ], - [ - 37.705386, - 55.555139 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705386, - 55.555229 - ], - [ - 37.705386, - 55.555319 - ], - [ - 37.705545, - 55.555319 - ], - [ - 37.705545, - 55.555229 - ], - [ - 37.705386, - 55.555229 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705545, - 55.551722 - ], - [ - 37.705545, - 55.551812 - ], - [ - 37.705704, - 55.551812 - ], - [ - 37.705704, - 55.551722 - ], - [ - 37.705545, - 55.551722 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705545, - 55.551812 - ], - [ - 37.705545, - 55.551902 - ], - [ - 37.705704, - 55.551902 - ], - [ - 37.705704, - 55.551812 - ], - [ - 37.705545, - 55.551812 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705545, - 55.551902 - ], - [ - 37.705545, - 55.551992 - ], - [ - 37.705704, - 55.551992 - ], - [ - 37.705704, - 55.551902 - ], - [ - 37.705545, - 55.551902 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705545, - 55.551992 - ], - [ - 37.705545, - 55.552082 - ], - [ - 37.705704, - 55.552082 - ], - [ - 37.705704, - 55.551992 - ], - [ - 37.705545, - 55.551992 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705545, - 55.552082 - ], - [ - 37.705545, - 55.552171 - ], - [ - 37.705704, - 55.552171 - ], - [ - 37.705704, - 55.552082 - ], - [ - 37.705545, - 55.552082 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705545, - 55.552171 - ], - [ - 37.705545, - 55.552261 - ], - [ - 37.705704, - 55.552261 - ], - [ - 37.705704, - 55.552171 - ], - [ - 37.705545, - 55.552171 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705545, - 55.552261 - ], - [ - 37.705545, - 55.552351 - ], - [ - 37.705704, - 55.552351 - ], - [ - 37.705704, - 55.552261 - ], - [ - 37.705545, - 55.552261 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705545, - 55.552351 - ], - [ - 37.705545, - 55.552441 - ], - [ - 37.705704, - 55.552441 - ], - [ - 37.705704, - 55.552351 - ], - [ - 37.705545, - 55.552351 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705545, - 55.552441 - ], - [ - 37.705545, - 55.552531 - ], - [ - 37.705704, - 55.552531 - ], - [ - 37.705704, - 55.552441 - ], - [ - 37.705545, - 55.552441 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705545, - 55.552531 - ], - [ - 37.705545, - 55.552621 - ], - [ - 37.705704, - 55.552621 - ], - [ - 37.705704, - 55.552531 - ], - [ - 37.705545, - 55.552531 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705545, - 55.552621 - ], - [ - 37.705545, - 55.552711 - ], - [ - 37.705704, - 55.552711 - ], - [ - 37.705704, - 55.552621 - ], - [ - 37.705545, - 55.552621 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705545, - 55.552711 - ], - [ - 37.705545, - 55.552801 - ], - [ - 37.705704, - 55.552801 - ], - [ - 37.705704, - 55.552711 - ], - [ - 37.705545, - 55.552711 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705545, - 55.552801 - ], - [ - 37.705545, - 55.552891 - ], - [ - 37.705704, - 55.552891 - ], - [ - 37.705704, - 55.552801 - ], - [ - 37.705545, - 55.552801 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705545, - 55.552891 - ], - [ - 37.705545, - 55.552981 - ], - [ - 37.705704, - 55.552981 - ], - [ - 37.705704, - 55.552891 - ], - [ - 37.705545, - 55.552891 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705545, - 55.552981 - ], - [ - 37.705545, - 55.553071 - ], - [ - 37.705704, - 55.553071 - ], - [ - 37.705704, - 55.552981 - ], - [ - 37.705545, - 55.552981 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705545, - 55.553071 - ], - [ - 37.705545, - 55.553161 - ], - [ - 37.705704, - 55.553161 - ], - [ - 37.705704, - 55.553071 - ], - [ - 37.705545, - 55.553071 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705545, - 55.553161 - ], - [ - 37.705545, - 55.553251 - ], - [ - 37.705704, - 55.553251 - ], - [ - 37.705704, - 55.553161 - ], - [ - 37.705545, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705545, - 55.553251 - ], - [ - 37.705545, - 55.553341 - ], - [ - 37.705704, - 55.553341 - ], - [ - 37.705704, - 55.553251 - ], - [ - 37.705545, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705545, - 55.553341 - ], - [ - 37.705545, - 55.553431 - ], - [ - 37.705704, - 55.553431 - ], - [ - 37.705704, - 55.553341 - ], - [ - 37.705545, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705545, - 55.553431 - ], - [ - 37.705545, - 55.55352 - ], - [ - 37.705704, - 55.55352 - ], - [ - 37.705704, - 55.553431 - ], - [ - 37.705545, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705545, - 55.55352 - ], - [ - 37.705545, - 55.55361 - ], - [ - 37.705704, - 55.55361 - ], - [ - 37.705704, - 55.55352 - ], - [ - 37.705545, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705545, - 55.55361 - ], - [ - 37.705545, - 55.5537 - ], - [ - 37.705704, - 55.5537 - ], - [ - 37.705704, - 55.55361 - ], - [ - 37.705545, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705545, - 55.5537 - ], - [ - 37.705545, - 55.55379 - ], - [ - 37.705704, - 55.55379 - ], - [ - 37.705704, - 55.5537 - ], - [ - 37.705545, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705545, - 55.55379 - ], - [ - 37.705545, - 55.55388 - ], - [ - 37.705704, - 55.55388 - ], - [ - 37.705704, - 55.55379 - ], - [ - 37.705545, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705545, - 55.55388 - ], - [ - 37.705545, - 55.55397 - ], - [ - 37.705704, - 55.55397 - ], - [ - 37.705704, - 55.55388 - ], - [ - 37.705545, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705545, - 55.55397 - ], - [ - 37.705545, - 55.55406 - ], - [ - 37.705704, - 55.55406 - ], - [ - 37.705704, - 55.55397 - ], - [ - 37.705545, - 55.55397 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705545, - 55.55406 - ], - [ - 37.705545, - 55.55415 - ], - [ - 37.705704, - 55.55415 - ], - [ - 37.705704, - 55.55406 - ], - [ - 37.705545, - 55.55406 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705545, - 55.55415 - ], - [ - 37.705545, - 55.55424 - ], - [ - 37.705704, - 55.55424 - ], - [ - 37.705704, - 55.55415 - ], - [ - 37.705545, - 55.55415 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705545, - 55.55424 - ], - [ - 37.705545, - 55.55433 - ], - [ - 37.705704, - 55.55433 - ], - [ - 37.705704, - 55.55424 - ], - [ - 37.705545, - 55.55424 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705545, - 55.55433 - ], - [ - 37.705545, - 55.55442 - ], - [ - 37.705704, - 55.55442 - ], - [ - 37.705704, - 55.55433 - ], - [ - 37.705545, - 55.55433 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705545, - 55.55442 - ], - [ - 37.705545, - 55.55451 - ], - [ - 37.705704, - 55.55451 - ], - [ - 37.705704, - 55.55442 - ], - [ - 37.705545, - 55.55442 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705545, - 55.55451 - ], - [ - 37.705545, - 55.5546 - ], - [ - 37.705704, - 55.5546 - ], - [ - 37.705704, - 55.55451 - ], - [ - 37.705545, - 55.55451 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705545, - 55.5546 - ], - [ - 37.705545, - 55.55469 - ], - [ - 37.705704, - 55.55469 - ], - [ - 37.705704, - 55.5546 - ], - [ - 37.705545, - 55.5546 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705545, - 55.55469 - ], - [ - 37.705545, - 55.55478 - ], - [ - 37.705704, - 55.55478 - ], - [ - 37.705704, - 55.55469 - ], - [ - 37.705545, - 55.55469 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705545, - 55.55478 - ], - [ - 37.705545, - 55.554869 - ], - [ - 37.705704, - 55.554869 - ], - [ - 37.705704, - 55.55478 - ], - [ - 37.705545, - 55.55478 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705545, - 55.554869 - ], - [ - 37.705545, - 55.554959 - ], - [ - 37.705704, - 55.554959 - ], - [ - 37.705704, - 55.554869 - ], - [ - 37.705545, - 55.554869 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705545, - 55.554959 - ], - [ - 37.705545, - 55.555049 - ], - [ - 37.705704, - 55.555049 - ], - [ - 37.705704, - 55.554959 - ], - [ - 37.705545, - 55.554959 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705545, - 55.555049 - ], - [ - 37.705545, - 55.555139 - ], - [ - 37.705704, - 55.555139 - ], - [ - 37.705704, - 55.555049 - ], - [ - 37.705545, - 55.555049 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705545, - 55.555139 - ], - [ - 37.705545, - 55.555229 - ], - [ - 37.705704, - 55.555229 - ], - [ - 37.705704, - 55.555139 - ], - [ - 37.705545, - 55.555139 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705545, - 55.555229 - ], - [ - 37.705545, - 55.555319 - ], - [ - 37.705704, - 55.555319 - ], - [ - 37.705704, - 55.555229 - ], - [ - 37.705545, - 55.555229 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705704, - 55.551632 - ], - [ - 37.705704, - 55.551722 - ], - [ - 37.705863, - 55.551722 - ], - [ - 37.705863, - 55.551632 - ], - [ - 37.705704, - 55.551632 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705704, - 55.551722 - ], - [ - 37.705704, - 55.551812 - ], - [ - 37.705863, - 55.551812 - ], - [ - 37.705863, - 55.551722 - ], - [ - 37.705704, - 55.551722 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705704, - 55.551812 - ], - [ - 37.705704, - 55.551902 - ], - [ - 37.705863, - 55.551902 - ], - [ - 37.705863, - 55.551812 - ], - [ - 37.705704, - 55.551812 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705704, - 55.551902 - ], - [ - 37.705704, - 55.551992 - ], - [ - 37.705863, - 55.551992 - ], - [ - 37.705863, - 55.551902 - ], - [ - 37.705704, - 55.551902 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705704, - 55.551992 - ], - [ - 37.705704, - 55.552082 - ], - [ - 37.705863, - 55.552082 - ], - [ - 37.705863, - 55.551992 - ], - [ - 37.705704, - 55.551992 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705704, - 55.552082 - ], - [ - 37.705704, - 55.552171 - ], - [ - 37.705863, - 55.552171 - ], - [ - 37.705863, - 55.552082 - ], - [ - 37.705704, - 55.552082 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705704, - 55.552171 - ], - [ - 37.705704, - 55.552261 - ], - [ - 37.705863, - 55.552261 - ], - [ - 37.705863, - 55.552171 - ], - [ - 37.705704, - 55.552171 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705704, - 55.552261 - ], - [ - 37.705704, - 55.552351 - ], - [ - 37.705863, - 55.552351 - ], - [ - 37.705863, - 55.552261 - ], - [ - 37.705704, - 55.552261 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705704, - 55.552351 - ], - [ - 37.705704, - 55.552441 - ], - [ - 37.705863, - 55.552441 - ], - [ - 37.705863, - 55.552351 - ], - [ - 37.705704, - 55.552351 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705704, - 55.552441 - ], - [ - 37.705704, - 55.552531 - ], - [ - 37.705863, - 55.552531 - ], - [ - 37.705863, - 55.552441 - ], - [ - 37.705704, - 55.552441 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705704, - 55.552531 - ], - [ - 37.705704, - 55.552621 - ], - [ - 37.705863, - 55.552621 - ], - [ - 37.705863, - 55.552531 - ], - [ - 37.705704, - 55.552531 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705704, - 55.552621 - ], - [ - 37.705704, - 55.552711 - ], - [ - 37.705863, - 55.552711 - ], - [ - 37.705863, - 55.552621 - ], - [ - 37.705704, - 55.552621 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705704, - 55.552711 - ], - [ - 37.705704, - 55.552801 - ], - [ - 37.705863, - 55.552801 - ], - [ - 37.705863, - 55.552711 - ], - [ - 37.705704, - 55.552711 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705704, - 55.552801 - ], - [ - 37.705704, - 55.552891 - ], - [ - 37.705863, - 55.552891 - ], - [ - 37.705863, - 55.552801 - ], - [ - 37.705704, - 55.552801 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705704, - 55.552891 - ], - [ - 37.705704, - 55.552981 - ], - [ - 37.705863, - 55.552981 - ], - [ - 37.705863, - 55.552891 - ], - [ - 37.705704, - 55.552891 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705704, - 55.552981 - ], - [ - 37.705704, - 55.553071 - ], - [ - 37.705863, - 55.553071 - ], - [ - 37.705863, - 55.552981 - ], - [ - 37.705704, - 55.552981 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705704, - 55.553071 - ], - [ - 37.705704, - 55.553161 - ], - [ - 37.705863, - 55.553161 - ], - [ - 37.705863, - 55.553071 - ], - [ - 37.705704, - 55.553071 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705704, - 55.553161 - ], - [ - 37.705704, - 55.553251 - ], - [ - 37.705863, - 55.553251 - ], - [ - 37.705863, - 55.553161 - ], - [ - 37.705704, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705704, - 55.553251 - ], - [ - 37.705704, - 55.553341 - ], - [ - 37.705863, - 55.553341 - ], - [ - 37.705863, - 55.553251 - ], - [ - 37.705704, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705704, - 55.553341 - ], - [ - 37.705704, - 55.553431 - ], - [ - 37.705863, - 55.553431 - ], - [ - 37.705863, - 55.553341 - ], - [ - 37.705704, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705704, - 55.553431 - ], - [ - 37.705704, - 55.55352 - ], - [ - 37.705863, - 55.55352 - ], - [ - 37.705863, - 55.553431 - ], - [ - 37.705704, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705704, - 55.55352 - ], - [ - 37.705704, - 55.55361 - ], - [ - 37.705863, - 55.55361 - ], - [ - 37.705863, - 55.55352 - ], - [ - 37.705704, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705704, - 55.55361 - ], - [ - 37.705704, - 55.5537 - ], - [ - 37.705863, - 55.5537 - ], - [ - 37.705863, - 55.55361 - ], - [ - 37.705704, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705704, - 55.5537 - ], - [ - 37.705704, - 55.55379 - ], - [ - 37.705863, - 55.55379 - ], - [ - 37.705863, - 55.5537 - ], - [ - 37.705704, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705704, - 55.55379 - ], - [ - 37.705704, - 55.55388 - ], - [ - 37.705863, - 55.55388 - ], - [ - 37.705863, - 55.55379 - ], - [ - 37.705704, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705704, - 55.55388 - ], - [ - 37.705704, - 55.55397 - ], - [ - 37.705863, - 55.55397 - ], - [ - 37.705863, - 55.55388 - ], - [ - 37.705704, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705704, - 55.55397 - ], - [ - 37.705704, - 55.55406 - ], - [ - 37.705863, - 55.55406 - ], - [ - 37.705863, - 55.55397 - ], - [ - 37.705704, - 55.55397 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705704, - 55.55406 - ], - [ - 37.705704, - 55.55415 - ], - [ - 37.705863, - 55.55415 - ], - [ - 37.705863, - 55.55406 - ], - [ - 37.705704, - 55.55406 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705704, - 55.55415 - ], - [ - 37.705704, - 55.55424 - ], - [ - 37.705863, - 55.55424 - ], - [ - 37.705863, - 55.55415 - ], - [ - 37.705704, - 55.55415 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705704, - 55.55424 - ], - [ - 37.705704, - 55.55433 - ], - [ - 37.705863, - 55.55433 - ], - [ - 37.705863, - 55.55424 - ], - [ - 37.705704, - 55.55424 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705704, - 55.55433 - ], - [ - 37.705704, - 55.55442 - ], - [ - 37.705863, - 55.55442 - ], - [ - 37.705863, - 55.55433 - ], - [ - 37.705704, - 55.55433 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705704, - 55.55442 - ], - [ - 37.705704, - 55.55451 - ], - [ - 37.705863, - 55.55451 - ], - [ - 37.705863, - 55.55442 - ], - [ - 37.705704, - 55.55442 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705704, - 55.55451 - ], - [ - 37.705704, - 55.5546 - ], - [ - 37.705863, - 55.5546 - ], - [ - 37.705863, - 55.55451 - ], - [ - 37.705704, - 55.55451 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705704, - 55.5546 - ], - [ - 37.705704, - 55.55469 - ], - [ - 37.705863, - 55.55469 - ], - [ - 37.705863, - 55.5546 - ], - [ - 37.705704, - 55.5546 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705704, - 55.55469 - ], - [ - 37.705704, - 55.55478 - ], - [ - 37.705863, - 55.55478 - ], - [ - 37.705863, - 55.55469 - ], - [ - 37.705704, - 55.55469 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705704, - 55.55478 - ], - [ - 37.705704, - 55.554869 - ], - [ - 37.705863, - 55.554869 - ], - [ - 37.705863, - 55.55478 - ], - [ - 37.705704, - 55.55478 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705704, - 55.554869 - ], - [ - 37.705704, - 55.554959 - ], - [ - 37.705863, - 55.554959 - ], - [ - 37.705863, - 55.554869 - ], - [ - 37.705704, - 55.554869 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705704, - 55.554959 - ], - [ - 37.705704, - 55.555049 - ], - [ - 37.705863, - 55.555049 - ], - [ - 37.705863, - 55.554959 - ], - [ - 37.705704, - 55.554959 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705704, - 55.555049 - ], - [ - 37.705704, - 55.555139 - ], - [ - 37.705863, - 55.555139 - ], - [ - 37.705863, - 55.555049 - ], - [ - 37.705704, - 55.555049 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705704, - 55.555139 - ], - [ - 37.705704, - 55.555229 - ], - [ - 37.705863, - 55.555229 - ], - [ - 37.705863, - 55.555139 - ], - [ - 37.705704, - 55.555139 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705704, - 55.555229 - ], - [ - 37.705704, - 55.555319 - ], - [ - 37.705863, - 55.555319 - ], - [ - 37.705863, - 55.555229 - ], - [ - 37.705704, - 55.555229 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705704, - 55.555319 - ], - [ - 37.705704, - 55.555409 - ], - [ - 37.705863, - 55.555409 - ], - [ - 37.705863, - 55.555319 - ], - [ - 37.705704, - 55.555319 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705863, - 55.551632 - ], - [ - 37.705863, - 55.551722 - ], - [ - 37.706022, - 55.551722 - ], - [ - 37.706022, - 55.551632 - ], - [ - 37.705863, - 55.551632 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705863, - 55.551722 - ], - [ - 37.705863, - 55.551812 - ], - [ - 37.706022, - 55.551812 - ], - [ - 37.706022, - 55.551722 - ], - [ - 37.705863, - 55.551722 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705863, - 55.551812 - ], - [ - 37.705863, - 55.551902 - ], - [ - 37.706022, - 55.551902 - ], - [ - 37.706022, - 55.551812 - ], - [ - 37.705863, - 55.551812 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705863, - 55.551902 - ], - [ - 37.705863, - 55.551992 - ], - [ - 37.706022, - 55.551992 - ], - [ - 37.706022, - 55.551902 - ], - [ - 37.705863, - 55.551902 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705863, - 55.551992 - ], - [ - 37.705863, - 55.552082 - ], - [ - 37.706022, - 55.552082 - ], - [ - 37.706022, - 55.551992 - ], - [ - 37.705863, - 55.551992 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705863, - 55.552082 - ], - [ - 37.705863, - 55.552171 - ], - [ - 37.706022, - 55.552171 - ], - [ - 37.706022, - 55.552082 - ], - [ - 37.705863, - 55.552082 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705863, - 55.552171 - ], - [ - 37.705863, - 55.552261 - ], - [ - 37.706022, - 55.552261 - ], - [ - 37.706022, - 55.552171 - ], - [ - 37.705863, - 55.552171 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705863, - 55.552261 - ], - [ - 37.705863, - 55.552351 - ], - [ - 37.706022, - 55.552351 - ], - [ - 37.706022, - 55.552261 - ], - [ - 37.705863, - 55.552261 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705863, - 55.552351 - ], - [ - 37.705863, - 55.552441 - ], - [ - 37.706022, - 55.552441 - ], - [ - 37.706022, - 55.552351 - ], - [ - 37.705863, - 55.552351 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705863, - 55.552441 - ], - [ - 37.705863, - 55.552531 - ], - [ - 37.706022, - 55.552531 - ], - [ - 37.706022, - 55.552441 - ], - [ - 37.705863, - 55.552441 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705863, - 55.552531 - ], - [ - 37.705863, - 55.552621 - ], - [ - 37.706022, - 55.552621 - ], - [ - 37.706022, - 55.552531 - ], - [ - 37.705863, - 55.552531 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705863, - 55.552621 - ], - [ - 37.705863, - 55.552711 - ], - [ - 37.706022, - 55.552711 - ], - [ - 37.706022, - 55.552621 - ], - [ - 37.705863, - 55.552621 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705863, - 55.552711 - ], - [ - 37.705863, - 55.552801 - ], - [ - 37.706022, - 55.552801 - ], - [ - 37.706022, - 55.552711 - ], - [ - 37.705863, - 55.552711 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705863, - 55.552801 - ], - [ - 37.705863, - 55.552891 - ], - [ - 37.706022, - 55.552891 - ], - [ - 37.706022, - 55.552801 - ], - [ - 37.705863, - 55.552801 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705863, - 55.552891 - ], - [ - 37.705863, - 55.552981 - ], - [ - 37.706022, - 55.552981 - ], - [ - 37.706022, - 55.552891 - ], - [ - 37.705863, - 55.552891 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705863, - 55.552981 - ], - [ - 37.705863, - 55.553071 - ], - [ - 37.706022, - 55.553071 - ], - [ - 37.706022, - 55.552981 - ], - [ - 37.705863, - 55.552981 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705863, - 55.553071 - ], - [ - 37.705863, - 55.553161 - ], - [ - 37.706022, - 55.553161 - ], - [ - 37.706022, - 55.553071 - ], - [ - 37.705863, - 55.553071 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705863, - 55.553161 - ], - [ - 37.705863, - 55.553251 - ], - [ - 37.706022, - 55.553251 - ], - [ - 37.706022, - 55.553161 - ], - [ - 37.705863, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705863, - 55.553251 - ], - [ - 37.705863, - 55.553341 - ], - [ - 37.706022, - 55.553341 - ], - [ - 37.706022, - 55.553251 - ], - [ - 37.705863, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705863, - 55.553341 - ], - [ - 37.705863, - 55.553431 - ], - [ - 37.706022, - 55.553431 - ], - [ - 37.706022, - 55.553341 - ], - [ - 37.705863, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705863, - 55.553431 - ], - [ - 37.705863, - 55.55352 - ], - [ - 37.706022, - 55.55352 - ], - [ - 37.706022, - 55.553431 - ], - [ - 37.705863, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705863, - 55.55352 - ], - [ - 37.705863, - 55.55361 - ], - [ - 37.706022, - 55.55361 - ], - [ - 37.706022, - 55.55352 - ], - [ - 37.705863, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705863, - 55.55361 - ], - [ - 37.705863, - 55.5537 - ], - [ - 37.706022, - 55.5537 - ], - [ - 37.706022, - 55.55361 - ], - [ - 37.705863, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705863, - 55.5537 - ], - [ - 37.705863, - 55.55379 - ], - [ - 37.706022, - 55.55379 - ], - [ - 37.706022, - 55.5537 - ], - [ - 37.705863, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705863, - 55.55379 - ], - [ - 37.705863, - 55.55388 - ], - [ - 37.706022, - 55.55388 - ], - [ - 37.706022, - 55.55379 - ], - [ - 37.705863, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705863, - 55.55388 - ], - [ - 37.705863, - 55.55397 - ], - [ - 37.706022, - 55.55397 - ], - [ - 37.706022, - 55.55388 - ], - [ - 37.705863, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705863, - 55.55397 - ], - [ - 37.705863, - 55.55406 - ], - [ - 37.706022, - 55.55406 - ], - [ - 37.706022, - 55.55397 - ], - [ - 37.705863, - 55.55397 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705863, - 55.55406 - ], - [ - 37.705863, - 55.55415 - ], - [ - 37.706022, - 55.55415 - ], - [ - 37.706022, - 55.55406 - ], - [ - 37.705863, - 55.55406 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705863, - 55.55415 - ], - [ - 37.705863, - 55.55424 - ], - [ - 37.706022, - 55.55424 - ], - [ - 37.706022, - 55.55415 - ], - [ - 37.705863, - 55.55415 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705863, - 55.55424 - ], - [ - 37.705863, - 55.55433 - ], - [ - 37.706022, - 55.55433 - ], - [ - 37.706022, - 55.55424 - ], - [ - 37.705863, - 55.55424 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705863, - 55.55433 - ], - [ - 37.705863, - 55.55442 - ], - [ - 37.706022, - 55.55442 - ], - [ - 37.706022, - 55.55433 - ], - [ - 37.705863, - 55.55433 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705863, - 55.55442 - ], - [ - 37.705863, - 55.55451 - ], - [ - 37.706022, - 55.55451 - ], - [ - 37.706022, - 55.55442 - ], - [ - 37.705863, - 55.55442 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705863, - 55.55451 - ], - [ - 37.705863, - 55.5546 - ], - [ - 37.706022, - 55.5546 - ], - [ - 37.706022, - 55.55451 - ], - [ - 37.705863, - 55.55451 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705863, - 55.5546 - ], - [ - 37.705863, - 55.55469 - ], - [ - 37.706022, - 55.55469 - ], - [ - 37.706022, - 55.5546 - ], - [ - 37.705863, - 55.5546 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705863, - 55.55469 - ], - [ - 37.705863, - 55.55478 - ], - [ - 37.706022, - 55.55478 - ], - [ - 37.706022, - 55.55469 - ], - [ - 37.705863, - 55.55469 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705863, - 55.55478 - ], - [ - 37.705863, - 55.554869 - ], - [ - 37.706022, - 55.554869 - ], - [ - 37.706022, - 55.55478 - ], - [ - 37.705863, - 55.55478 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705863, - 55.554869 - ], - [ - 37.705863, - 55.554959 - ], - [ - 37.706022, - 55.554959 - ], - [ - 37.706022, - 55.554869 - ], - [ - 37.705863, - 55.554869 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705863, - 55.554959 - ], - [ - 37.705863, - 55.555049 - ], - [ - 37.706022, - 55.555049 - ], - [ - 37.706022, - 55.554959 - ], - [ - 37.705863, - 55.554959 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705863, - 55.555049 - ], - [ - 37.705863, - 55.555139 - ], - [ - 37.706022, - 55.555139 - ], - [ - 37.706022, - 55.555049 - ], - [ - 37.705863, - 55.555049 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705863, - 55.555139 - ], - [ - 37.705863, - 55.555229 - ], - [ - 37.706022, - 55.555229 - ], - [ - 37.706022, - 55.555139 - ], - [ - 37.705863, - 55.555139 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705863, - 55.555229 - ], - [ - 37.705863, - 55.555319 - ], - [ - 37.706022, - 55.555319 - ], - [ - 37.706022, - 55.555229 - ], - [ - 37.705863, - 55.555229 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.705863, - 55.555319 - ], - [ - 37.705863, - 55.555409 - ], - [ - 37.706022, - 55.555409 - ], - [ - 37.706022, - 55.555319 - ], - [ - 37.705863, - 55.555319 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706022, - 55.551542 - ], - [ - 37.706022, - 55.551632 - ], - [ - 37.706181, - 55.551632 - ], - [ - 37.706181, - 55.551542 - ], - [ - 37.706022, - 55.551542 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706022, - 55.551632 - ], - [ - 37.706022, - 55.551722 - ], - [ - 37.706181, - 55.551722 - ], - [ - 37.706181, - 55.551632 - ], - [ - 37.706022, - 55.551632 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706022, - 55.551722 - ], - [ - 37.706022, - 55.551812 - ], - [ - 37.706181, - 55.551812 - ], - [ - 37.706181, - 55.551722 - ], - [ - 37.706022, - 55.551722 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706022, - 55.551812 - ], - [ - 37.706022, - 55.551902 - ], - [ - 37.706181, - 55.551902 - ], - [ - 37.706181, - 55.551812 - ], - [ - 37.706022, - 55.551812 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706022, - 55.551902 - ], - [ - 37.706022, - 55.551992 - ], - [ - 37.706181, - 55.551992 - ], - [ - 37.706181, - 55.551902 - ], - [ - 37.706022, - 55.551902 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706022, - 55.551992 - ], - [ - 37.706022, - 55.552082 - ], - [ - 37.706181, - 55.552082 - ], - [ - 37.706181, - 55.551992 - ], - [ - 37.706022, - 55.551992 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706022, - 55.552082 - ], - [ - 37.706022, - 55.552171 - ], - [ - 37.706181, - 55.552171 - ], - [ - 37.706181, - 55.552082 - ], - [ - 37.706022, - 55.552082 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706022, - 55.552171 - ], - [ - 37.706022, - 55.552261 - ], - [ - 37.706181, - 55.552261 - ], - [ - 37.706181, - 55.552171 - ], - [ - 37.706022, - 55.552171 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706022, - 55.552261 - ], - [ - 37.706022, - 55.552351 - ], - [ - 37.706181, - 55.552351 - ], - [ - 37.706181, - 55.552261 - ], - [ - 37.706022, - 55.552261 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706022, - 55.552351 - ], - [ - 37.706022, - 55.552441 - ], - [ - 37.706181, - 55.552441 - ], - [ - 37.706181, - 55.552351 - ], - [ - 37.706022, - 55.552351 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706022, - 55.552441 - ], - [ - 37.706022, - 55.552531 - ], - [ - 37.706181, - 55.552531 - ], - [ - 37.706181, - 55.552441 - ], - [ - 37.706022, - 55.552441 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706022, - 55.552531 - ], - [ - 37.706022, - 55.552621 - ], - [ - 37.706181, - 55.552621 - ], - [ - 37.706181, - 55.552531 - ], - [ - 37.706022, - 55.552531 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706022, - 55.552621 - ], - [ - 37.706022, - 55.552711 - ], - [ - 37.706181, - 55.552711 - ], - [ - 37.706181, - 55.552621 - ], - [ - 37.706022, - 55.552621 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706022, - 55.552711 - ], - [ - 37.706022, - 55.552801 - ], - [ - 37.706181, - 55.552801 - ], - [ - 37.706181, - 55.552711 - ], - [ - 37.706022, - 55.552711 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706022, - 55.552801 - ], - [ - 37.706022, - 55.552891 - ], - [ - 37.706181, - 55.552891 - ], - [ - 37.706181, - 55.552801 - ], - [ - 37.706022, - 55.552801 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706022, - 55.552891 - ], - [ - 37.706022, - 55.552981 - ], - [ - 37.706181, - 55.552981 - ], - [ - 37.706181, - 55.552891 - ], - [ - 37.706022, - 55.552891 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706022, - 55.552981 - ], - [ - 37.706022, - 55.553071 - ], - [ - 37.706181, - 55.553071 - ], - [ - 37.706181, - 55.552981 - ], - [ - 37.706022, - 55.552981 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706022, - 55.553071 - ], - [ - 37.706022, - 55.553161 - ], - [ - 37.706181, - 55.553161 - ], - [ - 37.706181, - 55.553071 - ], - [ - 37.706022, - 55.553071 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706022, - 55.553161 - ], - [ - 37.706022, - 55.553251 - ], - [ - 37.706181, - 55.553251 - ], - [ - 37.706181, - 55.553161 - ], - [ - 37.706022, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706022, - 55.553251 - ], - [ - 37.706022, - 55.553341 - ], - [ - 37.706181, - 55.553341 - ], - [ - 37.706181, - 55.553251 - ], - [ - 37.706022, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706022, - 55.553341 - ], - [ - 37.706022, - 55.553431 - ], - [ - 37.706181, - 55.553431 - ], - [ - 37.706181, - 55.553341 - ], - [ - 37.706022, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706022, - 55.553431 - ], - [ - 37.706022, - 55.55352 - ], - [ - 37.706181, - 55.55352 - ], - [ - 37.706181, - 55.553431 - ], - [ - 37.706022, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706022, - 55.55352 - ], - [ - 37.706022, - 55.55361 - ], - [ - 37.706181, - 55.55361 - ], - [ - 37.706181, - 55.55352 - ], - [ - 37.706022, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706022, - 55.55361 - ], - [ - 37.706022, - 55.5537 - ], - [ - 37.706181, - 55.5537 - ], - [ - 37.706181, - 55.55361 - ], - [ - 37.706022, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706022, - 55.5537 - ], - [ - 37.706022, - 55.55379 - ], - [ - 37.706181, - 55.55379 - ], - [ - 37.706181, - 55.5537 - ], - [ - 37.706022, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706022, - 55.55379 - ], - [ - 37.706022, - 55.55388 - ], - [ - 37.706181, - 55.55388 - ], - [ - 37.706181, - 55.55379 - ], - [ - 37.706022, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706022, - 55.55388 - ], - [ - 37.706022, - 55.55397 - ], - [ - 37.706181, - 55.55397 - ], - [ - 37.706181, - 55.55388 - ], - [ - 37.706022, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706022, - 55.55397 - ], - [ - 37.706022, - 55.55406 - ], - [ - 37.706181, - 55.55406 - ], - [ - 37.706181, - 55.55397 - ], - [ - 37.706022, - 55.55397 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706022, - 55.55406 - ], - [ - 37.706022, - 55.55415 - ], - [ - 37.706181, - 55.55415 - ], - [ - 37.706181, - 55.55406 - ], - [ - 37.706022, - 55.55406 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706022, - 55.55415 - ], - [ - 37.706022, - 55.55424 - ], - [ - 37.706181, - 55.55424 - ], - [ - 37.706181, - 55.55415 - ], - [ - 37.706022, - 55.55415 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706022, - 55.55424 - ], - [ - 37.706022, - 55.55433 - ], - [ - 37.706181, - 55.55433 - ], - [ - 37.706181, - 55.55424 - ], - [ - 37.706022, - 55.55424 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706022, - 55.55433 - ], - [ - 37.706022, - 55.55442 - ], - [ - 37.706181, - 55.55442 - ], - [ - 37.706181, - 55.55433 - ], - [ - 37.706022, - 55.55433 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706022, - 55.55442 - ], - [ - 37.706022, - 55.55451 - ], - [ - 37.706181, - 55.55451 - ], - [ - 37.706181, - 55.55442 - ], - [ - 37.706022, - 55.55442 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706022, - 55.55451 - ], - [ - 37.706022, - 55.5546 - ], - [ - 37.706181, - 55.5546 - ], - [ - 37.706181, - 55.55451 - ], - [ - 37.706022, - 55.55451 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706022, - 55.5546 - ], - [ - 37.706022, - 55.55469 - ], - [ - 37.706181, - 55.55469 - ], - [ - 37.706181, - 55.5546 - ], - [ - 37.706022, - 55.5546 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706022, - 55.55469 - ], - [ - 37.706022, - 55.55478 - ], - [ - 37.706181, - 55.55478 - ], - [ - 37.706181, - 55.55469 - ], - [ - 37.706022, - 55.55469 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706022, - 55.55478 - ], - [ - 37.706022, - 55.554869 - ], - [ - 37.706181, - 55.554869 - ], - [ - 37.706181, - 55.55478 - ], - [ - 37.706022, - 55.55478 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706022, - 55.554869 - ], - [ - 37.706022, - 55.554959 - ], - [ - 37.706181, - 55.554959 - ], - [ - 37.706181, - 55.554869 - ], - [ - 37.706022, - 55.554869 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706022, - 55.554959 - ], - [ - 37.706022, - 55.555049 - ], - [ - 37.706181, - 55.555049 - ], - [ - 37.706181, - 55.554959 - ], - [ - 37.706022, - 55.554959 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706022, - 55.555049 - ], - [ - 37.706022, - 55.555139 - ], - [ - 37.706181, - 55.555139 - ], - [ - 37.706181, - 55.555049 - ], - [ - 37.706022, - 55.555049 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706022, - 55.555139 - ], - [ - 37.706022, - 55.555229 - ], - [ - 37.706181, - 55.555229 - ], - [ - 37.706181, - 55.555139 - ], - [ - 37.706022, - 55.555139 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706022, - 55.555229 - ], - [ - 37.706022, - 55.555319 - ], - [ - 37.706181, - 55.555319 - ], - [ - 37.706181, - 55.555229 - ], - [ - 37.706022, - 55.555229 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706022, - 55.555319 - ], - [ - 37.706022, - 55.555409 - ], - [ - 37.706181, - 55.555409 - ], - [ - 37.706181, - 55.555319 - ], - [ - 37.706022, - 55.555319 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706022, - 55.555409 - ], - [ - 37.706022, - 55.555499 - ], - [ - 37.706181, - 55.555499 - ], - [ - 37.706181, - 55.555409 - ], - [ - 37.706022, - 55.555409 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706181, - 55.551542 - ], - [ - 37.706181, - 55.551632 - ], - [ - 37.70634, - 55.551632 - ], - [ - 37.70634, - 55.551542 - ], - [ - 37.706181, - 55.551542 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706181, - 55.551632 - ], - [ - 37.706181, - 55.551722 - ], - [ - 37.70634, - 55.551722 - ], - [ - 37.70634, - 55.551632 - ], - [ - 37.706181, - 55.551632 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706181, - 55.551722 - ], - [ - 37.706181, - 55.551812 - ], - [ - 37.70634, - 55.551812 - ], - [ - 37.70634, - 55.551722 - ], - [ - 37.706181, - 55.551722 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706181, - 55.551812 - ], - [ - 37.706181, - 55.551902 - ], - [ - 37.70634, - 55.551902 - ], - [ - 37.70634, - 55.551812 - ], - [ - 37.706181, - 55.551812 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706181, - 55.551902 - ], - [ - 37.706181, - 55.551992 - ], - [ - 37.70634, - 55.551992 - ], - [ - 37.70634, - 55.551902 - ], - [ - 37.706181, - 55.551902 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706181, - 55.551992 - ], - [ - 37.706181, - 55.552082 - ], - [ - 37.70634, - 55.552082 - ], - [ - 37.70634, - 55.551992 - ], - [ - 37.706181, - 55.551992 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706181, - 55.552082 - ], - [ - 37.706181, - 55.552171 - ], - [ - 37.70634, - 55.552171 - ], - [ - 37.70634, - 55.552082 - ], - [ - 37.706181, - 55.552082 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706181, - 55.552171 - ], - [ - 37.706181, - 55.552261 - ], - [ - 37.70634, - 55.552261 - ], - [ - 37.70634, - 55.552171 - ], - [ - 37.706181, - 55.552171 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706181, - 55.552261 - ], - [ - 37.706181, - 55.552351 - ], - [ - 37.70634, - 55.552351 - ], - [ - 37.70634, - 55.552261 - ], - [ - 37.706181, - 55.552261 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706181, - 55.552351 - ], - [ - 37.706181, - 55.552441 - ], - [ - 37.70634, - 55.552441 - ], - [ - 37.70634, - 55.552351 - ], - [ - 37.706181, - 55.552351 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706181, - 55.552441 - ], - [ - 37.706181, - 55.552531 - ], - [ - 37.70634, - 55.552531 - ], - [ - 37.70634, - 55.552441 - ], - [ - 37.706181, - 55.552441 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706181, - 55.552531 - ], - [ - 37.706181, - 55.552621 - ], - [ - 37.70634, - 55.552621 - ], - [ - 37.70634, - 55.552531 - ], - [ - 37.706181, - 55.552531 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706181, - 55.552621 - ], - [ - 37.706181, - 55.552711 - ], - [ - 37.70634, - 55.552711 - ], - [ - 37.70634, - 55.552621 - ], - [ - 37.706181, - 55.552621 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706181, - 55.552711 - ], - [ - 37.706181, - 55.552801 - ], - [ - 37.70634, - 55.552801 - ], - [ - 37.70634, - 55.552711 - ], - [ - 37.706181, - 55.552711 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706181, - 55.552801 - ], - [ - 37.706181, - 55.552891 - ], - [ - 37.70634, - 55.552891 - ], - [ - 37.70634, - 55.552801 - ], - [ - 37.706181, - 55.552801 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706181, - 55.552891 - ], - [ - 37.706181, - 55.552981 - ], - [ - 37.70634, - 55.552981 - ], - [ - 37.70634, - 55.552891 - ], - [ - 37.706181, - 55.552891 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706181, - 55.552981 - ], - [ - 37.706181, - 55.553071 - ], - [ - 37.70634, - 55.553071 - ], - [ - 37.70634, - 55.552981 - ], - [ - 37.706181, - 55.552981 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706181, - 55.553071 - ], - [ - 37.706181, - 55.553161 - ], - [ - 37.70634, - 55.553161 - ], - [ - 37.70634, - 55.553071 - ], - [ - 37.706181, - 55.553071 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706181, - 55.553161 - ], - [ - 37.706181, - 55.553251 - ], - [ - 37.70634, - 55.553251 - ], - [ - 37.70634, - 55.553161 - ], - [ - 37.706181, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706181, - 55.553251 - ], - [ - 37.706181, - 55.553341 - ], - [ - 37.70634, - 55.553341 - ], - [ - 37.70634, - 55.553251 - ], - [ - 37.706181, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706181, - 55.553341 - ], - [ - 37.706181, - 55.553431 - ], - [ - 37.70634, - 55.553431 - ], - [ - 37.70634, - 55.553341 - ], - [ - 37.706181, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706181, - 55.553431 - ], - [ - 37.706181, - 55.55352 - ], - [ - 37.70634, - 55.55352 - ], - [ - 37.70634, - 55.553431 - ], - [ - 37.706181, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706181, - 55.55352 - ], - [ - 37.706181, - 55.55361 - ], - [ - 37.70634, - 55.55361 - ], - [ - 37.70634, - 55.55352 - ], - [ - 37.706181, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706181, - 55.55361 - ], - [ - 37.706181, - 55.5537 - ], - [ - 37.70634, - 55.5537 - ], - [ - 37.70634, - 55.55361 - ], - [ - 37.706181, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706181, - 55.5537 - ], - [ - 37.706181, - 55.55379 - ], - [ - 37.70634, - 55.55379 - ], - [ - 37.70634, - 55.5537 - ], - [ - 37.706181, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706181, - 55.55379 - ], - [ - 37.706181, - 55.55388 - ], - [ - 37.70634, - 55.55388 - ], - [ - 37.70634, - 55.55379 - ], - [ - 37.706181, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706181, - 55.55388 - ], - [ - 37.706181, - 55.55397 - ], - [ - 37.70634, - 55.55397 - ], - [ - 37.70634, - 55.55388 - ], - [ - 37.706181, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706181, - 55.55397 - ], - [ - 37.706181, - 55.55406 - ], - [ - 37.70634, - 55.55406 - ], - [ - 37.70634, - 55.55397 - ], - [ - 37.706181, - 55.55397 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706181, - 55.55406 - ], - [ - 37.706181, - 55.55415 - ], - [ - 37.70634, - 55.55415 - ], - [ - 37.70634, - 55.55406 - ], - [ - 37.706181, - 55.55406 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706181, - 55.55415 - ], - [ - 37.706181, - 55.55424 - ], - [ - 37.70634, - 55.55424 - ], - [ - 37.70634, - 55.55415 - ], - [ - 37.706181, - 55.55415 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706181, - 55.55424 - ], - [ - 37.706181, - 55.55433 - ], - [ - 37.70634, - 55.55433 - ], - [ - 37.70634, - 55.55424 - ], - [ - 37.706181, - 55.55424 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706181, - 55.55433 - ], - [ - 37.706181, - 55.55442 - ], - [ - 37.70634, - 55.55442 - ], - [ - 37.70634, - 55.55433 - ], - [ - 37.706181, - 55.55433 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706181, - 55.55442 - ], - [ - 37.706181, - 55.55451 - ], - [ - 37.70634, - 55.55451 - ], - [ - 37.70634, - 55.55442 - ], - [ - 37.706181, - 55.55442 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706181, - 55.55451 - ], - [ - 37.706181, - 55.5546 - ], - [ - 37.70634, - 55.5546 - ], - [ - 37.70634, - 55.55451 - ], - [ - 37.706181, - 55.55451 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706181, - 55.5546 - ], - [ - 37.706181, - 55.55469 - ], - [ - 37.70634, - 55.55469 - ], - [ - 37.70634, - 55.5546 - ], - [ - 37.706181, - 55.5546 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706181, - 55.55469 - ], - [ - 37.706181, - 55.55478 - ], - [ - 37.70634, - 55.55478 - ], - [ - 37.70634, - 55.55469 - ], - [ - 37.706181, - 55.55469 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706181, - 55.55478 - ], - [ - 37.706181, - 55.554869 - ], - [ - 37.70634, - 55.554869 - ], - [ - 37.70634, - 55.55478 - ], - [ - 37.706181, - 55.55478 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706181, - 55.554869 - ], - [ - 37.706181, - 55.554959 - ], - [ - 37.70634, - 55.554959 - ], - [ - 37.70634, - 55.554869 - ], - [ - 37.706181, - 55.554869 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706181, - 55.554959 - ], - [ - 37.706181, - 55.555049 - ], - [ - 37.70634, - 55.555049 - ], - [ - 37.70634, - 55.554959 - ], - [ - 37.706181, - 55.554959 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706181, - 55.555049 - ], - [ - 37.706181, - 55.555139 - ], - [ - 37.70634, - 55.555139 - ], - [ - 37.70634, - 55.555049 - ], - [ - 37.706181, - 55.555049 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706181, - 55.555139 - ], - [ - 37.706181, - 55.555229 - ], - [ - 37.70634, - 55.555229 - ], - [ - 37.70634, - 55.555139 - ], - [ - 37.706181, - 55.555139 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706181, - 55.555229 - ], - [ - 37.706181, - 55.555319 - ], - [ - 37.70634, - 55.555319 - ], - [ - 37.70634, - 55.555229 - ], - [ - 37.706181, - 55.555229 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706181, - 55.555319 - ], - [ - 37.706181, - 55.555409 - ], - [ - 37.70634, - 55.555409 - ], - [ - 37.70634, - 55.555319 - ], - [ - 37.706181, - 55.555319 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706181, - 55.555409 - ], - [ - 37.706181, - 55.555499 - ], - [ - 37.70634, - 55.555499 - ], - [ - 37.70634, - 55.555409 - ], - [ - 37.706181, - 55.555409 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70634, - 55.551542 - ], - [ - 37.70634, - 55.551632 - ], - [ - 37.706499, - 55.551632 - ], - [ - 37.706499, - 55.551542 - ], - [ - 37.70634, - 55.551542 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70634, - 55.551632 - ], - [ - 37.70634, - 55.551722 - ], - [ - 37.706499, - 55.551722 - ], - [ - 37.706499, - 55.551632 - ], - [ - 37.70634, - 55.551632 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70634, - 55.551722 - ], - [ - 37.70634, - 55.551812 - ], - [ - 37.706499, - 55.551812 - ], - [ - 37.706499, - 55.551722 - ], - [ - 37.70634, - 55.551722 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70634, - 55.551812 - ], - [ - 37.70634, - 55.551902 - ], - [ - 37.706499, - 55.551902 - ], - [ - 37.706499, - 55.551812 - ], - [ - 37.70634, - 55.551812 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70634, - 55.551902 - ], - [ - 37.70634, - 55.551992 - ], - [ - 37.706499, - 55.551992 - ], - [ - 37.706499, - 55.551902 - ], - [ - 37.70634, - 55.551902 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70634, - 55.551992 - ], - [ - 37.70634, - 55.552082 - ], - [ - 37.706499, - 55.552082 - ], - [ - 37.706499, - 55.551992 - ], - [ - 37.70634, - 55.551992 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70634, - 55.552082 - ], - [ - 37.70634, - 55.552171 - ], - [ - 37.706499, - 55.552171 - ], - [ - 37.706499, - 55.552082 - ], - [ - 37.70634, - 55.552082 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70634, - 55.552171 - ], - [ - 37.70634, - 55.552261 - ], - [ - 37.706499, - 55.552261 - ], - [ - 37.706499, - 55.552171 - ], - [ - 37.70634, - 55.552171 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70634, - 55.552261 - ], - [ - 37.70634, - 55.552351 - ], - [ - 37.706499, - 55.552351 - ], - [ - 37.706499, - 55.552261 - ], - [ - 37.70634, - 55.552261 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70634, - 55.552351 - ], - [ - 37.70634, - 55.552441 - ], - [ - 37.706499, - 55.552441 - ], - [ - 37.706499, - 55.552351 - ], - [ - 37.70634, - 55.552351 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70634, - 55.552441 - ], - [ - 37.70634, - 55.552531 - ], - [ - 37.706499, - 55.552531 - ], - [ - 37.706499, - 55.552441 - ], - [ - 37.70634, - 55.552441 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70634, - 55.552531 - ], - [ - 37.70634, - 55.552621 - ], - [ - 37.706499, - 55.552621 - ], - [ - 37.706499, - 55.552531 - ], - [ - 37.70634, - 55.552531 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70634, - 55.552621 - ], - [ - 37.70634, - 55.552711 - ], - [ - 37.706499, - 55.552711 - ], - [ - 37.706499, - 55.552621 - ], - [ - 37.70634, - 55.552621 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70634, - 55.552711 - ], - [ - 37.70634, - 55.552801 - ], - [ - 37.706499, - 55.552801 - ], - [ - 37.706499, - 55.552711 - ], - [ - 37.70634, - 55.552711 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70634, - 55.552801 - ], - [ - 37.70634, - 55.552891 - ], - [ - 37.706499, - 55.552891 - ], - [ - 37.706499, - 55.552801 - ], - [ - 37.70634, - 55.552801 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70634, - 55.552891 - ], - [ - 37.70634, - 55.552981 - ], - [ - 37.706499, - 55.552981 - ], - [ - 37.706499, - 55.552891 - ], - [ - 37.70634, - 55.552891 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70634, - 55.552981 - ], - [ - 37.70634, - 55.553071 - ], - [ - 37.706499, - 55.553071 - ], - [ - 37.706499, - 55.552981 - ], - [ - 37.70634, - 55.552981 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70634, - 55.553071 - ], - [ - 37.70634, - 55.553161 - ], - [ - 37.706499, - 55.553161 - ], - [ - 37.706499, - 55.553071 - ], - [ - 37.70634, - 55.553071 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70634, - 55.553161 - ], - [ - 37.70634, - 55.553251 - ], - [ - 37.706499, - 55.553251 - ], - [ - 37.706499, - 55.553161 - ], - [ - 37.70634, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70634, - 55.553251 - ], - [ - 37.70634, - 55.553341 - ], - [ - 37.706499, - 55.553341 - ], - [ - 37.706499, - 55.553251 - ], - [ - 37.70634, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70634, - 55.553341 - ], - [ - 37.70634, - 55.553431 - ], - [ - 37.706499, - 55.553431 - ], - [ - 37.706499, - 55.553341 - ], - [ - 37.70634, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70634, - 55.553431 - ], - [ - 37.70634, - 55.55352 - ], - [ - 37.706499, - 55.55352 - ], - [ - 37.706499, - 55.553431 - ], - [ - 37.70634, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70634, - 55.55352 - ], - [ - 37.70634, - 55.55361 - ], - [ - 37.706499, - 55.55361 - ], - [ - 37.706499, - 55.55352 - ], - [ - 37.70634, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70634, - 55.55361 - ], - [ - 37.70634, - 55.5537 - ], - [ - 37.706499, - 55.5537 - ], - [ - 37.706499, - 55.55361 - ], - [ - 37.70634, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70634, - 55.5537 - ], - [ - 37.70634, - 55.55379 - ], - [ - 37.706499, - 55.55379 - ], - [ - 37.706499, - 55.5537 - ], - [ - 37.70634, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70634, - 55.55379 - ], - [ - 37.70634, - 55.55388 - ], - [ - 37.706499, - 55.55388 - ], - [ - 37.706499, - 55.55379 - ], - [ - 37.70634, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70634, - 55.55388 - ], - [ - 37.70634, - 55.55397 - ], - [ - 37.706499, - 55.55397 - ], - [ - 37.706499, - 55.55388 - ], - [ - 37.70634, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70634, - 55.55397 - ], - [ - 37.70634, - 55.55406 - ], - [ - 37.706499, - 55.55406 - ], - [ - 37.706499, - 55.55397 - ], - [ - 37.70634, - 55.55397 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70634, - 55.55406 - ], - [ - 37.70634, - 55.55415 - ], - [ - 37.706499, - 55.55415 - ], - [ - 37.706499, - 55.55406 - ], - [ - 37.70634, - 55.55406 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70634, - 55.55415 - ], - [ - 37.70634, - 55.55424 - ], - [ - 37.706499, - 55.55424 - ], - [ - 37.706499, - 55.55415 - ], - [ - 37.70634, - 55.55415 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70634, - 55.55424 - ], - [ - 37.70634, - 55.55433 - ], - [ - 37.706499, - 55.55433 - ], - [ - 37.706499, - 55.55424 - ], - [ - 37.70634, - 55.55424 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70634, - 55.55433 - ], - [ - 37.70634, - 55.55442 - ], - [ - 37.706499, - 55.55442 - ], - [ - 37.706499, - 55.55433 - ], - [ - 37.70634, - 55.55433 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70634, - 55.55442 - ], - [ - 37.70634, - 55.55451 - ], - [ - 37.706499, - 55.55451 - ], - [ - 37.706499, - 55.55442 - ], - [ - 37.70634, - 55.55442 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70634, - 55.55451 - ], - [ - 37.70634, - 55.5546 - ], - [ - 37.706499, - 55.5546 - ], - [ - 37.706499, - 55.55451 - ], - [ - 37.70634, - 55.55451 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70634, - 55.5546 - ], - [ - 37.70634, - 55.55469 - ], - [ - 37.706499, - 55.55469 - ], - [ - 37.706499, - 55.5546 - ], - [ - 37.70634, - 55.5546 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70634, - 55.55469 - ], - [ - 37.70634, - 55.55478 - ], - [ - 37.706499, - 55.55478 - ], - [ - 37.706499, - 55.55469 - ], - [ - 37.70634, - 55.55469 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70634, - 55.55478 - ], - [ - 37.70634, - 55.554869 - ], - [ - 37.706499, - 55.554869 - ], - [ - 37.706499, - 55.55478 - ], - [ - 37.70634, - 55.55478 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70634, - 55.554869 - ], - [ - 37.70634, - 55.554959 - ], - [ - 37.706499, - 55.554959 - ], - [ - 37.706499, - 55.554869 - ], - [ - 37.70634, - 55.554869 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70634, - 55.554959 - ], - [ - 37.70634, - 55.555049 - ], - [ - 37.706499, - 55.555049 - ], - [ - 37.706499, - 55.554959 - ], - [ - 37.70634, - 55.554959 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70634, - 55.555049 - ], - [ - 37.70634, - 55.555139 - ], - [ - 37.706499, - 55.555139 - ], - [ - 37.706499, - 55.555049 - ], - [ - 37.70634, - 55.555049 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70634, - 55.555139 - ], - [ - 37.70634, - 55.555229 - ], - [ - 37.706499, - 55.555229 - ], - [ - 37.706499, - 55.555139 - ], - [ - 37.70634, - 55.555139 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70634, - 55.555229 - ], - [ - 37.70634, - 55.555319 - ], - [ - 37.706499, - 55.555319 - ], - [ - 37.706499, - 55.555229 - ], - [ - 37.70634, - 55.555229 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70634, - 55.555319 - ], - [ - 37.70634, - 55.555409 - ], - [ - 37.706499, - 55.555409 - ], - [ - 37.706499, - 55.555319 - ], - [ - 37.70634, - 55.555319 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70634, - 55.555409 - ], - [ - 37.70634, - 55.555499 - ], - [ - 37.706499, - 55.555499 - ], - [ - 37.706499, - 55.555409 - ], - [ - 37.70634, - 55.555409 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70634, - 55.555499 - ], - [ - 37.70634, - 55.555589 - ], - [ - 37.706499, - 55.555589 - ], - [ - 37.706499, - 55.555499 - ], - [ - 37.70634, - 55.555499 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706499, - 55.551542 - ], - [ - 37.706499, - 55.551632 - ], - [ - 37.706658, - 55.551632 - ], - [ - 37.706658, - 55.551542 - ], - [ - 37.706499, - 55.551542 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706499, - 55.551632 - ], - [ - 37.706499, - 55.551722 - ], - [ - 37.706658, - 55.551722 - ], - [ - 37.706658, - 55.551632 - ], - [ - 37.706499, - 55.551632 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706499, - 55.551722 - ], - [ - 37.706499, - 55.551812 - ], - [ - 37.706658, - 55.551812 - ], - [ - 37.706658, - 55.551722 - ], - [ - 37.706499, - 55.551722 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706499, - 55.551812 - ], - [ - 37.706499, - 55.551902 - ], - [ - 37.706658, - 55.551902 - ], - [ - 37.706658, - 55.551812 - ], - [ - 37.706499, - 55.551812 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706499, - 55.551902 - ], - [ - 37.706499, - 55.551992 - ], - [ - 37.706658, - 55.551992 - ], - [ - 37.706658, - 55.551902 - ], - [ - 37.706499, - 55.551902 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706499, - 55.551992 - ], - [ - 37.706499, - 55.552082 - ], - [ - 37.706658, - 55.552082 - ], - [ - 37.706658, - 55.551992 - ], - [ - 37.706499, - 55.551992 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706499, - 55.552082 - ], - [ - 37.706499, - 55.552171 - ], - [ - 37.706658, - 55.552171 - ], - [ - 37.706658, - 55.552082 - ], - [ - 37.706499, - 55.552082 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706499, - 55.552171 - ], - [ - 37.706499, - 55.552261 - ], - [ - 37.706658, - 55.552261 - ], - [ - 37.706658, - 55.552171 - ], - [ - 37.706499, - 55.552171 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706499, - 55.552261 - ], - [ - 37.706499, - 55.552351 - ], - [ - 37.706658, - 55.552351 - ], - [ - 37.706658, - 55.552261 - ], - [ - 37.706499, - 55.552261 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706499, - 55.552351 - ], - [ - 37.706499, - 55.552441 - ], - [ - 37.706658, - 55.552441 - ], - [ - 37.706658, - 55.552351 - ], - [ - 37.706499, - 55.552351 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706499, - 55.552441 - ], - [ - 37.706499, - 55.552531 - ], - [ - 37.706658, - 55.552531 - ], - [ - 37.706658, - 55.552441 - ], - [ - 37.706499, - 55.552441 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706499, - 55.552531 - ], - [ - 37.706499, - 55.552621 - ], - [ - 37.706658, - 55.552621 - ], - [ - 37.706658, - 55.552531 - ], - [ - 37.706499, - 55.552531 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706499, - 55.552621 - ], - [ - 37.706499, - 55.552711 - ], - [ - 37.706658, - 55.552711 - ], - [ - 37.706658, - 55.552621 - ], - [ - 37.706499, - 55.552621 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706499, - 55.552711 - ], - [ - 37.706499, - 55.552801 - ], - [ - 37.706658, - 55.552801 - ], - [ - 37.706658, - 55.552711 - ], - [ - 37.706499, - 55.552711 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706499, - 55.552801 - ], - [ - 37.706499, - 55.552891 - ], - [ - 37.706658, - 55.552891 - ], - [ - 37.706658, - 55.552801 - ], - [ - 37.706499, - 55.552801 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706499, - 55.552891 - ], - [ - 37.706499, - 55.552981 - ], - [ - 37.706658, - 55.552981 - ], - [ - 37.706658, - 55.552891 - ], - [ - 37.706499, - 55.552891 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706499, - 55.552981 - ], - [ - 37.706499, - 55.553071 - ], - [ - 37.706658, - 55.553071 - ], - [ - 37.706658, - 55.552981 - ], - [ - 37.706499, - 55.552981 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706499, - 55.553071 - ], - [ - 37.706499, - 55.553161 - ], - [ - 37.706658, - 55.553161 - ], - [ - 37.706658, - 55.553071 - ], - [ - 37.706499, - 55.553071 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706499, - 55.553161 - ], - [ - 37.706499, - 55.553251 - ], - [ - 37.706658, - 55.553251 - ], - [ - 37.706658, - 55.553161 - ], - [ - 37.706499, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706499, - 55.553251 - ], - [ - 37.706499, - 55.553341 - ], - [ - 37.706658, - 55.553341 - ], - [ - 37.706658, - 55.553251 - ], - [ - 37.706499, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706499, - 55.553341 - ], - [ - 37.706499, - 55.553431 - ], - [ - 37.706658, - 55.553431 - ], - [ - 37.706658, - 55.553341 - ], - [ - 37.706499, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706499, - 55.553431 - ], - [ - 37.706499, - 55.55352 - ], - [ - 37.706658, - 55.55352 - ], - [ - 37.706658, - 55.553431 - ], - [ - 37.706499, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706499, - 55.55352 - ], - [ - 37.706499, - 55.55361 - ], - [ - 37.706658, - 55.55361 - ], - [ - 37.706658, - 55.55352 - ], - [ - 37.706499, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706499, - 55.55361 - ], - [ - 37.706499, - 55.5537 - ], - [ - 37.706658, - 55.5537 - ], - [ - 37.706658, - 55.55361 - ], - [ - 37.706499, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706499, - 55.5537 - ], - [ - 37.706499, - 55.55379 - ], - [ - 37.706658, - 55.55379 - ], - [ - 37.706658, - 55.5537 - ], - [ - 37.706499, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706499, - 55.55379 - ], - [ - 37.706499, - 55.55388 - ], - [ - 37.706658, - 55.55388 - ], - [ - 37.706658, - 55.55379 - ], - [ - 37.706499, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706499, - 55.55388 - ], - [ - 37.706499, - 55.55397 - ], - [ - 37.706658, - 55.55397 - ], - [ - 37.706658, - 55.55388 - ], - [ - 37.706499, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706499, - 55.55397 - ], - [ - 37.706499, - 55.55406 - ], - [ - 37.706658, - 55.55406 - ], - [ - 37.706658, - 55.55397 - ], - [ - 37.706499, - 55.55397 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706499, - 55.55406 - ], - [ - 37.706499, - 55.55415 - ], - [ - 37.706658, - 55.55415 - ], - [ - 37.706658, - 55.55406 - ], - [ - 37.706499, - 55.55406 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706499, - 55.55415 - ], - [ - 37.706499, - 55.55424 - ], - [ - 37.706658, - 55.55424 - ], - [ - 37.706658, - 55.55415 - ], - [ - 37.706499, - 55.55415 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706499, - 55.55424 - ], - [ - 37.706499, - 55.55433 - ], - [ - 37.706658, - 55.55433 - ], - [ - 37.706658, - 55.55424 - ], - [ - 37.706499, - 55.55424 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706499, - 55.55433 - ], - [ - 37.706499, - 55.55442 - ], - [ - 37.706658, - 55.55442 - ], - [ - 37.706658, - 55.55433 - ], - [ - 37.706499, - 55.55433 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706499, - 55.55442 - ], - [ - 37.706499, - 55.55451 - ], - [ - 37.706658, - 55.55451 - ], - [ - 37.706658, - 55.55442 - ], - [ - 37.706499, - 55.55442 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706499, - 55.55451 - ], - [ - 37.706499, - 55.5546 - ], - [ - 37.706658, - 55.5546 - ], - [ - 37.706658, - 55.55451 - ], - [ - 37.706499, - 55.55451 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706499, - 55.5546 - ], - [ - 37.706499, - 55.55469 - ], - [ - 37.706658, - 55.55469 - ], - [ - 37.706658, - 55.5546 - ], - [ - 37.706499, - 55.5546 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706499, - 55.55469 - ], - [ - 37.706499, - 55.55478 - ], - [ - 37.706658, - 55.55478 - ], - [ - 37.706658, - 55.55469 - ], - [ - 37.706499, - 55.55469 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706499, - 55.55478 - ], - [ - 37.706499, - 55.554869 - ], - [ - 37.706658, - 55.554869 - ], - [ - 37.706658, - 55.55478 - ], - [ - 37.706499, - 55.55478 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706499, - 55.554869 - ], - [ - 37.706499, - 55.554959 - ], - [ - 37.706658, - 55.554959 - ], - [ - 37.706658, - 55.554869 - ], - [ - 37.706499, - 55.554869 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706499, - 55.554959 - ], - [ - 37.706499, - 55.555049 - ], - [ - 37.706658, - 55.555049 - ], - [ - 37.706658, - 55.554959 - ], - [ - 37.706499, - 55.554959 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706499, - 55.555049 - ], - [ - 37.706499, - 55.555139 - ], - [ - 37.706658, - 55.555139 - ], - [ - 37.706658, - 55.555049 - ], - [ - 37.706499, - 55.555049 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706499, - 55.555139 - ], - [ - 37.706499, - 55.555229 - ], - [ - 37.706658, - 55.555229 - ], - [ - 37.706658, - 55.555139 - ], - [ - 37.706499, - 55.555139 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706499, - 55.555229 - ], - [ - 37.706499, - 55.555319 - ], - [ - 37.706658, - 55.555319 - ], - [ - 37.706658, - 55.555229 - ], - [ - 37.706499, - 55.555229 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706499, - 55.555319 - ], - [ - 37.706499, - 55.555409 - ], - [ - 37.706658, - 55.555409 - ], - [ - 37.706658, - 55.555319 - ], - [ - 37.706499, - 55.555319 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706499, - 55.555409 - ], - [ - 37.706499, - 55.555499 - ], - [ - 37.706658, - 55.555499 - ], - [ - 37.706658, - 55.555409 - ], - [ - 37.706499, - 55.555409 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706499, - 55.555499 - ], - [ - 37.706499, - 55.555589 - ], - [ - 37.706658, - 55.555589 - ], - [ - 37.706658, - 55.555499 - ], - [ - 37.706499, - 55.555499 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706658, - 55.551632 - ], - [ - 37.706658, - 55.551722 - ], - [ - 37.706817, - 55.551722 - ], - [ - 37.706817, - 55.551632 - ], - [ - 37.706658, - 55.551632 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706658, - 55.551722 - ], - [ - 37.706658, - 55.551812 - ], - [ - 37.706817, - 55.551812 - ], - [ - 37.706817, - 55.551722 - ], - [ - 37.706658, - 55.551722 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706658, - 55.551812 - ], - [ - 37.706658, - 55.551902 - ], - [ - 37.706817, - 55.551902 - ], - [ - 37.706817, - 55.551812 - ], - [ - 37.706658, - 55.551812 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706658, - 55.551902 - ], - [ - 37.706658, - 55.551992 - ], - [ - 37.706817, - 55.551992 - ], - [ - 37.706817, - 55.551902 - ], - [ - 37.706658, - 55.551902 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706658, - 55.551992 - ], - [ - 37.706658, - 55.552082 - ], - [ - 37.706817, - 55.552082 - ], - [ - 37.706817, - 55.551992 - ], - [ - 37.706658, - 55.551992 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706658, - 55.552082 - ], - [ - 37.706658, - 55.552171 - ], - [ - 37.706817, - 55.552171 - ], - [ - 37.706817, - 55.552082 - ], - [ - 37.706658, - 55.552082 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706658, - 55.552171 - ], - [ - 37.706658, - 55.552261 - ], - [ - 37.706817, - 55.552261 - ], - [ - 37.706817, - 55.552171 - ], - [ - 37.706658, - 55.552171 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706658, - 55.552261 - ], - [ - 37.706658, - 55.552351 - ], - [ - 37.706817, - 55.552351 - ], - [ - 37.706817, - 55.552261 - ], - [ - 37.706658, - 55.552261 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706658, - 55.552351 - ], - [ - 37.706658, - 55.552441 - ], - [ - 37.706817, - 55.552441 - ], - [ - 37.706817, - 55.552351 - ], - [ - 37.706658, - 55.552351 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706658, - 55.552441 - ], - [ - 37.706658, - 55.552531 - ], - [ - 37.706817, - 55.552531 - ], - [ - 37.706817, - 55.552441 - ], - [ - 37.706658, - 55.552441 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706658, - 55.552531 - ], - [ - 37.706658, - 55.552621 - ], - [ - 37.706817, - 55.552621 - ], - [ - 37.706817, - 55.552531 - ], - [ - 37.706658, - 55.552531 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706658, - 55.552621 - ], - [ - 37.706658, - 55.552711 - ], - [ - 37.706817, - 55.552711 - ], - [ - 37.706817, - 55.552621 - ], - [ - 37.706658, - 55.552621 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706658, - 55.552711 - ], - [ - 37.706658, - 55.552801 - ], - [ - 37.706817, - 55.552801 - ], - [ - 37.706817, - 55.552711 - ], - [ - 37.706658, - 55.552711 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706658, - 55.552801 - ], - [ - 37.706658, - 55.552891 - ], - [ - 37.706817, - 55.552891 - ], - [ - 37.706817, - 55.552801 - ], - [ - 37.706658, - 55.552801 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706658, - 55.552891 - ], - [ - 37.706658, - 55.552981 - ], - [ - 37.706817, - 55.552981 - ], - [ - 37.706817, - 55.552891 - ], - [ - 37.706658, - 55.552891 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706658, - 55.552981 - ], - [ - 37.706658, - 55.553071 - ], - [ - 37.706817, - 55.553071 - ], - [ - 37.706817, - 55.552981 - ], - [ - 37.706658, - 55.552981 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706658, - 55.553071 - ], - [ - 37.706658, - 55.553161 - ], - [ - 37.706817, - 55.553161 - ], - [ - 37.706817, - 55.553071 - ], - [ - 37.706658, - 55.553071 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706658, - 55.553161 - ], - [ - 37.706658, - 55.553251 - ], - [ - 37.706817, - 55.553251 - ], - [ - 37.706817, - 55.553161 - ], - [ - 37.706658, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706658, - 55.553251 - ], - [ - 37.706658, - 55.553341 - ], - [ - 37.706817, - 55.553341 - ], - [ - 37.706817, - 55.553251 - ], - [ - 37.706658, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706658, - 55.553341 - ], - [ - 37.706658, - 55.553431 - ], - [ - 37.706817, - 55.553431 - ], - [ - 37.706817, - 55.553341 - ], - [ - 37.706658, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706658, - 55.553431 - ], - [ - 37.706658, - 55.55352 - ], - [ - 37.706817, - 55.55352 - ], - [ - 37.706817, - 55.553431 - ], - [ - 37.706658, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706658, - 55.55352 - ], - [ - 37.706658, - 55.55361 - ], - [ - 37.706817, - 55.55361 - ], - [ - 37.706817, - 55.55352 - ], - [ - 37.706658, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706658, - 55.55361 - ], - [ - 37.706658, - 55.5537 - ], - [ - 37.706817, - 55.5537 - ], - [ - 37.706817, - 55.55361 - ], - [ - 37.706658, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706658, - 55.5537 - ], - [ - 37.706658, - 55.55379 - ], - [ - 37.706817, - 55.55379 - ], - [ - 37.706817, - 55.5537 - ], - [ - 37.706658, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706658, - 55.55379 - ], - [ - 37.706658, - 55.55388 - ], - [ - 37.706817, - 55.55388 - ], - [ - 37.706817, - 55.55379 - ], - [ - 37.706658, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706658, - 55.55388 - ], - [ - 37.706658, - 55.55397 - ], - [ - 37.706817, - 55.55397 - ], - [ - 37.706817, - 55.55388 - ], - [ - 37.706658, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706658, - 55.55397 - ], - [ - 37.706658, - 55.55406 - ], - [ - 37.706817, - 55.55406 - ], - [ - 37.706817, - 55.55397 - ], - [ - 37.706658, - 55.55397 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706658, - 55.55406 - ], - [ - 37.706658, - 55.55415 - ], - [ - 37.706817, - 55.55415 - ], - [ - 37.706817, - 55.55406 - ], - [ - 37.706658, - 55.55406 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706658, - 55.55415 - ], - [ - 37.706658, - 55.55424 - ], - [ - 37.706817, - 55.55424 - ], - [ - 37.706817, - 55.55415 - ], - [ - 37.706658, - 55.55415 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706658, - 55.55424 - ], - [ - 37.706658, - 55.55433 - ], - [ - 37.706817, - 55.55433 - ], - [ - 37.706817, - 55.55424 - ], - [ - 37.706658, - 55.55424 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706658, - 55.55433 - ], - [ - 37.706658, - 55.55442 - ], - [ - 37.706817, - 55.55442 - ], - [ - 37.706817, - 55.55433 - ], - [ - 37.706658, - 55.55433 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706658, - 55.55442 - ], - [ - 37.706658, - 55.55451 - ], - [ - 37.706817, - 55.55451 - ], - [ - 37.706817, - 55.55442 - ], - [ - 37.706658, - 55.55442 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706658, - 55.55451 - ], - [ - 37.706658, - 55.5546 - ], - [ - 37.706817, - 55.5546 - ], - [ - 37.706817, - 55.55451 - ], - [ - 37.706658, - 55.55451 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706658, - 55.5546 - ], - [ - 37.706658, - 55.55469 - ], - [ - 37.706817, - 55.55469 - ], - [ - 37.706817, - 55.5546 - ], - [ - 37.706658, - 55.5546 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706658, - 55.55469 - ], - [ - 37.706658, - 55.55478 - ], - [ - 37.706817, - 55.55478 - ], - [ - 37.706817, - 55.55469 - ], - [ - 37.706658, - 55.55469 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706658, - 55.55478 - ], - [ - 37.706658, - 55.554869 - ], - [ - 37.706817, - 55.554869 - ], - [ - 37.706817, - 55.55478 - ], - [ - 37.706658, - 55.55478 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706658, - 55.554869 - ], - [ - 37.706658, - 55.554959 - ], - [ - 37.706817, - 55.554959 - ], - [ - 37.706817, - 55.554869 - ], - [ - 37.706658, - 55.554869 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706658, - 55.554959 - ], - [ - 37.706658, - 55.555049 - ], - [ - 37.706817, - 55.555049 - ], - [ - 37.706817, - 55.554959 - ], - [ - 37.706658, - 55.554959 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706658, - 55.555049 - ], - [ - 37.706658, - 55.555139 - ], - [ - 37.706817, - 55.555139 - ], - [ - 37.706817, - 55.555049 - ], - [ - 37.706658, - 55.555049 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706658, - 55.555139 - ], - [ - 37.706658, - 55.555229 - ], - [ - 37.706817, - 55.555229 - ], - [ - 37.706817, - 55.555139 - ], - [ - 37.706658, - 55.555139 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706658, - 55.555229 - ], - [ - 37.706658, - 55.555319 - ], - [ - 37.706817, - 55.555319 - ], - [ - 37.706817, - 55.555229 - ], - [ - 37.706658, - 55.555229 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706658, - 55.555319 - ], - [ - 37.706658, - 55.555409 - ], - [ - 37.706817, - 55.555409 - ], - [ - 37.706817, - 55.555319 - ], - [ - 37.706658, - 55.555319 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706658, - 55.555409 - ], - [ - 37.706658, - 55.555499 - ], - [ - 37.706817, - 55.555499 - ], - [ - 37.706817, - 55.555409 - ], - [ - 37.706658, - 55.555409 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706658, - 55.555499 - ], - [ - 37.706658, - 55.555589 - ], - [ - 37.706817, - 55.555589 - ], - [ - 37.706817, - 55.555499 - ], - [ - 37.706658, - 55.555499 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706658, - 55.555589 - ], - [ - 37.706658, - 55.555679 - ], - [ - 37.706817, - 55.555679 - ], - [ - 37.706817, - 55.555589 - ], - [ - 37.706658, - 55.555589 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706817, - 55.551812 - ], - [ - 37.706817, - 55.551902 - ], - [ - 37.706976, - 55.551902 - ], - [ - 37.706976, - 55.551812 - ], - [ - 37.706817, - 55.551812 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706817, - 55.551902 - ], - [ - 37.706817, - 55.551992 - ], - [ - 37.706976, - 55.551992 - ], - [ - 37.706976, - 55.551902 - ], - [ - 37.706817, - 55.551902 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706817, - 55.551992 - ], - [ - 37.706817, - 55.552082 - ], - [ - 37.706976, - 55.552082 - ], - [ - 37.706976, - 55.551992 - ], - [ - 37.706817, - 55.551992 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706817, - 55.552082 - ], - [ - 37.706817, - 55.552171 - ], - [ - 37.706976, - 55.552171 - ], - [ - 37.706976, - 55.552082 - ], - [ - 37.706817, - 55.552082 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706817, - 55.552171 - ], - [ - 37.706817, - 55.552261 - ], - [ - 37.706976, - 55.552261 - ], - [ - 37.706976, - 55.552171 - ], - [ - 37.706817, - 55.552171 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706817, - 55.552261 - ], - [ - 37.706817, - 55.552351 - ], - [ - 37.706976, - 55.552351 - ], - [ - 37.706976, - 55.552261 - ], - [ - 37.706817, - 55.552261 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706817, - 55.552351 - ], - [ - 37.706817, - 55.552441 - ], - [ - 37.706976, - 55.552441 - ], - [ - 37.706976, - 55.552351 - ], - [ - 37.706817, - 55.552351 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706817, - 55.552441 - ], - [ - 37.706817, - 55.552531 - ], - [ - 37.706976, - 55.552531 - ], - [ - 37.706976, - 55.552441 - ], - [ - 37.706817, - 55.552441 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706817, - 55.552531 - ], - [ - 37.706817, - 55.552621 - ], - [ - 37.706976, - 55.552621 - ], - [ - 37.706976, - 55.552531 - ], - [ - 37.706817, - 55.552531 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706817, - 55.552621 - ], - [ - 37.706817, - 55.552711 - ], - [ - 37.706976, - 55.552711 - ], - [ - 37.706976, - 55.552621 - ], - [ - 37.706817, - 55.552621 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706817, - 55.552711 - ], - [ - 37.706817, - 55.552801 - ], - [ - 37.706976, - 55.552801 - ], - [ - 37.706976, - 55.552711 - ], - [ - 37.706817, - 55.552711 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706817, - 55.552801 - ], - [ - 37.706817, - 55.552891 - ], - [ - 37.706976, - 55.552891 - ], - [ - 37.706976, - 55.552801 - ], - [ - 37.706817, - 55.552801 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706817, - 55.552891 - ], - [ - 37.706817, - 55.552981 - ], - [ - 37.706976, - 55.552981 - ], - [ - 37.706976, - 55.552891 - ], - [ - 37.706817, - 55.552891 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706817, - 55.552981 - ], - [ - 37.706817, - 55.553071 - ], - [ - 37.706976, - 55.553071 - ], - [ - 37.706976, - 55.552981 - ], - [ - 37.706817, - 55.552981 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706817, - 55.553071 - ], - [ - 37.706817, - 55.553161 - ], - [ - 37.706976, - 55.553161 - ], - [ - 37.706976, - 55.553071 - ], - [ - 37.706817, - 55.553071 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706817, - 55.553161 - ], - [ - 37.706817, - 55.553251 - ], - [ - 37.706976, - 55.553251 - ], - [ - 37.706976, - 55.553161 - ], - [ - 37.706817, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706817, - 55.553251 - ], - [ - 37.706817, - 55.553341 - ], - [ - 37.706976, - 55.553341 - ], - [ - 37.706976, - 55.553251 - ], - [ - 37.706817, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706817, - 55.553341 - ], - [ - 37.706817, - 55.553431 - ], - [ - 37.706976, - 55.553431 - ], - [ - 37.706976, - 55.553341 - ], - [ - 37.706817, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706817, - 55.553431 - ], - [ - 37.706817, - 55.55352 - ], - [ - 37.706976, - 55.55352 - ], - [ - 37.706976, - 55.553431 - ], - [ - 37.706817, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706817, - 55.55352 - ], - [ - 37.706817, - 55.55361 - ], - [ - 37.706976, - 55.55361 - ], - [ - 37.706976, - 55.55352 - ], - [ - 37.706817, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706817, - 55.55361 - ], - [ - 37.706817, - 55.5537 - ], - [ - 37.706976, - 55.5537 - ], - [ - 37.706976, - 55.55361 - ], - [ - 37.706817, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706817, - 55.5537 - ], - [ - 37.706817, - 55.55379 - ], - [ - 37.706976, - 55.55379 - ], - [ - 37.706976, - 55.5537 - ], - [ - 37.706817, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706817, - 55.55379 - ], - [ - 37.706817, - 55.55388 - ], - [ - 37.706976, - 55.55388 - ], - [ - 37.706976, - 55.55379 - ], - [ - 37.706817, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706817, - 55.55388 - ], - [ - 37.706817, - 55.55397 - ], - [ - 37.706976, - 55.55397 - ], - [ - 37.706976, - 55.55388 - ], - [ - 37.706817, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706817, - 55.55397 - ], - [ - 37.706817, - 55.55406 - ], - [ - 37.706976, - 55.55406 - ], - [ - 37.706976, - 55.55397 - ], - [ - 37.706817, - 55.55397 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706817, - 55.55406 - ], - [ - 37.706817, - 55.55415 - ], - [ - 37.706976, - 55.55415 - ], - [ - 37.706976, - 55.55406 - ], - [ - 37.706817, - 55.55406 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706817, - 55.55415 - ], - [ - 37.706817, - 55.55424 - ], - [ - 37.706976, - 55.55424 - ], - [ - 37.706976, - 55.55415 - ], - [ - 37.706817, - 55.55415 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706817, - 55.55424 - ], - [ - 37.706817, - 55.55433 - ], - [ - 37.706976, - 55.55433 - ], - [ - 37.706976, - 55.55424 - ], - [ - 37.706817, - 55.55424 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706817, - 55.55433 - ], - [ - 37.706817, - 55.55442 - ], - [ - 37.706976, - 55.55442 - ], - [ - 37.706976, - 55.55433 - ], - [ - 37.706817, - 55.55433 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706817, - 55.55442 - ], - [ - 37.706817, - 55.55451 - ], - [ - 37.706976, - 55.55451 - ], - [ - 37.706976, - 55.55442 - ], - [ - 37.706817, - 55.55442 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706817, - 55.55451 - ], - [ - 37.706817, - 55.5546 - ], - [ - 37.706976, - 55.5546 - ], - [ - 37.706976, - 55.55451 - ], - [ - 37.706817, - 55.55451 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706817, - 55.5546 - ], - [ - 37.706817, - 55.55469 - ], - [ - 37.706976, - 55.55469 - ], - [ - 37.706976, - 55.5546 - ], - [ - 37.706817, - 55.5546 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706817, - 55.55469 - ], - [ - 37.706817, - 55.55478 - ], - [ - 37.706976, - 55.55478 - ], - [ - 37.706976, - 55.55469 - ], - [ - 37.706817, - 55.55469 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706817, - 55.55478 - ], - [ - 37.706817, - 55.554869 - ], - [ - 37.706976, - 55.554869 - ], - [ - 37.706976, - 55.55478 - ], - [ - 37.706817, - 55.55478 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706817, - 55.554869 - ], - [ - 37.706817, - 55.554959 - ], - [ - 37.706976, - 55.554959 - ], - [ - 37.706976, - 55.554869 - ], - [ - 37.706817, - 55.554869 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706817, - 55.554959 - ], - [ - 37.706817, - 55.555049 - ], - [ - 37.706976, - 55.555049 - ], - [ - 37.706976, - 55.554959 - ], - [ - 37.706817, - 55.554959 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706817, - 55.555049 - ], - [ - 37.706817, - 55.555139 - ], - [ - 37.706976, - 55.555139 - ], - [ - 37.706976, - 55.555049 - ], - [ - 37.706817, - 55.555049 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706817, - 55.555139 - ], - [ - 37.706817, - 55.555229 - ], - [ - 37.706976, - 55.555229 - ], - [ - 37.706976, - 55.555139 - ], - [ - 37.706817, - 55.555139 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706817, - 55.555229 - ], - [ - 37.706817, - 55.555319 - ], - [ - 37.706976, - 55.555319 - ], - [ - 37.706976, - 55.555229 - ], - [ - 37.706817, - 55.555229 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706817, - 55.555319 - ], - [ - 37.706817, - 55.555409 - ], - [ - 37.706976, - 55.555409 - ], - [ - 37.706976, - 55.555319 - ], - [ - 37.706817, - 55.555319 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706817, - 55.555409 - ], - [ - 37.706817, - 55.555499 - ], - [ - 37.706976, - 55.555499 - ], - [ - 37.706976, - 55.555409 - ], - [ - 37.706817, - 55.555409 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706817, - 55.555499 - ], - [ - 37.706817, - 55.555589 - ], - [ - 37.706976, - 55.555589 - ], - [ - 37.706976, - 55.555499 - ], - [ - 37.706817, - 55.555499 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706817, - 55.555589 - ], - [ - 37.706817, - 55.555679 - ], - [ - 37.706976, - 55.555679 - ], - [ - 37.706976, - 55.555589 - ], - [ - 37.706817, - 55.555589 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706976, - 55.551992 - ], - [ - 37.706976, - 55.552082 - ], - [ - 37.707135, - 55.552082 - ], - [ - 37.707135, - 55.551992 - ], - [ - 37.706976, - 55.551992 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706976, - 55.552082 - ], - [ - 37.706976, - 55.552171 - ], - [ - 37.707135, - 55.552171 - ], - [ - 37.707135, - 55.552082 - ], - [ - 37.706976, - 55.552082 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706976, - 55.552171 - ], - [ - 37.706976, - 55.552261 - ], - [ - 37.707135, - 55.552261 - ], - [ - 37.707135, - 55.552171 - ], - [ - 37.706976, - 55.552171 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706976, - 55.552261 - ], - [ - 37.706976, - 55.552351 - ], - [ - 37.707135, - 55.552351 - ], - [ - 37.707135, - 55.552261 - ], - [ - 37.706976, - 55.552261 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706976, - 55.552351 - ], - [ - 37.706976, - 55.552441 - ], - [ - 37.707135, - 55.552441 - ], - [ - 37.707135, - 55.552351 - ], - [ - 37.706976, - 55.552351 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706976, - 55.552441 - ], - [ - 37.706976, - 55.552531 - ], - [ - 37.707135, - 55.552531 - ], - [ - 37.707135, - 55.552441 - ], - [ - 37.706976, - 55.552441 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706976, - 55.552531 - ], - [ - 37.706976, - 55.552621 - ], - [ - 37.707135, - 55.552621 - ], - [ - 37.707135, - 55.552531 - ], - [ - 37.706976, - 55.552531 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706976, - 55.552621 - ], - [ - 37.706976, - 55.552711 - ], - [ - 37.707135, - 55.552711 - ], - [ - 37.707135, - 55.552621 - ], - [ - 37.706976, - 55.552621 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706976, - 55.552711 - ], - [ - 37.706976, - 55.552801 - ], - [ - 37.707135, - 55.552801 - ], - [ - 37.707135, - 55.552711 - ], - [ - 37.706976, - 55.552711 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706976, - 55.552801 - ], - [ - 37.706976, - 55.552891 - ], - [ - 37.707135, - 55.552891 - ], - [ - 37.707135, - 55.552801 - ], - [ - 37.706976, - 55.552801 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706976, - 55.552891 - ], - [ - 37.706976, - 55.552981 - ], - [ - 37.707135, - 55.552981 - ], - [ - 37.707135, - 55.552891 - ], - [ - 37.706976, - 55.552891 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706976, - 55.552981 - ], - [ - 37.706976, - 55.553071 - ], - [ - 37.707135, - 55.553071 - ], - [ - 37.707135, - 55.552981 - ], - [ - 37.706976, - 55.552981 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706976, - 55.553071 - ], - [ - 37.706976, - 55.553161 - ], - [ - 37.707135, - 55.553161 - ], - [ - 37.707135, - 55.553071 - ], - [ - 37.706976, - 55.553071 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706976, - 55.553161 - ], - [ - 37.706976, - 55.553251 - ], - [ - 37.707135, - 55.553251 - ], - [ - 37.707135, - 55.553161 - ], - [ - 37.706976, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706976, - 55.553251 - ], - [ - 37.706976, - 55.553341 - ], - [ - 37.707135, - 55.553341 - ], - [ - 37.707135, - 55.553251 - ], - [ - 37.706976, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706976, - 55.553341 - ], - [ - 37.706976, - 55.553431 - ], - [ - 37.707135, - 55.553431 - ], - [ - 37.707135, - 55.553341 - ], - [ - 37.706976, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706976, - 55.553431 - ], - [ - 37.706976, - 55.55352 - ], - [ - 37.707135, - 55.55352 - ], - [ - 37.707135, - 55.553431 - ], - [ - 37.706976, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706976, - 55.55352 - ], - [ - 37.706976, - 55.55361 - ], - [ - 37.707135, - 55.55361 - ], - [ - 37.707135, - 55.55352 - ], - [ - 37.706976, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706976, - 55.55361 - ], - [ - 37.706976, - 55.5537 - ], - [ - 37.707135, - 55.5537 - ], - [ - 37.707135, - 55.55361 - ], - [ - 37.706976, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706976, - 55.5537 - ], - [ - 37.706976, - 55.55379 - ], - [ - 37.707135, - 55.55379 - ], - [ - 37.707135, - 55.5537 - ], - [ - 37.706976, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706976, - 55.55379 - ], - [ - 37.706976, - 55.55388 - ], - [ - 37.707135, - 55.55388 - ], - [ - 37.707135, - 55.55379 - ], - [ - 37.706976, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706976, - 55.55388 - ], - [ - 37.706976, - 55.55397 - ], - [ - 37.707135, - 55.55397 - ], - [ - 37.707135, - 55.55388 - ], - [ - 37.706976, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706976, - 55.55397 - ], - [ - 37.706976, - 55.55406 - ], - [ - 37.707135, - 55.55406 - ], - [ - 37.707135, - 55.55397 - ], - [ - 37.706976, - 55.55397 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706976, - 55.55406 - ], - [ - 37.706976, - 55.55415 - ], - [ - 37.707135, - 55.55415 - ], - [ - 37.707135, - 55.55406 - ], - [ - 37.706976, - 55.55406 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706976, - 55.55415 - ], - [ - 37.706976, - 55.55424 - ], - [ - 37.707135, - 55.55424 - ], - [ - 37.707135, - 55.55415 - ], - [ - 37.706976, - 55.55415 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706976, - 55.55424 - ], - [ - 37.706976, - 55.55433 - ], - [ - 37.707135, - 55.55433 - ], - [ - 37.707135, - 55.55424 - ], - [ - 37.706976, - 55.55424 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706976, - 55.55433 - ], - [ - 37.706976, - 55.55442 - ], - [ - 37.707135, - 55.55442 - ], - [ - 37.707135, - 55.55433 - ], - [ - 37.706976, - 55.55433 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706976, - 55.55442 - ], - [ - 37.706976, - 55.55451 - ], - [ - 37.707135, - 55.55451 - ], - [ - 37.707135, - 55.55442 - ], - [ - 37.706976, - 55.55442 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706976, - 55.55451 - ], - [ - 37.706976, - 55.5546 - ], - [ - 37.707135, - 55.5546 - ], - [ - 37.707135, - 55.55451 - ], - [ - 37.706976, - 55.55451 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706976, - 55.5546 - ], - [ - 37.706976, - 55.55469 - ], - [ - 37.707135, - 55.55469 - ], - [ - 37.707135, - 55.5546 - ], - [ - 37.706976, - 55.5546 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706976, - 55.55469 - ], - [ - 37.706976, - 55.55478 - ], - [ - 37.707135, - 55.55478 - ], - [ - 37.707135, - 55.55469 - ], - [ - 37.706976, - 55.55469 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706976, - 55.55478 - ], - [ - 37.706976, - 55.554869 - ], - [ - 37.707135, - 55.554869 - ], - [ - 37.707135, - 55.55478 - ], - [ - 37.706976, - 55.55478 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706976, - 55.554869 - ], - [ - 37.706976, - 55.554959 - ], - [ - 37.707135, - 55.554959 - ], - [ - 37.707135, - 55.554869 - ], - [ - 37.706976, - 55.554869 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706976, - 55.554959 - ], - [ - 37.706976, - 55.555049 - ], - [ - 37.707135, - 55.555049 - ], - [ - 37.707135, - 55.554959 - ], - [ - 37.706976, - 55.554959 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706976, - 55.555049 - ], - [ - 37.706976, - 55.555139 - ], - [ - 37.707135, - 55.555139 - ], - [ - 37.707135, - 55.555049 - ], - [ - 37.706976, - 55.555049 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706976, - 55.555139 - ], - [ - 37.706976, - 55.555229 - ], - [ - 37.707135, - 55.555229 - ], - [ - 37.707135, - 55.555139 - ], - [ - 37.706976, - 55.555139 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706976, - 55.555229 - ], - [ - 37.706976, - 55.555319 - ], - [ - 37.707135, - 55.555319 - ], - [ - 37.707135, - 55.555229 - ], - [ - 37.706976, - 55.555229 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706976, - 55.555319 - ], - [ - 37.706976, - 55.555409 - ], - [ - 37.707135, - 55.555409 - ], - [ - 37.707135, - 55.555319 - ], - [ - 37.706976, - 55.555319 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706976, - 55.555409 - ], - [ - 37.706976, - 55.555499 - ], - [ - 37.707135, - 55.555499 - ], - [ - 37.707135, - 55.555409 - ], - [ - 37.706976, - 55.555409 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706976, - 55.555499 - ], - [ - 37.706976, - 55.555589 - ], - [ - 37.707135, - 55.555589 - ], - [ - 37.707135, - 55.555499 - ], - [ - 37.706976, - 55.555499 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706976, - 55.555589 - ], - [ - 37.706976, - 55.555679 - ], - [ - 37.707135, - 55.555679 - ], - [ - 37.707135, - 55.555589 - ], - [ - 37.706976, - 55.555589 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.706976, - 55.555679 - ], - [ - 37.706976, - 55.555769 - ], - [ - 37.707135, - 55.555769 - ], - [ - 37.707135, - 55.555679 - ], - [ - 37.706976, - 55.555679 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707135, - 55.552261 - ], - [ - 37.707135, - 55.552351 - ], - [ - 37.707294, - 55.552351 - ], - [ - 37.707294, - 55.552261 - ], - [ - 37.707135, - 55.552261 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707135, - 55.552351 - ], - [ - 37.707135, - 55.552441 - ], - [ - 37.707294, - 55.552441 - ], - [ - 37.707294, - 55.552351 - ], - [ - 37.707135, - 55.552351 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707135, - 55.552441 - ], - [ - 37.707135, - 55.552531 - ], - [ - 37.707294, - 55.552531 - ], - [ - 37.707294, - 55.552441 - ], - [ - 37.707135, - 55.552441 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707135, - 55.552531 - ], - [ - 37.707135, - 55.552621 - ], - [ - 37.707294, - 55.552621 - ], - [ - 37.707294, - 55.552531 - ], - [ - 37.707135, - 55.552531 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707135, - 55.552621 - ], - [ - 37.707135, - 55.552711 - ], - [ - 37.707294, - 55.552711 - ], - [ - 37.707294, - 55.552621 - ], - [ - 37.707135, - 55.552621 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707135, - 55.552711 - ], - [ - 37.707135, - 55.552801 - ], - [ - 37.707294, - 55.552801 - ], - [ - 37.707294, - 55.552711 - ], - [ - 37.707135, - 55.552711 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707135, - 55.552801 - ], - [ - 37.707135, - 55.552891 - ], - [ - 37.707294, - 55.552891 - ], - [ - 37.707294, - 55.552801 - ], - [ - 37.707135, - 55.552801 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707135, - 55.552891 - ], - [ - 37.707135, - 55.552981 - ], - [ - 37.707294, - 55.552981 - ], - [ - 37.707294, - 55.552891 - ], - [ - 37.707135, - 55.552891 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707135, - 55.552981 - ], - [ - 37.707135, - 55.553071 - ], - [ - 37.707294, - 55.553071 - ], - [ - 37.707294, - 55.552981 - ], - [ - 37.707135, - 55.552981 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707135, - 55.553071 - ], - [ - 37.707135, - 55.553161 - ], - [ - 37.707294, - 55.553161 - ], - [ - 37.707294, - 55.553071 - ], - [ - 37.707135, - 55.553071 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707135, - 55.553161 - ], - [ - 37.707135, - 55.553251 - ], - [ - 37.707294, - 55.553251 - ], - [ - 37.707294, - 55.553161 - ], - [ - 37.707135, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707135, - 55.553251 - ], - [ - 37.707135, - 55.553341 - ], - [ - 37.707294, - 55.553341 - ], - [ - 37.707294, - 55.553251 - ], - [ - 37.707135, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707135, - 55.553341 - ], - [ - 37.707135, - 55.553431 - ], - [ - 37.707294, - 55.553431 - ], - [ - 37.707294, - 55.553341 - ], - [ - 37.707135, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707135, - 55.553431 - ], - [ - 37.707135, - 55.55352 - ], - [ - 37.707294, - 55.55352 - ], - [ - 37.707294, - 55.553431 - ], - [ - 37.707135, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707135, - 55.55352 - ], - [ - 37.707135, - 55.55361 - ], - [ - 37.707294, - 55.55361 - ], - [ - 37.707294, - 55.55352 - ], - [ - 37.707135, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707135, - 55.55361 - ], - [ - 37.707135, - 55.5537 - ], - [ - 37.707294, - 55.5537 - ], - [ - 37.707294, - 55.55361 - ], - [ - 37.707135, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707135, - 55.5537 - ], - [ - 37.707135, - 55.55379 - ], - [ - 37.707294, - 55.55379 - ], - [ - 37.707294, - 55.5537 - ], - [ - 37.707135, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707135, - 55.55379 - ], - [ - 37.707135, - 55.55388 - ], - [ - 37.707294, - 55.55388 - ], - [ - 37.707294, - 55.55379 - ], - [ - 37.707135, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707135, - 55.55388 - ], - [ - 37.707135, - 55.55397 - ], - [ - 37.707294, - 55.55397 - ], - [ - 37.707294, - 55.55388 - ], - [ - 37.707135, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707135, - 55.55397 - ], - [ - 37.707135, - 55.55406 - ], - [ - 37.707294, - 55.55406 - ], - [ - 37.707294, - 55.55397 - ], - [ - 37.707135, - 55.55397 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707135, - 55.55406 - ], - [ - 37.707135, - 55.55415 - ], - [ - 37.707294, - 55.55415 - ], - [ - 37.707294, - 55.55406 - ], - [ - 37.707135, - 55.55406 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707135, - 55.55415 - ], - [ - 37.707135, - 55.55424 - ], - [ - 37.707294, - 55.55424 - ], - [ - 37.707294, - 55.55415 - ], - [ - 37.707135, - 55.55415 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707135, - 55.55424 - ], - [ - 37.707135, - 55.55433 - ], - [ - 37.707294, - 55.55433 - ], - [ - 37.707294, - 55.55424 - ], - [ - 37.707135, - 55.55424 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707135, - 55.55433 - ], - [ - 37.707135, - 55.55442 - ], - [ - 37.707294, - 55.55442 - ], - [ - 37.707294, - 55.55433 - ], - [ - 37.707135, - 55.55433 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707135, - 55.55442 - ], - [ - 37.707135, - 55.55451 - ], - [ - 37.707294, - 55.55451 - ], - [ - 37.707294, - 55.55442 - ], - [ - 37.707135, - 55.55442 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707135, - 55.55451 - ], - [ - 37.707135, - 55.5546 - ], - [ - 37.707294, - 55.5546 - ], - [ - 37.707294, - 55.55451 - ], - [ - 37.707135, - 55.55451 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707135, - 55.5546 - ], - [ - 37.707135, - 55.55469 - ], - [ - 37.707294, - 55.55469 - ], - [ - 37.707294, - 55.5546 - ], - [ - 37.707135, - 55.5546 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707135, - 55.55469 - ], - [ - 37.707135, - 55.55478 - ], - [ - 37.707294, - 55.55478 - ], - [ - 37.707294, - 55.55469 - ], - [ - 37.707135, - 55.55469 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707135, - 55.55478 - ], - [ - 37.707135, - 55.554869 - ], - [ - 37.707294, - 55.554869 - ], - [ - 37.707294, - 55.55478 - ], - [ - 37.707135, - 55.55478 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707135, - 55.554869 - ], - [ - 37.707135, - 55.554959 - ], - [ - 37.707294, - 55.554959 - ], - [ - 37.707294, - 55.554869 - ], - [ - 37.707135, - 55.554869 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707135, - 55.554959 - ], - [ - 37.707135, - 55.555049 - ], - [ - 37.707294, - 55.555049 - ], - [ - 37.707294, - 55.554959 - ], - [ - 37.707135, - 55.554959 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707135, - 55.555049 - ], - [ - 37.707135, - 55.555139 - ], - [ - 37.707294, - 55.555139 - ], - [ - 37.707294, - 55.555049 - ], - [ - 37.707135, - 55.555049 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707135, - 55.555139 - ], - [ - 37.707135, - 55.555229 - ], - [ - 37.707294, - 55.555229 - ], - [ - 37.707294, - 55.555139 - ], - [ - 37.707135, - 55.555139 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707135, - 55.555229 - ], - [ - 37.707135, - 55.555319 - ], - [ - 37.707294, - 55.555319 - ], - [ - 37.707294, - 55.555229 - ], - [ - 37.707135, - 55.555229 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707135, - 55.555319 - ], - [ - 37.707135, - 55.555409 - ], - [ - 37.707294, - 55.555409 - ], - [ - 37.707294, - 55.555319 - ], - [ - 37.707135, - 55.555319 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707135, - 55.555409 - ], - [ - 37.707135, - 55.555499 - ], - [ - 37.707294, - 55.555499 - ], - [ - 37.707294, - 55.555409 - ], - [ - 37.707135, - 55.555409 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707135, - 55.555499 - ], - [ - 37.707135, - 55.555589 - ], - [ - 37.707294, - 55.555589 - ], - [ - 37.707294, - 55.555499 - ], - [ - 37.707135, - 55.555499 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707135, - 55.555589 - ], - [ - 37.707135, - 55.555679 - ], - [ - 37.707294, - 55.555679 - ], - [ - 37.707294, - 55.555589 - ], - [ - 37.707135, - 55.555589 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707135, - 55.555679 - ], - [ - 37.707135, - 55.555769 - ], - [ - 37.707294, - 55.555769 - ], - [ - 37.707294, - 55.555679 - ], - [ - 37.707135, - 55.555679 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707294, - 55.552441 - ], - [ - 37.707294, - 55.552531 - ], - [ - 37.707453, - 55.552531 - ], - [ - 37.707453, - 55.552441 - ], - [ - 37.707294, - 55.552441 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707294, - 55.552531 - ], - [ - 37.707294, - 55.552621 - ], - [ - 37.707453, - 55.552621 - ], - [ - 37.707453, - 55.552531 - ], - [ - 37.707294, - 55.552531 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707294, - 55.552621 - ], - [ - 37.707294, - 55.552711 - ], - [ - 37.707453, - 55.552711 - ], - [ - 37.707453, - 55.552621 - ], - [ - 37.707294, - 55.552621 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707294, - 55.552711 - ], - [ - 37.707294, - 55.552801 - ], - [ - 37.707453, - 55.552801 - ], - [ - 37.707453, - 55.552711 - ], - [ - 37.707294, - 55.552711 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707294, - 55.552801 - ], - [ - 37.707294, - 55.552891 - ], - [ - 37.707453, - 55.552891 - ], - [ - 37.707453, - 55.552801 - ], - [ - 37.707294, - 55.552801 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707294, - 55.552891 - ], - [ - 37.707294, - 55.552981 - ], - [ - 37.707453, - 55.552981 - ], - [ - 37.707453, - 55.552891 - ], - [ - 37.707294, - 55.552891 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707294, - 55.552981 - ], - [ - 37.707294, - 55.553071 - ], - [ - 37.707453, - 55.553071 - ], - [ - 37.707453, - 55.552981 - ], - [ - 37.707294, - 55.552981 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707294, - 55.553071 - ], - [ - 37.707294, - 55.553161 - ], - [ - 37.707453, - 55.553161 - ], - [ - 37.707453, - 55.553071 - ], - [ - 37.707294, - 55.553071 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707294, - 55.553161 - ], - [ - 37.707294, - 55.553251 - ], - [ - 37.707453, - 55.553251 - ], - [ - 37.707453, - 55.553161 - ], - [ - 37.707294, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707294, - 55.553251 - ], - [ - 37.707294, - 55.553341 - ], - [ - 37.707453, - 55.553341 - ], - [ - 37.707453, - 55.553251 - ], - [ - 37.707294, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707294, - 55.553341 - ], - [ - 37.707294, - 55.553431 - ], - [ - 37.707453, - 55.553431 - ], - [ - 37.707453, - 55.553341 - ], - [ - 37.707294, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707294, - 55.553431 - ], - [ - 37.707294, - 55.55352 - ], - [ - 37.707453, - 55.55352 - ], - [ - 37.707453, - 55.553431 - ], - [ - 37.707294, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707294, - 55.55352 - ], - [ - 37.707294, - 55.55361 - ], - [ - 37.707453, - 55.55361 - ], - [ - 37.707453, - 55.55352 - ], - [ - 37.707294, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707294, - 55.55361 - ], - [ - 37.707294, - 55.5537 - ], - [ - 37.707453, - 55.5537 - ], - [ - 37.707453, - 55.55361 - ], - [ - 37.707294, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707294, - 55.5537 - ], - [ - 37.707294, - 55.55379 - ], - [ - 37.707453, - 55.55379 - ], - [ - 37.707453, - 55.5537 - ], - [ - 37.707294, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707294, - 55.55379 - ], - [ - 37.707294, - 55.55388 - ], - [ - 37.707453, - 55.55388 - ], - [ - 37.707453, - 55.55379 - ], - [ - 37.707294, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707294, - 55.55388 - ], - [ - 37.707294, - 55.55397 - ], - [ - 37.707453, - 55.55397 - ], - [ - 37.707453, - 55.55388 - ], - [ - 37.707294, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707294, - 55.55397 - ], - [ - 37.707294, - 55.55406 - ], - [ - 37.707453, - 55.55406 - ], - [ - 37.707453, - 55.55397 - ], - [ - 37.707294, - 55.55397 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707294, - 55.55406 - ], - [ - 37.707294, - 55.55415 - ], - [ - 37.707453, - 55.55415 - ], - [ - 37.707453, - 55.55406 - ], - [ - 37.707294, - 55.55406 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707294, - 55.55415 - ], - [ - 37.707294, - 55.55424 - ], - [ - 37.707453, - 55.55424 - ], - [ - 37.707453, - 55.55415 - ], - [ - 37.707294, - 55.55415 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707294, - 55.55424 - ], - [ - 37.707294, - 55.55433 - ], - [ - 37.707453, - 55.55433 - ], - [ - 37.707453, - 55.55424 - ], - [ - 37.707294, - 55.55424 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707294, - 55.55433 - ], - [ - 37.707294, - 55.55442 - ], - [ - 37.707453, - 55.55442 - ], - [ - 37.707453, - 55.55433 - ], - [ - 37.707294, - 55.55433 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707294, - 55.55442 - ], - [ - 37.707294, - 55.55451 - ], - [ - 37.707453, - 55.55451 - ], - [ - 37.707453, - 55.55442 - ], - [ - 37.707294, - 55.55442 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707294, - 55.55451 - ], - [ - 37.707294, - 55.5546 - ], - [ - 37.707453, - 55.5546 - ], - [ - 37.707453, - 55.55451 - ], - [ - 37.707294, - 55.55451 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707294, - 55.5546 - ], - [ - 37.707294, - 55.55469 - ], - [ - 37.707453, - 55.55469 - ], - [ - 37.707453, - 55.5546 - ], - [ - 37.707294, - 55.5546 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707294, - 55.55469 - ], - [ - 37.707294, - 55.55478 - ], - [ - 37.707453, - 55.55478 - ], - [ - 37.707453, - 55.55469 - ], - [ - 37.707294, - 55.55469 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707294, - 55.55478 - ], - [ - 37.707294, - 55.554869 - ], - [ - 37.707453, - 55.554869 - ], - [ - 37.707453, - 55.55478 - ], - [ - 37.707294, - 55.55478 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707294, - 55.554869 - ], - [ - 37.707294, - 55.554959 - ], - [ - 37.707453, - 55.554959 - ], - [ - 37.707453, - 55.554869 - ], - [ - 37.707294, - 55.554869 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707294, - 55.554959 - ], - [ - 37.707294, - 55.555049 - ], - [ - 37.707453, - 55.555049 - ], - [ - 37.707453, - 55.554959 - ], - [ - 37.707294, - 55.554959 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707294, - 55.555049 - ], - [ - 37.707294, - 55.555139 - ], - [ - 37.707453, - 55.555139 - ], - [ - 37.707453, - 55.555049 - ], - [ - 37.707294, - 55.555049 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707294, - 55.555139 - ], - [ - 37.707294, - 55.555229 - ], - [ - 37.707453, - 55.555229 - ], - [ - 37.707453, - 55.555139 - ], - [ - 37.707294, - 55.555139 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707294, - 55.555229 - ], - [ - 37.707294, - 55.555319 - ], - [ - 37.707453, - 55.555319 - ], - [ - 37.707453, - 55.555229 - ], - [ - 37.707294, - 55.555229 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707294, - 55.555319 - ], - [ - 37.707294, - 55.555409 - ], - [ - 37.707453, - 55.555409 - ], - [ - 37.707453, - 55.555319 - ], - [ - 37.707294, - 55.555319 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707294, - 55.555409 - ], - [ - 37.707294, - 55.555499 - ], - [ - 37.707453, - 55.555499 - ], - [ - 37.707453, - 55.555409 - ], - [ - 37.707294, - 55.555409 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707294, - 55.555499 - ], - [ - 37.707294, - 55.555589 - ], - [ - 37.707453, - 55.555589 - ], - [ - 37.707453, - 55.555499 - ], - [ - 37.707294, - 55.555499 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707294, - 55.555589 - ], - [ - 37.707294, - 55.555679 - ], - [ - 37.707453, - 55.555679 - ], - [ - 37.707453, - 55.555589 - ], - [ - 37.707294, - 55.555589 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707294, - 55.555679 - ], - [ - 37.707294, - 55.555769 - ], - [ - 37.707453, - 55.555769 - ], - [ - 37.707453, - 55.555679 - ], - [ - 37.707294, - 55.555679 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707294, - 55.555769 - ], - [ - 37.707294, - 55.555859 - ], - [ - 37.707453, - 55.555859 - ], - [ - 37.707453, - 55.555769 - ], - [ - 37.707294, - 55.555769 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707453, - 55.552621 - ], - [ - 37.707453, - 55.552711 - ], - [ - 37.707612, - 55.552711 - ], - [ - 37.707612, - 55.552621 - ], - [ - 37.707453, - 55.552621 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707453, - 55.552711 - ], - [ - 37.707453, - 55.552801 - ], - [ - 37.707612, - 55.552801 - ], - [ - 37.707612, - 55.552711 - ], - [ - 37.707453, - 55.552711 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707453, - 55.552801 - ], - [ - 37.707453, - 55.552891 - ], - [ - 37.707612, - 55.552891 - ], - [ - 37.707612, - 55.552801 - ], - [ - 37.707453, - 55.552801 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707453, - 55.552891 - ], - [ - 37.707453, - 55.552981 - ], - [ - 37.707612, - 55.552981 - ], - [ - 37.707612, - 55.552891 - ], - [ - 37.707453, - 55.552891 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707453, - 55.552981 - ], - [ - 37.707453, - 55.553071 - ], - [ - 37.707612, - 55.553071 - ], - [ - 37.707612, - 55.552981 - ], - [ - 37.707453, - 55.552981 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707453, - 55.553071 - ], - [ - 37.707453, - 55.553161 - ], - [ - 37.707612, - 55.553161 - ], - [ - 37.707612, - 55.553071 - ], - [ - 37.707453, - 55.553071 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707453, - 55.553161 - ], - [ - 37.707453, - 55.553251 - ], - [ - 37.707612, - 55.553251 - ], - [ - 37.707612, - 55.553161 - ], - [ - 37.707453, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707453, - 55.553251 - ], - [ - 37.707453, - 55.553341 - ], - [ - 37.707612, - 55.553341 - ], - [ - 37.707612, - 55.553251 - ], - [ - 37.707453, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707453, - 55.553341 - ], - [ - 37.707453, - 55.553431 - ], - [ - 37.707612, - 55.553431 - ], - [ - 37.707612, - 55.553341 - ], - [ - 37.707453, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707453, - 55.553431 - ], - [ - 37.707453, - 55.55352 - ], - [ - 37.707612, - 55.55352 - ], - [ - 37.707612, - 55.553431 - ], - [ - 37.707453, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707453, - 55.55352 - ], - [ - 37.707453, - 55.55361 - ], - [ - 37.707612, - 55.55361 - ], - [ - 37.707612, - 55.55352 - ], - [ - 37.707453, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707453, - 55.55361 - ], - [ - 37.707453, - 55.5537 - ], - [ - 37.707612, - 55.5537 - ], - [ - 37.707612, - 55.55361 - ], - [ - 37.707453, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707453, - 55.5537 - ], - [ - 37.707453, - 55.55379 - ], - [ - 37.707612, - 55.55379 - ], - [ - 37.707612, - 55.5537 - ], - [ - 37.707453, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707453, - 55.55379 - ], - [ - 37.707453, - 55.55388 - ], - [ - 37.707612, - 55.55388 - ], - [ - 37.707612, - 55.55379 - ], - [ - 37.707453, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707453, - 55.55388 - ], - [ - 37.707453, - 55.55397 - ], - [ - 37.707612, - 55.55397 - ], - [ - 37.707612, - 55.55388 - ], - [ - 37.707453, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707453, - 55.55397 - ], - [ - 37.707453, - 55.55406 - ], - [ - 37.707612, - 55.55406 - ], - [ - 37.707612, - 55.55397 - ], - [ - 37.707453, - 55.55397 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707453, - 55.55406 - ], - [ - 37.707453, - 55.55415 - ], - [ - 37.707612, - 55.55415 - ], - [ - 37.707612, - 55.55406 - ], - [ - 37.707453, - 55.55406 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707453, - 55.55415 - ], - [ - 37.707453, - 55.55424 - ], - [ - 37.707612, - 55.55424 - ], - [ - 37.707612, - 55.55415 - ], - [ - 37.707453, - 55.55415 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707453, - 55.55424 - ], - [ - 37.707453, - 55.55433 - ], - [ - 37.707612, - 55.55433 - ], - [ - 37.707612, - 55.55424 - ], - [ - 37.707453, - 55.55424 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707453, - 55.55433 - ], - [ - 37.707453, - 55.55442 - ], - [ - 37.707612, - 55.55442 - ], - [ - 37.707612, - 55.55433 - ], - [ - 37.707453, - 55.55433 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707453, - 55.55442 - ], - [ - 37.707453, - 55.55451 - ], - [ - 37.707612, - 55.55451 - ], - [ - 37.707612, - 55.55442 - ], - [ - 37.707453, - 55.55442 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707453, - 55.55451 - ], - [ - 37.707453, - 55.5546 - ], - [ - 37.707612, - 55.5546 - ], - [ - 37.707612, - 55.55451 - ], - [ - 37.707453, - 55.55451 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707453, - 55.5546 - ], - [ - 37.707453, - 55.55469 - ], - [ - 37.707612, - 55.55469 - ], - [ - 37.707612, - 55.5546 - ], - [ - 37.707453, - 55.5546 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707453, - 55.55469 - ], - [ - 37.707453, - 55.55478 - ], - [ - 37.707612, - 55.55478 - ], - [ - 37.707612, - 55.55469 - ], - [ - 37.707453, - 55.55469 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707453, - 55.55478 - ], - [ - 37.707453, - 55.554869 - ], - [ - 37.707612, - 55.554869 - ], - [ - 37.707612, - 55.55478 - ], - [ - 37.707453, - 55.55478 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707453, - 55.554869 - ], - [ - 37.707453, - 55.554959 - ], - [ - 37.707612, - 55.554959 - ], - [ - 37.707612, - 55.554869 - ], - [ - 37.707453, - 55.554869 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707453, - 55.554959 - ], - [ - 37.707453, - 55.555049 - ], - [ - 37.707612, - 55.555049 - ], - [ - 37.707612, - 55.554959 - ], - [ - 37.707453, - 55.554959 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707453, - 55.555049 - ], - [ - 37.707453, - 55.555139 - ], - [ - 37.707612, - 55.555139 - ], - [ - 37.707612, - 55.555049 - ], - [ - 37.707453, - 55.555049 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707453, - 55.555139 - ], - [ - 37.707453, - 55.555229 - ], - [ - 37.707612, - 55.555229 - ], - [ - 37.707612, - 55.555139 - ], - [ - 37.707453, - 55.555139 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707453, - 55.555229 - ], - [ - 37.707453, - 55.555319 - ], - [ - 37.707612, - 55.555319 - ], - [ - 37.707612, - 55.555229 - ], - [ - 37.707453, - 55.555229 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707453, - 55.555319 - ], - [ - 37.707453, - 55.555409 - ], - [ - 37.707612, - 55.555409 - ], - [ - 37.707612, - 55.555319 - ], - [ - 37.707453, - 55.555319 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707453, - 55.555409 - ], - [ - 37.707453, - 55.555499 - ], - [ - 37.707612, - 55.555499 - ], - [ - 37.707612, - 55.555409 - ], - [ - 37.707453, - 55.555409 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707453, - 55.555499 - ], - [ - 37.707453, - 55.555589 - ], - [ - 37.707612, - 55.555589 - ], - [ - 37.707612, - 55.555499 - ], - [ - 37.707453, - 55.555499 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707453, - 55.555589 - ], - [ - 37.707453, - 55.555679 - ], - [ - 37.707612, - 55.555679 - ], - [ - 37.707612, - 55.555589 - ], - [ - 37.707453, - 55.555589 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707453, - 55.555679 - ], - [ - 37.707453, - 55.555769 - ], - [ - 37.707612, - 55.555769 - ], - [ - 37.707612, - 55.555679 - ], - [ - 37.707453, - 55.555679 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707453, - 55.555769 - ], - [ - 37.707453, - 55.555859 - ], - [ - 37.707612, - 55.555859 - ], - [ - 37.707612, - 55.555769 - ], - [ - 37.707453, - 55.555769 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707612, - 55.552801 - ], - [ - 37.707612, - 55.552891 - ], - [ - 37.707771, - 55.552891 - ], - [ - 37.707771, - 55.552801 - ], - [ - 37.707612, - 55.552801 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707612, - 55.552891 - ], - [ - 37.707612, - 55.552981 - ], - [ - 37.707771, - 55.552981 - ], - [ - 37.707771, - 55.552891 - ], - [ - 37.707612, - 55.552891 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707612, - 55.552981 - ], - [ - 37.707612, - 55.553071 - ], - [ - 37.707771, - 55.553071 - ], - [ - 37.707771, - 55.552981 - ], - [ - 37.707612, - 55.552981 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707612, - 55.553071 - ], - [ - 37.707612, - 55.553161 - ], - [ - 37.707771, - 55.553161 - ], - [ - 37.707771, - 55.553071 - ], - [ - 37.707612, - 55.553071 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707612, - 55.553161 - ], - [ - 37.707612, - 55.553251 - ], - [ - 37.707771, - 55.553251 - ], - [ - 37.707771, - 55.553161 - ], - [ - 37.707612, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707612, - 55.553251 - ], - [ - 37.707612, - 55.553341 - ], - [ - 37.707771, - 55.553341 - ], - [ - 37.707771, - 55.553251 - ], - [ - 37.707612, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707612, - 55.553341 - ], - [ - 37.707612, - 55.553431 - ], - [ - 37.707771, - 55.553431 - ], - [ - 37.707771, - 55.553341 - ], - [ - 37.707612, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707612, - 55.553431 - ], - [ - 37.707612, - 55.55352 - ], - [ - 37.707771, - 55.55352 - ], - [ - 37.707771, - 55.553431 - ], - [ - 37.707612, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707612, - 55.55352 - ], - [ - 37.707612, - 55.55361 - ], - [ - 37.707771, - 55.55361 - ], - [ - 37.707771, - 55.55352 - ], - [ - 37.707612, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707612, - 55.55361 - ], - [ - 37.707612, - 55.5537 - ], - [ - 37.707771, - 55.5537 - ], - [ - 37.707771, - 55.55361 - ], - [ - 37.707612, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707612, - 55.5537 - ], - [ - 37.707612, - 55.55379 - ], - [ - 37.707771, - 55.55379 - ], - [ - 37.707771, - 55.5537 - ], - [ - 37.707612, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707612, - 55.55379 - ], - [ - 37.707612, - 55.55388 - ], - [ - 37.707771, - 55.55388 - ], - [ - 37.707771, - 55.55379 - ], - [ - 37.707612, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707612, - 55.55388 - ], - [ - 37.707612, - 55.55397 - ], - [ - 37.707771, - 55.55397 - ], - [ - 37.707771, - 55.55388 - ], - [ - 37.707612, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707612, - 55.55397 - ], - [ - 37.707612, - 55.55406 - ], - [ - 37.707771, - 55.55406 - ], - [ - 37.707771, - 55.55397 - ], - [ - 37.707612, - 55.55397 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707612, - 55.55406 - ], - [ - 37.707612, - 55.55415 - ], - [ - 37.707771, - 55.55415 - ], - [ - 37.707771, - 55.55406 - ], - [ - 37.707612, - 55.55406 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707612, - 55.55415 - ], - [ - 37.707612, - 55.55424 - ], - [ - 37.707771, - 55.55424 - ], - [ - 37.707771, - 55.55415 - ], - [ - 37.707612, - 55.55415 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707612, - 55.55424 - ], - [ - 37.707612, - 55.55433 - ], - [ - 37.707771, - 55.55433 - ], - [ - 37.707771, - 55.55424 - ], - [ - 37.707612, - 55.55424 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707612, - 55.55433 - ], - [ - 37.707612, - 55.55442 - ], - [ - 37.707771, - 55.55442 - ], - [ - 37.707771, - 55.55433 - ], - [ - 37.707612, - 55.55433 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707612, - 55.55442 - ], - [ - 37.707612, - 55.55451 - ], - [ - 37.707771, - 55.55451 - ], - [ - 37.707771, - 55.55442 - ], - [ - 37.707612, - 55.55442 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707612, - 55.55451 - ], - [ - 37.707612, - 55.5546 - ], - [ - 37.707771, - 55.5546 - ], - [ - 37.707771, - 55.55451 - ], - [ - 37.707612, - 55.55451 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707612, - 55.5546 - ], - [ - 37.707612, - 55.55469 - ], - [ - 37.707771, - 55.55469 - ], - [ - 37.707771, - 55.5546 - ], - [ - 37.707612, - 55.5546 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707612, - 55.55469 - ], - [ - 37.707612, - 55.55478 - ], - [ - 37.707771, - 55.55478 - ], - [ - 37.707771, - 55.55469 - ], - [ - 37.707612, - 55.55469 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707612, - 55.55478 - ], - [ - 37.707612, - 55.554869 - ], - [ - 37.707771, - 55.554869 - ], - [ - 37.707771, - 55.55478 - ], - [ - 37.707612, - 55.55478 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707612, - 55.554869 - ], - [ - 37.707612, - 55.554959 - ], - [ - 37.707771, - 55.554959 - ], - [ - 37.707771, - 55.554869 - ], - [ - 37.707612, - 55.554869 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707612, - 55.554959 - ], - [ - 37.707612, - 55.555049 - ], - [ - 37.707771, - 55.555049 - ], - [ - 37.707771, - 55.554959 - ], - [ - 37.707612, - 55.554959 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707612, - 55.555049 - ], - [ - 37.707612, - 55.555139 - ], - [ - 37.707771, - 55.555139 - ], - [ - 37.707771, - 55.555049 - ], - [ - 37.707612, - 55.555049 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707612, - 55.555139 - ], - [ - 37.707612, - 55.555229 - ], - [ - 37.707771, - 55.555229 - ], - [ - 37.707771, - 55.555139 - ], - [ - 37.707612, - 55.555139 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707612, - 55.555229 - ], - [ - 37.707612, - 55.555319 - ], - [ - 37.707771, - 55.555319 - ], - [ - 37.707771, - 55.555229 - ], - [ - 37.707612, - 55.555229 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707612, - 55.555319 - ], - [ - 37.707612, - 55.555409 - ], - [ - 37.707771, - 55.555409 - ], - [ - 37.707771, - 55.555319 - ], - [ - 37.707612, - 55.555319 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707612, - 55.555409 - ], - [ - 37.707612, - 55.555499 - ], - [ - 37.707771, - 55.555499 - ], - [ - 37.707771, - 55.555409 - ], - [ - 37.707612, - 55.555409 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707612, - 55.555499 - ], - [ - 37.707612, - 55.555589 - ], - [ - 37.707771, - 55.555589 - ], - [ - 37.707771, - 55.555499 - ], - [ - 37.707612, - 55.555499 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707612, - 55.555589 - ], - [ - 37.707612, - 55.555679 - ], - [ - 37.707771, - 55.555679 - ], - [ - 37.707771, - 55.555589 - ], - [ - 37.707612, - 55.555589 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707612, - 55.555679 - ], - [ - 37.707612, - 55.555769 - ], - [ - 37.707771, - 55.555769 - ], - [ - 37.707771, - 55.555679 - ], - [ - 37.707612, - 55.555679 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707612, - 55.555769 - ], - [ - 37.707612, - 55.555859 - ], - [ - 37.707771, - 55.555859 - ], - [ - 37.707771, - 55.555769 - ], - [ - 37.707612, - 55.555769 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707612, - 55.555859 - ], - [ - 37.707612, - 55.555949 - ], - [ - 37.707771, - 55.555949 - ], - [ - 37.707771, - 55.555859 - ], - [ - 37.707612, - 55.555859 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707771, - 55.552981 - ], - [ - 37.707771, - 55.553071 - ], - [ - 37.70793, - 55.553071 - ], - [ - 37.70793, - 55.552981 - ], - [ - 37.707771, - 55.552981 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707771, - 55.553071 - ], - [ - 37.707771, - 55.553161 - ], - [ - 37.70793, - 55.553161 - ], - [ - 37.70793, - 55.553071 - ], - [ - 37.707771, - 55.553071 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707771, - 55.553161 - ], - [ - 37.707771, - 55.553251 - ], - [ - 37.70793, - 55.553251 - ], - [ - 37.70793, - 55.553161 - ], - [ - 37.707771, - 55.553161 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707771, - 55.553251 - ], - [ - 37.707771, - 55.553341 - ], - [ - 37.70793, - 55.553341 - ], - [ - 37.70793, - 55.553251 - ], - [ - 37.707771, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707771, - 55.553341 - ], - [ - 37.707771, - 55.553431 - ], - [ - 37.70793, - 55.553431 - ], - [ - 37.70793, - 55.553341 - ], - [ - 37.707771, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707771, - 55.553431 - ], - [ - 37.707771, - 55.55352 - ], - [ - 37.70793, - 55.55352 - ], - [ - 37.70793, - 55.553431 - ], - [ - 37.707771, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707771, - 55.55352 - ], - [ - 37.707771, - 55.55361 - ], - [ - 37.70793, - 55.55361 - ], - [ - 37.70793, - 55.55352 - ], - [ - 37.707771, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707771, - 55.55361 - ], - [ - 37.707771, - 55.5537 - ], - [ - 37.70793, - 55.5537 - ], - [ - 37.70793, - 55.55361 - ], - [ - 37.707771, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707771, - 55.5537 - ], - [ - 37.707771, - 55.55379 - ], - [ - 37.70793, - 55.55379 - ], - [ - 37.70793, - 55.5537 - ], - [ - 37.707771, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707771, - 55.55379 - ], - [ - 37.707771, - 55.55388 - ], - [ - 37.70793, - 55.55388 - ], - [ - 37.70793, - 55.55379 - ], - [ - 37.707771, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707771, - 55.55388 - ], - [ - 37.707771, - 55.55397 - ], - [ - 37.70793, - 55.55397 - ], - [ - 37.70793, - 55.55388 - ], - [ - 37.707771, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707771, - 55.55397 - ], - [ - 37.707771, - 55.55406 - ], - [ - 37.70793, - 55.55406 - ], - [ - 37.70793, - 55.55397 - ], - [ - 37.707771, - 55.55397 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707771, - 55.55406 - ], - [ - 37.707771, - 55.55415 - ], - [ - 37.70793, - 55.55415 - ], - [ - 37.70793, - 55.55406 - ], - [ - 37.707771, - 55.55406 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707771, - 55.55415 - ], - [ - 37.707771, - 55.55424 - ], - [ - 37.70793, - 55.55424 - ], - [ - 37.70793, - 55.55415 - ], - [ - 37.707771, - 55.55415 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707771, - 55.55424 - ], - [ - 37.707771, - 55.55433 - ], - [ - 37.70793, - 55.55433 - ], - [ - 37.70793, - 55.55424 - ], - [ - 37.707771, - 55.55424 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707771, - 55.55433 - ], - [ - 37.707771, - 55.55442 - ], - [ - 37.70793, - 55.55442 - ], - [ - 37.70793, - 55.55433 - ], - [ - 37.707771, - 55.55433 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707771, - 55.55442 - ], - [ - 37.707771, - 55.55451 - ], - [ - 37.70793, - 55.55451 - ], - [ - 37.70793, - 55.55442 - ], - [ - 37.707771, - 55.55442 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707771, - 55.55451 - ], - [ - 37.707771, - 55.5546 - ], - [ - 37.70793, - 55.5546 - ], - [ - 37.70793, - 55.55451 - ], - [ - 37.707771, - 55.55451 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707771, - 55.5546 - ], - [ - 37.707771, - 55.55469 - ], - [ - 37.70793, - 55.55469 - ], - [ - 37.70793, - 55.5546 - ], - [ - 37.707771, - 55.5546 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707771, - 55.55469 - ], - [ - 37.707771, - 55.55478 - ], - [ - 37.70793, - 55.55478 - ], - [ - 37.70793, - 55.55469 - ], - [ - 37.707771, - 55.55469 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707771, - 55.55478 - ], - [ - 37.707771, - 55.554869 - ], - [ - 37.70793, - 55.554869 - ], - [ - 37.70793, - 55.55478 - ], - [ - 37.707771, - 55.55478 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707771, - 55.554869 - ], - [ - 37.707771, - 55.554959 - ], - [ - 37.70793, - 55.554959 - ], - [ - 37.70793, - 55.554869 - ], - [ - 37.707771, - 55.554869 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707771, - 55.554959 - ], - [ - 37.707771, - 55.555049 - ], - [ - 37.70793, - 55.555049 - ], - [ - 37.70793, - 55.554959 - ], - [ - 37.707771, - 55.554959 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707771, - 55.555049 - ], - [ - 37.707771, - 55.555139 - ], - [ - 37.70793, - 55.555139 - ], - [ - 37.70793, - 55.555049 - ], - [ - 37.707771, - 55.555049 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707771, - 55.555139 - ], - [ - 37.707771, - 55.555229 - ], - [ - 37.70793, - 55.555229 - ], - [ - 37.70793, - 55.555139 - ], - [ - 37.707771, - 55.555139 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707771, - 55.555229 - ], - [ - 37.707771, - 55.555319 - ], - [ - 37.70793, - 55.555319 - ], - [ - 37.70793, - 55.555229 - ], - [ - 37.707771, - 55.555229 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707771, - 55.555319 - ], - [ - 37.707771, - 55.555409 - ], - [ - 37.70793, - 55.555409 - ], - [ - 37.70793, - 55.555319 - ], - [ - 37.707771, - 55.555319 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707771, - 55.555409 - ], - [ - 37.707771, - 55.555499 - ], - [ - 37.70793, - 55.555499 - ], - [ - 37.70793, - 55.555409 - ], - [ - 37.707771, - 55.555409 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707771, - 55.555499 - ], - [ - 37.707771, - 55.555589 - ], - [ - 37.70793, - 55.555589 - ], - [ - 37.70793, - 55.555499 - ], - [ - 37.707771, - 55.555499 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707771, - 55.555589 - ], - [ - 37.707771, - 55.555679 - ], - [ - 37.70793, - 55.555679 - ], - [ - 37.70793, - 55.555589 - ], - [ - 37.707771, - 55.555589 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707771, - 55.555679 - ], - [ - 37.707771, - 55.555769 - ], - [ - 37.70793, - 55.555769 - ], - [ - 37.70793, - 55.555679 - ], - [ - 37.707771, - 55.555679 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707771, - 55.555769 - ], - [ - 37.707771, - 55.555859 - ], - [ - 37.70793, - 55.555859 - ], - [ - 37.70793, - 55.555769 - ], - [ - 37.707771, - 55.555769 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.707771, - 55.555859 - ], - [ - 37.707771, - 55.555949 - ], - [ - 37.70793, - 55.555949 - ], - [ - 37.70793, - 55.555859 - ], - [ - 37.707771, - 55.555859 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70793, - 55.553251 - ], - [ - 37.70793, - 55.553341 - ], - [ - 37.708089, - 55.553341 - ], - [ - 37.708089, - 55.553251 - ], - [ - 37.70793, - 55.553251 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70793, - 55.553341 - ], - [ - 37.70793, - 55.553431 - ], - [ - 37.708089, - 55.553431 - ], - [ - 37.708089, - 55.553341 - ], - [ - 37.70793, - 55.553341 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70793, - 55.553431 - ], - [ - 37.70793, - 55.55352 - ], - [ - 37.708089, - 55.55352 - ], - [ - 37.708089, - 55.553431 - ], - [ - 37.70793, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70793, - 55.55352 - ], - [ - 37.70793, - 55.55361 - ], - [ - 37.708089, - 55.55361 - ], - [ - 37.708089, - 55.55352 - ], - [ - 37.70793, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70793, - 55.55361 - ], - [ - 37.70793, - 55.5537 - ], - [ - 37.708089, - 55.5537 - ], - [ - 37.708089, - 55.55361 - ], - [ - 37.70793, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70793, - 55.5537 - ], - [ - 37.70793, - 55.55379 - ], - [ - 37.708089, - 55.55379 - ], - [ - 37.708089, - 55.5537 - ], - [ - 37.70793, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70793, - 55.55379 - ], - [ - 37.70793, - 55.55388 - ], - [ - 37.708089, - 55.55388 - ], - [ - 37.708089, - 55.55379 - ], - [ - 37.70793, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70793, - 55.55388 - ], - [ - 37.70793, - 55.55397 - ], - [ - 37.708089, - 55.55397 - ], - [ - 37.708089, - 55.55388 - ], - [ - 37.70793, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70793, - 55.55397 - ], - [ - 37.70793, - 55.55406 - ], - [ - 37.708089, - 55.55406 - ], - [ - 37.708089, - 55.55397 - ], - [ - 37.70793, - 55.55397 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70793, - 55.55406 - ], - [ - 37.70793, - 55.55415 - ], - [ - 37.708089, - 55.55415 - ], - [ - 37.708089, - 55.55406 - ], - [ - 37.70793, - 55.55406 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70793, - 55.55415 - ], - [ - 37.70793, - 55.55424 - ], - [ - 37.708089, - 55.55424 - ], - [ - 37.708089, - 55.55415 - ], - [ - 37.70793, - 55.55415 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70793, - 55.55424 - ], - [ - 37.70793, - 55.55433 - ], - [ - 37.708089, - 55.55433 - ], - [ - 37.708089, - 55.55424 - ], - [ - 37.70793, - 55.55424 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70793, - 55.55433 - ], - [ - 37.70793, - 55.55442 - ], - [ - 37.708089, - 55.55442 - ], - [ - 37.708089, - 55.55433 - ], - [ - 37.70793, - 55.55433 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70793, - 55.55442 - ], - [ - 37.70793, - 55.55451 - ], - [ - 37.708089, - 55.55451 - ], - [ - 37.708089, - 55.55442 - ], - [ - 37.70793, - 55.55442 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70793, - 55.55451 - ], - [ - 37.70793, - 55.5546 - ], - [ - 37.708089, - 55.5546 - ], - [ - 37.708089, - 55.55451 - ], - [ - 37.70793, - 55.55451 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70793, - 55.5546 - ], - [ - 37.70793, - 55.55469 - ], - [ - 37.708089, - 55.55469 - ], - [ - 37.708089, - 55.5546 - ], - [ - 37.70793, - 55.5546 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70793, - 55.55469 - ], - [ - 37.70793, - 55.55478 - ], - [ - 37.708089, - 55.55478 - ], - [ - 37.708089, - 55.55469 - ], - [ - 37.70793, - 55.55469 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70793, - 55.55478 - ], - [ - 37.70793, - 55.554869 - ], - [ - 37.708089, - 55.554869 - ], - [ - 37.708089, - 55.55478 - ], - [ - 37.70793, - 55.55478 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70793, - 55.554869 - ], - [ - 37.70793, - 55.554959 - ], - [ - 37.708089, - 55.554959 - ], - [ - 37.708089, - 55.554869 - ], - [ - 37.70793, - 55.554869 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70793, - 55.554959 - ], - [ - 37.70793, - 55.555049 - ], - [ - 37.708089, - 55.555049 - ], - [ - 37.708089, - 55.554959 - ], - [ - 37.70793, - 55.554959 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70793, - 55.555049 - ], - [ - 37.70793, - 55.555139 - ], - [ - 37.708089, - 55.555139 - ], - [ - 37.708089, - 55.555049 - ], - [ - 37.70793, - 55.555049 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70793, - 55.555139 - ], - [ - 37.70793, - 55.555229 - ], - [ - 37.708089, - 55.555229 - ], - [ - 37.708089, - 55.555139 - ], - [ - 37.70793, - 55.555139 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70793, - 55.555229 - ], - [ - 37.70793, - 55.555319 - ], - [ - 37.708089, - 55.555319 - ], - [ - 37.708089, - 55.555229 - ], - [ - 37.70793, - 55.555229 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70793, - 55.555319 - ], - [ - 37.70793, - 55.555409 - ], - [ - 37.708089, - 55.555409 - ], - [ - 37.708089, - 55.555319 - ], - [ - 37.70793, - 55.555319 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70793, - 55.555409 - ], - [ - 37.70793, - 55.555499 - ], - [ - 37.708089, - 55.555499 - ], - [ - 37.708089, - 55.555409 - ], - [ - 37.70793, - 55.555409 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70793, - 55.555499 - ], - [ - 37.70793, - 55.555589 - ], - [ - 37.708089, - 55.555589 - ], - [ - 37.708089, - 55.555499 - ], - [ - 37.70793, - 55.555499 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70793, - 55.555589 - ], - [ - 37.70793, - 55.555679 - ], - [ - 37.708089, - 55.555679 - ], - [ - 37.708089, - 55.555589 - ], - [ - 37.70793, - 55.555589 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70793, - 55.555679 - ], - [ - 37.70793, - 55.555769 - ], - [ - 37.708089, - 55.555769 - ], - [ - 37.708089, - 55.555679 - ], - [ - 37.70793, - 55.555679 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70793, - 55.555769 - ], - [ - 37.70793, - 55.555859 - ], - [ - 37.708089, - 55.555859 - ], - [ - 37.708089, - 55.555769 - ], - [ - 37.70793, - 55.555769 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70793, - 55.555859 - ], - [ - 37.70793, - 55.555949 - ], - [ - 37.708089, - 55.555949 - ], - [ - 37.708089, - 55.555859 - ], - [ - 37.70793, - 55.555859 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70793, - 55.555949 - ], - [ - 37.70793, - 55.556039 - ], - [ - 37.708089, - 55.556039 - ], - [ - 37.708089, - 55.555949 - ], - [ - 37.70793, - 55.555949 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708089, - 55.553431 - ], - [ - 37.708089, - 55.55352 - ], - [ - 37.708248, - 55.55352 - ], - [ - 37.708248, - 55.553431 - ], - [ - 37.708089, - 55.553431 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708089, - 55.55352 - ], - [ - 37.708089, - 55.55361 - ], - [ - 37.708248, - 55.55361 - ], - [ - 37.708248, - 55.55352 - ], - [ - 37.708089, - 55.55352 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708089, - 55.55361 - ], - [ - 37.708089, - 55.5537 - ], - [ - 37.708248, - 55.5537 - ], - [ - 37.708248, - 55.55361 - ], - [ - 37.708089, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708089, - 55.5537 - ], - [ - 37.708089, - 55.55379 - ], - [ - 37.708248, - 55.55379 - ], - [ - 37.708248, - 55.5537 - ], - [ - 37.708089, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708089, - 55.55379 - ], - [ - 37.708089, - 55.55388 - ], - [ - 37.708248, - 55.55388 - ], - [ - 37.708248, - 55.55379 - ], - [ - 37.708089, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708089, - 55.55388 - ], - [ - 37.708089, - 55.55397 - ], - [ - 37.708248, - 55.55397 - ], - [ - 37.708248, - 55.55388 - ], - [ - 37.708089, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708089, - 55.55397 - ], - [ - 37.708089, - 55.55406 - ], - [ - 37.708248, - 55.55406 - ], - [ - 37.708248, - 55.55397 - ], - [ - 37.708089, - 55.55397 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708089, - 55.55406 - ], - [ - 37.708089, - 55.55415 - ], - [ - 37.708248, - 55.55415 - ], - [ - 37.708248, - 55.55406 - ], - [ - 37.708089, - 55.55406 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708089, - 55.55415 - ], - [ - 37.708089, - 55.55424 - ], - [ - 37.708248, - 55.55424 - ], - [ - 37.708248, - 55.55415 - ], - [ - 37.708089, - 55.55415 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708089, - 55.55424 - ], - [ - 37.708089, - 55.55433 - ], - [ - 37.708248, - 55.55433 - ], - [ - 37.708248, - 55.55424 - ], - [ - 37.708089, - 55.55424 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708089, - 55.55433 - ], - [ - 37.708089, - 55.55442 - ], - [ - 37.708248, - 55.55442 - ], - [ - 37.708248, - 55.55433 - ], - [ - 37.708089, - 55.55433 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708089, - 55.55442 - ], - [ - 37.708089, - 55.55451 - ], - [ - 37.708248, - 55.55451 - ], - [ - 37.708248, - 55.55442 - ], - [ - 37.708089, - 55.55442 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708089, - 55.55451 - ], - [ - 37.708089, - 55.5546 - ], - [ - 37.708248, - 55.5546 - ], - [ - 37.708248, - 55.55451 - ], - [ - 37.708089, - 55.55451 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708089, - 55.5546 - ], - [ - 37.708089, - 55.55469 - ], - [ - 37.708248, - 55.55469 - ], - [ - 37.708248, - 55.5546 - ], - [ - 37.708089, - 55.5546 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708089, - 55.55469 - ], - [ - 37.708089, - 55.55478 - ], - [ - 37.708248, - 55.55478 - ], - [ - 37.708248, - 55.55469 - ], - [ - 37.708089, - 55.55469 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708089, - 55.55478 - ], - [ - 37.708089, - 55.554869 - ], - [ - 37.708248, - 55.554869 - ], - [ - 37.708248, - 55.55478 - ], - [ - 37.708089, - 55.55478 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708089, - 55.554869 - ], - [ - 37.708089, - 55.554959 - ], - [ - 37.708248, - 55.554959 - ], - [ - 37.708248, - 55.554869 - ], - [ - 37.708089, - 55.554869 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708089, - 55.554959 - ], - [ - 37.708089, - 55.555049 - ], - [ - 37.708248, - 55.555049 - ], - [ - 37.708248, - 55.554959 - ], - [ - 37.708089, - 55.554959 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708089, - 55.555049 - ], - [ - 37.708089, - 55.555139 - ], - [ - 37.708248, - 55.555139 - ], - [ - 37.708248, - 55.555049 - ], - [ - 37.708089, - 55.555049 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708089, - 55.555139 - ], - [ - 37.708089, - 55.555229 - ], - [ - 37.708248, - 55.555229 - ], - [ - 37.708248, - 55.555139 - ], - [ - 37.708089, - 55.555139 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708089, - 55.555229 - ], - [ - 37.708089, - 55.555319 - ], - [ - 37.708248, - 55.555319 - ], - [ - 37.708248, - 55.555229 - ], - [ - 37.708089, - 55.555229 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708089, - 55.555319 - ], - [ - 37.708089, - 55.555409 - ], - [ - 37.708248, - 55.555409 - ], - [ - 37.708248, - 55.555319 - ], - [ - 37.708089, - 55.555319 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708089, - 55.555409 - ], - [ - 37.708089, - 55.555499 - ], - [ - 37.708248, - 55.555499 - ], - [ - 37.708248, - 55.555409 - ], - [ - 37.708089, - 55.555409 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708089, - 55.555499 - ], - [ - 37.708089, - 55.555589 - ], - [ - 37.708248, - 55.555589 - ], - [ - 37.708248, - 55.555499 - ], - [ - 37.708089, - 55.555499 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708089, - 55.555589 - ], - [ - 37.708089, - 55.555679 - ], - [ - 37.708248, - 55.555679 - ], - [ - 37.708248, - 55.555589 - ], - [ - 37.708089, - 55.555589 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708089, - 55.555679 - ], - [ - 37.708089, - 55.555769 - ], - [ - 37.708248, - 55.555769 - ], - [ - 37.708248, - 55.555679 - ], - [ - 37.708089, - 55.555679 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708089, - 55.555769 - ], - [ - 37.708089, - 55.555859 - ], - [ - 37.708248, - 55.555859 - ], - [ - 37.708248, - 55.555769 - ], - [ - 37.708089, - 55.555769 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708089, - 55.555859 - ], - [ - 37.708089, - 55.555949 - ], - [ - 37.708248, - 55.555949 - ], - [ - 37.708248, - 55.555859 - ], - [ - 37.708089, - 55.555859 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708089, - 55.555949 - ], - [ - 37.708089, - 55.556039 - ], - [ - 37.708248, - 55.556039 - ], - [ - 37.708248, - 55.555949 - ], - [ - 37.708089, - 55.555949 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708248, - 55.55361 - ], - [ - 37.708248, - 55.5537 - ], - [ - 37.708407, - 55.5537 - ], - [ - 37.708407, - 55.55361 - ], - [ - 37.708248, - 55.55361 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708248, - 55.5537 - ], - [ - 37.708248, - 55.55379 - ], - [ - 37.708407, - 55.55379 - ], - [ - 37.708407, - 55.5537 - ], - [ - 37.708248, - 55.5537 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708248, - 55.55379 - ], - [ - 37.708248, - 55.55388 - ], - [ - 37.708407, - 55.55388 - ], - [ - 37.708407, - 55.55379 - ], - [ - 37.708248, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708248, - 55.55388 - ], - [ - 37.708248, - 55.55397 - ], - [ - 37.708407, - 55.55397 - ], - [ - 37.708407, - 55.55388 - ], - [ - 37.708248, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708248, - 55.55397 - ], - [ - 37.708248, - 55.55406 - ], - [ - 37.708407, - 55.55406 - ], - [ - 37.708407, - 55.55397 - ], - [ - 37.708248, - 55.55397 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708248, - 55.55406 - ], - [ - 37.708248, - 55.55415 - ], - [ - 37.708407, - 55.55415 - ], - [ - 37.708407, - 55.55406 - ], - [ - 37.708248, - 55.55406 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708248, - 55.55415 - ], - [ - 37.708248, - 55.55424 - ], - [ - 37.708407, - 55.55424 - ], - [ - 37.708407, - 55.55415 - ], - [ - 37.708248, - 55.55415 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708248, - 55.55424 - ], - [ - 37.708248, - 55.55433 - ], - [ - 37.708407, - 55.55433 - ], - [ - 37.708407, - 55.55424 - ], - [ - 37.708248, - 55.55424 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708248, - 55.55433 - ], - [ - 37.708248, - 55.55442 - ], - [ - 37.708407, - 55.55442 - ], - [ - 37.708407, - 55.55433 - ], - [ - 37.708248, - 55.55433 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708248, - 55.55442 - ], - [ - 37.708248, - 55.55451 - ], - [ - 37.708407, - 55.55451 - ], - [ - 37.708407, - 55.55442 - ], - [ - 37.708248, - 55.55442 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708248, - 55.55451 - ], - [ - 37.708248, - 55.5546 - ], - [ - 37.708407, - 55.5546 - ], - [ - 37.708407, - 55.55451 - ], - [ - 37.708248, - 55.55451 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708248, - 55.5546 - ], - [ - 37.708248, - 55.55469 - ], - [ - 37.708407, - 55.55469 - ], - [ - 37.708407, - 55.5546 - ], - [ - 37.708248, - 55.5546 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708248, - 55.55469 - ], - [ - 37.708248, - 55.55478 - ], - [ - 37.708407, - 55.55478 - ], - [ - 37.708407, - 55.55469 - ], - [ - 37.708248, - 55.55469 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708248, - 55.55478 - ], - [ - 37.708248, - 55.554869 - ], - [ - 37.708407, - 55.554869 - ], - [ - 37.708407, - 55.55478 - ], - [ - 37.708248, - 55.55478 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708248, - 55.554869 - ], - [ - 37.708248, - 55.554959 - ], - [ - 37.708407, - 55.554959 - ], - [ - 37.708407, - 55.554869 - ], - [ - 37.708248, - 55.554869 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708248, - 55.554959 - ], - [ - 37.708248, - 55.555049 - ], - [ - 37.708407, - 55.555049 - ], - [ - 37.708407, - 55.554959 - ], - [ - 37.708248, - 55.554959 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708248, - 55.555049 - ], - [ - 37.708248, - 55.555139 - ], - [ - 37.708407, - 55.555139 - ], - [ - 37.708407, - 55.555049 - ], - [ - 37.708248, - 55.555049 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708248, - 55.555139 - ], - [ - 37.708248, - 55.555229 - ], - [ - 37.708407, - 55.555229 - ], - [ - 37.708407, - 55.555139 - ], - [ - 37.708248, - 55.555139 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708248, - 55.555229 - ], - [ - 37.708248, - 55.555319 - ], - [ - 37.708407, - 55.555319 - ], - [ - 37.708407, - 55.555229 - ], - [ - 37.708248, - 55.555229 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708248, - 55.555319 - ], - [ - 37.708248, - 55.555409 - ], - [ - 37.708407, - 55.555409 - ], - [ - 37.708407, - 55.555319 - ], - [ - 37.708248, - 55.555319 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708248, - 55.555409 - ], - [ - 37.708248, - 55.555499 - ], - [ - 37.708407, - 55.555499 - ], - [ - 37.708407, - 55.555409 - ], - [ - 37.708248, - 55.555409 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708248, - 55.555499 - ], - [ - 37.708248, - 55.555589 - ], - [ - 37.708407, - 55.555589 - ], - [ - 37.708407, - 55.555499 - ], - [ - 37.708248, - 55.555499 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708248, - 55.555589 - ], - [ - 37.708248, - 55.555679 - ], - [ - 37.708407, - 55.555679 - ], - [ - 37.708407, - 55.555589 - ], - [ - 37.708248, - 55.555589 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708248, - 55.555679 - ], - [ - 37.708248, - 55.555769 - ], - [ - 37.708407, - 55.555769 - ], - [ - 37.708407, - 55.555679 - ], - [ - 37.708248, - 55.555679 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708248, - 55.555769 - ], - [ - 37.708248, - 55.555859 - ], - [ - 37.708407, - 55.555859 - ], - [ - 37.708407, - 55.555769 - ], - [ - 37.708248, - 55.555769 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708248, - 55.555859 - ], - [ - 37.708248, - 55.555949 - ], - [ - 37.708407, - 55.555949 - ], - [ - 37.708407, - 55.555859 - ], - [ - 37.708248, - 55.555859 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708248, - 55.555949 - ], - [ - 37.708248, - 55.556039 - ], - [ - 37.708407, - 55.556039 - ], - [ - 37.708407, - 55.555949 - ], - [ - 37.708248, - 55.555949 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708407, - 55.55379 - ], - [ - 37.708407, - 55.55388 - ], - [ - 37.708566, - 55.55388 - ], - [ - 37.708566, - 55.55379 - ], - [ - 37.708407, - 55.55379 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708407, - 55.55388 - ], - [ - 37.708407, - 55.55397 - ], - [ - 37.708566, - 55.55397 - ], - [ - 37.708566, - 55.55388 - ], - [ - 37.708407, - 55.55388 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708407, - 55.55397 - ], - [ - 37.708407, - 55.55406 - ], - [ - 37.708566, - 55.55406 - ], - [ - 37.708566, - 55.55397 - ], - [ - 37.708407, - 55.55397 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708407, - 55.55406 - ], - [ - 37.708407, - 55.55415 - ], - [ - 37.708566, - 55.55415 - ], - [ - 37.708566, - 55.55406 - ], - [ - 37.708407, - 55.55406 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708407, - 55.55415 - ], - [ - 37.708407, - 55.55424 - ], - [ - 37.708566, - 55.55424 - ], - [ - 37.708566, - 55.55415 - ], - [ - 37.708407, - 55.55415 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708407, - 55.55424 - ], - [ - 37.708407, - 55.55433 - ], - [ - 37.708566, - 55.55433 - ], - [ - 37.708566, - 55.55424 - ], - [ - 37.708407, - 55.55424 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708407, - 55.55433 - ], - [ - 37.708407, - 55.55442 - ], - [ - 37.708566, - 55.55442 - ], - [ - 37.708566, - 55.55433 - ], - [ - 37.708407, - 55.55433 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708407, - 55.55442 - ], - [ - 37.708407, - 55.55451 - ], - [ - 37.708566, - 55.55451 - ], - [ - 37.708566, - 55.55442 - ], - [ - 37.708407, - 55.55442 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708407, - 55.55451 - ], - [ - 37.708407, - 55.5546 - ], - [ - 37.708566, - 55.5546 - ], - [ - 37.708566, - 55.55451 - ], - [ - 37.708407, - 55.55451 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708407, - 55.5546 - ], - [ - 37.708407, - 55.55469 - ], - [ - 37.708566, - 55.55469 - ], - [ - 37.708566, - 55.5546 - ], - [ - 37.708407, - 55.5546 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708407, - 55.55469 - ], - [ - 37.708407, - 55.55478 - ], - [ - 37.708566, - 55.55478 - ], - [ - 37.708566, - 55.55469 - ], - [ - 37.708407, - 55.55469 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708407, - 55.55478 - ], - [ - 37.708407, - 55.554869 - ], - [ - 37.708566, - 55.554869 - ], - [ - 37.708566, - 55.55478 - ], - [ - 37.708407, - 55.55478 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708407, - 55.554869 - ], - [ - 37.708407, - 55.554959 - ], - [ - 37.708566, - 55.554959 - ], - [ - 37.708566, - 55.554869 - ], - [ - 37.708407, - 55.554869 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708407, - 55.554959 - ], - [ - 37.708407, - 55.555049 - ], - [ - 37.708566, - 55.555049 - ], - [ - 37.708566, - 55.554959 - ], - [ - 37.708407, - 55.554959 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708407, - 55.555049 - ], - [ - 37.708407, - 55.555139 - ], - [ - 37.708566, - 55.555139 - ], - [ - 37.708566, - 55.555049 - ], - [ - 37.708407, - 55.555049 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708407, - 55.555139 - ], - [ - 37.708407, - 55.555229 - ], - [ - 37.708566, - 55.555229 - ], - [ - 37.708566, - 55.555139 - ], - [ - 37.708407, - 55.555139 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708407, - 55.555229 - ], - [ - 37.708407, - 55.555319 - ], - [ - 37.708566, - 55.555319 - ], - [ - 37.708566, - 55.555229 - ], - [ - 37.708407, - 55.555229 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708407, - 55.555319 - ], - [ - 37.708407, - 55.555409 - ], - [ - 37.708566, - 55.555409 - ], - [ - 37.708566, - 55.555319 - ], - [ - 37.708407, - 55.555319 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708407, - 55.555409 - ], - [ - 37.708407, - 55.555499 - ], - [ - 37.708566, - 55.555499 - ], - [ - 37.708566, - 55.555409 - ], - [ - 37.708407, - 55.555409 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708407, - 55.555499 - ], - [ - 37.708407, - 55.555589 - ], - [ - 37.708566, - 55.555589 - ], - [ - 37.708566, - 55.555499 - ], - [ - 37.708407, - 55.555499 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708407, - 55.555589 - ], - [ - 37.708407, - 55.555679 - ], - [ - 37.708566, - 55.555679 - ], - [ - 37.708566, - 55.555589 - ], - [ - 37.708407, - 55.555589 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708407, - 55.555679 - ], - [ - 37.708407, - 55.555769 - ], - [ - 37.708566, - 55.555769 - ], - [ - 37.708566, - 55.555679 - ], - [ - 37.708407, - 55.555679 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708407, - 55.555769 - ], - [ - 37.708407, - 55.555859 - ], - [ - 37.708566, - 55.555859 - ], - [ - 37.708566, - 55.555769 - ], - [ - 37.708407, - 55.555769 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708407, - 55.555859 - ], - [ - 37.708407, - 55.555949 - ], - [ - 37.708566, - 55.555949 - ], - [ - 37.708566, - 55.555859 - ], - [ - 37.708407, - 55.555859 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708407, - 55.555949 - ], - [ - 37.708407, - 55.556039 - ], - [ - 37.708566, - 55.556039 - ], - [ - 37.708566, - 55.555949 - ], - [ - 37.708407, - 55.555949 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708407, - 55.556039 - ], - [ - 37.708407, - 55.556128 - ], - [ - 37.708566, - 55.556128 - ], - [ - 37.708566, - 55.556039 - ], - [ - 37.708407, - 55.556039 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708566, - 55.55397 - ], - [ - 37.708566, - 55.55406 - ], - [ - 37.708725, - 55.55406 - ], - [ - 37.708725, - 55.55397 - ], - [ - 37.708566, - 55.55397 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708566, - 55.55406 - ], - [ - 37.708566, - 55.55415 - ], - [ - 37.708725, - 55.55415 - ], - [ - 37.708725, - 55.55406 - ], - [ - 37.708566, - 55.55406 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708566, - 55.55415 - ], - [ - 37.708566, - 55.55424 - ], - [ - 37.708725, - 55.55424 - ], - [ - 37.708725, - 55.55415 - ], - [ - 37.708566, - 55.55415 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708566, - 55.55424 - ], - [ - 37.708566, - 55.55433 - ], - [ - 37.708725, - 55.55433 - ], - [ - 37.708725, - 55.55424 - ], - [ - 37.708566, - 55.55424 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708566, - 55.55433 - ], - [ - 37.708566, - 55.55442 - ], - [ - 37.708725, - 55.55442 - ], - [ - 37.708725, - 55.55433 - ], - [ - 37.708566, - 55.55433 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708566, - 55.55442 - ], - [ - 37.708566, - 55.55451 - ], - [ - 37.708725, - 55.55451 - ], - [ - 37.708725, - 55.55442 - ], - [ - 37.708566, - 55.55442 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708566, - 55.55451 - ], - [ - 37.708566, - 55.5546 - ], - [ - 37.708725, - 55.5546 - ], - [ - 37.708725, - 55.55451 - ], - [ - 37.708566, - 55.55451 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708566, - 55.5546 - ], - [ - 37.708566, - 55.55469 - ], - [ - 37.708725, - 55.55469 - ], - [ - 37.708725, - 55.5546 - ], - [ - 37.708566, - 55.5546 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708566, - 55.55469 - ], - [ - 37.708566, - 55.55478 - ], - [ - 37.708725, - 55.55478 - ], - [ - 37.708725, - 55.55469 - ], - [ - 37.708566, - 55.55469 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708566, - 55.55478 - ], - [ - 37.708566, - 55.554869 - ], - [ - 37.708725, - 55.554869 - ], - [ - 37.708725, - 55.55478 - ], - [ - 37.708566, - 55.55478 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708566, - 55.554869 - ], - [ - 37.708566, - 55.554959 - ], - [ - 37.708725, - 55.554959 - ], - [ - 37.708725, - 55.554869 - ], - [ - 37.708566, - 55.554869 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708566, - 55.554959 - ], - [ - 37.708566, - 55.555049 - ], - [ - 37.708725, - 55.555049 - ], - [ - 37.708725, - 55.554959 - ], - [ - 37.708566, - 55.554959 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708566, - 55.555049 - ], - [ - 37.708566, - 55.555139 - ], - [ - 37.708725, - 55.555139 - ], - [ - 37.708725, - 55.555049 - ], - [ - 37.708566, - 55.555049 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708566, - 55.555139 - ], - [ - 37.708566, - 55.555229 - ], - [ - 37.708725, - 55.555229 - ], - [ - 37.708725, - 55.555139 - ], - [ - 37.708566, - 55.555139 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708566, - 55.555229 - ], - [ - 37.708566, - 55.555319 - ], - [ - 37.708725, - 55.555319 - ], - [ - 37.708725, - 55.555229 - ], - [ - 37.708566, - 55.555229 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708566, - 55.555319 - ], - [ - 37.708566, - 55.555409 - ], - [ - 37.708725, - 55.555409 - ], - [ - 37.708725, - 55.555319 - ], - [ - 37.708566, - 55.555319 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708566, - 55.555409 - ], - [ - 37.708566, - 55.555499 - ], - [ - 37.708725, - 55.555499 - ], - [ - 37.708725, - 55.555409 - ], - [ - 37.708566, - 55.555409 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708566, - 55.555499 - ], - [ - 37.708566, - 55.555589 - ], - [ - 37.708725, - 55.555589 - ], - [ - 37.708725, - 55.555499 - ], - [ - 37.708566, - 55.555499 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708566, - 55.555589 - ], - [ - 37.708566, - 55.555679 - ], - [ - 37.708725, - 55.555679 - ], - [ - 37.708725, - 55.555589 - ], - [ - 37.708566, - 55.555589 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708566, - 55.555679 - ], - [ - 37.708566, - 55.555769 - ], - [ - 37.708725, - 55.555769 - ], - [ - 37.708725, - 55.555679 - ], - [ - 37.708566, - 55.555679 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708566, - 55.555769 - ], - [ - 37.708566, - 55.555859 - ], - [ - 37.708725, - 55.555859 - ], - [ - 37.708725, - 55.555769 - ], - [ - 37.708566, - 55.555769 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708566, - 55.555859 - ], - [ - 37.708566, - 55.555949 - ], - [ - 37.708725, - 55.555949 - ], - [ - 37.708725, - 55.555859 - ], - [ - 37.708566, - 55.555859 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708566, - 55.555949 - ], - [ - 37.708566, - 55.556039 - ], - [ - 37.708725, - 55.556039 - ], - [ - 37.708725, - 55.555949 - ], - [ - 37.708566, - 55.555949 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708566, - 55.556039 - ], - [ - 37.708566, - 55.556128 - ], - [ - 37.708725, - 55.556128 - ], - [ - 37.708725, - 55.556039 - ], - [ - 37.708566, - 55.556039 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708725, - 55.55415 - ], - [ - 37.708725, - 55.55424 - ], - [ - 37.708884, - 55.55424 - ], - [ - 37.708884, - 55.55415 - ], - [ - 37.708725, - 55.55415 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708725, - 55.55424 - ], - [ - 37.708725, - 55.55433 - ], - [ - 37.708884, - 55.55433 - ], - [ - 37.708884, - 55.55424 - ], - [ - 37.708725, - 55.55424 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708725, - 55.55433 - ], - [ - 37.708725, - 55.55442 - ], - [ - 37.708884, - 55.55442 - ], - [ - 37.708884, - 55.55433 - ], - [ - 37.708725, - 55.55433 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708725, - 55.55442 - ], - [ - 37.708725, - 55.55451 - ], - [ - 37.708884, - 55.55451 - ], - [ - 37.708884, - 55.55442 - ], - [ - 37.708725, - 55.55442 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708725, - 55.55451 - ], - [ - 37.708725, - 55.5546 - ], - [ - 37.708884, - 55.5546 - ], - [ - 37.708884, - 55.55451 - ], - [ - 37.708725, - 55.55451 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708725, - 55.5546 - ], - [ - 37.708725, - 55.55469 - ], - [ - 37.708884, - 55.55469 - ], - [ - 37.708884, - 55.5546 - ], - [ - 37.708725, - 55.5546 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708725, - 55.55469 - ], - [ - 37.708725, - 55.55478 - ], - [ - 37.708884, - 55.55478 - ], - [ - 37.708884, - 55.55469 - ], - [ - 37.708725, - 55.55469 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708725, - 55.55478 - ], - [ - 37.708725, - 55.554869 - ], - [ - 37.708884, - 55.554869 - ], - [ - 37.708884, - 55.55478 - ], - [ - 37.708725, - 55.55478 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708725, - 55.554869 - ], - [ - 37.708725, - 55.554959 - ], - [ - 37.708884, - 55.554959 - ], - [ - 37.708884, - 55.554869 - ], - [ - 37.708725, - 55.554869 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708725, - 55.554959 - ], - [ - 37.708725, - 55.555049 - ], - [ - 37.708884, - 55.555049 - ], - [ - 37.708884, - 55.554959 - ], - [ - 37.708725, - 55.554959 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708725, - 55.555049 - ], - [ - 37.708725, - 55.555139 - ], - [ - 37.708884, - 55.555139 - ], - [ - 37.708884, - 55.555049 - ], - [ - 37.708725, - 55.555049 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708725, - 55.555139 - ], - [ - 37.708725, - 55.555229 - ], - [ - 37.708884, - 55.555229 - ], - [ - 37.708884, - 55.555139 - ], - [ - 37.708725, - 55.555139 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708725, - 55.555229 - ], - [ - 37.708725, - 55.555319 - ], - [ - 37.708884, - 55.555319 - ], - [ - 37.708884, - 55.555229 - ], - [ - 37.708725, - 55.555229 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708725, - 55.555319 - ], - [ - 37.708725, - 55.555409 - ], - [ - 37.708884, - 55.555409 - ], - [ - 37.708884, - 55.555319 - ], - [ - 37.708725, - 55.555319 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708725, - 55.555409 - ], - [ - 37.708725, - 55.555499 - ], - [ - 37.708884, - 55.555499 - ], - [ - 37.708884, - 55.555409 - ], - [ - 37.708725, - 55.555409 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708725, - 55.555499 - ], - [ - 37.708725, - 55.555589 - ], - [ - 37.708884, - 55.555589 - ], - [ - 37.708884, - 55.555499 - ], - [ - 37.708725, - 55.555499 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708725, - 55.555589 - ], - [ - 37.708725, - 55.555679 - ], - [ - 37.708884, - 55.555679 - ], - [ - 37.708884, - 55.555589 - ], - [ - 37.708725, - 55.555589 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708725, - 55.555679 - ], - [ - 37.708725, - 55.555769 - ], - [ - 37.708884, - 55.555769 - ], - [ - 37.708884, - 55.555679 - ], - [ - 37.708725, - 55.555679 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708725, - 55.555769 - ], - [ - 37.708725, - 55.555859 - ], - [ - 37.708884, - 55.555859 - ], - [ - 37.708884, - 55.555769 - ], - [ - 37.708725, - 55.555769 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708725, - 55.555859 - ], - [ - 37.708725, - 55.555949 - ], - [ - 37.708884, - 55.555949 - ], - [ - 37.708884, - 55.555859 - ], - [ - 37.708725, - 55.555859 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708725, - 55.555949 - ], - [ - 37.708725, - 55.556039 - ], - [ - 37.708884, - 55.556039 - ], - [ - 37.708884, - 55.555949 - ], - [ - 37.708725, - 55.555949 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708725, - 55.556039 - ], - [ - 37.708725, - 55.556128 - ], - [ - 37.708884, - 55.556128 - ], - [ - 37.708884, - 55.556039 - ], - [ - 37.708725, - 55.556039 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708884, - 55.55442 - ], - [ - 37.708884, - 55.55451 - ], - [ - 37.709043, - 55.55451 - ], - [ - 37.709043, - 55.55442 - ], - [ - 37.708884, - 55.55442 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708884, - 55.55451 - ], - [ - 37.708884, - 55.5546 - ], - [ - 37.709043, - 55.5546 - ], - [ - 37.709043, - 55.55451 - ], - [ - 37.708884, - 55.55451 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708884, - 55.5546 - ], - [ - 37.708884, - 55.55469 - ], - [ - 37.709043, - 55.55469 - ], - [ - 37.709043, - 55.5546 - ], - [ - 37.708884, - 55.5546 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708884, - 55.55469 - ], - [ - 37.708884, - 55.55478 - ], - [ - 37.709043, - 55.55478 - ], - [ - 37.709043, - 55.55469 - ], - [ - 37.708884, - 55.55469 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708884, - 55.55478 - ], - [ - 37.708884, - 55.554869 - ], - [ - 37.709043, - 55.554869 - ], - [ - 37.709043, - 55.55478 - ], - [ - 37.708884, - 55.55478 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708884, - 55.554869 - ], - [ - 37.708884, - 55.554959 - ], - [ - 37.709043, - 55.554959 - ], - [ - 37.709043, - 55.554869 - ], - [ - 37.708884, - 55.554869 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708884, - 55.554959 - ], - [ - 37.708884, - 55.555049 - ], - [ - 37.709043, - 55.555049 - ], - [ - 37.709043, - 55.554959 - ], - [ - 37.708884, - 55.554959 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708884, - 55.555049 - ], - [ - 37.708884, - 55.555139 - ], - [ - 37.709043, - 55.555139 - ], - [ - 37.709043, - 55.555049 - ], - [ - 37.708884, - 55.555049 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708884, - 55.555139 - ], - [ - 37.708884, - 55.555229 - ], - [ - 37.709043, - 55.555229 - ], - [ - 37.709043, - 55.555139 - ], - [ - 37.708884, - 55.555139 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708884, - 55.555229 - ], - [ - 37.708884, - 55.555319 - ], - [ - 37.709043, - 55.555319 - ], - [ - 37.709043, - 55.555229 - ], - [ - 37.708884, - 55.555229 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708884, - 55.555319 - ], - [ - 37.708884, - 55.555409 - ], - [ - 37.709043, - 55.555409 - ], - [ - 37.709043, - 55.555319 - ], - [ - 37.708884, - 55.555319 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708884, - 55.555409 - ], - [ - 37.708884, - 55.555499 - ], - [ - 37.709043, - 55.555499 - ], - [ - 37.709043, - 55.555409 - ], - [ - 37.708884, - 55.555409 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708884, - 55.555499 - ], - [ - 37.708884, - 55.555589 - ], - [ - 37.709043, - 55.555589 - ], - [ - 37.709043, - 55.555499 - ], - [ - 37.708884, - 55.555499 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708884, - 55.555589 - ], - [ - 37.708884, - 55.555679 - ], - [ - 37.709043, - 55.555679 - ], - [ - 37.709043, - 55.555589 - ], - [ - 37.708884, - 55.555589 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708884, - 55.555679 - ], - [ - 37.708884, - 55.555769 - ], - [ - 37.709043, - 55.555769 - ], - [ - 37.709043, - 55.555679 - ], - [ - 37.708884, - 55.555679 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708884, - 55.555769 - ], - [ - 37.708884, - 55.555859 - ], - [ - 37.709043, - 55.555859 - ], - [ - 37.709043, - 55.555769 - ], - [ - 37.708884, - 55.555769 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708884, - 55.555859 - ], - [ - 37.708884, - 55.555949 - ], - [ - 37.709043, - 55.555949 - ], - [ - 37.709043, - 55.555859 - ], - [ - 37.708884, - 55.555859 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708884, - 55.555949 - ], - [ - 37.708884, - 55.556039 - ], - [ - 37.709043, - 55.556039 - ], - [ - 37.709043, - 55.555949 - ], - [ - 37.708884, - 55.555949 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.708884, - 55.556039 - ], - [ - 37.708884, - 55.556128 - ], - [ - 37.709043, - 55.556128 - ], - [ - 37.709043, - 55.556039 - ], - [ - 37.708884, - 55.556039 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.709043, - 55.5546 - ], - [ - 37.709043, - 55.55469 - ], - [ - 37.709201, - 55.55469 - ], - [ - 37.709201, - 55.5546 - ], - [ - 37.709043, - 55.5546 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.709043, - 55.55469 - ], - [ - 37.709043, - 55.55478 - ], - [ - 37.709201, - 55.55478 - ], - [ - 37.709201, - 55.55469 - ], - [ - 37.709043, - 55.55469 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.709043, - 55.55478 - ], - [ - 37.709043, - 55.554869 - ], - [ - 37.709201, - 55.554869 - ], - [ - 37.709201, - 55.55478 - ], - [ - 37.709043, - 55.55478 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.709043, - 55.554869 - ], - [ - 37.709043, - 55.554959 - ], - [ - 37.709201, - 55.554959 - ], - [ - 37.709201, - 55.554869 - ], - [ - 37.709043, - 55.554869 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.709043, - 55.554959 - ], - [ - 37.709043, - 55.555049 - ], - [ - 37.709201, - 55.555049 - ], - [ - 37.709201, - 55.554959 - ], - [ - 37.709043, - 55.554959 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.709043, - 55.555049 - ], - [ - 37.709043, - 55.555139 - ], - [ - 37.709201, - 55.555139 - ], - [ - 37.709201, - 55.555049 - ], - [ - 37.709043, - 55.555049 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.709043, - 55.555139 - ], - [ - 37.709043, - 55.555229 - ], - [ - 37.709201, - 55.555229 - ], - [ - 37.709201, - 55.555139 - ], - [ - 37.709043, - 55.555139 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.709043, - 55.555229 - ], - [ - 37.709043, - 55.555319 - ], - [ - 37.709201, - 55.555319 - ], - [ - 37.709201, - 55.555229 - ], - [ - 37.709043, - 55.555229 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.709043, - 55.555319 - ], - [ - 37.709043, - 55.555409 - ], - [ - 37.709201, - 55.555409 - ], - [ - 37.709201, - 55.555319 - ], - [ - 37.709043, - 55.555319 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.709043, - 55.555409 - ], - [ - 37.709043, - 55.555499 - ], - [ - 37.709201, - 55.555499 - ], - [ - 37.709201, - 55.555409 - ], - [ - 37.709043, - 55.555409 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.709043, - 55.555499 - ], - [ - 37.709043, - 55.555589 - ], - [ - 37.709201, - 55.555589 - ], - [ - 37.709201, - 55.555499 - ], - [ - 37.709043, - 55.555499 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.709043, - 55.555589 - ], - [ - 37.709043, - 55.555679 - ], - [ - 37.709201, - 55.555679 - ], - [ - 37.709201, - 55.555589 - ], - [ - 37.709043, - 55.555589 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.709043, - 55.555679 - ], - [ - 37.709043, - 55.555769 - ], - [ - 37.709201, - 55.555769 - ], - [ - 37.709201, - 55.555679 - ], - [ - 37.709043, - 55.555679 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.709043, - 55.555769 - ], - [ - 37.709043, - 55.555859 - ], - [ - 37.709201, - 55.555859 - ], - [ - 37.709201, - 55.555769 - ], - [ - 37.709043, - 55.555769 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.709043, - 55.555859 - ], - [ - 37.709043, - 55.555949 - ], - [ - 37.709201, - 55.555949 - ], - [ - 37.709201, - 55.555859 - ], - [ - 37.709043, - 55.555859 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.709043, - 55.555949 - ], - [ - 37.709043, - 55.556039 - ], - [ - 37.709201, - 55.556039 - ], - [ - 37.709201, - 55.555949 - ], - [ - 37.709043, - 55.555949 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.709201, - 55.55478 - ], - [ - 37.709201, - 55.554869 - ], - [ - 37.70936, - 55.554869 - ], - [ - 37.70936, - 55.55478 - ], - [ - 37.709201, - 55.55478 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.709201, - 55.554869 - ], - [ - 37.709201, - 55.554959 - ], - [ - 37.70936, - 55.554959 - ], - [ - 37.70936, - 55.554869 - ], - [ - 37.709201, - 55.554869 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.709201, - 55.554959 - ], - [ - 37.709201, - 55.555049 - ], - [ - 37.70936, - 55.555049 - ], - [ - 37.70936, - 55.554959 - ], - [ - 37.709201, - 55.554959 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.709201, - 55.555049 - ], - [ - 37.709201, - 55.555139 - ], - [ - 37.70936, - 55.555139 - ], - [ - 37.70936, - 55.555049 - ], - [ - 37.709201, - 55.555049 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.709201, - 55.555139 - ], - [ - 37.709201, - 55.555229 - ], - [ - 37.70936, - 55.555229 - ], - [ - 37.70936, - 55.555139 - ], - [ - 37.709201, - 55.555139 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.709201, - 55.555229 - ], - [ - 37.709201, - 55.555319 - ], - [ - 37.70936, - 55.555319 - ], - [ - 37.70936, - 55.555229 - ], - [ - 37.709201, - 55.555229 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.709201, - 55.555319 - ], - [ - 37.709201, - 55.555409 - ], - [ - 37.70936, - 55.555409 - ], - [ - 37.70936, - 55.555319 - ], - [ - 37.709201, - 55.555319 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.709201, - 55.555409 - ], - [ - 37.709201, - 55.555499 - ], - [ - 37.70936, - 55.555499 - ], - [ - 37.70936, - 55.555409 - ], - [ - 37.709201, - 55.555409 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.709201, - 55.555499 - ], - [ - 37.709201, - 55.555589 - ], - [ - 37.70936, - 55.555589 - ], - [ - 37.70936, - 55.555499 - ], - [ - 37.709201, - 55.555499 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.709201, - 55.555589 - ], - [ - 37.709201, - 55.555679 - ], - [ - 37.70936, - 55.555679 - ], - [ - 37.70936, - 55.555589 - ], - [ - 37.709201, - 55.555589 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.709201, - 55.555679 - ], - [ - 37.709201, - 55.555769 - ], - [ - 37.70936, - 55.555769 - ], - [ - 37.70936, - 55.555679 - ], - [ - 37.709201, - 55.555679 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.709201, - 55.555769 - ], - [ - 37.709201, - 55.555859 - ], - [ - 37.70936, - 55.555859 - ], - [ - 37.70936, - 55.555769 - ], - [ - 37.709201, - 55.555769 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.709201, - 55.555859 - ], - [ - 37.709201, - 55.555949 - ], - [ - 37.70936, - 55.555949 - ], - [ - 37.70936, - 55.555859 - ], - [ - 37.709201, - 55.555859 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70936, - 55.554959 - ], - [ - 37.70936, - 55.555049 - ], - [ - 37.709519, - 55.555049 - ], - [ - 37.709519, - 55.554959 - ], - [ - 37.70936, - 55.554959 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70936, - 55.555049 - ], - [ - 37.70936, - 55.555139 - ], - [ - 37.709519, - 55.555139 - ], - [ - 37.709519, - 55.555049 - ], - [ - 37.70936, - 55.555049 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70936, - 55.555139 - ], - [ - 37.70936, - 55.555229 - ], - [ - 37.709519, - 55.555229 - ], - [ - 37.709519, - 55.555139 - ], - [ - 37.70936, - 55.555139 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70936, - 55.555229 - ], - [ - 37.70936, - 55.555319 - ], - [ - 37.709519, - 55.555319 - ], - [ - 37.709519, - 55.555229 - ], - [ - 37.70936, - 55.555229 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70936, - 55.555319 - ], - [ - 37.70936, - 55.555409 - ], - [ - 37.709519, - 55.555409 - ], - [ - 37.709519, - 55.555319 - ], - [ - 37.70936, - 55.555319 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70936, - 55.555409 - ], - [ - 37.70936, - 55.555499 - ], - [ - 37.709519, - 55.555499 - ], - [ - 37.709519, - 55.555409 - ], - [ - 37.70936, - 55.555409 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70936, - 55.555499 - ], - [ - 37.70936, - 55.555589 - ], - [ - 37.709519, - 55.555589 - ], - [ - 37.709519, - 55.555499 - ], - [ - 37.70936, - 55.555499 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70936, - 55.555589 - ], - [ - 37.70936, - 55.555679 - ], - [ - 37.709519, - 55.555679 - ], - [ - 37.709519, - 55.555589 - ], - [ - 37.70936, - 55.555589 - ] - ] - ] - } - }, - { - "type": "Feature", - "bbox": [ - 37.69975662231445, - 55.55151096909941, - 37.70958423614502, - 55.55615949302079 - ], - "properties": { - "stroke": "#F00", - "stroke-width": 6, - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.69975662231445, - 55.55151096909941 - ], - [ - 37.70958423614502, - 55.55151096909941 - ], - [ - 37.70958423614502, - 55.55615949302079 - ], - [ - 37.69975662231445, - 55.55615949302079 - ], - [ - 37.69975662231445, - 55.55151096909941 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "stroke": "#00F", - "stroke-width": 6, - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.70651578903198, - 55.55151096909941 - ], - [ - 37.70958423614502, - 55.555297797727704 - ], - [ - 37.709230184555054, - 55.555850013083 - ], - [ - 37.70885467529296, - 55.55615949302079 - ], - [ - 37.70013213157654, - 55.55376247689539 - ], - [ - 37.69975662231445, - 55.55329519343182 - ], - [ - 37.70651578903198, - 55.55151096909941 - ] - ] - ] - } - } - ] + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.699821, 55.553161], + [37.699821, 55.553251], + [37.69998, 55.553251], + [37.69998, 55.553161], + [37.699821, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.699821, 55.553251], + [37.699821, 55.553341], + [37.69998, 55.553341], + [37.69998, 55.553251], + [37.699821, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.699821, 55.553341], + [37.699821, 55.553431], + [37.69998, 55.553431], + [37.69998, 55.553341], + [37.699821, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.699821, 55.553431], + [37.699821, 55.55352], + [37.69998, 55.55352], + [37.69998, 55.553431], + [37.699821, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.699821, 55.55352], + [37.699821, 55.55361], + [37.69998, 55.55361], + [37.69998, 55.55352], + [37.699821, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.69998, 55.553161], + [37.69998, 55.553251], + [37.700139, 55.553251], + [37.700139, 55.553161], + [37.69998, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.69998, 55.553251], + [37.69998, 55.553341], + [37.700139, 55.553341], + [37.700139, 55.553251], + [37.69998, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.69998, 55.553341], + [37.69998, 55.553431], + [37.700139, 55.553431], + [37.700139, 55.553341], + [37.69998, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.69998, 55.553431], + [37.69998, 55.55352], + [37.700139, 55.55352], + [37.700139, 55.553431], + [37.69998, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.69998, 55.55352], + [37.69998, 55.55361], + [37.700139, 55.55361], + [37.700139, 55.55352], + [37.69998, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.69998, 55.55361], + [37.69998, 55.5537], + [37.700139, 55.5537], + [37.700139, 55.55361], + [37.69998, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.69998, 55.5537], + [37.69998, 55.55379], + [37.700139, 55.55379], + [37.700139, 55.5537], + [37.69998, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700139, 55.553071], + [37.700139, 55.553161], + [37.700298, 55.553161], + [37.700298, 55.553071], + [37.700139, 55.553071] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700139, 55.553161], + [37.700139, 55.553251], + [37.700298, 55.553251], + [37.700298, 55.553161], + [37.700139, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700139, 55.553251], + [37.700139, 55.553341], + [37.700298, 55.553341], + [37.700298, 55.553251], + [37.700139, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700139, 55.553341], + [37.700139, 55.553431], + [37.700298, 55.553431], + [37.700298, 55.553341], + [37.700139, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700139, 55.553431], + [37.700139, 55.55352], + [37.700298, 55.55352], + [37.700298, 55.553431], + [37.700139, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700139, 55.55352], + [37.700139, 55.55361], + [37.700298, 55.55361], + [37.700298, 55.55352], + [37.700139, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700139, 55.55361], + [37.700139, 55.5537], + [37.700298, 55.5537], + [37.700298, 55.55361], + [37.700139, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700139, 55.5537], + [37.700139, 55.55379], + [37.700298, 55.55379], + [37.700298, 55.5537], + [37.700139, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700139, 55.55379], + [37.700139, 55.55388], + [37.700298, 55.55388], + [37.700298, 55.55379], + [37.700139, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700298, 55.553071], + [37.700298, 55.553161], + [37.700457, 55.553161], + [37.700457, 55.553071], + [37.700298, 55.553071] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700298, 55.553161], + [37.700298, 55.553251], + [37.700457, 55.553251], + [37.700457, 55.553161], + [37.700298, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700298, 55.553251], + [37.700298, 55.553341], + [37.700457, 55.553341], + [37.700457, 55.553251], + [37.700298, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700298, 55.553341], + [37.700298, 55.553431], + [37.700457, 55.553431], + [37.700457, 55.553341], + [37.700298, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700298, 55.553431], + [37.700298, 55.55352], + [37.700457, 55.55352], + [37.700457, 55.553431], + [37.700298, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700298, 55.55352], + [37.700298, 55.55361], + [37.700457, 55.55361], + [37.700457, 55.55352], + [37.700298, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700298, 55.55361], + [37.700298, 55.5537], + [37.700457, 55.5537], + [37.700457, 55.55361], + [37.700298, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700298, 55.5537], + [37.700298, 55.55379], + [37.700457, 55.55379], + [37.700457, 55.5537], + [37.700298, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700298, 55.55379], + [37.700298, 55.55388], + [37.700457, 55.55388], + [37.700457, 55.55379], + [37.700298, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700457, 55.552981], + [37.700457, 55.553071], + [37.700616, 55.553071], + [37.700616, 55.552981], + [37.700457, 55.552981] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700457, 55.553071], + [37.700457, 55.553161], + [37.700616, 55.553161], + [37.700616, 55.553071], + [37.700457, 55.553071] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700457, 55.553161], + [37.700457, 55.553251], + [37.700616, 55.553251], + [37.700616, 55.553161], + [37.700457, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700457, 55.553251], + [37.700457, 55.553341], + [37.700616, 55.553341], + [37.700616, 55.553251], + [37.700457, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700457, 55.553341], + [37.700457, 55.553431], + [37.700616, 55.553431], + [37.700616, 55.553341], + [37.700457, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700457, 55.553431], + [37.700457, 55.55352], + [37.700616, 55.55352], + [37.700616, 55.553431], + [37.700457, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700457, 55.55352], + [37.700457, 55.55361], + [37.700616, 55.55361], + [37.700616, 55.55352], + [37.700457, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700457, 55.55361], + [37.700457, 55.5537], + [37.700616, 55.5537], + [37.700616, 55.55361], + [37.700457, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700457, 55.5537], + [37.700457, 55.55379], + [37.700616, 55.55379], + [37.700616, 55.5537], + [37.700457, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700457, 55.55379], + [37.700457, 55.55388], + [37.700616, 55.55388], + [37.700616, 55.55379], + [37.700457, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700457, 55.55388], + [37.700457, 55.55397], + [37.700616, 55.55397], + [37.700616, 55.55388], + [37.700457, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700616, 55.552981], + [37.700616, 55.553071], + [37.700775, 55.553071], + [37.700775, 55.552981], + [37.700616, 55.552981] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700616, 55.553071], + [37.700616, 55.553161], + [37.700775, 55.553161], + [37.700775, 55.553071], + [37.700616, 55.553071] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700616, 55.553161], + [37.700616, 55.553251], + [37.700775, 55.553251], + [37.700775, 55.553161], + [37.700616, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700616, 55.553251], + [37.700616, 55.553341], + [37.700775, 55.553341], + [37.700775, 55.553251], + [37.700616, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700616, 55.553341], + [37.700616, 55.553431], + [37.700775, 55.553431], + [37.700775, 55.553341], + [37.700616, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700616, 55.553431], + [37.700616, 55.55352], + [37.700775, 55.55352], + [37.700775, 55.553431], + [37.700616, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700616, 55.55352], + [37.700616, 55.55361], + [37.700775, 55.55361], + [37.700775, 55.55352], + [37.700616, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700616, 55.55361], + [37.700616, 55.5537], + [37.700775, 55.5537], + [37.700775, 55.55361], + [37.700616, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700616, 55.5537], + [37.700616, 55.55379], + [37.700775, 55.55379], + [37.700775, 55.5537], + [37.700616, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700616, 55.55379], + [37.700616, 55.55388], + [37.700775, 55.55388], + [37.700775, 55.55379], + [37.700616, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700616, 55.55388], + [37.700616, 55.55397], + [37.700775, 55.55397], + [37.700775, 55.55388], + [37.700616, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700775, 55.552981], + [37.700775, 55.553071], + [37.700934, 55.553071], + [37.700934, 55.552981], + [37.700775, 55.552981] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700775, 55.553071], + [37.700775, 55.553161], + [37.700934, 55.553161], + [37.700934, 55.553071], + [37.700775, 55.553071] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700775, 55.553161], + [37.700775, 55.553251], + [37.700934, 55.553251], + [37.700934, 55.553161], + [37.700775, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700775, 55.553251], + [37.700775, 55.553341], + [37.700934, 55.553341], + [37.700934, 55.553251], + [37.700775, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700775, 55.553341], + [37.700775, 55.553431], + [37.700934, 55.553431], + [37.700934, 55.553341], + [37.700775, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700775, 55.553431], + [37.700775, 55.55352], + [37.700934, 55.55352], + [37.700934, 55.553431], + [37.700775, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700775, 55.55352], + [37.700775, 55.55361], + [37.700934, 55.55361], + [37.700934, 55.55352], + [37.700775, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700775, 55.55361], + [37.700775, 55.5537], + [37.700934, 55.5537], + [37.700934, 55.55361], + [37.700775, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700775, 55.5537], + [37.700775, 55.55379], + [37.700934, 55.55379], + [37.700934, 55.5537], + [37.700775, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700775, 55.55379], + [37.700775, 55.55388], + [37.700934, 55.55388], + [37.700934, 55.55379], + [37.700775, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700775, 55.55388], + [37.700775, 55.55397], + [37.700934, 55.55397], + [37.700934, 55.55388], + [37.700775, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700775, 55.55397], + [37.700775, 55.55406], + [37.700934, 55.55406], + [37.700934, 55.55397], + [37.700775, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700934, 55.552891], + [37.700934, 55.552981], + [37.701093, 55.552981], + [37.701093, 55.552891], + [37.700934, 55.552891] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700934, 55.552981], + [37.700934, 55.553071], + [37.701093, 55.553071], + [37.701093, 55.552981], + [37.700934, 55.552981] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700934, 55.553071], + [37.700934, 55.553161], + [37.701093, 55.553161], + [37.701093, 55.553071], + [37.700934, 55.553071] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700934, 55.553161], + [37.700934, 55.553251], + [37.701093, 55.553251], + [37.701093, 55.553161], + [37.700934, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700934, 55.553251], + [37.700934, 55.553341], + [37.701093, 55.553341], + [37.701093, 55.553251], + [37.700934, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700934, 55.553341], + [37.700934, 55.553431], + [37.701093, 55.553431], + [37.701093, 55.553341], + [37.700934, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700934, 55.553431], + [37.700934, 55.55352], + [37.701093, 55.55352], + [37.701093, 55.553431], + [37.700934, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700934, 55.55352], + [37.700934, 55.55361], + [37.701093, 55.55361], + [37.701093, 55.55352], + [37.700934, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700934, 55.55361], + [37.700934, 55.5537], + [37.701093, 55.5537], + [37.701093, 55.55361], + [37.700934, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700934, 55.5537], + [37.700934, 55.55379], + [37.701093, 55.55379], + [37.701093, 55.5537], + [37.700934, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700934, 55.55379], + [37.700934, 55.55388], + [37.701093, 55.55388], + [37.701093, 55.55379], + [37.700934, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700934, 55.55388], + [37.700934, 55.55397], + [37.701093, 55.55397], + [37.701093, 55.55388], + [37.700934, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.700934, 55.55397], + [37.700934, 55.55406], + [37.701093, 55.55406], + [37.701093, 55.55397], + [37.700934, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701093, 55.552891], + [37.701093, 55.552981], + [37.701252, 55.552981], + [37.701252, 55.552891], + [37.701093, 55.552891] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701093, 55.552981], + [37.701093, 55.553071], + [37.701252, 55.553071], + [37.701252, 55.552981], + [37.701093, 55.552981] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701093, 55.553071], + [37.701093, 55.553161], + [37.701252, 55.553161], + [37.701252, 55.553071], + [37.701093, 55.553071] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701093, 55.553161], + [37.701093, 55.553251], + [37.701252, 55.553251], + [37.701252, 55.553161], + [37.701093, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701093, 55.553251], + [37.701093, 55.553341], + [37.701252, 55.553341], + [37.701252, 55.553251], + [37.701093, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701093, 55.553341], + [37.701093, 55.553431], + [37.701252, 55.553431], + [37.701252, 55.553341], + [37.701093, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701093, 55.553431], + [37.701093, 55.55352], + [37.701252, 55.55352], + [37.701252, 55.553431], + [37.701093, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701093, 55.55352], + [37.701093, 55.55361], + [37.701252, 55.55361], + [37.701252, 55.55352], + [37.701093, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701093, 55.55361], + [37.701093, 55.5537], + [37.701252, 55.5537], + [37.701252, 55.55361], + [37.701093, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701093, 55.5537], + [37.701093, 55.55379], + [37.701252, 55.55379], + [37.701252, 55.5537], + [37.701093, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701093, 55.55379], + [37.701093, 55.55388], + [37.701252, 55.55388], + [37.701252, 55.55379], + [37.701093, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701093, 55.55388], + [37.701093, 55.55397], + [37.701252, 55.55397], + [37.701252, 55.55388], + [37.701093, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701093, 55.55397], + [37.701093, 55.55406], + [37.701252, 55.55406], + [37.701252, 55.55397], + [37.701093, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701093, 55.55406], + [37.701093, 55.55415], + [37.701252, 55.55415], + [37.701252, 55.55406], + [37.701093, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701252, 55.552801], + [37.701252, 55.552891], + [37.701411, 55.552891], + [37.701411, 55.552801], + [37.701252, 55.552801] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701252, 55.552891], + [37.701252, 55.552981], + [37.701411, 55.552981], + [37.701411, 55.552891], + [37.701252, 55.552891] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701252, 55.552981], + [37.701252, 55.553071], + [37.701411, 55.553071], + [37.701411, 55.552981], + [37.701252, 55.552981] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701252, 55.553071], + [37.701252, 55.553161], + [37.701411, 55.553161], + [37.701411, 55.553071], + [37.701252, 55.553071] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701252, 55.553161], + [37.701252, 55.553251], + [37.701411, 55.553251], + [37.701411, 55.553161], + [37.701252, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701252, 55.553251], + [37.701252, 55.553341], + [37.701411, 55.553341], + [37.701411, 55.553251], + [37.701252, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701252, 55.553341], + [37.701252, 55.553431], + [37.701411, 55.553431], + [37.701411, 55.553341], + [37.701252, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701252, 55.553431], + [37.701252, 55.55352], + [37.701411, 55.55352], + [37.701411, 55.553431], + [37.701252, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701252, 55.55352], + [37.701252, 55.55361], + [37.701411, 55.55361], + [37.701411, 55.55352], + [37.701252, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701252, 55.55361], + [37.701252, 55.5537], + [37.701411, 55.5537], + [37.701411, 55.55361], + [37.701252, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701252, 55.5537], + [37.701252, 55.55379], + [37.701411, 55.55379], + [37.701411, 55.5537], + [37.701252, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701252, 55.55379], + [37.701252, 55.55388], + [37.701411, 55.55388], + [37.701411, 55.55379], + [37.701252, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701252, 55.55388], + [37.701252, 55.55397], + [37.701411, 55.55397], + [37.701411, 55.55388], + [37.701252, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701252, 55.55397], + [37.701252, 55.55406], + [37.701411, 55.55406], + [37.701411, 55.55397], + [37.701252, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701252, 55.55406], + [37.701252, 55.55415], + [37.701411, 55.55415], + [37.701411, 55.55406], + [37.701252, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701411, 55.552801], + [37.701411, 55.552891], + [37.70157, 55.552891], + [37.70157, 55.552801], + [37.701411, 55.552801] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701411, 55.552891], + [37.701411, 55.552981], + [37.70157, 55.552981], + [37.70157, 55.552891], + [37.701411, 55.552891] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701411, 55.552981], + [37.701411, 55.553071], + [37.70157, 55.553071], + [37.70157, 55.552981], + [37.701411, 55.552981] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701411, 55.553071], + [37.701411, 55.553161], + [37.70157, 55.553161], + [37.70157, 55.553071], + [37.701411, 55.553071] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701411, 55.553161], + [37.701411, 55.553251], + [37.70157, 55.553251], + [37.70157, 55.553161], + [37.701411, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701411, 55.553251], + [37.701411, 55.553341], + [37.70157, 55.553341], + [37.70157, 55.553251], + [37.701411, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701411, 55.553341], + [37.701411, 55.553431], + [37.70157, 55.553431], + [37.70157, 55.553341], + [37.701411, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701411, 55.553431], + [37.701411, 55.55352], + [37.70157, 55.55352], + [37.70157, 55.553431], + [37.701411, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701411, 55.55352], + [37.701411, 55.55361], + [37.70157, 55.55361], + [37.70157, 55.55352], + [37.701411, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701411, 55.55361], + [37.701411, 55.5537], + [37.70157, 55.5537], + [37.70157, 55.55361], + [37.701411, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701411, 55.5537], + [37.701411, 55.55379], + [37.70157, 55.55379], + [37.70157, 55.5537], + [37.701411, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701411, 55.55379], + [37.701411, 55.55388], + [37.70157, 55.55388], + [37.70157, 55.55379], + [37.701411, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701411, 55.55388], + [37.701411, 55.55397], + [37.70157, 55.55397], + [37.70157, 55.55388], + [37.701411, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701411, 55.55397], + [37.701411, 55.55406], + [37.70157, 55.55406], + [37.70157, 55.55397], + [37.701411, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701411, 55.55406], + [37.701411, 55.55415], + [37.70157, 55.55415], + [37.70157, 55.55406], + [37.701411, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701411, 55.55415], + [37.701411, 55.55424], + [37.70157, 55.55424], + [37.70157, 55.55415], + [37.701411, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70157, 55.552711], + [37.70157, 55.552801], + [37.701729, 55.552801], + [37.701729, 55.552711], + [37.70157, 55.552711] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70157, 55.552801], + [37.70157, 55.552891], + [37.701729, 55.552891], + [37.701729, 55.552801], + [37.70157, 55.552801] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70157, 55.552891], + [37.70157, 55.552981], + [37.701729, 55.552981], + [37.701729, 55.552891], + [37.70157, 55.552891] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70157, 55.552981], + [37.70157, 55.553071], + [37.701729, 55.553071], + [37.701729, 55.552981], + [37.70157, 55.552981] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70157, 55.553071], + [37.70157, 55.553161], + [37.701729, 55.553161], + [37.701729, 55.553071], + [37.70157, 55.553071] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70157, 55.553161], + [37.70157, 55.553251], + [37.701729, 55.553251], + [37.701729, 55.553161], + [37.70157, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70157, 55.553251], + [37.70157, 55.553341], + [37.701729, 55.553341], + [37.701729, 55.553251], + [37.70157, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70157, 55.553341], + [37.70157, 55.553431], + [37.701729, 55.553431], + [37.701729, 55.553341], + [37.70157, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70157, 55.553431], + [37.70157, 55.55352], + [37.701729, 55.55352], + [37.701729, 55.553431], + [37.70157, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70157, 55.55352], + [37.70157, 55.55361], + [37.701729, 55.55361], + [37.701729, 55.55352], + [37.70157, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70157, 55.55361], + [37.70157, 55.5537], + [37.701729, 55.5537], + [37.701729, 55.55361], + [37.70157, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70157, 55.5537], + [37.70157, 55.55379], + [37.701729, 55.55379], + [37.701729, 55.5537], + [37.70157, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70157, 55.55379], + [37.70157, 55.55388], + [37.701729, 55.55388], + [37.701729, 55.55379], + [37.70157, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70157, 55.55388], + [37.70157, 55.55397], + [37.701729, 55.55397], + [37.701729, 55.55388], + [37.70157, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70157, 55.55397], + [37.70157, 55.55406], + [37.701729, 55.55406], + [37.701729, 55.55397], + [37.70157, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70157, 55.55406], + [37.70157, 55.55415], + [37.701729, 55.55415], + [37.701729, 55.55406], + [37.70157, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70157, 55.55415], + [37.70157, 55.55424], + [37.701729, 55.55424], + [37.701729, 55.55415], + [37.70157, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701729, 55.552711], + [37.701729, 55.552801], + [37.701888, 55.552801], + [37.701888, 55.552711], + [37.701729, 55.552711] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701729, 55.552801], + [37.701729, 55.552891], + [37.701888, 55.552891], + [37.701888, 55.552801], + [37.701729, 55.552801] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701729, 55.552891], + [37.701729, 55.552981], + [37.701888, 55.552981], + [37.701888, 55.552891], + [37.701729, 55.552891] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701729, 55.552981], + [37.701729, 55.553071], + [37.701888, 55.553071], + [37.701888, 55.552981], + [37.701729, 55.552981] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701729, 55.553071], + [37.701729, 55.553161], + [37.701888, 55.553161], + [37.701888, 55.553071], + [37.701729, 55.553071] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701729, 55.553161], + [37.701729, 55.553251], + [37.701888, 55.553251], + [37.701888, 55.553161], + [37.701729, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701729, 55.553251], + [37.701729, 55.553341], + [37.701888, 55.553341], + [37.701888, 55.553251], + [37.701729, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701729, 55.553341], + [37.701729, 55.553431], + [37.701888, 55.553431], + [37.701888, 55.553341], + [37.701729, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701729, 55.553431], + [37.701729, 55.55352], + [37.701888, 55.55352], + [37.701888, 55.553431], + [37.701729, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701729, 55.55352], + [37.701729, 55.55361], + [37.701888, 55.55361], + [37.701888, 55.55352], + [37.701729, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701729, 55.55361], + [37.701729, 55.5537], + [37.701888, 55.5537], + [37.701888, 55.55361], + [37.701729, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701729, 55.5537], + [37.701729, 55.55379], + [37.701888, 55.55379], + [37.701888, 55.5537], + [37.701729, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701729, 55.55379], + [37.701729, 55.55388], + [37.701888, 55.55388], + [37.701888, 55.55379], + [37.701729, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701729, 55.55388], + [37.701729, 55.55397], + [37.701888, 55.55397], + [37.701888, 55.55388], + [37.701729, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701729, 55.55397], + [37.701729, 55.55406], + [37.701888, 55.55406], + [37.701888, 55.55397], + [37.701729, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701729, 55.55406], + [37.701729, 55.55415], + [37.701888, 55.55415], + [37.701888, 55.55406], + [37.701729, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701729, 55.55415], + [37.701729, 55.55424], + [37.701888, 55.55424], + [37.701888, 55.55415], + [37.701729, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701729, 55.55424], + [37.701729, 55.55433], + [37.701888, 55.55433], + [37.701888, 55.55424], + [37.701729, 55.55424] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701888, 55.552621], + [37.701888, 55.552711], + [37.702047, 55.552711], + [37.702047, 55.552621], + [37.701888, 55.552621] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701888, 55.552711], + [37.701888, 55.552801], + [37.702047, 55.552801], + [37.702047, 55.552711], + [37.701888, 55.552711] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701888, 55.552801], + [37.701888, 55.552891], + [37.702047, 55.552891], + [37.702047, 55.552801], + [37.701888, 55.552801] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701888, 55.552891], + [37.701888, 55.552981], + [37.702047, 55.552981], + [37.702047, 55.552891], + [37.701888, 55.552891] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701888, 55.552981], + [37.701888, 55.553071], + [37.702047, 55.553071], + [37.702047, 55.552981], + [37.701888, 55.552981] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701888, 55.553071], + [37.701888, 55.553161], + [37.702047, 55.553161], + [37.702047, 55.553071], + [37.701888, 55.553071] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701888, 55.553161], + [37.701888, 55.553251], + [37.702047, 55.553251], + [37.702047, 55.553161], + [37.701888, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701888, 55.553251], + [37.701888, 55.553341], + [37.702047, 55.553341], + [37.702047, 55.553251], + [37.701888, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701888, 55.553341], + [37.701888, 55.553431], + [37.702047, 55.553431], + [37.702047, 55.553341], + [37.701888, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701888, 55.553431], + [37.701888, 55.55352], + [37.702047, 55.55352], + [37.702047, 55.553431], + [37.701888, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701888, 55.55352], + [37.701888, 55.55361], + [37.702047, 55.55361], + [37.702047, 55.55352], + [37.701888, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701888, 55.55361], + [37.701888, 55.5537], + [37.702047, 55.5537], + [37.702047, 55.55361], + [37.701888, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701888, 55.5537], + [37.701888, 55.55379], + [37.702047, 55.55379], + [37.702047, 55.5537], + [37.701888, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701888, 55.55379], + [37.701888, 55.55388], + [37.702047, 55.55388], + [37.702047, 55.55379], + [37.701888, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701888, 55.55388], + [37.701888, 55.55397], + [37.702047, 55.55397], + [37.702047, 55.55388], + [37.701888, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701888, 55.55397], + [37.701888, 55.55406], + [37.702047, 55.55406], + [37.702047, 55.55397], + [37.701888, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701888, 55.55406], + [37.701888, 55.55415], + [37.702047, 55.55415], + [37.702047, 55.55406], + [37.701888, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701888, 55.55415], + [37.701888, 55.55424], + [37.702047, 55.55424], + [37.702047, 55.55415], + [37.701888, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.701888, 55.55424], + [37.701888, 55.55433], + [37.702047, 55.55433], + [37.702047, 55.55424], + [37.701888, 55.55424] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702047, 55.552621], + [37.702047, 55.552711], + [37.702206, 55.552711], + [37.702206, 55.552621], + [37.702047, 55.552621] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702047, 55.552711], + [37.702047, 55.552801], + [37.702206, 55.552801], + [37.702206, 55.552711], + [37.702047, 55.552711] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702047, 55.552801], + [37.702047, 55.552891], + [37.702206, 55.552891], + [37.702206, 55.552801], + [37.702047, 55.552801] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702047, 55.552891], + [37.702047, 55.552981], + [37.702206, 55.552981], + [37.702206, 55.552891], + [37.702047, 55.552891] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702047, 55.552981], + [37.702047, 55.553071], + [37.702206, 55.553071], + [37.702206, 55.552981], + [37.702047, 55.552981] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702047, 55.553071], + [37.702047, 55.553161], + [37.702206, 55.553161], + [37.702206, 55.553071], + [37.702047, 55.553071] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702047, 55.553161], + [37.702047, 55.553251], + [37.702206, 55.553251], + [37.702206, 55.553161], + [37.702047, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702047, 55.553251], + [37.702047, 55.553341], + [37.702206, 55.553341], + [37.702206, 55.553251], + [37.702047, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702047, 55.553341], + [37.702047, 55.553431], + [37.702206, 55.553431], + [37.702206, 55.553341], + [37.702047, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702047, 55.553431], + [37.702047, 55.55352], + [37.702206, 55.55352], + [37.702206, 55.553431], + [37.702047, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702047, 55.55352], + [37.702047, 55.55361], + [37.702206, 55.55361], + [37.702206, 55.55352], + [37.702047, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702047, 55.55361], + [37.702047, 55.5537], + [37.702206, 55.5537], + [37.702206, 55.55361], + [37.702047, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702047, 55.5537], + [37.702047, 55.55379], + [37.702206, 55.55379], + [37.702206, 55.5537], + [37.702047, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702047, 55.55379], + [37.702047, 55.55388], + [37.702206, 55.55388], + [37.702206, 55.55379], + [37.702047, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702047, 55.55388], + [37.702047, 55.55397], + [37.702206, 55.55397], + [37.702206, 55.55388], + [37.702047, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702047, 55.55397], + [37.702047, 55.55406], + [37.702206, 55.55406], + [37.702206, 55.55397], + [37.702047, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702047, 55.55406], + [37.702047, 55.55415], + [37.702206, 55.55415], + [37.702206, 55.55406], + [37.702047, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702047, 55.55415], + [37.702047, 55.55424], + [37.702206, 55.55424], + [37.702206, 55.55415], + [37.702047, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702047, 55.55424], + [37.702047, 55.55433], + [37.702206, 55.55433], + [37.702206, 55.55424], + [37.702047, 55.55424] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702047, 55.55433], + [37.702047, 55.55442], + [37.702206, 55.55442], + [37.702206, 55.55433], + [37.702047, 55.55433] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702206, 55.552531], + [37.702206, 55.552621], + [37.702365, 55.552621], + [37.702365, 55.552531], + [37.702206, 55.552531] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702206, 55.552621], + [37.702206, 55.552711], + [37.702365, 55.552711], + [37.702365, 55.552621], + [37.702206, 55.552621] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702206, 55.552711], + [37.702206, 55.552801], + [37.702365, 55.552801], + [37.702365, 55.552711], + [37.702206, 55.552711] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702206, 55.552801], + [37.702206, 55.552891], + [37.702365, 55.552891], + [37.702365, 55.552801], + [37.702206, 55.552801] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702206, 55.552891], + [37.702206, 55.552981], + [37.702365, 55.552981], + [37.702365, 55.552891], + [37.702206, 55.552891] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702206, 55.552981], + [37.702206, 55.553071], + [37.702365, 55.553071], + [37.702365, 55.552981], + [37.702206, 55.552981] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702206, 55.553071], + [37.702206, 55.553161], + [37.702365, 55.553161], + [37.702365, 55.553071], + [37.702206, 55.553071] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702206, 55.553161], + [37.702206, 55.553251], + [37.702365, 55.553251], + [37.702365, 55.553161], + [37.702206, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702206, 55.553251], + [37.702206, 55.553341], + [37.702365, 55.553341], + [37.702365, 55.553251], + [37.702206, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702206, 55.553341], + [37.702206, 55.553431], + [37.702365, 55.553431], + [37.702365, 55.553341], + [37.702206, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702206, 55.553431], + [37.702206, 55.55352], + [37.702365, 55.55352], + [37.702365, 55.553431], + [37.702206, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702206, 55.55352], + [37.702206, 55.55361], + [37.702365, 55.55361], + [37.702365, 55.55352], + [37.702206, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702206, 55.55361], + [37.702206, 55.5537], + [37.702365, 55.5537], + [37.702365, 55.55361], + [37.702206, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702206, 55.5537], + [37.702206, 55.55379], + [37.702365, 55.55379], + [37.702365, 55.5537], + [37.702206, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702206, 55.55379], + [37.702206, 55.55388], + [37.702365, 55.55388], + [37.702365, 55.55379], + [37.702206, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702206, 55.55388], + [37.702206, 55.55397], + [37.702365, 55.55397], + [37.702365, 55.55388], + [37.702206, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702206, 55.55397], + [37.702206, 55.55406], + [37.702365, 55.55406], + [37.702365, 55.55397], + [37.702206, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702206, 55.55406], + [37.702206, 55.55415], + [37.702365, 55.55415], + [37.702365, 55.55406], + [37.702206, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702206, 55.55415], + [37.702206, 55.55424], + [37.702365, 55.55424], + [37.702365, 55.55415], + [37.702206, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702206, 55.55424], + [37.702206, 55.55433], + [37.702365, 55.55433], + [37.702365, 55.55424], + [37.702206, 55.55424] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702206, 55.55433], + [37.702206, 55.55442], + [37.702365, 55.55442], + [37.702365, 55.55433], + [37.702206, 55.55433] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702365, 55.552531], + [37.702365, 55.552621], + [37.702524, 55.552621], + [37.702524, 55.552531], + [37.702365, 55.552531] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702365, 55.552621], + [37.702365, 55.552711], + [37.702524, 55.552711], + [37.702524, 55.552621], + [37.702365, 55.552621] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702365, 55.552711], + [37.702365, 55.552801], + [37.702524, 55.552801], + [37.702524, 55.552711], + [37.702365, 55.552711] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702365, 55.552801], + [37.702365, 55.552891], + [37.702524, 55.552891], + [37.702524, 55.552801], + [37.702365, 55.552801] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702365, 55.552891], + [37.702365, 55.552981], + [37.702524, 55.552981], + [37.702524, 55.552891], + [37.702365, 55.552891] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702365, 55.552981], + [37.702365, 55.553071], + [37.702524, 55.553071], + [37.702524, 55.552981], + [37.702365, 55.552981] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702365, 55.553071], + [37.702365, 55.553161], + [37.702524, 55.553161], + [37.702524, 55.553071], + [37.702365, 55.553071] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702365, 55.553161], + [37.702365, 55.553251], + [37.702524, 55.553251], + [37.702524, 55.553161], + [37.702365, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702365, 55.553251], + [37.702365, 55.553341], + [37.702524, 55.553341], + [37.702524, 55.553251], + [37.702365, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702365, 55.553341], + [37.702365, 55.553431], + [37.702524, 55.553431], + [37.702524, 55.553341], + [37.702365, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702365, 55.553431], + [37.702365, 55.55352], + [37.702524, 55.55352], + [37.702524, 55.553431], + [37.702365, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702365, 55.55352], + [37.702365, 55.55361], + [37.702524, 55.55361], + [37.702524, 55.55352], + [37.702365, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702365, 55.55361], + [37.702365, 55.5537], + [37.702524, 55.5537], + [37.702524, 55.55361], + [37.702365, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702365, 55.5537], + [37.702365, 55.55379], + [37.702524, 55.55379], + [37.702524, 55.5537], + [37.702365, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702365, 55.55379], + [37.702365, 55.55388], + [37.702524, 55.55388], + [37.702524, 55.55379], + [37.702365, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702365, 55.55388], + [37.702365, 55.55397], + [37.702524, 55.55397], + [37.702524, 55.55388], + [37.702365, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702365, 55.55397], + [37.702365, 55.55406], + [37.702524, 55.55406], + [37.702524, 55.55397], + [37.702365, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702365, 55.55406], + [37.702365, 55.55415], + [37.702524, 55.55415], + [37.702524, 55.55406], + [37.702365, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702365, 55.55415], + [37.702365, 55.55424], + [37.702524, 55.55424], + [37.702524, 55.55415], + [37.702365, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702365, 55.55424], + [37.702365, 55.55433], + [37.702524, 55.55433], + [37.702524, 55.55424], + [37.702365, 55.55424] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702365, 55.55433], + [37.702365, 55.55442], + [37.702524, 55.55442], + [37.702524, 55.55433], + [37.702365, 55.55433] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702365, 55.55442], + [37.702365, 55.55451], + [37.702524, 55.55451], + [37.702524, 55.55442], + [37.702365, 55.55442] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702524, 55.552441], + [37.702524, 55.552531], + [37.702683, 55.552531], + [37.702683, 55.552441], + [37.702524, 55.552441] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702524, 55.552531], + [37.702524, 55.552621], + [37.702683, 55.552621], + [37.702683, 55.552531], + [37.702524, 55.552531] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702524, 55.552621], + [37.702524, 55.552711], + [37.702683, 55.552711], + [37.702683, 55.552621], + [37.702524, 55.552621] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702524, 55.552711], + [37.702524, 55.552801], + [37.702683, 55.552801], + [37.702683, 55.552711], + [37.702524, 55.552711] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702524, 55.552801], + [37.702524, 55.552891], + [37.702683, 55.552891], + [37.702683, 55.552801], + [37.702524, 55.552801] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702524, 55.552891], + [37.702524, 55.552981], + [37.702683, 55.552981], + [37.702683, 55.552891], + [37.702524, 55.552891] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702524, 55.552981], + [37.702524, 55.553071], + [37.702683, 55.553071], + [37.702683, 55.552981], + [37.702524, 55.552981] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702524, 55.553071], + [37.702524, 55.553161], + [37.702683, 55.553161], + [37.702683, 55.553071], + [37.702524, 55.553071] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702524, 55.553161], + [37.702524, 55.553251], + [37.702683, 55.553251], + [37.702683, 55.553161], + [37.702524, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702524, 55.553251], + [37.702524, 55.553341], + [37.702683, 55.553341], + [37.702683, 55.553251], + [37.702524, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702524, 55.553341], + [37.702524, 55.553431], + [37.702683, 55.553431], + [37.702683, 55.553341], + [37.702524, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702524, 55.553431], + [37.702524, 55.55352], + [37.702683, 55.55352], + [37.702683, 55.553431], + [37.702524, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702524, 55.55352], + [37.702524, 55.55361], + [37.702683, 55.55361], + [37.702683, 55.55352], + [37.702524, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702524, 55.55361], + [37.702524, 55.5537], + [37.702683, 55.5537], + [37.702683, 55.55361], + [37.702524, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702524, 55.5537], + [37.702524, 55.55379], + [37.702683, 55.55379], + [37.702683, 55.5537], + [37.702524, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702524, 55.55379], + [37.702524, 55.55388], + [37.702683, 55.55388], + [37.702683, 55.55379], + [37.702524, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702524, 55.55388], + [37.702524, 55.55397], + [37.702683, 55.55397], + [37.702683, 55.55388], + [37.702524, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702524, 55.55397], + [37.702524, 55.55406], + [37.702683, 55.55406], + [37.702683, 55.55397], + [37.702524, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702524, 55.55406], + [37.702524, 55.55415], + [37.702683, 55.55415], + [37.702683, 55.55406], + [37.702524, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702524, 55.55415], + [37.702524, 55.55424], + [37.702683, 55.55424], + [37.702683, 55.55415], + [37.702524, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702524, 55.55424], + [37.702524, 55.55433], + [37.702683, 55.55433], + [37.702683, 55.55424], + [37.702524, 55.55424] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702524, 55.55433], + [37.702524, 55.55442], + [37.702683, 55.55442], + [37.702683, 55.55433], + [37.702524, 55.55433] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702524, 55.55442], + [37.702524, 55.55451], + [37.702683, 55.55451], + [37.702683, 55.55442], + [37.702524, 55.55442] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702683, 55.552441], + [37.702683, 55.552531], + [37.702842, 55.552531], + [37.702842, 55.552441], + [37.702683, 55.552441] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702683, 55.552531], + [37.702683, 55.552621], + [37.702842, 55.552621], + [37.702842, 55.552531], + [37.702683, 55.552531] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702683, 55.552621], + [37.702683, 55.552711], + [37.702842, 55.552711], + [37.702842, 55.552621], + [37.702683, 55.552621] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702683, 55.552711], + [37.702683, 55.552801], + [37.702842, 55.552801], + [37.702842, 55.552711], + [37.702683, 55.552711] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702683, 55.552801], + [37.702683, 55.552891], + [37.702842, 55.552891], + [37.702842, 55.552801], + [37.702683, 55.552801] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702683, 55.552891], + [37.702683, 55.552981], + [37.702842, 55.552981], + [37.702842, 55.552891], + [37.702683, 55.552891] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702683, 55.552981], + [37.702683, 55.553071], + [37.702842, 55.553071], + [37.702842, 55.552981], + [37.702683, 55.552981] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702683, 55.553071], + [37.702683, 55.553161], + [37.702842, 55.553161], + [37.702842, 55.553071], + [37.702683, 55.553071] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702683, 55.553161], + [37.702683, 55.553251], + [37.702842, 55.553251], + [37.702842, 55.553161], + [37.702683, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702683, 55.553251], + [37.702683, 55.553341], + [37.702842, 55.553341], + [37.702842, 55.553251], + [37.702683, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702683, 55.553341], + [37.702683, 55.553431], + [37.702842, 55.553431], + [37.702842, 55.553341], + [37.702683, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702683, 55.553431], + [37.702683, 55.55352], + [37.702842, 55.55352], + [37.702842, 55.553431], + [37.702683, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702683, 55.55352], + [37.702683, 55.55361], + [37.702842, 55.55361], + [37.702842, 55.55352], + [37.702683, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702683, 55.55361], + [37.702683, 55.5537], + [37.702842, 55.5537], + [37.702842, 55.55361], + [37.702683, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702683, 55.5537], + [37.702683, 55.55379], + [37.702842, 55.55379], + [37.702842, 55.5537], + [37.702683, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702683, 55.55379], + [37.702683, 55.55388], + [37.702842, 55.55388], + [37.702842, 55.55379], + [37.702683, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702683, 55.55388], + [37.702683, 55.55397], + [37.702842, 55.55397], + [37.702842, 55.55388], + [37.702683, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702683, 55.55397], + [37.702683, 55.55406], + [37.702842, 55.55406], + [37.702842, 55.55397], + [37.702683, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702683, 55.55406], + [37.702683, 55.55415], + [37.702842, 55.55415], + [37.702842, 55.55406], + [37.702683, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702683, 55.55415], + [37.702683, 55.55424], + [37.702842, 55.55424], + [37.702842, 55.55415], + [37.702683, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702683, 55.55424], + [37.702683, 55.55433], + [37.702842, 55.55433], + [37.702842, 55.55424], + [37.702683, 55.55424] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702683, 55.55433], + [37.702683, 55.55442], + [37.702842, 55.55442], + [37.702842, 55.55433], + [37.702683, 55.55433] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702683, 55.55442], + [37.702683, 55.55451], + [37.702842, 55.55451], + [37.702842, 55.55442], + [37.702683, 55.55442] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702842, 55.552351], + [37.702842, 55.552441], + [37.703001, 55.552441], + [37.703001, 55.552351], + [37.702842, 55.552351] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702842, 55.552441], + [37.702842, 55.552531], + [37.703001, 55.552531], + [37.703001, 55.552441], + [37.702842, 55.552441] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702842, 55.552531], + [37.702842, 55.552621], + [37.703001, 55.552621], + [37.703001, 55.552531], + [37.702842, 55.552531] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702842, 55.552621], + [37.702842, 55.552711], + [37.703001, 55.552711], + [37.703001, 55.552621], + [37.702842, 55.552621] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702842, 55.552711], + [37.702842, 55.552801], + [37.703001, 55.552801], + [37.703001, 55.552711], + [37.702842, 55.552711] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702842, 55.552801], + [37.702842, 55.552891], + [37.703001, 55.552891], + [37.703001, 55.552801], + [37.702842, 55.552801] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702842, 55.552891], + [37.702842, 55.552981], + [37.703001, 55.552981], + [37.703001, 55.552891], + [37.702842, 55.552891] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702842, 55.552981], + [37.702842, 55.553071], + [37.703001, 55.553071], + [37.703001, 55.552981], + [37.702842, 55.552981] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702842, 55.553071], + [37.702842, 55.553161], + [37.703001, 55.553161], + [37.703001, 55.553071], + [37.702842, 55.553071] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702842, 55.553161], + [37.702842, 55.553251], + [37.703001, 55.553251], + [37.703001, 55.553161], + [37.702842, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702842, 55.553251], + [37.702842, 55.553341], + [37.703001, 55.553341], + [37.703001, 55.553251], + [37.702842, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702842, 55.553341], + [37.702842, 55.553431], + [37.703001, 55.553431], + [37.703001, 55.553341], + [37.702842, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702842, 55.553431], + [37.702842, 55.55352], + [37.703001, 55.55352], + [37.703001, 55.553431], + [37.702842, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702842, 55.55352], + [37.702842, 55.55361], + [37.703001, 55.55361], + [37.703001, 55.55352], + [37.702842, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702842, 55.55361], + [37.702842, 55.5537], + [37.703001, 55.5537], + [37.703001, 55.55361], + [37.702842, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702842, 55.5537], + [37.702842, 55.55379], + [37.703001, 55.55379], + [37.703001, 55.5537], + [37.702842, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702842, 55.55379], + [37.702842, 55.55388], + [37.703001, 55.55388], + [37.703001, 55.55379], + [37.702842, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702842, 55.55388], + [37.702842, 55.55397], + [37.703001, 55.55397], + [37.703001, 55.55388], + [37.702842, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702842, 55.55397], + [37.702842, 55.55406], + [37.703001, 55.55406], + [37.703001, 55.55397], + [37.702842, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702842, 55.55406], + [37.702842, 55.55415], + [37.703001, 55.55415], + [37.703001, 55.55406], + [37.702842, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702842, 55.55415], + [37.702842, 55.55424], + [37.703001, 55.55424], + [37.703001, 55.55415], + [37.702842, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702842, 55.55424], + [37.702842, 55.55433], + [37.703001, 55.55433], + [37.703001, 55.55424], + [37.702842, 55.55424] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702842, 55.55433], + [37.702842, 55.55442], + [37.703001, 55.55442], + [37.703001, 55.55433], + [37.702842, 55.55433] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702842, 55.55442], + [37.702842, 55.55451], + [37.703001, 55.55451], + [37.703001, 55.55442], + [37.702842, 55.55442] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702842, 55.55451], + [37.702842, 55.5546], + [37.703001, 55.5546], + [37.703001, 55.55451], + [37.702842, 55.55451] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703001, 55.552351], + [37.703001, 55.552441], + [37.70316, 55.552441], + [37.70316, 55.552351], + [37.703001, 55.552351] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703001, 55.552441], + [37.703001, 55.552531], + [37.70316, 55.552531], + [37.70316, 55.552441], + [37.703001, 55.552441] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703001, 55.552531], + [37.703001, 55.552621], + [37.70316, 55.552621], + [37.70316, 55.552531], + [37.703001, 55.552531] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703001, 55.552621], + [37.703001, 55.552711], + [37.70316, 55.552711], + [37.70316, 55.552621], + [37.703001, 55.552621] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703001, 55.552711], + [37.703001, 55.552801], + [37.70316, 55.552801], + [37.70316, 55.552711], + [37.703001, 55.552711] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703001, 55.552801], + [37.703001, 55.552891], + [37.70316, 55.552891], + [37.70316, 55.552801], + [37.703001, 55.552801] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703001, 55.552891], + [37.703001, 55.552981], + [37.70316, 55.552981], + [37.70316, 55.552891], + [37.703001, 55.552891] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703001, 55.552981], + [37.703001, 55.553071], + [37.70316, 55.553071], + [37.70316, 55.552981], + [37.703001, 55.552981] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703001, 55.553071], + [37.703001, 55.553161], + [37.70316, 55.553161], + [37.70316, 55.553071], + [37.703001, 55.553071] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703001, 55.553161], + [37.703001, 55.553251], + [37.70316, 55.553251], + [37.70316, 55.553161], + [37.703001, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703001, 55.553251], + [37.703001, 55.553341], + [37.70316, 55.553341], + [37.70316, 55.553251], + [37.703001, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703001, 55.553341], + [37.703001, 55.553431], + [37.70316, 55.553431], + [37.70316, 55.553341], + [37.703001, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703001, 55.553431], + [37.703001, 55.55352], + [37.70316, 55.55352], + [37.70316, 55.553431], + [37.703001, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703001, 55.55352], + [37.703001, 55.55361], + [37.70316, 55.55361], + [37.70316, 55.55352], + [37.703001, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703001, 55.55361], + [37.703001, 55.5537], + [37.70316, 55.5537], + [37.70316, 55.55361], + [37.703001, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703001, 55.5537], + [37.703001, 55.55379], + [37.70316, 55.55379], + [37.70316, 55.5537], + [37.703001, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703001, 55.55379], + [37.703001, 55.55388], + [37.70316, 55.55388], + [37.70316, 55.55379], + [37.703001, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703001, 55.55388], + [37.703001, 55.55397], + [37.70316, 55.55397], + [37.70316, 55.55388], + [37.703001, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703001, 55.55397], + [37.703001, 55.55406], + [37.70316, 55.55406], + [37.70316, 55.55397], + [37.703001, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703001, 55.55406], + [37.703001, 55.55415], + [37.70316, 55.55415], + [37.70316, 55.55406], + [37.703001, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703001, 55.55415], + [37.703001, 55.55424], + [37.70316, 55.55424], + [37.70316, 55.55415], + [37.703001, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703001, 55.55424], + [37.703001, 55.55433], + [37.70316, 55.55433], + [37.70316, 55.55424], + [37.703001, 55.55424] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703001, 55.55433], + [37.703001, 55.55442], + [37.70316, 55.55442], + [37.70316, 55.55433], + [37.703001, 55.55433] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703001, 55.55442], + [37.703001, 55.55451], + [37.70316, 55.55451], + [37.70316, 55.55442], + [37.703001, 55.55442] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703001, 55.55451], + [37.703001, 55.5546], + [37.70316, 55.5546], + [37.70316, 55.55451], + [37.703001, 55.55451] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70316, 55.552351], + [37.70316, 55.552441], + [37.703319, 55.552441], + [37.703319, 55.552351], + [37.70316, 55.552351] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70316, 55.552441], + [37.70316, 55.552531], + [37.703319, 55.552531], + [37.703319, 55.552441], + [37.70316, 55.552441] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70316, 55.552531], + [37.70316, 55.552621], + [37.703319, 55.552621], + [37.703319, 55.552531], + [37.70316, 55.552531] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70316, 55.552621], + [37.70316, 55.552711], + [37.703319, 55.552711], + [37.703319, 55.552621], + [37.70316, 55.552621] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70316, 55.552711], + [37.70316, 55.552801], + [37.703319, 55.552801], + [37.703319, 55.552711], + [37.70316, 55.552711] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70316, 55.552801], + [37.70316, 55.552891], + [37.703319, 55.552891], + [37.703319, 55.552801], + [37.70316, 55.552801] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70316, 55.552891], + [37.70316, 55.552981], + [37.703319, 55.552981], + [37.703319, 55.552891], + [37.70316, 55.552891] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70316, 55.552981], + [37.70316, 55.553071], + [37.703319, 55.553071], + [37.703319, 55.552981], + [37.70316, 55.552981] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70316, 55.553071], + [37.70316, 55.553161], + [37.703319, 55.553161], + [37.703319, 55.553071], + [37.70316, 55.553071] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70316, 55.553161], + [37.70316, 55.553251], + [37.703319, 55.553251], + [37.703319, 55.553161], + [37.70316, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70316, 55.553251], + [37.70316, 55.553341], + [37.703319, 55.553341], + [37.703319, 55.553251], + [37.70316, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70316, 55.553341], + [37.70316, 55.553431], + [37.703319, 55.553431], + [37.703319, 55.553341], + [37.70316, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70316, 55.553431], + [37.70316, 55.55352], + [37.703319, 55.55352], + [37.703319, 55.553431], + [37.70316, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70316, 55.55352], + [37.70316, 55.55361], + [37.703319, 55.55361], + [37.703319, 55.55352], + [37.70316, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70316, 55.55361], + [37.70316, 55.5537], + [37.703319, 55.5537], + [37.703319, 55.55361], + [37.70316, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70316, 55.5537], + [37.70316, 55.55379], + [37.703319, 55.55379], + [37.703319, 55.5537], + [37.70316, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70316, 55.55379], + [37.70316, 55.55388], + [37.703319, 55.55388], + [37.703319, 55.55379], + [37.70316, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70316, 55.55388], + [37.70316, 55.55397], + [37.703319, 55.55397], + [37.703319, 55.55388], + [37.70316, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70316, 55.55397], + [37.70316, 55.55406], + [37.703319, 55.55406], + [37.703319, 55.55397], + [37.70316, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70316, 55.55406], + [37.70316, 55.55415], + [37.703319, 55.55415], + [37.703319, 55.55406], + [37.70316, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70316, 55.55415], + [37.70316, 55.55424], + [37.703319, 55.55424], + [37.703319, 55.55415], + [37.70316, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70316, 55.55424], + [37.70316, 55.55433], + [37.703319, 55.55433], + [37.703319, 55.55424], + [37.70316, 55.55424] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70316, 55.55433], + [37.70316, 55.55442], + [37.703319, 55.55442], + [37.703319, 55.55433], + [37.70316, 55.55433] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70316, 55.55442], + [37.70316, 55.55451], + [37.703319, 55.55451], + [37.703319, 55.55442], + [37.70316, 55.55442] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70316, 55.55451], + [37.70316, 55.5546], + [37.703319, 55.5546], + [37.703319, 55.55451], + [37.70316, 55.55451] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70316, 55.5546], + [37.70316, 55.55469], + [37.703319, 55.55469], + [37.703319, 55.5546], + [37.70316, 55.5546] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703319, 55.552261], + [37.703319, 55.552351], + [37.703478, 55.552351], + [37.703478, 55.552261], + [37.703319, 55.552261] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703319, 55.552351], + [37.703319, 55.552441], + [37.703478, 55.552441], + [37.703478, 55.552351], + [37.703319, 55.552351] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703319, 55.552441], + [37.703319, 55.552531], + [37.703478, 55.552531], + [37.703478, 55.552441], + [37.703319, 55.552441] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703319, 55.552531], + [37.703319, 55.552621], + [37.703478, 55.552621], + [37.703478, 55.552531], + [37.703319, 55.552531] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703319, 55.552621], + [37.703319, 55.552711], + [37.703478, 55.552711], + [37.703478, 55.552621], + [37.703319, 55.552621] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703319, 55.552711], + [37.703319, 55.552801], + [37.703478, 55.552801], + [37.703478, 55.552711], + [37.703319, 55.552711] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703319, 55.552801], + [37.703319, 55.552891], + [37.703478, 55.552891], + [37.703478, 55.552801], + [37.703319, 55.552801] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703319, 55.552891], + [37.703319, 55.552981], + [37.703478, 55.552981], + [37.703478, 55.552891], + [37.703319, 55.552891] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703319, 55.552981], + [37.703319, 55.553071], + [37.703478, 55.553071], + [37.703478, 55.552981], + [37.703319, 55.552981] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703319, 55.553071], + [37.703319, 55.553161], + [37.703478, 55.553161], + [37.703478, 55.553071], + [37.703319, 55.553071] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703319, 55.553161], + [37.703319, 55.553251], + [37.703478, 55.553251], + [37.703478, 55.553161], + [37.703319, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703319, 55.553251], + [37.703319, 55.553341], + [37.703478, 55.553341], + [37.703478, 55.553251], + [37.703319, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703319, 55.553341], + [37.703319, 55.553431], + [37.703478, 55.553431], + [37.703478, 55.553341], + [37.703319, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703319, 55.553431], + [37.703319, 55.55352], + [37.703478, 55.55352], + [37.703478, 55.553431], + [37.703319, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703319, 55.55352], + [37.703319, 55.55361], + [37.703478, 55.55361], + [37.703478, 55.55352], + [37.703319, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703319, 55.55361], + [37.703319, 55.5537], + [37.703478, 55.5537], + [37.703478, 55.55361], + [37.703319, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703319, 55.5537], + [37.703319, 55.55379], + [37.703478, 55.55379], + [37.703478, 55.5537], + [37.703319, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703319, 55.55379], + [37.703319, 55.55388], + [37.703478, 55.55388], + [37.703478, 55.55379], + [37.703319, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703319, 55.55388], + [37.703319, 55.55397], + [37.703478, 55.55397], + [37.703478, 55.55388], + [37.703319, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703319, 55.55397], + [37.703319, 55.55406], + [37.703478, 55.55406], + [37.703478, 55.55397], + [37.703319, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703319, 55.55406], + [37.703319, 55.55415], + [37.703478, 55.55415], + [37.703478, 55.55406], + [37.703319, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703319, 55.55415], + [37.703319, 55.55424], + [37.703478, 55.55424], + [37.703478, 55.55415], + [37.703319, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703319, 55.55424], + [37.703319, 55.55433], + [37.703478, 55.55433], + [37.703478, 55.55424], + [37.703319, 55.55424] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703319, 55.55433], + [37.703319, 55.55442], + [37.703478, 55.55442], + [37.703478, 55.55433], + [37.703319, 55.55433] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703319, 55.55442], + [37.703319, 55.55451], + [37.703478, 55.55451], + [37.703478, 55.55442], + [37.703319, 55.55442] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703319, 55.55451], + [37.703319, 55.5546], + [37.703478, 55.5546], + [37.703478, 55.55451], + [37.703319, 55.55451] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703319, 55.5546], + [37.703319, 55.55469], + [37.703478, 55.55469], + [37.703478, 55.5546], + [37.703319, 55.5546] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703478, 55.552261], + [37.703478, 55.552351], + [37.703637, 55.552351], + [37.703637, 55.552261], + [37.703478, 55.552261] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703478, 55.552351], + [37.703478, 55.552441], + [37.703637, 55.552441], + [37.703637, 55.552351], + [37.703478, 55.552351] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703478, 55.552441], + [37.703478, 55.552531], + [37.703637, 55.552531], + [37.703637, 55.552441], + [37.703478, 55.552441] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703478, 55.552531], + [37.703478, 55.552621], + [37.703637, 55.552621], + [37.703637, 55.552531], + [37.703478, 55.552531] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703478, 55.552621], + [37.703478, 55.552711], + [37.703637, 55.552711], + [37.703637, 55.552621], + [37.703478, 55.552621] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703478, 55.552711], + [37.703478, 55.552801], + [37.703637, 55.552801], + [37.703637, 55.552711], + [37.703478, 55.552711] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703478, 55.552801], + [37.703478, 55.552891], + [37.703637, 55.552891], + [37.703637, 55.552801], + [37.703478, 55.552801] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703478, 55.552891], + [37.703478, 55.552981], + [37.703637, 55.552981], + [37.703637, 55.552891], + [37.703478, 55.552891] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703478, 55.552981], + [37.703478, 55.553071], + [37.703637, 55.553071], + [37.703637, 55.552981], + [37.703478, 55.552981] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703478, 55.553071], + [37.703478, 55.553161], + [37.703637, 55.553161], + [37.703637, 55.553071], + [37.703478, 55.553071] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703478, 55.553161], + [37.703478, 55.553251], + [37.703637, 55.553251], + [37.703637, 55.553161], + [37.703478, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703478, 55.553251], + [37.703478, 55.553341], + [37.703637, 55.553341], + [37.703637, 55.553251], + [37.703478, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703478, 55.553341], + [37.703478, 55.553431], + [37.703637, 55.553431], + [37.703637, 55.553341], + [37.703478, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703478, 55.553431], + [37.703478, 55.55352], + [37.703637, 55.55352], + [37.703637, 55.553431], + [37.703478, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703478, 55.55352], + [37.703478, 55.55361], + [37.703637, 55.55361], + [37.703637, 55.55352], + [37.703478, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703478, 55.55361], + [37.703478, 55.5537], + [37.703637, 55.5537], + [37.703637, 55.55361], + [37.703478, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703478, 55.5537], + [37.703478, 55.55379], + [37.703637, 55.55379], + [37.703637, 55.5537], + [37.703478, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703478, 55.55379], + [37.703478, 55.55388], + [37.703637, 55.55388], + [37.703637, 55.55379], + [37.703478, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703478, 55.55388], + [37.703478, 55.55397], + [37.703637, 55.55397], + [37.703637, 55.55388], + [37.703478, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703478, 55.55397], + [37.703478, 55.55406], + [37.703637, 55.55406], + [37.703637, 55.55397], + [37.703478, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703478, 55.55406], + [37.703478, 55.55415], + [37.703637, 55.55415], + [37.703637, 55.55406], + [37.703478, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703478, 55.55415], + [37.703478, 55.55424], + [37.703637, 55.55424], + [37.703637, 55.55415], + [37.703478, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703478, 55.55424], + [37.703478, 55.55433], + [37.703637, 55.55433], + [37.703637, 55.55424], + [37.703478, 55.55424] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703478, 55.55433], + [37.703478, 55.55442], + [37.703637, 55.55442], + [37.703637, 55.55433], + [37.703478, 55.55433] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703478, 55.55442], + [37.703478, 55.55451], + [37.703637, 55.55451], + [37.703637, 55.55442], + [37.703478, 55.55442] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703478, 55.55451], + [37.703478, 55.5546], + [37.703637, 55.5546], + [37.703637, 55.55451], + [37.703478, 55.55451] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703478, 55.5546], + [37.703478, 55.55469], + [37.703637, 55.55469], + [37.703637, 55.5546], + [37.703478, 55.5546] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703478, 55.55469], + [37.703478, 55.55478], + [37.703637, 55.55478], + [37.703637, 55.55469], + [37.703478, 55.55469] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.552171], + [37.703637, 55.552261], + [37.703796, 55.552261], + [37.703796, 55.552171], + [37.703637, 55.552171] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.552261], + [37.703637, 55.552351], + [37.703796, 55.552351], + [37.703796, 55.552261], + [37.703637, 55.552261] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.552351], + [37.703637, 55.552441], + [37.703796, 55.552441], + [37.703796, 55.552351], + [37.703637, 55.552351] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.552441], + [37.703637, 55.552531], + [37.703796, 55.552531], + [37.703796, 55.552441], + [37.703637, 55.552441] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.552531], + [37.703637, 55.552621], + [37.703796, 55.552621], + [37.703796, 55.552531], + [37.703637, 55.552531] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.552621], + [37.703637, 55.552711], + [37.703796, 55.552711], + [37.703796, 55.552621], + [37.703637, 55.552621] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.552711], + [37.703637, 55.552801], + [37.703796, 55.552801], + [37.703796, 55.552711], + [37.703637, 55.552711] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.552801], + [37.703637, 55.552891], + [37.703796, 55.552891], + [37.703796, 55.552801], + [37.703637, 55.552801] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.552891], + [37.703637, 55.552981], + [37.703796, 55.552981], + [37.703796, 55.552891], + [37.703637, 55.552891] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.552981], + [37.703637, 55.553071], + [37.703796, 55.553071], + [37.703796, 55.552981], + [37.703637, 55.552981] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.553071], + [37.703637, 55.553161], + [37.703796, 55.553161], + [37.703796, 55.553071], + [37.703637, 55.553071] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.553161], + [37.703637, 55.553251], + [37.703796, 55.553251], + [37.703796, 55.553161], + [37.703637, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.553251], + [37.703637, 55.553341], + [37.703796, 55.553341], + [37.703796, 55.553251], + [37.703637, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.553341], + [37.703637, 55.553431], + [37.703796, 55.553431], + [37.703796, 55.553341], + [37.703637, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.553431], + [37.703637, 55.55352], + [37.703796, 55.55352], + [37.703796, 55.553431], + [37.703637, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.55352], + [37.703637, 55.55361], + [37.703796, 55.55361], + [37.703796, 55.55352], + [37.703637, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.55361], + [37.703637, 55.5537], + [37.703796, 55.5537], + [37.703796, 55.55361], + [37.703637, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.5537], + [37.703637, 55.55379], + [37.703796, 55.55379], + [37.703796, 55.5537], + [37.703637, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.55379], + [37.703637, 55.55388], + [37.703796, 55.55388], + [37.703796, 55.55379], + [37.703637, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.55388], + [37.703637, 55.55397], + [37.703796, 55.55397], + [37.703796, 55.55388], + [37.703637, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.55397], + [37.703637, 55.55406], + [37.703796, 55.55406], + [37.703796, 55.55397], + [37.703637, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.55406], + [37.703637, 55.55415], + [37.703796, 55.55415], + [37.703796, 55.55406], + [37.703637, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.55415], + [37.703637, 55.55424], + [37.703796, 55.55424], + [37.703796, 55.55415], + [37.703637, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.55424], + [37.703637, 55.55433], + [37.703796, 55.55433], + [37.703796, 55.55424], + [37.703637, 55.55424] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.55433], + [37.703637, 55.55442], + [37.703796, 55.55442], + [37.703796, 55.55433], + [37.703637, 55.55433] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.55442], + [37.703637, 55.55451], + [37.703796, 55.55451], + [37.703796, 55.55442], + [37.703637, 55.55442] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.55451], + [37.703637, 55.5546], + [37.703796, 55.5546], + [37.703796, 55.55451], + [37.703637, 55.55451] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.5546], + [37.703637, 55.55469], + [37.703796, 55.55469], + [37.703796, 55.5546], + [37.703637, 55.5546] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.55469], + [37.703637, 55.55478], + [37.703796, 55.55478], + [37.703796, 55.55469], + [37.703637, 55.55469] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703796, 55.552171], + [37.703796, 55.552261], + [37.703955, 55.552261], + [37.703955, 55.552171], + [37.703796, 55.552171] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703796, 55.552261], + [37.703796, 55.552351], + [37.703955, 55.552351], + [37.703955, 55.552261], + [37.703796, 55.552261] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703796, 55.552351], + [37.703796, 55.552441], + [37.703955, 55.552441], + [37.703955, 55.552351], + [37.703796, 55.552351] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703796, 55.552441], + [37.703796, 55.552531], + [37.703955, 55.552531], + [37.703955, 55.552441], + [37.703796, 55.552441] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703796, 55.552531], + [37.703796, 55.552621], + [37.703955, 55.552621], + [37.703955, 55.552531], + [37.703796, 55.552531] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703796, 55.552621], + [37.703796, 55.552711], + [37.703955, 55.552711], + [37.703955, 55.552621], + [37.703796, 55.552621] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703796, 55.552711], + [37.703796, 55.552801], + [37.703955, 55.552801], + [37.703955, 55.552711], + [37.703796, 55.552711] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703796, 55.552801], + [37.703796, 55.552891], + [37.703955, 55.552891], + [37.703955, 55.552801], + [37.703796, 55.552801] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703796, 55.552891], + [37.703796, 55.552981], + [37.703955, 55.552981], + [37.703955, 55.552891], + [37.703796, 55.552891] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703796, 55.552981], + [37.703796, 55.553071], + [37.703955, 55.553071], + [37.703955, 55.552981], + [37.703796, 55.552981] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703796, 55.553071], + [37.703796, 55.553161], + [37.703955, 55.553161], + [37.703955, 55.553071], + [37.703796, 55.553071] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703796, 55.553161], + [37.703796, 55.553251], + [37.703955, 55.553251], + [37.703955, 55.553161], + [37.703796, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703796, 55.553251], + [37.703796, 55.553341], + [37.703955, 55.553341], + [37.703955, 55.553251], + [37.703796, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703796, 55.553341], + [37.703796, 55.553431], + [37.703955, 55.553431], + [37.703955, 55.553341], + [37.703796, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703796, 55.553431], + [37.703796, 55.55352], + [37.703955, 55.55352], + [37.703955, 55.553431], + [37.703796, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703796, 55.55352], + [37.703796, 55.55361], + [37.703955, 55.55361], + [37.703955, 55.55352], + [37.703796, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703796, 55.55361], + [37.703796, 55.5537], + [37.703955, 55.5537], + [37.703955, 55.55361], + [37.703796, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703796, 55.5537], + [37.703796, 55.55379], + [37.703955, 55.55379], + [37.703955, 55.5537], + [37.703796, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703796, 55.55379], + [37.703796, 55.55388], + [37.703955, 55.55388], + [37.703955, 55.55379], + [37.703796, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703796, 55.55388], + [37.703796, 55.55397], + [37.703955, 55.55397], + [37.703955, 55.55388], + [37.703796, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703796, 55.55397], + [37.703796, 55.55406], + [37.703955, 55.55406], + [37.703955, 55.55397], + [37.703796, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703796, 55.55406], + [37.703796, 55.55415], + [37.703955, 55.55415], + [37.703955, 55.55406], + [37.703796, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703796, 55.55415], + [37.703796, 55.55424], + [37.703955, 55.55424], + [37.703955, 55.55415], + [37.703796, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703796, 55.55424], + [37.703796, 55.55433], + [37.703955, 55.55433], + [37.703955, 55.55424], + [37.703796, 55.55424] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703796, 55.55433], + [37.703796, 55.55442], + [37.703955, 55.55442], + [37.703955, 55.55433], + [37.703796, 55.55433] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703796, 55.55442], + [37.703796, 55.55451], + [37.703955, 55.55451], + [37.703955, 55.55442], + [37.703796, 55.55442] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703796, 55.55451], + [37.703796, 55.5546], + [37.703955, 55.5546], + [37.703955, 55.55451], + [37.703796, 55.55451] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703796, 55.5546], + [37.703796, 55.55469], + [37.703955, 55.55469], + [37.703955, 55.5546], + [37.703796, 55.5546] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703796, 55.55469], + [37.703796, 55.55478], + [37.703955, 55.55478], + [37.703955, 55.55469], + [37.703796, 55.55469] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703796, 55.55478], + [37.703796, 55.554869], + [37.703955, 55.554869], + [37.703955, 55.55478], + [37.703796, 55.55478] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703955, 55.552082], + [37.703955, 55.552171], + [37.704114, 55.552171], + [37.704114, 55.552082], + [37.703955, 55.552082] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703955, 55.552171], + [37.703955, 55.552261], + [37.704114, 55.552261], + [37.704114, 55.552171], + [37.703955, 55.552171] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703955, 55.552261], + [37.703955, 55.552351], + [37.704114, 55.552351], + [37.704114, 55.552261], + [37.703955, 55.552261] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703955, 55.552351], + [37.703955, 55.552441], + [37.704114, 55.552441], + [37.704114, 55.552351], + [37.703955, 55.552351] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703955, 55.552441], + [37.703955, 55.552531], + [37.704114, 55.552531], + [37.704114, 55.552441], + [37.703955, 55.552441] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703955, 55.552531], + [37.703955, 55.552621], + [37.704114, 55.552621], + [37.704114, 55.552531], + [37.703955, 55.552531] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703955, 55.552621], + [37.703955, 55.552711], + [37.704114, 55.552711], + [37.704114, 55.552621], + [37.703955, 55.552621] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703955, 55.552711], + [37.703955, 55.552801], + [37.704114, 55.552801], + [37.704114, 55.552711], + [37.703955, 55.552711] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703955, 55.552801], + [37.703955, 55.552891], + [37.704114, 55.552891], + [37.704114, 55.552801], + [37.703955, 55.552801] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703955, 55.552891], + [37.703955, 55.552981], + [37.704114, 55.552981], + [37.704114, 55.552891], + [37.703955, 55.552891] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703955, 55.552981], + [37.703955, 55.553071], + [37.704114, 55.553071], + [37.704114, 55.552981], + [37.703955, 55.552981] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703955, 55.553071], + [37.703955, 55.553161], + [37.704114, 55.553161], + [37.704114, 55.553071], + [37.703955, 55.553071] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703955, 55.553161], + [37.703955, 55.553251], + [37.704114, 55.553251], + [37.704114, 55.553161], + [37.703955, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703955, 55.553251], + [37.703955, 55.553341], + [37.704114, 55.553341], + [37.704114, 55.553251], + [37.703955, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703955, 55.553341], + [37.703955, 55.553431], + [37.704114, 55.553431], + [37.704114, 55.553341], + [37.703955, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703955, 55.553431], + [37.703955, 55.55352], + [37.704114, 55.55352], + [37.704114, 55.553431], + [37.703955, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703955, 55.55352], + [37.703955, 55.55361], + [37.704114, 55.55361], + [37.704114, 55.55352], + [37.703955, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703955, 55.55361], + [37.703955, 55.5537], + [37.704114, 55.5537], + [37.704114, 55.55361], + [37.703955, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703955, 55.5537], + [37.703955, 55.55379], + [37.704114, 55.55379], + [37.704114, 55.5537], + [37.703955, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703955, 55.55379], + [37.703955, 55.55388], + [37.704114, 55.55388], + [37.704114, 55.55379], + [37.703955, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703955, 55.55388], + [37.703955, 55.55397], + [37.704114, 55.55397], + [37.704114, 55.55388], + [37.703955, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703955, 55.55397], + [37.703955, 55.55406], + [37.704114, 55.55406], + [37.704114, 55.55397], + [37.703955, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703955, 55.55406], + [37.703955, 55.55415], + [37.704114, 55.55415], + [37.704114, 55.55406], + [37.703955, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703955, 55.55415], + [37.703955, 55.55424], + [37.704114, 55.55424], + [37.704114, 55.55415], + [37.703955, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703955, 55.55424], + [37.703955, 55.55433], + [37.704114, 55.55433], + [37.704114, 55.55424], + [37.703955, 55.55424] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703955, 55.55433], + [37.703955, 55.55442], + [37.704114, 55.55442], + [37.704114, 55.55433], + [37.703955, 55.55433] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703955, 55.55442], + [37.703955, 55.55451], + [37.704114, 55.55451], + [37.704114, 55.55442], + [37.703955, 55.55442] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703955, 55.55451], + [37.703955, 55.5546], + [37.704114, 55.5546], + [37.704114, 55.55451], + [37.703955, 55.55451] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703955, 55.5546], + [37.703955, 55.55469], + [37.704114, 55.55469], + [37.704114, 55.5546], + [37.703955, 55.5546] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703955, 55.55469], + [37.703955, 55.55478], + [37.704114, 55.55478], + [37.704114, 55.55469], + [37.703955, 55.55469] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703955, 55.55478], + [37.703955, 55.554869], + [37.704114, 55.554869], + [37.704114, 55.55478], + [37.703955, 55.55478] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704114, 55.552082], + [37.704114, 55.552171], + [37.704273, 55.552171], + [37.704273, 55.552082], + [37.704114, 55.552082] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704114, 55.552171], + [37.704114, 55.552261], + [37.704273, 55.552261], + [37.704273, 55.552171], + [37.704114, 55.552171] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704114, 55.552261], + [37.704114, 55.552351], + [37.704273, 55.552351], + [37.704273, 55.552261], + [37.704114, 55.552261] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704114, 55.552351], + [37.704114, 55.552441], + [37.704273, 55.552441], + [37.704273, 55.552351], + [37.704114, 55.552351] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704114, 55.552441], + [37.704114, 55.552531], + [37.704273, 55.552531], + [37.704273, 55.552441], + [37.704114, 55.552441] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704114, 55.552531], + [37.704114, 55.552621], + [37.704273, 55.552621], + [37.704273, 55.552531], + [37.704114, 55.552531] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704114, 55.552621], + [37.704114, 55.552711], + [37.704273, 55.552711], + [37.704273, 55.552621], + [37.704114, 55.552621] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704114, 55.552711], + [37.704114, 55.552801], + [37.704273, 55.552801], + [37.704273, 55.552711], + [37.704114, 55.552711] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704114, 55.552801], + [37.704114, 55.552891], + [37.704273, 55.552891], + [37.704273, 55.552801], + [37.704114, 55.552801] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704114, 55.552891], + [37.704114, 55.552981], + [37.704273, 55.552981], + [37.704273, 55.552891], + [37.704114, 55.552891] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704114, 55.552981], + [37.704114, 55.553071], + [37.704273, 55.553071], + [37.704273, 55.552981], + [37.704114, 55.552981] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704114, 55.553071], + [37.704114, 55.553161], + [37.704273, 55.553161], + [37.704273, 55.553071], + [37.704114, 55.553071] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704114, 55.553161], + [37.704114, 55.553251], + [37.704273, 55.553251], + [37.704273, 55.553161], + [37.704114, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704114, 55.553251], + [37.704114, 55.553341], + [37.704273, 55.553341], + [37.704273, 55.553251], + [37.704114, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704114, 55.553341], + [37.704114, 55.553431], + [37.704273, 55.553431], + [37.704273, 55.553341], + [37.704114, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704114, 55.553431], + [37.704114, 55.55352], + [37.704273, 55.55352], + [37.704273, 55.553431], + [37.704114, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704114, 55.55352], + [37.704114, 55.55361], + [37.704273, 55.55361], + [37.704273, 55.55352], + [37.704114, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704114, 55.55361], + [37.704114, 55.5537], + [37.704273, 55.5537], + [37.704273, 55.55361], + [37.704114, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704114, 55.5537], + [37.704114, 55.55379], + [37.704273, 55.55379], + [37.704273, 55.5537], + [37.704114, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704114, 55.55379], + [37.704114, 55.55388], + [37.704273, 55.55388], + [37.704273, 55.55379], + [37.704114, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704114, 55.55388], + [37.704114, 55.55397], + [37.704273, 55.55397], + [37.704273, 55.55388], + [37.704114, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704114, 55.55397], + [37.704114, 55.55406], + [37.704273, 55.55406], + [37.704273, 55.55397], + [37.704114, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704114, 55.55406], + [37.704114, 55.55415], + [37.704273, 55.55415], + [37.704273, 55.55406], + [37.704114, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704114, 55.55415], + [37.704114, 55.55424], + [37.704273, 55.55424], + [37.704273, 55.55415], + [37.704114, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704114, 55.55424], + [37.704114, 55.55433], + [37.704273, 55.55433], + [37.704273, 55.55424], + [37.704114, 55.55424] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704114, 55.55433], + [37.704114, 55.55442], + [37.704273, 55.55442], + [37.704273, 55.55433], + [37.704114, 55.55433] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704114, 55.55442], + [37.704114, 55.55451], + [37.704273, 55.55451], + [37.704273, 55.55442], + [37.704114, 55.55442] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704114, 55.55451], + [37.704114, 55.5546], + [37.704273, 55.5546], + [37.704273, 55.55451], + [37.704114, 55.55451] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704114, 55.5546], + [37.704114, 55.55469], + [37.704273, 55.55469], + [37.704273, 55.5546], + [37.704114, 55.5546] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704114, 55.55469], + [37.704114, 55.55478], + [37.704273, 55.55478], + [37.704273, 55.55469], + [37.704114, 55.55469] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704114, 55.55478], + [37.704114, 55.554869], + [37.704273, 55.554869], + [37.704273, 55.55478], + [37.704114, 55.55478] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704114, 55.554869], + [37.704114, 55.554959], + [37.704273, 55.554959], + [37.704273, 55.554869], + [37.704114, 55.554869] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704273, 55.551992], + [37.704273, 55.552082], + [37.704432, 55.552082], + [37.704432, 55.551992], + [37.704273, 55.551992] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704273, 55.552082], + [37.704273, 55.552171], + [37.704432, 55.552171], + [37.704432, 55.552082], + [37.704273, 55.552082] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704273, 55.552171], + [37.704273, 55.552261], + [37.704432, 55.552261], + [37.704432, 55.552171], + [37.704273, 55.552171] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704273, 55.552261], + [37.704273, 55.552351], + [37.704432, 55.552351], + [37.704432, 55.552261], + [37.704273, 55.552261] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704273, 55.552351], + [37.704273, 55.552441], + [37.704432, 55.552441], + [37.704432, 55.552351], + [37.704273, 55.552351] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704273, 55.552441], + [37.704273, 55.552531], + [37.704432, 55.552531], + [37.704432, 55.552441], + [37.704273, 55.552441] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704273, 55.552531], + [37.704273, 55.552621], + [37.704432, 55.552621], + [37.704432, 55.552531], + [37.704273, 55.552531] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704273, 55.552621], + [37.704273, 55.552711], + [37.704432, 55.552711], + [37.704432, 55.552621], + [37.704273, 55.552621] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704273, 55.552711], + [37.704273, 55.552801], + [37.704432, 55.552801], + [37.704432, 55.552711], + [37.704273, 55.552711] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704273, 55.552801], + [37.704273, 55.552891], + [37.704432, 55.552891], + [37.704432, 55.552801], + [37.704273, 55.552801] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704273, 55.552891], + [37.704273, 55.552981], + [37.704432, 55.552981], + [37.704432, 55.552891], + [37.704273, 55.552891] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704273, 55.552981], + [37.704273, 55.553071], + [37.704432, 55.553071], + [37.704432, 55.552981], + [37.704273, 55.552981] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704273, 55.553071], + [37.704273, 55.553161], + [37.704432, 55.553161], + [37.704432, 55.553071], + [37.704273, 55.553071] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704273, 55.553161], + [37.704273, 55.553251], + [37.704432, 55.553251], + [37.704432, 55.553161], + [37.704273, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704273, 55.553251], + [37.704273, 55.553341], + [37.704432, 55.553341], + [37.704432, 55.553251], + [37.704273, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704273, 55.553341], + [37.704273, 55.553431], + [37.704432, 55.553431], + [37.704432, 55.553341], + [37.704273, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704273, 55.553431], + [37.704273, 55.55352], + [37.704432, 55.55352], + [37.704432, 55.553431], + [37.704273, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704273, 55.55352], + [37.704273, 55.55361], + [37.704432, 55.55361], + [37.704432, 55.55352], + [37.704273, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704273, 55.55361], + [37.704273, 55.5537], + [37.704432, 55.5537], + [37.704432, 55.55361], + [37.704273, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704273, 55.5537], + [37.704273, 55.55379], + [37.704432, 55.55379], + [37.704432, 55.5537], + [37.704273, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704273, 55.55379], + [37.704273, 55.55388], + [37.704432, 55.55388], + [37.704432, 55.55379], + [37.704273, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704273, 55.55388], + [37.704273, 55.55397], + [37.704432, 55.55397], + [37.704432, 55.55388], + [37.704273, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704273, 55.55397], + [37.704273, 55.55406], + [37.704432, 55.55406], + [37.704432, 55.55397], + [37.704273, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704273, 55.55406], + [37.704273, 55.55415], + [37.704432, 55.55415], + [37.704432, 55.55406], + [37.704273, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704273, 55.55415], + [37.704273, 55.55424], + [37.704432, 55.55424], + [37.704432, 55.55415], + [37.704273, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704273, 55.55424], + [37.704273, 55.55433], + [37.704432, 55.55433], + [37.704432, 55.55424], + [37.704273, 55.55424] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704273, 55.55433], + [37.704273, 55.55442], + [37.704432, 55.55442], + [37.704432, 55.55433], + [37.704273, 55.55433] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704273, 55.55442], + [37.704273, 55.55451], + [37.704432, 55.55451], + [37.704432, 55.55442], + [37.704273, 55.55442] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704273, 55.55451], + [37.704273, 55.5546], + [37.704432, 55.5546], + [37.704432, 55.55451], + [37.704273, 55.55451] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704273, 55.5546], + [37.704273, 55.55469], + [37.704432, 55.55469], + [37.704432, 55.5546], + [37.704273, 55.5546] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704273, 55.55469], + [37.704273, 55.55478], + [37.704432, 55.55478], + [37.704432, 55.55469], + [37.704273, 55.55469] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704273, 55.55478], + [37.704273, 55.554869], + [37.704432, 55.554869], + [37.704432, 55.55478], + [37.704273, 55.55478] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704273, 55.554869], + [37.704273, 55.554959], + [37.704432, 55.554959], + [37.704432, 55.554869], + [37.704273, 55.554869] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704432, 55.551992], + [37.704432, 55.552082], + [37.704591, 55.552082], + [37.704591, 55.551992], + [37.704432, 55.551992] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704432, 55.552082], + [37.704432, 55.552171], + [37.704591, 55.552171], + [37.704591, 55.552082], + [37.704432, 55.552082] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704432, 55.552171], + [37.704432, 55.552261], + [37.704591, 55.552261], + [37.704591, 55.552171], + [37.704432, 55.552171] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704432, 55.552261], + [37.704432, 55.552351], + [37.704591, 55.552351], + [37.704591, 55.552261], + [37.704432, 55.552261] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704432, 55.552351], + [37.704432, 55.552441], + [37.704591, 55.552441], + [37.704591, 55.552351], + [37.704432, 55.552351] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704432, 55.552441], + [37.704432, 55.552531], + [37.704591, 55.552531], + [37.704591, 55.552441], + [37.704432, 55.552441] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704432, 55.552531], + [37.704432, 55.552621], + [37.704591, 55.552621], + [37.704591, 55.552531], + [37.704432, 55.552531] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704432, 55.552621], + [37.704432, 55.552711], + [37.704591, 55.552711], + [37.704591, 55.552621], + [37.704432, 55.552621] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704432, 55.552711], + [37.704432, 55.552801], + [37.704591, 55.552801], + [37.704591, 55.552711], + [37.704432, 55.552711] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704432, 55.552801], + [37.704432, 55.552891], + [37.704591, 55.552891], + [37.704591, 55.552801], + [37.704432, 55.552801] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704432, 55.552891], + [37.704432, 55.552981], + [37.704591, 55.552981], + [37.704591, 55.552891], + [37.704432, 55.552891] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704432, 55.552981], + [37.704432, 55.553071], + [37.704591, 55.553071], + [37.704591, 55.552981], + [37.704432, 55.552981] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704432, 55.553071], + [37.704432, 55.553161], + [37.704591, 55.553161], + [37.704591, 55.553071], + [37.704432, 55.553071] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704432, 55.553161], + [37.704432, 55.553251], + [37.704591, 55.553251], + [37.704591, 55.553161], + [37.704432, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704432, 55.553251], + [37.704432, 55.553341], + [37.704591, 55.553341], + [37.704591, 55.553251], + [37.704432, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704432, 55.553341], + [37.704432, 55.553431], + [37.704591, 55.553431], + [37.704591, 55.553341], + [37.704432, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704432, 55.553431], + [37.704432, 55.55352], + [37.704591, 55.55352], + [37.704591, 55.553431], + [37.704432, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704432, 55.55352], + [37.704432, 55.55361], + [37.704591, 55.55361], + [37.704591, 55.55352], + [37.704432, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704432, 55.55361], + [37.704432, 55.5537], + [37.704591, 55.5537], + [37.704591, 55.55361], + [37.704432, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704432, 55.5537], + [37.704432, 55.55379], + [37.704591, 55.55379], + [37.704591, 55.5537], + [37.704432, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704432, 55.55379], + [37.704432, 55.55388], + [37.704591, 55.55388], + [37.704591, 55.55379], + [37.704432, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704432, 55.55388], + [37.704432, 55.55397], + [37.704591, 55.55397], + [37.704591, 55.55388], + [37.704432, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704432, 55.55397], + [37.704432, 55.55406], + [37.704591, 55.55406], + [37.704591, 55.55397], + [37.704432, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704432, 55.55406], + [37.704432, 55.55415], + [37.704591, 55.55415], + [37.704591, 55.55406], + [37.704432, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704432, 55.55415], + [37.704432, 55.55424], + [37.704591, 55.55424], + [37.704591, 55.55415], + [37.704432, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704432, 55.55424], + [37.704432, 55.55433], + [37.704591, 55.55433], + [37.704591, 55.55424], + [37.704432, 55.55424] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704432, 55.55433], + [37.704432, 55.55442], + [37.704591, 55.55442], + [37.704591, 55.55433], + [37.704432, 55.55433] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704432, 55.55442], + [37.704432, 55.55451], + [37.704591, 55.55451], + [37.704591, 55.55442], + [37.704432, 55.55442] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704432, 55.55451], + [37.704432, 55.5546], + [37.704591, 55.5546], + [37.704591, 55.55451], + [37.704432, 55.55451] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704432, 55.5546], + [37.704432, 55.55469], + [37.704591, 55.55469], + [37.704591, 55.5546], + [37.704432, 55.5546] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704432, 55.55469], + [37.704432, 55.55478], + [37.704591, 55.55478], + [37.704591, 55.55469], + [37.704432, 55.55469] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704432, 55.55478], + [37.704432, 55.554869], + [37.704591, 55.554869], + [37.704591, 55.55478], + [37.704432, 55.55478] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704432, 55.554869], + [37.704432, 55.554959], + [37.704591, 55.554959], + [37.704591, 55.554869], + [37.704432, 55.554869] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704432, 55.554959], + [37.704432, 55.555049], + [37.704591, 55.555049], + [37.704591, 55.554959], + [37.704432, 55.554959] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704591, 55.551902], + [37.704591, 55.551992], + [37.70475, 55.551992], + [37.70475, 55.551902], + [37.704591, 55.551902] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704591, 55.551992], + [37.704591, 55.552082], + [37.70475, 55.552082], + [37.70475, 55.551992], + [37.704591, 55.551992] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704591, 55.552082], + [37.704591, 55.552171], + [37.70475, 55.552171], + [37.70475, 55.552082], + [37.704591, 55.552082] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704591, 55.552171], + [37.704591, 55.552261], + [37.70475, 55.552261], + [37.70475, 55.552171], + [37.704591, 55.552171] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704591, 55.552261], + [37.704591, 55.552351], + [37.70475, 55.552351], + [37.70475, 55.552261], + [37.704591, 55.552261] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704591, 55.552351], + [37.704591, 55.552441], + [37.70475, 55.552441], + [37.70475, 55.552351], + [37.704591, 55.552351] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704591, 55.552441], + [37.704591, 55.552531], + [37.70475, 55.552531], + [37.70475, 55.552441], + [37.704591, 55.552441] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704591, 55.552531], + [37.704591, 55.552621], + [37.70475, 55.552621], + [37.70475, 55.552531], + [37.704591, 55.552531] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704591, 55.552621], + [37.704591, 55.552711], + [37.70475, 55.552711], + [37.70475, 55.552621], + [37.704591, 55.552621] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704591, 55.552711], + [37.704591, 55.552801], + [37.70475, 55.552801], + [37.70475, 55.552711], + [37.704591, 55.552711] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704591, 55.552801], + [37.704591, 55.552891], + [37.70475, 55.552891], + [37.70475, 55.552801], + [37.704591, 55.552801] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704591, 55.552891], + [37.704591, 55.552981], + [37.70475, 55.552981], + [37.70475, 55.552891], + [37.704591, 55.552891] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704591, 55.552981], + [37.704591, 55.553071], + [37.70475, 55.553071], + [37.70475, 55.552981], + [37.704591, 55.552981] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704591, 55.553071], + [37.704591, 55.553161], + [37.70475, 55.553161], + [37.70475, 55.553071], + [37.704591, 55.553071] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704591, 55.553161], + [37.704591, 55.553251], + [37.70475, 55.553251], + [37.70475, 55.553161], + [37.704591, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704591, 55.553251], + [37.704591, 55.553341], + [37.70475, 55.553341], + [37.70475, 55.553251], + [37.704591, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704591, 55.553341], + [37.704591, 55.553431], + [37.70475, 55.553431], + [37.70475, 55.553341], + [37.704591, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704591, 55.553431], + [37.704591, 55.55352], + [37.70475, 55.55352], + [37.70475, 55.553431], + [37.704591, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704591, 55.55352], + [37.704591, 55.55361], + [37.70475, 55.55361], + [37.70475, 55.55352], + [37.704591, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704591, 55.55361], + [37.704591, 55.5537], + [37.70475, 55.5537], + [37.70475, 55.55361], + [37.704591, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704591, 55.5537], + [37.704591, 55.55379], + [37.70475, 55.55379], + [37.70475, 55.5537], + [37.704591, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704591, 55.55379], + [37.704591, 55.55388], + [37.70475, 55.55388], + [37.70475, 55.55379], + [37.704591, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704591, 55.55388], + [37.704591, 55.55397], + [37.70475, 55.55397], + [37.70475, 55.55388], + [37.704591, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704591, 55.55397], + [37.704591, 55.55406], + [37.70475, 55.55406], + [37.70475, 55.55397], + [37.704591, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704591, 55.55406], + [37.704591, 55.55415], + [37.70475, 55.55415], + [37.70475, 55.55406], + [37.704591, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704591, 55.55415], + [37.704591, 55.55424], + [37.70475, 55.55424], + [37.70475, 55.55415], + [37.704591, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704591, 55.55424], + [37.704591, 55.55433], + [37.70475, 55.55433], + [37.70475, 55.55424], + [37.704591, 55.55424] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704591, 55.55433], + [37.704591, 55.55442], + [37.70475, 55.55442], + [37.70475, 55.55433], + [37.704591, 55.55433] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704591, 55.55442], + [37.704591, 55.55451], + [37.70475, 55.55451], + [37.70475, 55.55442], + [37.704591, 55.55442] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704591, 55.55451], + [37.704591, 55.5546], + [37.70475, 55.5546], + [37.70475, 55.55451], + [37.704591, 55.55451] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704591, 55.5546], + [37.704591, 55.55469], + [37.70475, 55.55469], + [37.70475, 55.5546], + [37.704591, 55.5546] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704591, 55.55469], + [37.704591, 55.55478], + [37.70475, 55.55478], + [37.70475, 55.55469], + [37.704591, 55.55469] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704591, 55.55478], + [37.704591, 55.554869], + [37.70475, 55.554869], + [37.70475, 55.55478], + [37.704591, 55.55478] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704591, 55.554869], + [37.704591, 55.554959], + [37.70475, 55.554959], + [37.70475, 55.554869], + [37.704591, 55.554869] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704591, 55.554959], + [37.704591, 55.555049], + [37.70475, 55.555049], + [37.70475, 55.554959], + [37.704591, 55.554959] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70475, 55.551902], + [37.70475, 55.551992], + [37.704909, 55.551992], + [37.704909, 55.551902], + [37.70475, 55.551902] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70475, 55.551992], + [37.70475, 55.552082], + [37.704909, 55.552082], + [37.704909, 55.551992], + [37.70475, 55.551992] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70475, 55.552082], + [37.70475, 55.552171], + [37.704909, 55.552171], + [37.704909, 55.552082], + [37.70475, 55.552082] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70475, 55.552171], + [37.70475, 55.552261], + [37.704909, 55.552261], + [37.704909, 55.552171], + [37.70475, 55.552171] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70475, 55.552261], + [37.70475, 55.552351], + [37.704909, 55.552351], + [37.704909, 55.552261], + [37.70475, 55.552261] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70475, 55.552351], + [37.70475, 55.552441], + [37.704909, 55.552441], + [37.704909, 55.552351], + [37.70475, 55.552351] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70475, 55.552441], + [37.70475, 55.552531], + [37.704909, 55.552531], + [37.704909, 55.552441], + [37.70475, 55.552441] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70475, 55.552531], + [37.70475, 55.552621], + [37.704909, 55.552621], + [37.704909, 55.552531], + [37.70475, 55.552531] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70475, 55.552621], + [37.70475, 55.552711], + [37.704909, 55.552711], + [37.704909, 55.552621], + [37.70475, 55.552621] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70475, 55.552711], + [37.70475, 55.552801], + [37.704909, 55.552801], + [37.704909, 55.552711], + [37.70475, 55.552711] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70475, 55.552801], + [37.70475, 55.552891], + [37.704909, 55.552891], + [37.704909, 55.552801], + [37.70475, 55.552801] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70475, 55.552891], + [37.70475, 55.552981], + [37.704909, 55.552981], + [37.704909, 55.552891], + [37.70475, 55.552891] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70475, 55.552981], + [37.70475, 55.553071], + [37.704909, 55.553071], + [37.704909, 55.552981], + [37.70475, 55.552981] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70475, 55.553071], + [37.70475, 55.553161], + [37.704909, 55.553161], + [37.704909, 55.553071], + [37.70475, 55.553071] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70475, 55.553161], + [37.70475, 55.553251], + [37.704909, 55.553251], + [37.704909, 55.553161], + [37.70475, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70475, 55.553251], + [37.70475, 55.553341], + [37.704909, 55.553341], + [37.704909, 55.553251], + [37.70475, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70475, 55.553341], + [37.70475, 55.553431], + [37.704909, 55.553431], + [37.704909, 55.553341], + [37.70475, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70475, 55.553431], + [37.70475, 55.55352], + [37.704909, 55.55352], + [37.704909, 55.553431], + [37.70475, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70475, 55.55352], + [37.70475, 55.55361], + [37.704909, 55.55361], + [37.704909, 55.55352], + [37.70475, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70475, 55.55361], + [37.70475, 55.5537], + [37.704909, 55.5537], + [37.704909, 55.55361], + [37.70475, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70475, 55.5537], + [37.70475, 55.55379], + [37.704909, 55.55379], + [37.704909, 55.5537], + [37.70475, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70475, 55.55379], + [37.70475, 55.55388], + [37.704909, 55.55388], + [37.704909, 55.55379], + [37.70475, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70475, 55.55388], + [37.70475, 55.55397], + [37.704909, 55.55397], + [37.704909, 55.55388], + [37.70475, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70475, 55.55397], + [37.70475, 55.55406], + [37.704909, 55.55406], + [37.704909, 55.55397], + [37.70475, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70475, 55.55406], + [37.70475, 55.55415], + [37.704909, 55.55415], + [37.704909, 55.55406], + [37.70475, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70475, 55.55415], + [37.70475, 55.55424], + [37.704909, 55.55424], + [37.704909, 55.55415], + [37.70475, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70475, 55.55424], + [37.70475, 55.55433], + [37.704909, 55.55433], + [37.704909, 55.55424], + [37.70475, 55.55424] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70475, 55.55433], + [37.70475, 55.55442], + [37.704909, 55.55442], + [37.704909, 55.55433], + [37.70475, 55.55433] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70475, 55.55442], + [37.70475, 55.55451], + [37.704909, 55.55451], + [37.704909, 55.55442], + [37.70475, 55.55442] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70475, 55.55451], + [37.70475, 55.5546], + [37.704909, 55.5546], + [37.704909, 55.55451], + [37.70475, 55.55451] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70475, 55.5546], + [37.70475, 55.55469], + [37.704909, 55.55469], + [37.704909, 55.5546], + [37.70475, 55.5546] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70475, 55.55469], + [37.70475, 55.55478], + [37.704909, 55.55478], + [37.704909, 55.55469], + [37.70475, 55.55469] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70475, 55.55478], + [37.70475, 55.554869], + [37.704909, 55.554869], + [37.704909, 55.55478], + [37.70475, 55.55478] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70475, 55.554869], + [37.70475, 55.554959], + [37.704909, 55.554959], + [37.704909, 55.554869], + [37.70475, 55.554869] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70475, 55.554959], + [37.70475, 55.555049], + [37.704909, 55.555049], + [37.704909, 55.554959], + [37.70475, 55.554959] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70475, 55.555049], + [37.70475, 55.555139], + [37.704909, 55.555139], + [37.704909, 55.555049], + [37.70475, 55.555049] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704909, 55.551812], + [37.704909, 55.551902], + [37.705068, 55.551902], + [37.705068, 55.551812], + [37.704909, 55.551812] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704909, 55.551902], + [37.704909, 55.551992], + [37.705068, 55.551992], + [37.705068, 55.551902], + [37.704909, 55.551902] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704909, 55.551992], + [37.704909, 55.552082], + [37.705068, 55.552082], + [37.705068, 55.551992], + [37.704909, 55.551992] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704909, 55.552082], + [37.704909, 55.552171], + [37.705068, 55.552171], + [37.705068, 55.552082], + [37.704909, 55.552082] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704909, 55.552171], + [37.704909, 55.552261], + [37.705068, 55.552261], + [37.705068, 55.552171], + [37.704909, 55.552171] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704909, 55.552261], + [37.704909, 55.552351], + [37.705068, 55.552351], + [37.705068, 55.552261], + [37.704909, 55.552261] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704909, 55.552351], + [37.704909, 55.552441], + [37.705068, 55.552441], + [37.705068, 55.552351], + [37.704909, 55.552351] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704909, 55.552441], + [37.704909, 55.552531], + [37.705068, 55.552531], + [37.705068, 55.552441], + [37.704909, 55.552441] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704909, 55.552531], + [37.704909, 55.552621], + [37.705068, 55.552621], + [37.705068, 55.552531], + [37.704909, 55.552531] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704909, 55.552621], + [37.704909, 55.552711], + [37.705068, 55.552711], + [37.705068, 55.552621], + [37.704909, 55.552621] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704909, 55.552711], + [37.704909, 55.552801], + [37.705068, 55.552801], + [37.705068, 55.552711], + [37.704909, 55.552711] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704909, 55.552801], + [37.704909, 55.552891], + [37.705068, 55.552891], + [37.705068, 55.552801], + [37.704909, 55.552801] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704909, 55.552891], + [37.704909, 55.552981], + [37.705068, 55.552981], + [37.705068, 55.552891], + [37.704909, 55.552891] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704909, 55.552981], + [37.704909, 55.553071], + [37.705068, 55.553071], + [37.705068, 55.552981], + [37.704909, 55.552981] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704909, 55.553071], + [37.704909, 55.553161], + [37.705068, 55.553161], + [37.705068, 55.553071], + [37.704909, 55.553071] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704909, 55.553161], + [37.704909, 55.553251], + [37.705068, 55.553251], + [37.705068, 55.553161], + [37.704909, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704909, 55.553251], + [37.704909, 55.553341], + [37.705068, 55.553341], + [37.705068, 55.553251], + [37.704909, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704909, 55.553341], + [37.704909, 55.553431], + [37.705068, 55.553431], + [37.705068, 55.553341], + [37.704909, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704909, 55.553431], + [37.704909, 55.55352], + [37.705068, 55.55352], + [37.705068, 55.553431], + [37.704909, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704909, 55.55352], + [37.704909, 55.55361], + [37.705068, 55.55361], + [37.705068, 55.55352], + [37.704909, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704909, 55.55361], + [37.704909, 55.5537], + [37.705068, 55.5537], + [37.705068, 55.55361], + [37.704909, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704909, 55.5537], + [37.704909, 55.55379], + [37.705068, 55.55379], + [37.705068, 55.5537], + [37.704909, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704909, 55.55379], + [37.704909, 55.55388], + [37.705068, 55.55388], + [37.705068, 55.55379], + [37.704909, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704909, 55.55388], + [37.704909, 55.55397], + [37.705068, 55.55397], + [37.705068, 55.55388], + [37.704909, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704909, 55.55397], + [37.704909, 55.55406], + [37.705068, 55.55406], + [37.705068, 55.55397], + [37.704909, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704909, 55.55406], + [37.704909, 55.55415], + [37.705068, 55.55415], + [37.705068, 55.55406], + [37.704909, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704909, 55.55415], + [37.704909, 55.55424], + [37.705068, 55.55424], + [37.705068, 55.55415], + [37.704909, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704909, 55.55424], + [37.704909, 55.55433], + [37.705068, 55.55433], + [37.705068, 55.55424], + [37.704909, 55.55424] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704909, 55.55433], + [37.704909, 55.55442], + [37.705068, 55.55442], + [37.705068, 55.55433], + [37.704909, 55.55433] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704909, 55.55442], + [37.704909, 55.55451], + [37.705068, 55.55451], + [37.705068, 55.55442], + [37.704909, 55.55442] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704909, 55.55451], + [37.704909, 55.5546], + [37.705068, 55.5546], + [37.705068, 55.55451], + [37.704909, 55.55451] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704909, 55.5546], + [37.704909, 55.55469], + [37.705068, 55.55469], + [37.705068, 55.5546], + [37.704909, 55.5546] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704909, 55.55469], + [37.704909, 55.55478], + [37.705068, 55.55478], + [37.705068, 55.55469], + [37.704909, 55.55469] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704909, 55.55478], + [37.704909, 55.554869], + [37.705068, 55.554869], + [37.705068, 55.55478], + [37.704909, 55.55478] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704909, 55.554869], + [37.704909, 55.554959], + [37.705068, 55.554959], + [37.705068, 55.554869], + [37.704909, 55.554869] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704909, 55.554959], + [37.704909, 55.555049], + [37.705068, 55.555049], + [37.705068, 55.554959], + [37.704909, 55.554959] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704909, 55.555049], + [37.704909, 55.555139], + [37.705068, 55.555139], + [37.705068, 55.555049], + [37.704909, 55.555049] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705068, 55.551812], + [37.705068, 55.551902], + [37.705227, 55.551902], + [37.705227, 55.551812], + [37.705068, 55.551812] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705068, 55.551902], + [37.705068, 55.551992], + [37.705227, 55.551992], + [37.705227, 55.551902], + [37.705068, 55.551902] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705068, 55.551992], + [37.705068, 55.552082], + [37.705227, 55.552082], + [37.705227, 55.551992], + [37.705068, 55.551992] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705068, 55.552082], + [37.705068, 55.552171], + [37.705227, 55.552171], + [37.705227, 55.552082], + [37.705068, 55.552082] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705068, 55.552171], + [37.705068, 55.552261], + [37.705227, 55.552261], + [37.705227, 55.552171], + [37.705068, 55.552171] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705068, 55.552261], + [37.705068, 55.552351], + [37.705227, 55.552351], + [37.705227, 55.552261], + [37.705068, 55.552261] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705068, 55.552351], + [37.705068, 55.552441], + [37.705227, 55.552441], + [37.705227, 55.552351], + [37.705068, 55.552351] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705068, 55.552441], + [37.705068, 55.552531], + [37.705227, 55.552531], + [37.705227, 55.552441], + [37.705068, 55.552441] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705068, 55.552531], + [37.705068, 55.552621], + [37.705227, 55.552621], + [37.705227, 55.552531], + [37.705068, 55.552531] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705068, 55.552621], + [37.705068, 55.552711], + [37.705227, 55.552711], + [37.705227, 55.552621], + [37.705068, 55.552621] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705068, 55.552711], + [37.705068, 55.552801], + [37.705227, 55.552801], + [37.705227, 55.552711], + [37.705068, 55.552711] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705068, 55.552801], + [37.705068, 55.552891], + [37.705227, 55.552891], + [37.705227, 55.552801], + [37.705068, 55.552801] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705068, 55.552891], + [37.705068, 55.552981], + [37.705227, 55.552981], + [37.705227, 55.552891], + [37.705068, 55.552891] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705068, 55.552981], + [37.705068, 55.553071], + [37.705227, 55.553071], + [37.705227, 55.552981], + [37.705068, 55.552981] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705068, 55.553071], + [37.705068, 55.553161], + [37.705227, 55.553161], + [37.705227, 55.553071], + [37.705068, 55.553071] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705068, 55.553161], + [37.705068, 55.553251], + [37.705227, 55.553251], + [37.705227, 55.553161], + [37.705068, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705068, 55.553251], + [37.705068, 55.553341], + [37.705227, 55.553341], + [37.705227, 55.553251], + [37.705068, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705068, 55.553341], + [37.705068, 55.553431], + [37.705227, 55.553431], + [37.705227, 55.553341], + [37.705068, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705068, 55.553431], + [37.705068, 55.55352], + [37.705227, 55.55352], + [37.705227, 55.553431], + [37.705068, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705068, 55.55352], + [37.705068, 55.55361], + [37.705227, 55.55361], + [37.705227, 55.55352], + [37.705068, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705068, 55.55361], + [37.705068, 55.5537], + [37.705227, 55.5537], + [37.705227, 55.55361], + [37.705068, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705068, 55.5537], + [37.705068, 55.55379], + [37.705227, 55.55379], + [37.705227, 55.5537], + [37.705068, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705068, 55.55379], + [37.705068, 55.55388], + [37.705227, 55.55388], + [37.705227, 55.55379], + [37.705068, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705068, 55.55388], + [37.705068, 55.55397], + [37.705227, 55.55397], + [37.705227, 55.55388], + [37.705068, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705068, 55.55397], + [37.705068, 55.55406], + [37.705227, 55.55406], + [37.705227, 55.55397], + [37.705068, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705068, 55.55406], + [37.705068, 55.55415], + [37.705227, 55.55415], + [37.705227, 55.55406], + [37.705068, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705068, 55.55415], + [37.705068, 55.55424], + [37.705227, 55.55424], + [37.705227, 55.55415], + [37.705068, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705068, 55.55424], + [37.705068, 55.55433], + [37.705227, 55.55433], + [37.705227, 55.55424], + [37.705068, 55.55424] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705068, 55.55433], + [37.705068, 55.55442], + [37.705227, 55.55442], + [37.705227, 55.55433], + [37.705068, 55.55433] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705068, 55.55442], + [37.705068, 55.55451], + [37.705227, 55.55451], + [37.705227, 55.55442], + [37.705068, 55.55442] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705068, 55.55451], + [37.705068, 55.5546], + [37.705227, 55.5546], + [37.705227, 55.55451], + [37.705068, 55.55451] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705068, 55.5546], + [37.705068, 55.55469], + [37.705227, 55.55469], + [37.705227, 55.5546], + [37.705068, 55.5546] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705068, 55.55469], + [37.705068, 55.55478], + [37.705227, 55.55478], + [37.705227, 55.55469], + [37.705068, 55.55469] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705068, 55.55478], + [37.705068, 55.554869], + [37.705227, 55.554869], + [37.705227, 55.55478], + [37.705068, 55.55478] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705068, 55.554869], + [37.705068, 55.554959], + [37.705227, 55.554959], + [37.705227, 55.554869], + [37.705068, 55.554869] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705068, 55.554959], + [37.705068, 55.555049], + [37.705227, 55.555049], + [37.705227, 55.554959], + [37.705068, 55.554959] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705068, 55.555049], + [37.705068, 55.555139], + [37.705227, 55.555139], + [37.705227, 55.555049], + [37.705068, 55.555049] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705068, 55.555139], + [37.705068, 55.555229], + [37.705227, 55.555229], + [37.705227, 55.555139], + [37.705068, 55.555139] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705227, 55.551722], + [37.705227, 55.551812], + [37.705386, 55.551812], + [37.705386, 55.551722], + [37.705227, 55.551722] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705227, 55.551812], + [37.705227, 55.551902], + [37.705386, 55.551902], + [37.705386, 55.551812], + [37.705227, 55.551812] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705227, 55.551902], + [37.705227, 55.551992], + [37.705386, 55.551992], + [37.705386, 55.551902], + [37.705227, 55.551902] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705227, 55.551992], + [37.705227, 55.552082], + [37.705386, 55.552082], + [37.705386, 55.551992], + [37.705227, 55.551992] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705227, 55.552082], + [37.705227, 55.552171], + [37.705386, 55.552171], + [37.705386, 55.552082], + [37.705227, 55.552082] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705227, 55.552171], + [37.705227, 55.552261], + [37.705386, 55.552261], + [37.705386, 55.552171], + [37.705227, 55.552171] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705227, 55.552261], + [37.705227, 55.552351], + [37.705386, 55.552351], + [37.705386, 55.552261], + [37.705227, 55.552261] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705227, 55.552351], + [37.705227, 55.552441], + [37.705386, 55.552441], + [37.705386, 55.552351], + [37.705227, 55.552351] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705227, 55.552441], + [37.705227, 55.552531], + [37.705386, 55.552531], + [37.705386, 55.552441], + [37.705227, 55.552441] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705227, 55.552531], + [37.705227, 55.552621], + [37.705386, 55.552621], + [37.705386, 55.552531], + [37.705227, 55.552531] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705227, 55.552621], + [37.705227, 55.552711], + [37.705386, 55.552711], + [37.705386, 55.552621], + [37.705227, 55.552621] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705227, 55.552711], + [37.705227, 55.552801], + [37.705386, 55.552801], + [37.705386, 55.552711], + [37.705227, 55.552711] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705227, 55.552801], + [37.705227, 55.552891], + [37.705386, 55.552891], + [37.705386, 55.552801], + [37.705227, 55.552801] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705227, 55.552891], + [37.705227, 55.552981], + [37.705386, 55.552981], + [37.705386, 55.552891], + [37.705227, 55.552891] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705227, 55.552981], + [37.705227, 55.553071], + [37.705386, 55.553071], + [37.705386, 55.552981], + [37.705227, 55.552981] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705227, 55.553071], + [37.705227, 55.553161], + [37.705386, 55.553161], + [37.705386, 55.553071], + [37.705227, 55.553071] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705227, 55.553161], + [37.705227, 55.553251], + [37.705386, 55.553251], + [37.705386, 55.553161], + [37.705227, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705227, 55.553251], + [37.705227, 55.553341], + [37.705386, 55.553341], + [37.705386, 55.553251], + [37.705227, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705227, 55.553341], + [37.705227, 55.553431], + [37.705386, 55.553431], + [37.705386, 55.553341], + [37.705227, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705227, 55.553431], + [37.705227, 55.55352], + [37.705386, 55.55352], + [37.705386, 55.553431], + [37.705227, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705227, 55.55352], + [37.705227, 55.55361], + [37.705386, 55.55361], + [37.705386, 55.55352], + [37.705227, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705227, 55.55361], + [37.705227, 55.5537], + [37.705386, 55.5537], + [37.705386, 55.55361], + [37.705227, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705227, 55.5537], + [37.705227, 55.55379], + [37.705386, 55.55379], + [37.705386, 55.5537], + [37.705227, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705227, 55.55379], + [37.705227, 55.55388], + [37.705386, 55.55388], + [37.705386, 55.55379], + [37.705227, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705227, 55.55388], + [37.705227, 55.55397], + [37.705386, 55.55397], + [37.705386, 55.55388], + [37.705227, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705227, 55.55397], + [37.705227, 55.55406], + [37.705386, 55.55406], + [37.705386, 55.55397], + [37.705227, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705227, 55.55406], + [37.705227, 55.55415], + [37.705386, 55.55415], + [37.705386, 55.55406], + [37.705227, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705227, 55.55415], + [37.705227, 55.55424], + [37.705386, 55.55424], + [37.705386, 55.55415], + [37.705227, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705227, 55.55424], + [37.705227, 55.55433], + [37.705386, 55.55433], + [37.705386, 55.55424], + [37.705227, 55.55424] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705227, 55.55433], + [37.705227, 55.55442], + [37.705386, 55.55442], + [37.705386, 55.55433], + [37.705227, 55.55433] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705227, 55.55442], + [37.705227, 55.55451], + [37.705386, 55.55451], + [37.705386, 55.55442], + [37.705227, 55.55442] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705227, 55.55451], + [37.705227, 55.5546], + [37.705386, 55.5546], + [37.705386, 55.55451], + [37.705227, 55.55451] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705227, 55.5546], + [37.705227, 55.55469], + [37.705386, 55.55469], + [37.705386, 55.5546], + [37.705227, 55.5546] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705227, 55.55469], + [37.705227, 55.55478], + [37.705386, 55.55478], + [37.705386, 55.55469], + [37.705227, 55.55469] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705227, 55.55478], + [37.705227, 55.554869], + [37.705386, 55.554869], + [37.705386, 55.55478], + [37.705227, 55.55478] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705227, 55.554869], + [37.705227, 55.554959], + [37.705386, 55.554959], + [37.705386, 55.554869], + [37.705227, 55.554869] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705227, 55.554959], + [37.705227, 55.555049], + [37.705386, 55.555049], + [37.705386, 55.554959], + [37.705227, 55.554959] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705227, 55.555049], + [37.705227, 55.555139], + [37.705386, 55.555139], + [37.705386, 55.555049], + [37.705227, 55.555049] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705227, 55.555139], + [37.705227, 55.555229], + [37.705386, 55.555229], + [37.705386, 55.555139], + [37.705227, 55.555139] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705386, 55.551722], + [37.705386, 55.551812], + [37.705545, 55.551812], + [37.705545, 55.551722], + [37.705386, 55.551722] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705386, 55.551812], + [37.705386, 55.551902], + [37.705545, 55.551902], + [37.705545, 55.551812], + [37.705386, 55.551812] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705386, 55.551902], + [37.705386, 55.551992], + [37.705545, 55.551992], + [37.705545, 55.551902], + [37.705386, 55.551902] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705386, 55.551992], + [37.705386, 55.552082], + [37.705545, 55.552082], + [37.705545, 55.551992], + [37.705386, 55.551992] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705386, 55.552082], + [37.705386, 55.552171], + [37.705545, 55.552171], + [37.705545, 55.552082], + [37.705386, 55.552082] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705386, 55.552171], + [37.705386, 55.552261], + [37.705545, 55.552261], + [37.705545, 55.552171], + [37.705386, 55.552171] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705386, 55.552261], + [37.705386, 55.552351], + [37.705545, 55.552351], + [37.705545, 55.552261], + [37.705386, 55.552261] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705386, 55.552351], + [37.705386, 55.552441], + [37.705545, 55.552441], + [37.705545, 55.552351], + [37.705386, 55.552351] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705386, 55.552441], + [37.705386, 55.552531], + [37.705545, 55.552531], + [37.705545, 55.552441], + [37.705386, 55.552441] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705386, 55.552531], + [37.705386, 55.552621], + [37.705545, 55.552621], + [37.705545, 55.552531], + [37.705386, 55.552531] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705386, 55.552621], + [37.705386, 55.552711], + [37.705545, 55.552711], + [37.705545, 55.552621], + [37.705386, 55.552621] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705386, 55.552711], + [37.705386, 55.552801], + [37.705545, 55.552801], + [37.705545, 55.552711], + [37.705386, 55.552711] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705386, 55.552801], + [37.705386, 55.552891], + [37.705545, 55.552891], + [37.705545, 55.552801], + [37.705386, 55.552801] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705386, 55.552891], + [37.705386, 55.552981], + [37.705545, 55.552981], + [37.705545, 55.552891], + [37.705386, 55.552891] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705386, 55.552981], + [37.705386, 55.553071], + [37.705545, 55.553071], + [37.705545, 55.552981], + [37.705386, 55.552981] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705386, 55.553071], + [37.705386, 55.553161], + [37.705545, 55.553161], + [37.705545, 55.553071], + [37.705386, 55.553071] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705386, 55.553161], + [37.705386, 55.553251], + [37.705545, 55.553251], + [37.705545, 55.553161], + [37.705386, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705386, 55.553251], + [37.705386, 55.553341], + [37.705545, 55.553341], + [37.705545, 55.553251], + [37.705386, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705386, 55.553341], + [37.705386, 55.553431], + [37.705545, 55.553431], + [37.705545, 55.553341], + [37.705386, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705386, 55.553431], + [37.705386, 55.55352], + [37.705545, 55.55352], + [37.705545, 55.553431], + [37.705386, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705386, 55.55352], + [37.705386, 55.55361], + [37.705545, 55.55361], + [37.705545, 55.55352], + [37.705386, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705386, 55.55361], + [37.705386, 55.5537], + [37.705545, 55.5537], + [37.705545, 55.55361], + [37.705386, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705386, 55.5537], + [37.705386, 55.55379], + [37.705545, 55.55379], + [37.705545, 55.5537], + [37.705386, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705386, 55.55379], + [37.705386, 55.55388], + [37.705545, 55.55388], + [37.705545, 55.55379], + [37.705386, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705386, 55.55388], + [37.705386, 55.55397], + [37.705545, 55.55397], + [37.705545, 55.55388], + [37.705386, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705386, 55.55397], + [37.705386, 55.55406], + [37.705545, 55.55406], + [37.705545, 55.55397], + [37.705386, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705386, 55.55406], + [37.705386, 55.55415], + [37.705545, 55.55415], + [37.705545, 55.55406], + [37.705386, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705386, 55.55415], + [37.705386, 55.55424], + [37.705545, 55.55424], + [37.705545, 55.55415], + [37.705386, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705386, 55.55424], + [37.705386, 55.55433], + [37.705545, 55.55433], + [37.705545, 55.55424], + [37.705386, 55.55424] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705386, 55.55433], + [37.705386, 55.55442], + [37.705545, 55.55442], + [37.705545, 55.55433], + [37.705386, 55.55433] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705386, 55.55442], + [37.705386, 55.55451], + [37.705545, 55.55451], + [37.705545, 55.55442], + [37.705386, 55.55442] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705386, 55.55451], + [37.705386, 55.5546], + [37.705545, 55.5546], + [37.705545, 55.55451], + [37.705386, 55.55451] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705386, 55.5546], + [37.705386, 55.55469], + [37.705545, 55.55469], + [37.705545, 55.5546], + [37.705386, 55.5546] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705386, 55.55469], + [37.705386, 55.55478], + [37.705545, 55.55478], + [37.705545, 55.55469], + [37.705386, 55.55469] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705386, 55.55478], + [37.705386, 55.554869], + [37.705545, 55.554869], + [37.705545, 55.55478], + [37.705386, 55.55478] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705386, 55.554869], + [37.705386, 55.554959], + [37.705545, 55.554959], + [37.705545, 55.554869], + [37.705386, 55.554869] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705386, 55.554959], + [37.705386, 55.555049], + [37.705545, 55.555049], + [37.705545, 55.554959], + [37.705386, 55.554959] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705386, 55.555049], + [37.705386, 55.555139], + [37.705545, 55.555139], + [37.705545, 55.555049], + [37.705386, 55.555049] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705386, 55.555139], + [37.705386, 55.555229], + [37.705545, 55.555229], + [37.705545, 55.555139], + [37.705386, 55.555139] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705386, 55.555229], + [37.705386, 55.555319], + [37.705545, 55.555319], + [37.705545, 55.555229], + [37.705386, 55.555229] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705545, 55.551722], + [37.705545, 55.551812], + [37.705704, 55.551812], + [37.705704, 55.551722], + [37.705545, 55.551722] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705545, 55.551812], + [37.705545, 55.551902], + [37.705704, 55.551902], + [37.705704, 55.551812], + [37.705545, 55.551812] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705545, 55.551902], + [37.705545, 55.551992], + [37.705704, 55.551992], + [37.705704, 55.551902], + [37.705545, 55.551902] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705545, 55.551992], + [37.705545, 55.552082], + [37.705704, 55.552082], + [37.705704, 55.551992], + [37.705545, 55.551992] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705545, 55.552082], + [37.705545, 55.552171], + [37.705704, 55.552171], + [37.705704, 55.552082], + [37.705545, 55.552082] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705545, 55.552171], + [37.705545, 55.552261], + [37.705704, 55.552261], + [37.705704, 55.552171], + [37.705545, 55.552171] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705545, 55.552261], + [37.705545, 55.552351], + [37.705704, 55.552351], + [37.705704, 55.552261], + [37.705545, 55.552261] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705545, 55.552351], + [37.705545, 55.552441], + [37.705704, 55.552441], + [37.705704, 55.552351], + [37.705545, 55.552351] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705545, 55.552441], + [37.705545, 55.552531], + [37.705704, 55.552531], + [37.705704, 55.552441], + [37.705545, 55.552441] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705545, 55.552531], + [37.705545, 55.552621], + [37.705704, 55.552621], + [37.705704, 55.552531], + [37.705545, 55.552531] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705545, 55.552621], + [37.705545, 55.552711], + [37.705704, 55.552711], + [37.705704, 55.552621], + [37.705545, 55.552621] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705545, 55.552711], + [37.705545, 55.552801], + [37.705704, 55.552801], + [37.705704, 55.552711], + [37.705545, 55.552711] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705545, 55.552801], + [37.705545, 55.552891], + [37.705704, 55.552891], + [37.705704, 55.552801], + [37.705545, 55.552801] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705545, 55.552891], + [37.705545, 55.552981], + [37.705704, 55.552981], + [37.705704, 55.552891], + [37.705545, 55.552891] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705545, 55.552981], + [37.705545, 55.553071], + [37.705704, 55.553071], + [37.705704, 55.552981], + [37.705545, 55.552981] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705545, 55.553071], + [37.705545, 55.553161], + [37.705704, 55.553161], + [37.705704, 55.553071], + [37.705545, 55.553071] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705545, 55.553161], + [37.705545, 55.553251], + [37.705704, 55.553251], + [37.705704, 55.553161], + [37.705545, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705545, 55.553251], + [37.705545, 55.553341], + [37.705704, 55.553341], + [37.705704, 55.553251], + [37.705545, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705545, 55.553341], + [37.705545, 55.553431], + [37.705704, 55.553431], + [37.705704, 55.553341], + [37.705545, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705545, 55.553431], + [37.705545, 55.55352], + [37.705704, 55.55352], + [37.705704, 55.553431], + [37.705545, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705545, 55.55352], + [37.705545, 55.55361], + [37.705704, 55.55361], + [37.705704, 55.55352], + [37.705545, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705545, 55.55361], + [37.705545, 55.5537], + [37.705704, 55.5537], + [37.705704, 55.55361], + [37.705545, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705545, 55.5537], + [37.705545, 55.55379], + [37.705704, 55.55379], + [37.705704, 55.5537], + [37.705545, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705545, 55.55379], + [37.705545, 55.55388], + [37.705704, 55.55388], + [37.705704, 55.55379], + [37.705545, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705545, 55.55388], + [37.705545, 55.55397], + [37.705704, 55.55397], + [37.705704, 55.55388], + [37.705545, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705545, 55.55397], + [37.705545, 55.55406], + [37.705704, 55.55406], + [37.705704, 55.55397], + [37.705545, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705545, 55.55406], + [37.705545, 55.55415], + [37.705704, 55.55415], + [37.705704, 55.55406], + [37.705545, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705545, 55.55415], + [37.705545, 55.55424], + [37.705704, 55.55424], + [37.705704, 55.55415], + [37.705545, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705545, 55.55424], + [37.705545, 55.55433], + [37.705704, 55.55433], + [37.705704, 55.55424], + [37.705545, 55.55424] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705545, 55.55433], + [37.705545, 55.55442], + [37.705704, 55.55442], + [37.705704, 55.55433], + [37.705545, 55.55433] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705545, 55.55442], + [37.705545, 55.55451], + [37.705704, 55.55451], + [37.705704, 55.55442], + [37.705545, 55.55442] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705545, 55.55451], + [37.705545, 55.5546], + [37.705704, 55.5546], + [37.705704, 55.55451], + [37.705545, 55.55451] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705545, 55.5546], + [37.705545, 55.55469], + [37.705704, 55.55469], + [37.705704, 55.5546], + [37.705545, 55.5546] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705545, 55.55469], + [37.705545, 55.55478], + [37.705704, 55.55478], + [37.705704, 55.55469], + [37.705545, 55.55469] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705545, 55.55478], + [37.705545, 55.554869], + [37.705704, 55.554869], + [37.705704, 55.55478], + [37.705545, 55.55478] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705545, 55.554869], + [37.705545, 55.554959], + [37.705704, 55.554959], + [37.705704, 55.554869], + [37.705545, 55.554869] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705545, 55.554959], + [37.705545, 55.555049], + [37.705704, 55.555049], + [37.705704, 55.554959], + [37.705545, 55.554959] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705545, 55.555049], + [37.705545, 55.555139], + [37.705704, 55.555139], + [37.705704, 55.555049], + [37.705545, 55.555049] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705545, 55.555139], + [37.705545, 55.555229], + [37.705704, 55.555229], + [37.705704, 55.555139], + [37.705545, 55.555139] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705545, 55.555229], + [37.705545, 55.555319], + [37.705704, 55.555319], + [37.705704, 55.555229], + [37.705545, 55.555229] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705704, 55.551632], + [37.705704, 55.551722], + [37.705863, 55.551722], + [37.705863, 55.551632], + [37.705704, 55.551632] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705704, 55.551722], + [37.705704, 55.551812], + [37.705863, 55.551812], + [37.705863, 55.551722], + [37.705704, 55.551722] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705704, 55.551812], + [37.705704, 55.551902], + [37.705863, 55.551902], + [37.705863, 55.551812], + [37.705704, 55.551812] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705704, 55.551902], + [37.705704, 55.551992], + [37.705863, 55.551992], + [37.705863, 55.551902], + [37.705704, 55.551902] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705704, 55.551992], + [37.705704, 55.552082], + [37.705863, 55.552082], + [37.705863, 55.551992], + [37.705704, 55.551992] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705704, 55.552082], + [37.705704, 55.552171], + [37.705863, 55.552171], + [37.705863, 55.552082], + [37.705704, 55.552082] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705704, 55.552171], + [37.705704, 55.552261], + [37.705863, 55.552261], + [37.705863, 55.552171], + [37.705704, 55.552171] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705704, 55.552261], + [37.705704, 55.552351], + [37.705863, 55.552351], + [37.705863, 55.552261], + [37.705704, 55.552261] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705704, 55.552351], + [37.705704, 55.552441], + [37.705863, 55.552441], + [37.705863, 55.552351], + [37.705704, 55.552351] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705704, 55.552441], + [37.705704, 55.552531], + [37.705863, 55.552531], + [37.705863, 55.552441], + [37.705704, 55.552441] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705704, 55.552531], + [37.705704, 55.552621], + [37.705863, 55.552621], + [37.705863, 55.552531], + [37.705704, 55.552531] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705704, 55.552621], + [37.705704, 55.552711], + [37.705863, 55.552711], + [37.705863, 55.552621], + [37.705704, 55.552621] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705704, 55.552711], + [37.705704, 55.552801], + [37.705863, 55.552801], + [37.705863, 55.552711], + [37.705704, 55.552711] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705704, 55.552801], + [37.705704, 55.552891], + [37.705863, 55.552891], + [37.705863, 55.552801], + [37.705704, 55.552801] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705704, 55.552891], + [37.705704, 55.552981], + [37.705863, 55.552981], + [37.705863, 55.552891], + [37.705704, 55.552891] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705704, 55.552981], + [37.705704, 55.553071], + [37.705863, 55.553071], + [37.705863, 55.552981], + [37.705704, 55.552981] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705704, 55.553071], + [37.705704, 55.553161], + [37.705863, 55.553161], + [37.705863, 55.553071], + [37.705704, 55.553071] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705704, 55.553161], + [37.705704, 55.553251], + [37.705863, 55.553251], + [37.705863, 55.553161], + [37.705704, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705704, 55.553251], + [37.705704, 55.553341], + [37.705863, 55.553341], + [37.705863, 55.553251], + [37.705704, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705704, 55.553341], + [37.705704, 55.553431], + [37.705863, 55.553431], + [37.705863, 55.553341], + [37.705704, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705704, 55.553431], + [37.705704, 55.55352], + [37.705863, 55.55352], + [37.705863, 55.553431], + [37.705704, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705704, 55.55352], + [37.705704, 55.55361], + [37.705863, 55.55361], + [37.705863, 55.55352], + [37.705704, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705704, 55.55361], + [37.705704, 55.5537], + [37.705863, 55.5537], + [37.705863, 55.55361], + [37.705704, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705704, 55.5537], + [37.705704, 55.55379], + [37.705863, 55.55379], + [37.705863, 55.5537], + [37.705704, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705704, 55.55379], + [37.705704, 55.55388], + [37.705863, 55.55388], + [37.705863, 55.55379], + [37.705704, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705704, 55.55388], + [37.705704, 55.55397], + [37.705863, 55.55397], + [37.705863, 55.55388], + [37.705704, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705704, 55.55397], + [37.705704, 55.55406], + [37.705863, 55.55406], + [37.705863, 55.55397], + [37.705704, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705704, 55.55406], + [37.705704, 55.55415], + [37.705863, 55.55415], + [37.705863, 55.55406], + [37.705704, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705704, 55.55415], + [37.705704, 55.55424], + [37.705863, 55.55424], + [37.705863, 55.55415], + [37.705704, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705704, 55.55424], + [37.705704, 55.55433], + [37.705863, 55.55433], + [37.705863, 55.55424], + [37.705704, 55.55424] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705704, 55.55433], + [37.705704, 55.55442], + [37.705863, 55.55442], + [37.705863, 55.55433], + [37.705704, 55.55433] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705704, 55.55442], + [37.705704, 55.55451], + [37.705863, 55.55451], + [37.705863, 55.55442], + [37.705704, 55.55442] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705704, 55.55451], + [37.705704, 55.5546], + [37.705863, 55.5546], + [37.705863, 55.55451], + [37.705704, 55.55451] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705704, 55.5546], + [37.705704, 55.55469], + [37.705863, 55.55469], + [37.705863, 55.5546], + [37.705704, 55.5546] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705704, 55.55469], + [37.705704, 55.55478], + [37.705863, 55.55478], + [37.705863, 55.55469], + [37.705704, 55.55469] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705704, 55.55478], + [37.705704, 55.554869], + [37.705863, 55.554869], + [37.705863, 55.55478], + [37.705704, 55.55478] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705704, 55.554869], + [37.705704, 55.554959], + [37.705863, 55.554959], + [37.705863, 55.554869], + [37.705704, 55.554869] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705704, 55.554959], + [37.705704, 55.555049], + [37.705863, 55.555049], + [37.705863, 55.554959], + [37.705704, 55.554959] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705704, 55.555049], + [37.705704, 55.555139], + [37.705863, 55.555139], + [37.705863, 55.555049], + [37.705704, 55.555049] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705704, 55.555139], + [37.705704, 55.555229], + [37.705863, 55.555229], + [37.705863, 55.555139], + [37.705704, 55.555139] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705704, 55.555229], + [37.705704, 55.555319], + [37.705863, 55.555319], + [37.705863, 55.555229], + [37.705704, 55.555229] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705704, 55.555319], + [37.705704, 55.555409], + [37.705863, 55.555409], + [37.705863, 55.555319], + [37.705704, 55.555319] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705863, 55.551632], + [37.705863, 55.551722], + [37.706022, 55.551722], + [37.706022, 55.551632], + [37.705863, 55.551632] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705863, 55.551722], + [37.705863, 55.551812], + [37.706022, 55.551812], + [37.706022, 55.551722], + [37.705863, 55.551722] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705863, 55.551812], + [37.705863, 55.551902], + [37.706022, 55.551902], + [37.706022, 55.551812], + [37.705863, 55.551812] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705863, 55.551902], + [37.705863, 55.551992], + [37.706022, 55.551992], + [37.706022, 55.551902], + [37.705863, 55.551902] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705863, 55.551992], + [37.705863, 55.552082], + [37.706022, 55.552082], + [37.706022, 55.551992], + [37.705863, 55.551992] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705863, 55.552082], + [37.705863, 55.552171], + [37.706022, 55.552171], + [37.706022, 55.552082], + [37.705863, 55.552082] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705863, 55.552171], + [37.705863, 55.552261], + [37.706022, 55.552261], + [37.706022, 55.552171], + [37.705863, 55.552171] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705863, 55.552261], + [37.705863, 55.552351], + [37.706022, 55.552351], + [37.706022, 55.552261], + [37.705863, 55.552261] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705863, 55.552351], + [37.705863, 55.552441], + [37.706022, 55.552441], + [37.706022, 55.552351], + [37.705863, 55.552351] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705863, 55.552441], + [37.705863, 55.552531], + [37.706022, 55.552531], + [37.706022, 55.552441], + [37.705863, 55.552441] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705863, 55.552531], + [37.705863, 55.552621], + [37.706022, 55.552621], + [37.706022, 55.552531], + [37.705863, 55.552531] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705863, 55.552621], + [37.705863, 55.552711], + [37.706022, 55.552711], + [37.706022, 55.552621], + [37.705863, 55.552621] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705863, 55.552711], + [37.705863, 55.552801], + [37.706022, 55.552801], + [37.706022, 55.552711], + [37.705863, 55.552711] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705863, 55.552801], + [37.705863, 55.552891], + [37.706022, 55.552891], + [37.706022, 55.552801], + [37.705863, 55.552801] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705863, 55.552891], + [37.705863, 55.552981], + [37.706022, 55.552981], + [37.706022, 55.552891], + [37.705863, 55.552891] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705863, 55.552981], + [37.705863, 55.553071], + [37.706022, 55.553071], + [37.706022, 55.552981], + [37.705863, 55.552981] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705863, 55.553071], + [37.705863, 55.553161], + [37.706022, 55.553161], + [37.706022, 55.553071], + [37.705863, 55.553071] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705863, 55.553161], + [37.705863, 55.553251], + [37.706022, 55.553251], + [37.706022, 55.553161], + [37.705863, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705863, 55.553251], + [37.705863, 55.553341], + [37.706022, 55.553341], + [37.706022, 55.553251], + [37.705863, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705863, 55.553341], + [37.705863, 55.553431], + [37.706022, 55.553431], + [37.706022, 55.553341], + [37.705863, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705863, 55.553431], + [37.705863, 55.55352], + [37.706022, 55.55352], + [37.706022, 55.553431], + [37.705863, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705863, 55.55352], + [37.705863, 55.55361], + [37.706022, 55.55361], + [37.706022, 55.55352], + [37.705863, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705863, 55.55361], + [37.705863, 55.5537], + [37.706022, 55.5537], + [37.706022, 55.55361], + [37.705863, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705863, 55.5537], + [37.705863, 55.55379], + [37.706022, 55.55379], + [37.706022, 55.5537], + [37.705863, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705863, 55.55379], + [37.705863, 55.55388], + [37.706022, 55.55388], + [37.706022, 55.55379], + [37.705863, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705863, 55.55388], + [37.705863, 55.55397], + [37.706022, 55.55397], + [37.706022, 55.55388], + [37.705863, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705863, 55.55397], + [37.705863, 55.55406], + [37.706022, 55.55406], + [37.706022, 55.55397], + [37.705863, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705863, 55.55406], + [37.705863, 55.55415], + [37.706022, 55.55415], + [37.706022, 55.55406], + [37.705863, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705863, 55.55415], + [37.705863, 55.55424], + [37.706022, 55.55424], + [37.706022, 55.55415], + [37.705863, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705863, 55.55424], + [37.705863, 55.55433], + [37.706022, 55.55433], + [37.706022, 55.55424], + [37.705863, 55.55424] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705863, 55.55433], + [37.705863, 55.55442], + [37.706022, 55.55442], + [37.706022, 55.55433], + [37.705863, 55.55433] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705863, 55.55442], + [37.705863, 55.55451], + [37.706022, 55.55451], + [37.706022, 55.55442], + [37.705863, 55.55442] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705863, 55.55451], + [37.705863, 55.5546], + [37.706022, 55.5546], + [37.706022, 55.55451], + [37.705863, 55.55451] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705863, 55.5546], + [37.705863, 55.55469], + [37.706022, 55.55469], + [37.706022, 55.5546], + [37.705863, 55.5546] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705863, 55.55469], + [37.705863, 55.55478], + [37.706022, 55.55478], + [37.706022, 55.55469], + [37.705863, 55.55469] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705863, 55.55478], + [37.705863, 55.554869], + [37.706022, 55.554869], + [37.706022, 55.55478], + [37.705863, 55.55478] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705863, 55.554869], + [37.705863, 55.554959], + [37.706022, 55.554959], + [37.706022, 55.554869], + [37.705863, 55.554869] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705863, 55.554959], + [37.705863, 55.555049], + [37.706022, 55.555049], + [37.706022, 55.554959], + [37.705863, 55.554959] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705863, 55.555049], + [37.705863, 55.555139], + [37.706022, 55.555139], + [37.706022, 55.555049], + [37.705863, 55.555049] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705863, 55.555139], + [37.705863, 55.555229], + [37.706022, 55.555229], + [37.706022, 55.555139], + [37.705863, 55.555139] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705863, 55.555229], + [37.705863, 55.555319], + [37.706022, 55.555319], + [37.706022, 55.555229], + [37.705863, 55.555229] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705863, 55.555319], + [37.705863, 55.555409], + [37.706022, 55.555409], + [37.706022, 55.555319], + [37.705863, 55.555319] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706022, 55.551542], + [37.706022, 55.551632], + [37.706181, 55.551632], + [37.706181, 55.551542], + [37.706022, 55.551542] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706022, 55.551632], + [37.706022, 55.551722], + [37.706181, 55.551722], + [37.706181, 55.551632], + [37.706022, 55.551632] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706022, 55.551722], + [37.706022, 55.551812], + [37.706181, 55.551812], + [37.706181, 55.551722], + [37.706022, 55.551722] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706022, 55.551812], + [37.706022, 55.551902], + [37.706181, 55.551902], + [37.706181, 55.551812], + [37.706022, 55.551812] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706022, 55.551902], + [37.706022, 55.551992], + [37.706181, 55.551992], + [37.706181, 55.551902], + [37.706022, 55.551902] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706022, 55.551992], + [37.706022, 55.552082], + [37.706181, 55.552082], + [37.706181, 55.551992], + [37.706022, 55.551992] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706022, 55.552082], + [37.706022, 55.552171], + [37.706181, 55.552171], + [37.706181, 55.552082], + [37.706022, 55.552082] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706022, 55.552171], + [37.706022, 55.552261], + [37.706181, 55.552261], + [37.706181, 55.552171], + [37.706022, 55.552171] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706022, 55.552261], + [37.706022, 55.552351], + [37.706181, 55.552351], + [37.706181, 55.552261], + [37.706022, 55.552261] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706022, 55.552351], + [37.706022, 55.552441], + [37.706181, 55.552441], + [37.706181, 55.552351], + [37.706022, 55.552351] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706022, 55.552441], + [37.706022, 55.552531], + [37.706181, 55.552531], + [37.706181, 55.552441], + [37.706022, 55.552441] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706022, 55.552531], + [37.706022, 55.552621], + [37.706181, 55.552621], + [37.706181, 55.552531], + [37.706022, 55.552531] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706022, 55.552621], + [37.706022, 55.552711], + [37.706181, 55.552711], + [37.706181, 55.552621], + [37.706022, 55.552621] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706022, 55.552711], + [37.706022, 55.552801], + [37.706181, 55.552801], + [37.706181, 55.552711], + [37.706022, 55.552711] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706022, 55.552801], + [37.706022, 55.552891], + [37.706181, 55.552891], + [37.706181, 55.552801], + [37.706022, 55.552801] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706022, 55.552891], + [37.706022, 55.552981], + [37.706181, 55.552981], + [37.706181, 55.552891], + [37.706022, 55.552891] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706022, 55.552981], + [37.706022, 55.553071], + [37.706181, 55.553071], + [37.706181, 55.552981], + [37.706022, 55.552981] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706022, 55.553071], + [37.706022, 55.553161], + [37.706181, 55.553161], + [37.706181, 55.553071], + [37.706022, 55.553071] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706022, 55.553161], + [37.706022, 55.553251], + [37.706181, 55.553251], + [37.706181, 55.553161], + [37.706022, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706022, 55.553251], + [37.706022, 55.553341], + [37.706181, 55.553341], + [37.706181, 55.553251], + [37.706022, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706022, 55.553341], + [37.706022, 55.553431], + [37.706181, 55.553431], + [37.706181, 55.553341], + [37.706022, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706022, 55.553431], + [37.706022, 55.55352], + [37.706181, 55.55352], + [37.706181, 55.553431], + [37.706022, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706022, 55.55352], + [37.706022, 55.55361], + [37.706181, 55.55361], + [37.706181, 55.55352], + [37.706022, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706022, 55.55361], + [37.706022, 55.5537], + [37.706181, 55.5537], + [37.706181, 55.55361], + [37.706022, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706022, 55.5537], + [37.706022, 55.55379], + [37.706181, 55.55379], + [37.706181, 55.5537], + [37.706022, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706022, 55.55379], + [37.706022, 55.55388], + [37.706181, 55.55388], + [37.706181, 55.55379], + [37.706022, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706022, 55.55388], + [37.706022, 55.55397], + [37.706181, 55.55397], + [37.706181, 55.55388], + [37.706022, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706022, 55.55397], + [37.706022, 55.55406], + [37.706181, 55.55406], + [37.706181, 55.55397], + [37.706022, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706022, 55.55406], + [37.706022, 55.55415], + [37.706181, 55.55415], + [37.706181, 55.55406], + [37.706022, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706022, 55.55415], + [37.706022, 55.55424], + [37.706181, 55.55424], + [37.706181, 55.55415], + [37.706022, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706022, 55.55424], + [37.706022, 55.55433], + [37.706181, 55.55433], + [37.706181, 55.55424], + [37.706022, 55.55424] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706022, 55.55433], + [37.706022, 55.55442], + [37.706181, 55.55442], + [37.706181, 55.55433], + [37.706022, 55.55433] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706022, 55.55442], + [37.706022, 55.55451], + [37.706181, 55.55451], + [37.706181, 55.55442], + [37.706022, 55.55442] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706022, 55.55451], + [37.706022, 55.5546], + [37.706181, 55.5546], + [37.706181, 55.55451], + [37.706022, 55.55451] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706022, 55.5546], + [37.706022, 55.55469], + [37.706181, 55.55469], + [37.706181, 55.5546], + [37.706022, 55.5546] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706022, 55.55469], + [37.706022, 55.55478], + [37.706181, 55.55478], + [37.706181, 55.55469], + [37.706022, 55.55469] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706022, 55.55478], + [37.706022, 55.554869], + [37.706181, 55.554869], + [37.706181, 55.55478], + [37.706022, 55.55478] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706022, 55.554869], + [37.706022, 55.554959], + [37.706181, 55.554959], + [37.706181, 55.554869], + [37.706022, 55.554869] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706022, 55.554959], + [37.706022, 55.555049], + [37.706181, 55.555049], + [37.706181, 55.554959], + [37.706022, 55.554959] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706022, 55.555049], + [37.706022, 55.555139], + [37.706181, 55.555139], + [37.706181, 55.555049], + [37.706022, 55.555049] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706022, 55.555139], + [37.706022, 55.555229], + [37.706181, 55.555229], + [37.706181, 55.555139], + [37.706022, 55.555139] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706022, 55.555229], + [37.706022, 55.555319], + [37.706181, 55.555319], + [37.706181, 55.555229], + [37.706022, 55.555229] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706022, 55.555319], + [37.706022, 55.555409], + [37.706181, 55.555409], + [37.706181, 55.555319], + [37.706022, 55.555319] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706022, 55.555409], + [37.706022, 55.555499], + [37.706181, 55.555499], + [37.706181, 55.555409], + [37.706022, 55.555409] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706181, 55.551542], + [37.706181, 55.551632], + [37.70634, 55.551632], + [37.70634, 55.551542], + [37.706181, 55.551542] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706181, 55.551632], + [37.706181, 55.551722], + [37.70634, 55.551722], + [37.70634, 55.551632], + [37.706181, 55.551632] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706181, 55.551722], + [37.706181, 55.551812], + [37.70634, 55.551812], + [37.70634, 55.551722], + [37.706181, 55.551722] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706181, 55.551812], + [37.706181, 55.551902], + [37.70634, 55.551902], + [37.70634, 55.551812], + [37.706181, 55.551812] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706181, 55.551902], + [37.706181, 55.551992], + [37.70634, 55.551992], + [37.70634, 55.551902], + [37.706181, 55.551902] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706181, 55.551992], + [37.706181, 55.552082], + [37.70634, 55.552082], + [37.70634, 55.551992], + [37.706181, 55.551992] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706181, 55.552082], + [37.706181, 55.552171], + [37.70634, 55.552171], + [37.70634, 55.552082], + [37.706181, 55.552082] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706181, 55.552171], + [37.706181, 55.552261], + [37.70634, 55.552261], + [37.70634, 55.552171], + [37.706181, 55.552171] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706181, 55.552261], + [37.706181, 55.552351], + [37.70634, 55.552351], + [37.70634, 55.552261], + [37.706181, 55.552261] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706181, 55.552351], + [37.706181, 55.552441], + [37.70634, 55.552441], + [37.70634, 55.552351], + [37.706181, 55.552351] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706181, 55.552441], + [37.706181, 55.552531], + [37.70634, 55.552531], + [37.70634, 55.552441], + [37.706181, 55.552441] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706181, 55.552531], + [37.706181, 55.552621], + [37.70634, 55.552621], + [37.70634, 55.552531], + [37.706181, 55.552531] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706181, 55.552621], + [37.706181, 55.552711], + [37.70634, 55.552711], + [37.70634, 55.552621], + [37.706181, 55.552621] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706181, 55.552711], + [37.706181, 55.552801], + [37.70634, 55.552801], + [37.70634, 55.552711], + [37.706181, 55.552711] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706181, 55.552801], + [37.706181, 55.552891], + [37.70634, 55.552891], + [37.70634, 55.552801], + [37.706181, 55.552801] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706181, 55.552891], + [37.706181, 55.552981], + [37.70634, 55.552981], + [37.70634, 55.552891], + [37.706181, 55.552891] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706181, 55.552981], + [37.706181, 55.553071], + [37.70634, 55.553071], + [37.70634, 55.552981], + [37.706181, 55.552981] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706181, 55.553071], + [37.706181, 55.553161], + [37.70634, 55.553161], + [37.70634, 55.553071], + [37.706181, 55.553071] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706181, 55.553161], + [37.706181, 55.553251], + [37.70634, 55.553251], + [37.70634, 55.553161], + [37.706181, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706181, 55.553251], + [37.706181, 55.553341], + [37.70634, 55.553341], + [37.70634, 55.553251], + [37.706181, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706181, 55.553341], + [37.706181, 55.553431], + [37.70634, 55.553431], + [37.70634, 55.553341], + [37.706181, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706181, 55.553431], + [37.706181, 55.55352], + [37.70634, 55.55352], + [37.70634, 55.553431], + [37.706181, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706181, 55.55352], + [37.706181, 55.55361], + [37.70634, 55.55361], + [37.70634, 55.55352], + [37.706181, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706181, 55.55361], + [37.706181, 55.5537], + [37.70634, 55.5537], + [37.70634, 55.55361], + [37.706181, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706181, 55.5537], + [37.706181, 55.55379], + [37.70634, 55.55379], + [37.70634, 55.5537], + [37.706181, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706181, 55.55379], + [37.706181, 55.55388], + [37.70634, 55.55388], + [37.70634, 55.55379], + [37.706181, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706181, 55.55388], + [37.706181, 55.55397], + [37.70634, 55.55397], + [37.70634, 55.55388], + [37.706181, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706181, 55.55397], + [37.706181, 55.55406], + [37.70634, 55.55406], + [37.70634, 55.55397], + [37.706181, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706181, 55.55406], + [37.706181, 55.55415], + [37.70634, 55.55415], + [37.70634, 55.55406], + [37.706181, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706181, 55.55415], + [37.706181, 55.55424], + [37.70634, 55.55424], + [37.70634, 55.55415], + [37.706181, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706181, 55.55424], + [37.706181, 55.55433], + [37.70634, 55.55433], + [37.70634, 55.55424], + [37.706181, 55.55424] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706181, 55.55433], + [37.706181, 55.55442], + [37.70634, 55.55442], + [37.70634, 55.55433], + [37.706181, 55.55433] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706181, 55.55442], + [37.706181, 55.55451], + [37.70634, 55.55451], + [37.70634, 55.55442], + [37.706181, 55.55442] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706181, 55.55451], + [37.706181, 55.5546], + [37.70634, 55.5546], + [37.70634, 55.55451], + [37.706181, 55.55451] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706181, 55.5546], + [37.706181, 55.55469], + [37.70634, 55.55469], + [37.70634, 55.5546], + [37.706181, 55.5546] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706181, 55.55469], + [37.706181, 55.55478], + [37.70634, 55.55478], + [37.70634, 55.55469], + [37.706181, 55.55469] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706181, 55.55478], + [37.706181, 55.554869], + [37.70634, 55.554869], + [37.70634, 55.55478], + [37.706181, 55.55478] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706181, 55.554869], + [37.706181, 55.554959], + [37.70634, 55.554959], + [37.70634, 55.554869], + [37.706181, 55.554869] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706181, 55.554959], + [37.706181, 55.555049], + [37.70634, 55.555049], + [37.70634, 55.554959], + [37.706181, 55.554959] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706181, 55.555049], + [37.706181, 55.555139], + [37.70634, 55.555139], + [37.70634, 55.555049], + [37.706181, 55.555049] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706181, 55.555139], + [37.706181, 55.555229], + [37.70634, 55.555229], + [37.70634, 55.555139], + [37.706181, 55.555139] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706181, 55.555229], + [37.706181, 55.555319], + [37.70634, 55.555319], + [37.70634, 55.555229], + [37.706181, 55.555229] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706181, 55.555319], + [37.706181, 55.555409], + [37.70634, 55.555409], + [37.70634, 55.555319], + [37.706181, 55.555319] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706181, 55.555409], + [37.706181, 55.555499], + [37.70634, 55.555499], + [37.70634, 55.555409], + [37.706181, 55.555409] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70634, 55.551542], + [37.70634, 55.551632], + [37.706499, 55.551632], + [37.706499, 55.551542], + [37.70634, 55.551542] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70634, 55.551632], + [37.70634, 55.551722], + [37.706499, 55.551722], + [37.706499, 55.551632], + [37.70634, 55.551632] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70634, 55.551722], + [37.70634, 55.551812], + [37.706499, 55.551812], + [37.706499, 55.551722], + [37.70634, 55.551722] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70634, 55.551812], + [37.70634, 55.551902], + [37.706499, 55.551902], + [37.706499, 55.551812], + [37.70634, 55.551812] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70634, 55.551902], + [37.70634, 55.551992], + [37.706499, 55.551992], + [37.706499, 55.551902], + [37.70634, 55.551902] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70634, 55.551992], + [37.70634, 55.552082], + [37.706499, 55.552082], + [37.706499, 55.551992], + [37.70634, 55.551992] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70634, 55.552082], + [37.70634, 55.552171], + [37.706499, 55.552171], + [37.706499, 55.552082], + [37.70634, 55.552082] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70634, 55.552171], + [37.70634, 55.552261], + [37.706499, 55.552261], + [37.706499, 55.552171], + [37.70634, 55.552171] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70634, 55.552261], + [37.70634, 55.552351], + [37.706499, 55.552351], + [37.706499, 55.552261], + [37.70634, 55.552261] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70634, 55.552351], + [37.70634, 55.552441], + [37.706499, 55.552441], + [37.706499, 55.552351], + [37.70634, 55.552351] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70634, 55.552441], + [37.70634, 55.552531], + [37.706499, 55.552531], + [37.706499, 55.552441], + [37.70634, 55.552441] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70634, 55.552531], + [37.70634, 55.552621], + [37.706499, 55.552621], + [37.706499, 55.552531], + [37.70634, 55.552531] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70634, 55.552621], + [37.70634, 55.552711], + [37.706499, 55.552711], + [37.706499, 55.552621], + [37.70634, 55.552621] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70634, 55.552711], + [37.70634, 55.552801], + [37.706499, 55.552801], + [37.706499, 55.552711], + [37.70634, 55.552711] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70634, 55.552801], + [37.70634, 55.552891], + [37.706499, 55.552891], + [37.706499, 55.552801], + [37.70634, 55.552801] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70634, 55.552891], + [37.70634, 55.552981], + [37.706499, 55.552981], + [37.706499, 55.552891], + [37.70634, 55.552891] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70634, 55.552981], + [37.70634, 55.553071], + [37.706499, 55.553071], + [37.706499, 55.552981], + [37.70634, 55.552981] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70634, 55.553071], + [37.70634, 55.553161], + [37.706499, 55.553161], + [37.706499, 55.553071], + [37.70634, 55.553071] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70634, 55.553161], + [37.70634, 55.553251], + [37.706499, 55.553251], + [37.706499, 55.553161], + [37.70634, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70634, 55.553251], + [37.70634, 55.553341], + [37.706499, 55.553341], + [37.706499, 55.553251], + [37.70634, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70634, 55.553341], + [37.70634, 55.553431], + [37.706499, 55.553431], + [37.706499, 55.553341], + [37.70634, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70634, 55.553431], + [37.70634, 55.55352], + [37.706499, 55.55352], + [37.706499, 55.553431], + [37.70634, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70634, 55.55352], + [37.70634, 55.55361], + [37.706499, 55.55361], + [37.706499, 55.55352], + [37.70634, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70634, 55.55361], + [37.70634, 55.5537], + [37.706499, 55.5537], + [37.706499, 55.55361], + [37.70634, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70634, 55.5537], + [37.70634, 55.55379], + [37.706499, 55.55379], + [37.706499, 55.5537], + [37.70634, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70634, 55.55379], + [37.70634, 55.55388], + [37.706499, 55.55388], + [37.706499, 55.55379], + [37.70634, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70634, 55.55388], + [37.70634, 55.55397], + [37.706499, 55.55397], + [37.706499, 55.55388], + [37.70634, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70634, 55.55397], + [37.70634, 55.55406], + [37.706499, 55.55406], + [37.706499, 55.55397], + [37.70634, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70634, 55.55406], + [37.70634, 55.55415], + [37.706499, 55.55415], + [37.706499, 55.55406], + [37.70634, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70634, 55.55415], + [37.70634, 55.55424], + [37.706499, 55.55424], + [37.706499, 55.55415], + [37.70634, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70634, 55.55424], + [37.70634, 55.55433], + [37.706499, 55.55433], + [37.706499, 55.55424], + [37.70634, 55.55424] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70634, 55.55433], + [37.70634, 55.55442], + [37.706499, 55.55442], + [37.706499, 55.55433], + [37.70634, 55.55433] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70634, 55.55442], + [37.70634, 55.55451], + [37.706499, 55.55451], + [37.706499, 55.55442], + [37.70634, 55.55442] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70634, 55.55451], + [37.70634, 55.5546], + [37.706499, 55.5546], + [37.706499, 55.55451], + [37.70634, 55.55451] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70634, 55.5546], + [37.70634, 55.55469], + [37.706499, 55.55469], + [37.706499, 55.5546], + [37.70634, 55.5546] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70634, 55.55469], + [37.70634, 55.55478], + [37.706499, 55.55478], + [37.706499, 55.55469], + [37.70634, 55.55469] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70634, 55.55478], + [37.70634, 55.554869], + [37.706499, 55.554869], + [37.706499, 55.55478], + [37.70634, 55.55478] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70634, 55.554869], + [37.70634, 55.554959], + [37.706499, 55.554959], + [37.706499, 55.554869], + [37.70634, 55.554869] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70634, 55.554959], + [37.70634, 55.555049], + [37.706499, 55.555049], + [37.706499, 55.554959], + [37.70634, 55.554959] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70634, 55.555049], + [37.70634, 55.555139], + [37.706499, 55.555139], + [37.706499, 55.555049], + [37.70634, 55.555049] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70634, 55.555139], + [37.70634, 55.555229], + [37.706499, 55.555229], + [37.706499, 55.555139], + [37.70634, 55.555139] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70634, 55.555229], + [37.70634, 55.555319], + [37.706499, 55.555319], + [37.706499, 55.555229], + [37.70634, 55.555229] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70634, 55.555319], + [37.70634, 55.555409], + [37.706499, 55.555409], + [37.706499, 55.555319], + [37.70634, 55.555319] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70634, 55.555409], + [37.70634, 55.555499], + [37.706499, 55.555499], + [37.706499, 55.555409], + [37.70634, 55.555409] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70634, 55.555499], + [37.70634, 55.555589], + [37.706499, 55.555589], + [37.706499, 55.555499], + [37.70634, 55.555499] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706499, 55.551542], + [37.706499, 55.551632], + [37.706658, 55.551632], + [37.706658, 55.551542], + [37.706499, 55.551542] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706499, 55.551632], + [37.706499, 55.551722], + [37.706658, 55.551722], + [37.706658, 55.551632], + [37.706499, 55.551632] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706499, 55.551722], + [37.706499, 55.551812], + [37.706658, 55.551812], + [37.706658, 55.551722], + [37.706499, 55.551722] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706499, 55.551812], + [37.706499, 55.551902], + [37.706658, 55.551902], + [37.706658, 55.551812], + [37.706499, 55.551812] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706499, 55.551902], + [37.706499, 55.551992], + [37.706658, 55.551992], + [37.706658, 55.551902], + [37.706499, 55.551902] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706499, 55.551992], + [37.706499, 55.552082], + [37.706658, 55.552082], + [37.706658, 55.551992], + [37.706499, 55.551992] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706499, 55.552082], + [37.706499, 55.552171], + [37.706658, 55.552171], + [37.706658, 55.552082], + [37.706499, 55.552082] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706499, 55.552171], + [37.706499, 55.552261], + [37.706658, 55.552261], + [37.706658, 55.552171], + [37.706499, 55.552171] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706499, 55.552261], + [37.706499, 55.552351], + [37.706658, 55.552351], + [37.706658, 55.552261], + [37.706499, 55.552261] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706499, 55.552351], + [37.706499, 55.552441], + [37.706658, 55.552441], + [37.706658, 55.552351], + [37.706499, 55.552351] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706499, 55.552441], + [37.706499, 55.552531], + [37.706658, 55.552531], + [37.706658, 55.552441], + [37.706499, 55.552441] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706499, 55.552531], + [37.706499, 55.552621], + [37.706658, 55.552621], + [37.706658, 55.552531], + [37.706499, 55.552531] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706499, 55.552621], + [37.706499, 55.552711], + [37.706658, 55.552711], + [37.706658, 55.552621], + [37.706499, 55.552621] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706499, 55.552711], + [37.706499, 55.552801], + [37.706658, 55.552801], + [37.706658, 55.552711], + [37.706499, 55.552711] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706499, 55.552801], + [37.706499, 55.552891], + [37.706658, 55.552891], + [37.706658, 55.552801], + [37.706499, 55.552801] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706499, 55.552891], + [37.706499, 55.552981], + [37.706658, 55.552981], + [37.706658, 55.552891], + [37.706499, 55.552891] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706499, 55.552981], + [37.706499, 55.553071], + [37.706658, 55.553071], + [37.706658, 55.552981], + [37.706499, 55.552981] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706499, 55.553071], + [37.706499, 55.553161], + [37.706658, 55.553161], + [37.706658, 55.553071], + [37.706499, 55.553071] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706499, 55.553161], + [37.706499, 55.553251], + [37.706658, 55.553251], + [37.706658, 55.553161], + [37.706499, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706499, 55.553251], + [37.706499, 55.553341], + [37.706658, 55.553341], + [37.706658, 55.553251], + [37.706499, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706499, 55.553341], + [37.706499, 55.553431], + [37.706658, 55.553431], + [37.706658, 55.553341], + [37.706499, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706499, 55.553431], + [37.706499, 55.55352], + [37.706658, 55.55352], + [37.706658, 55.553431], + [37.706499, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706499, 55.55352], + [37.706499, 55.55361], + [37.706658, 55.55361], + [37.706658, 55.55352], + [37.706499, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706499, 55.55361], + [37.706499, 55.5537], + [37.706658, 55.5537], + [37.706658, 55.55361], + [37.706499, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706499, 55.5537], + [37.706499, 55.55379], + [37.706658, 55.55379], + [37.706658, 55.5537], + [37.706499, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706499, 55.55379], + [37.706499, 55.55388], + [37.706658, 55.55388], + [37.706658, 55.55379], + [37.706499, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706499, 55.55388], + [37.706499, 55.55397], + [37.706658, 55.55397], + [37.706658, 55.55388], + [37.706499, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706499, 55.55397], + [37.706499, 55.55406], + [37.706658, 55.55406], + [37.706658, 55.55397], + [37.706499, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706499, 55.55406], + [37.706499, 55.55415], + [37.706658, 55.55415], + [37.706658, 55.55406], + [37.706499, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706499, 55.55415], + [37.706499, 55.55424], + [37.706658, 55.55424], + [37.706658, 55.55415], + [37.706499, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706499, 55.55424], + [37.706499, 55.55433], + [37.706658, 55.55433], + [37.706658, 55.55424], + [37.706499, 55.55424] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706499, 55.55433], + [37.706499, 55.55442], + [37.706658, 55.55442], + [37.706658, 55.55433], + [37.706499, 55.55433] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706499, 55.55442], + [37.706499, 55.55451], + [37.706658, 55.55451], + [37.706658, 55.55442], + [37.706499, 55.55442] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706499, 55.55451], + [37.706499, 55.5546], + [37.706658, 55.5546], + [37.706658, 55.55451], + [37.706499, 55.55451] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706499, 55.5546], + [37.706499, 55.55469], + [37.706658, 55.55469], + [37.706658, 55.5546], + [37.706499, 55.5546] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706499, 55.55469], + [37.706499, 55.55478], + [37.706658, 55.55478], + [37.706658, 55.55469], + [37.706499, 55.55469] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706499, 55.55478], + [37.706499, 55.554869], + [37.706658, 55.554869], + [37.706658, 55.55478], + [37.706499, 55.55478] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706499, 55.554869], + [37.706499, 55.554959], + [37.706658, 55.554959], + [37.706658, 55.554869], + [37.706499, 55.554869] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706499, 55.554959], + [37.706499, 55.555049], + [37.706658, 55.555049], + [37.706658, 55.554959], + [37.706499, 55.554959] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706499, 55.555049], + [37.706499, 55.555139], + [37.706658, 55.555139], + [37.706658, 55.555049], + [37.706499, 55.555049] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706499, 55.555139], + [37.706499, 55.555229], + [37.706658, 55.555229], + [37.706658, 55.555139], + [37.706499, 55.555139] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706499, 55.555229], + [37.706499, 55.555319], + [37.706658, 55.555319], + [37.706658, 55.555229], + [37.706499, 55.555229] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706499, 55.555319], + [37.706499, 55.555409], + [37.706658, 55.555409], + [37.706658, 55.555319], + [37.706499, 55.555319] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706499, 55.555409], + [37.706499, 55.555499], + [37.706658, 55.555499], + [37.706658, 55.555409], + [37.706499, 55.555409] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706499, 55.555499], + [37.706499, 55.555589], + [37.706658, 55.555589], + [37.706658, 55.555499], + [37.706499, 55.555499] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706658, 55.551632], + [37.706658, 55.551722], + [37.706817, 55.551722], + [37.706817, 55.551632], + [37.706658, 55.551632] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706658, 55.551722], + [37.706658, 55.551812], + [37.706817, 55.551812], + [37.706817, 55.551722], + [37.706658, 55.551722] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706658, 55.551812], + [37.706658, 55.551902], + [37.706817, 55.551902], + [37.706817, 55.551812], + [37.706658, 55.551812] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706658, 55.551902], + [37.706658, 55.551992], + [37.706817, 55.551992], + [37.706817, 55.551902], + [37.706658, 55.551902] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706658, 55.551992], + [37.706658, 55.552082], + [37.706817, 55.552082], + [37.706817, 55.551992], + [37.706658, 55.551992] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706658, 55.552082], + [37.706658, 55.552171], + [37.706817, 55.552171], + [37.706817, 55.552082], + [37.706658, 55.552082] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706658, 55.552171], + [37.706658, 55.552261], + [37.706817, 55.552261], + [37.706817, 55.552171], + [37.706658, 55.552171] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706658, 55.552261], + [37.706658, 55.552351], + [37.706817, 55.552351], + [37.706817, 55.552261], + [37.706658, 55.552261] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706658, 55.552351], + [37.706658, 55.552441], + [37.706817, 55.552441], + [37.706817, 55.552351], + [37.706658, 55.552351] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706658, 55.552441], + [37.706658, 55.552531], + [37.706817, 55.552531], + [37.706817, 55.552441], + [37.706658, 55.552441] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706658, 55.552531], + [37.706658, 55.552621], + [37.706817, 55.552621], + [37.706817, 55.552531], + [37.706658, 55.552531] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706658, 55.552621], + [37.706658, 55.552711], + [37.706817, 55.552711], + [37.706817, 55.552621], + [37.706658, 55.552621] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706658, 55.552711], + [37.706658, 55.552801], + [37.706817, 55.552801], + [37.706817, 55.552711], + [37.706658, 55.552711] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706658, 55.552801], + [37.706658, 55.552891], + [37.706817, 55.552891], + [37.706817, 55.552801], + [37.706658, 55.552801] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706658, 55.552891], + [37.706658, 55.552981], + [37.706817, 55.552981], + [37.706817, 55.552891], + [37.706658, 55.552891] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706658, 55.552981], + [37.706658, 55.553071], + [37.706817, 55.553071], + [37.706817, 55.552981], + [37.706658, 55.552981] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706658, 55.553071], + [37.706658, 55.553161], + [37.706817, 55.553161], + [37.706817, 55.553071], + [37.706658, 55.553071] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706658, 55.553161], + [37.706658, 55.553251], + [37.706817, 55.553251], + [37.706817, 55.553161], + [37.706658, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706658, 55.553251], + [37.706658, 55.553341], + [37.706817, 55.553341], + [37.706817, 55.553251], + [37.706658, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706658, 55.553341], + [37.706658, 55.553431], + [37.706817, 55.553431], + [37.706817, 55.553341], + [37.706658, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706658, 55.553431], + [37.706658, 55.55352], + [37.706817, 55.55352], + [37.706817, 55.553431], + [37.706658, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706658, 55.55352], + [37.706658, 55.55361], + [37.706817, 55.55361], + [37.706817, 55.55352], + [37.706658, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706658, 55.55361], + [37.706658, 55.5537], + [37.706817, 55.5537], + [37.706817, 55.55361], + [37.706658, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706658, 55.5537], + [37.706658, 55.55379], + [37.706817, 55.55379], + [37.706817, 55.5537], + [37.706658, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706658, 55.55379], + [37.706658, 55.55388], + [37.706817, 55.55388], + [37.706817, 55.55379], + [37.706658, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706658, 55.55388], + [37.706658, 55.55397], + [37.706817, 55.55397], + [37.706817, 55.55388], + [37.706658, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706658, 55.55397], + [37.706658, 55.55406], + [37.706817, 55.55406], + [37.706817, 55.55397], + [37.706658, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706658, 55.55406], + [37.706658, 55.55415], + [37.706817, 55.55415], + [37.706817, 55.55406], + [37.706658, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706658, 55.55415], + [37.706658, 55.55424], + [37.706817, 55.55424], + [37.706817, 55.55415], + [37.706658, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706658, 55.55424], + [37.706658, 55.55433], + [37.706817, 55.55433], + [37.706817, 55.55424], + [37.706658, 55.55424] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706658, 55.55433], + [37.706658, 55.55442], + [37.706817, 55.55442], + [37.706817, 55.55433], + [37.706658, 55.55433] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706658, 55.55442], + [37.706658, 55.55451], + [37.706817, 55.55451], + [37.706817, 55.55442], + [37.706658, 55.55442] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706658, 55.55451], + [37.706658, 55.5546], + [37.706817, 55.5546], + [37.706817, 55.55451], + [37.706658, 55.55451] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706658, 55.5546], + [37.706658, 55.55469], + [37.706817, 55.55469], + [37.706817, 55.5546], + [37.706658, 55.5546] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706658, 55.55469], + [37.706658, 55.55478], + [37.706817, 55.55478], + [37.706817, 55.55469], + [37.706658, 55.55469] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706658, 55.55478], + [37.706658, 55.554869], + [37.706817, 55.554869], + [37.706817, 55.55478], + [37.706658, 55.55478] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706658, 55.554869], + [37.706658, 55.554959], + [37.706817, 55.554959], + [37.706817, 55.554869], + [37.706658, 55.554869] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706658, 55.554959], + [37.706658, 55.555049], + [37.706817, 55.555049], + [37.706817, 55.554959], + [37.706658, 55.554959] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706658, 55.555049], + [37.706658, 55.555139], + [37.706817, 55.555139], + [37.706817, 55.555049], + [37.706658, 55.555049] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706658, 55.555139], + [37.706658, 55.555229], + [37.706817, 55.555229], + [37.706817, 55.555139], + [37.706658, 55.555139] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706658, 55.555229], + [37.706658, 55.555319], + [37.706817, 55.555319], + [37.706817, 55.555229], + [37.706658, 55.555229] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706658, 55.555319], + [37.706658, 55.555409], + [37.706817, 55.555409], + [37.706817, 55.555319], + [37.706658, 55.555319] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706658, 55.555409], + [37.706658, 55.555499], + [37.706817, 55.555499], + [37.706817, 55.555409], + [37.706658, 55.555409] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706658, 55.555499], + [37.706658, 55.555589], + [37.706817, 55.555589], + [37.706817, 55.555499], + [37.706658, 55.555499] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706658, 55.555589], + [37.706658, 55.555679], + [37.706817, 55.555679], + [37.706817, 55.555589], + [37.706658, 55.555589] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706817, 55.551812], + [37.706817, 55.551902], + [37.706976, 55.551902], + [37.706976, 55.551812], + [37.706817, 55.551812] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706817, 55.551902], + [37.706817, 55.551992], + [37.706976, 55.551992], + [37.706976, 55.551902], + [37.706817, 55.551902] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706817, 55.551992], + [37.706817, 55.552082], + [37.706976, 55.552082], + [37.706976, 55.551992], + [37.706817, 55.551992] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706817, 55.552082], + [37.706817, 55.552171], + [37.706976, 55.552171], + [37.706976, 55.552082], + [37.706817, 55.552082] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706817, 55.552171], + [37.706817, 55.552261], + [37.706976, 55.552261], + [37.706976, 55.552171], + [37.706817, 55.552171] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706817, 55.552261], + [37.706817, 55.552351], + [37.706976, 55.552351], + [37.706976, 55.552261], + [37.706817, 55.552261] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706817, 55.552351], + [37.706817, 55.552441], + [37.706976, 55.552441], + [37.706976, 55.552351], + [37.706817, 55.552351] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706817, 55.552441], + [37.706817, 55.552531], + [37.706976, 55.552531], + [37.706976, 55.552441], + [37.706817, 55.552441] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706817, 55.552531], + [37.706817, 55.552621], + [37.706976, 55.552621], + [37.706976, 55.552531], + [37.706817, 55.552531] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706817, 55.552621], + [37.706817, 55.552711], + [37.706976, 55.552711], + [37.706976, 55.552621], + [37.706817, 55.552621] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706817, 55.552711], + [37.706817, 55.552801], + [37.706976, 55.552801], + [37.706976, 55.552711], + [37.706817, 55.552711] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706817, 55.552801], + [37.706817, 55.552891], + [37.706976, 55.552891], + [37.706976, 55.552801], + [37.706817, 55.552801] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706817, 55.552891], + [37.706817, 55.552981], + [37.706976, 55.552981], + [37.706976, 55.552891], + [37.706817, 55.552891] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706817, 55.552981], + [37.706817, 55.553071], + [37.706976, 55.553071], + [37.706976, 55.552981], + [37.706817, 55.552981] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706817, 55.553071], + [37.706817, 55.553161], + [37.706976, 55.553161], + [37.706976, 55.553071], + [37.706817, 55.553071] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706817, 55.553161], + [37.706817, 55.553251], + [37.706976, 55.553251], + [37.706976, 55.553161], + [37.706817, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706817, 55.553251], + [37.706817, 55.553341], + [37.706976, 55.553341], + [37.706976, 55.553251], + [37.706817, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706817, 55.553341], + [37.706817, 55.553431], + [37.706976, 55.553431], + [37.706976, 55.553341], + [37.706817, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706817, 55.553431], + [37.706817, 55.55352], + [37.706976, 55.55352], + [37.706976, 55.553431], + [37.706817, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706817, 55.55352], + [37.706817, 55.55361], + [37.706976, 55.55361], + [37.706976, 55.55352], + [37.706817, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706817, 55.55361], + [37.706817, 55.5537], + [37.706976, 55.5537], + [37.706976, 55.55361], + [37.706817, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706817, 55.5537], + [37.706817, 55.55379], + [37.706976, 55.55379], + [37.706976, 55.5537], + [37.706817, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706817, 55.55379], + [37.706817, 55.55388], + [37.706976, 55.55388], + [37.706976, 55.55379], + [37.706817, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706817, 55.55388], + [37.706817, 55.55397], + [37.706976, 55.55397], + [37.706976, 55.55388], + [37.706817, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706817, 55.55397], + [37.706817, 55.55406], + [37.706976, 55.55406], + [37.706976, 55.55397], + [37.706817, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706817, 55.55406], + [37.706817, 55.55415], + [37.706976, 55.55415], + [37.706976, 55.55406], + [37.706817, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706817, 55.55415], + [37.706817, 55.55424], + [37.706976, 55.55424], + [37.706976, 55.55415], + [37.706817, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706817, 55.55424], + [37.706817, 55.55433], + [37.706976, 55.55433], + [37.706976, 55.55424], + [37.706817, 55.55424] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706817, 55.55433], + [37.706817, 55.55442], + [37.706976, 55.55442], + [37.706976, 55.55433], + [37.706817, 55.55433] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706817, 55.55442], + [37.706817, 55.55451], + [37.706976, 55.55451], + [37.706976, 55.55442], + [37.706817, 55.55442] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706817, 55.55451], + [37.706817, 55.5546], + [37.706976, 55.5546], + [37.706976, 55.55451], + [37.706817, 55.55451] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706817, 55.5546], + [37.706817, 55.55469], + [37.706976, 55.55469], + [37.706976, 55.5546], + [37.706817, 55.5546] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706817, 55.55469], + [37.706817, 55.55478], + [37.706976, 55.55478], + [37.706976, 55.55469], + [37.706817, 55.55469] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706817, 55.55478], + [37.706817, 55.554869], + [37.706976, 55.554869], + [37.706976, 55.55478], + [37.706817, 55.55478] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706817, 55.554869], + [37.706817, 55.554959], + [37.706976, 55.554959], + [37.706976, 55.554869], + [37.706817, 55.554869] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706817, 55.554959], + [37.706817, 55.555049], + [37.706976, 55.555049], + [37.706976, 55.554959], + [37.706817, 55.554959] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706817, 55.555049], + [37.706817, 55.555139], + [37.706976, 55.555139], + [37.706976, 55.555049], + [37.706817, 55.555049] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706817, 55.555139], + [37.706817, 55.555229], + [37.706976, 55.555229], + [37.706976, 55.555139], + [37.706817, 55.555139] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706817, 55.555229], + [37.706817, 55.555319], + [37.706976, 55.555319], + [37.706976, 55.555229], + [37.706817, 55.555229] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706817, 55.555319], + [37.706817, 55.555409], + [37.706976, 55.555409], + [37.706976, 55.555319], + [37.706817, 55.555319] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706817, 55.555409], + [37.706817, 55.555499], + [37.706976, 55.555499], + [37.706976, 55.555409], + [37.706817, 55.555409] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706817, 55.555499], + [37.706817, 55.555589], + [37.706976, 55.555589], + [37.706976, 55.555499], + [37.706817, 55.555499] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706817, 55.555589], + [37.706817, 55.555679], + [37.706976, 55.555679], + [37.706976, 55.555589], + [37.706817, 55.555589] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706976, 55.551992], + [37.706976, 55.552082], + [37.707135, 55.552082], + [37.707135, 55.551992], + [37.706976, 55.551992] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706976, 55.552082], + [37.706976, 55.552171], + [37.707135, 55.552171], + [37.707135, 55.552082], + [37.706976, 55.552082] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706976, 55.552171], + [37.706976, 55.552261], + [37.707135, 55.552261], + [37.707135, 55.552171], + [37.706976, 55.552171] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706976, 55.552261], + [37.706976, 55.552351], + [37.707135, 55.552351], + [37.707135, 55.552261], + [37.706976, 55.552261] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706976, 55.552351], + [37.706976, 55.552441], + [37.707135, 55.552441], + [37.707135, 55.552351], + [37.706976, 55.552351] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706976, 55.552441], + [37.706976, 55.552531], + [37.707135, 55.552531], + [37.707135, 55.552441], + [37.706976, 55.552441] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706976, 55.552531], + [37.706976, 55.552621], + [37.707135, 55.552621], + [37.707135, 55.552531], + [37.706976, 55.552531] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706976, 55.552621], + [37.706976, 55.552711], + [37.707135, 55.552711], + [37.707135, 55.552621], + [37.706976, 55.552621] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706976, 55.552711], + [37.706976, 55.552801], + [37.707135, 55.552801], + [37.707135, 55.552711], + [37.706976, 55.552711] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706976, 55.552801], + [37.706976, 55.552891], + [37.707135, 55.552891], + [37.707135, 55.552801], + [37.706976, 55.552801] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706976, 55.552891], + [37.706976, 55.552981], + [37.707135, 55.552981], + [37.707135, 55.552891], + [37.706976, 55.552891] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706976, 55.552981], + [37.706976, 55.553071], + [37.707135, 55.553071], + [37.707135, 55.552981], + [37.706976, 55.552981] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706976, 55.553071], + [37.706976, 55.553161], + [37.707135, 55.553161], + [37.707135, 55.553071], + [37.706976, 55.553071] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706976, 55.553161], + [37.706976, 55.553251], + [37.707135, 55.553251], + [37.707135, 55.553161], + [37.706976, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706976, 55.553251], + [37.706976, 55.553341], + [37.707135, 55.553341], + [37.707135, 55.553251], + [37.706976, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706976, 55.553341], + [37.706976, 55.553431], + [37.707135, 55.553431], + [37.707135, 55.553341], + [37.706976, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706976, 55.553431], + [37.706976, 55.55352], + [37.707135, 55.55352], + [37.707135, 55.553431], + [37.706976, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706976, 55.55352], + [37.706976, 55.55361], + [37.707135, 55.55361], + [37.707135, 55.55352], + [37.706976, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706976, 55.55361], + [37.706976, 55.5537], + [37.707135, 55.5537], + [37.707135, 55.55361], + [37.706976, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706976, 55.5537], + [37.706976, 55.55379], + [37.707135, 55.55379], + [37.707135, 55.5537], + [37.706976, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706976, 55.55379], + [37.706976, 55.55388], + [37.707135, 55.55388], + [37.707135, 55.55379], + [37.706976, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706976, 55.55388], + [37.706976, 55.55397], + [37.707135, 55.55397], + [37.707135, 55.55388], + [37.706976, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706976, 55.55397], + [37.706976, 55.55406], + [37.707135, 55.55406], + [37.707135, 55.55397], + [37.706976, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706976, 55.55406], + [37.706976, 55.55415], + [37.707135, 55.55415], + [37.707135, 55.55406], + [37.706976, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706976, 55.55415], + [37.706976, 55.55424], + [37.707135, 55.55424], + [37.707135, 55.55415], + [37.706976, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706976, 55.55424], + [37.706976, 55.55433], + [37.707135, 55.55433], + [37.707135, 55.55424], + [37.706976, 55.55424] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706976, 55.55433], + [37.706976, 55.55442], + [37.707135, 55.55442], + [37.707135, 55.55433], + [37.706976, 55.55433] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706976, 55.55442], + [37.706976, 55.55451], + [37.707135, 55.55451], + [37.707135, 55.55442], + [37.706976, 55.55442] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706976, 55.55451], + [37.706976, 55.5546], + [37.707135, 55.5546], + [37.707135, 55.55451], + [37.706976, 55.55451] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706976, 55.5546], + [37.706976, 55.55469], + [37.707135, 55.55469], + [37.707135, 55.5546], + [37.706976, 55.5546] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706976, 55.55469], + [37.706976, 55.55478], + [37.707135, 55.55478], + [37.707135, 55.55469], + [37.706976, 55.55469] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706976, 55.55478], + [37.706976, 55.554869], + [37.707135, 55.554869], + [37.707135, 55.55478], + [37.706976, 55.55478] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706976, 55.554869], + [37.706976, 55.554959], + [37.707135, 55.554959], + [37.707135, 55.554869], + [37.706976, 55.554869] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706976, 55.554959], + [37.706976, 55.555049], + [37.707135, 55.555049], + [37.707135, 55.554959], + [37.706976, 55.554959] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706976, 55.555049], + [37.706976, 55.555139], + [37.707135, 55.555139], + [37.707135, 55.555049], + [37.706976, 55.555049] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706976, 55.555139], + [37.706976, 55.555229], + [37.707135, 55.555229], + [37.707135, 55.555139], + [37.706976, 55.555139] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706976, 55.555229], + [37.706976, 55.555319], + [37.707135, 55.555319], + [37.707135, 55.555229], + [37.706976, 55.555229] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706976, 55.555319], + [37.706976, 55.555409], + [37.707135, 55.555409], + [37.707135, 55.555319], + [37.706976, 55.555319] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706976, 55.555409], + [37.706976, 55.555499], + [37.707135, 55.555499], + [37.707135, 55.555409], + [37.706976, 55.555409] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706976, 55.555499], + [37.706976, 55.555589], + [37.707135, 55.555589], + [37.707135, 55.555499], + [37.706976, 55.555499] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706976, 55.555589], + [37.706976, 55.555679], + [37.707135, 55.555679], + [37.707135, 55.555589], + [37.706976, 55.555589] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.706976, 55.555679], + [37.706976, 55.555769], + [37.707135, 55.555769], + [37.707135, 55.555679], + [37.706976, 55.555679] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707135, 55.552261], + [37.707135, 55.552351], + [37.707294, 55.552351], + [37.707294, 55.552261], + [37.707135, 55.552261] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707135, 55.552351], + [37.707135, 55.552441], + [37.707294, 55.552441], + [37.707294, 55.552351], + [37.707135, 55.552351] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707135, 55.552441], + [37.707135, 55.552531], + [37.707294, 55.552531], + [37.707294, 55.552441], + [37.707135, 55.552441] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707135, 55.552531], + [37.707135, 55.552621], + [37.707294, 55.552621], + [37.707294, 55.552531], + [37.707135, 55.552531] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707135, 55.552621], + [37.707135, 55.552711], + [37.707294, 55.552711], + [37.707294, 55.552621], + [37.707135, 55.552621] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707135, 55.552711], + [37.707135, 55.552801], + [37.707294, 55.552801], + [37.707294, 55.552711], + [37.707135, 55.552711] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707135, 55.552801], + [37.707135, 55.552891], + [37.707294, 55.552891], + [37.707294, 55.552801], + [37.707135, 55.552801] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707135, 55.552891], + [37.707135, 55.552981], + [37.707294, 55.552981], + [37.707294, 55.552891], + [37.707135, 55.552891] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707135, 55.552981], + [37.707135, 55.553071], + [37.707294, 55.553071], + [37.707294, 55.552981], + [37.707135, 55.552981] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707135, 55.553071], + [37.707135, 55.553161], + [37.707294, 55.553161], + [37.707294, 55.553071], + [37.707135, 55.553071] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707135, 55.553161], + [37.707135, 55.553251], + [37.707294, 55.553251], + [37.707294, 55.553161], + [37.707135, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707135, 55.553251], + [37.707135, 55.553341], + [37.707294, 55.553341], + [37.707294, 55.553251], + [37.707135, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707135, 55.553341], + [37.707135, 55.553431], + [37.707294, 55.553431], + [37.707294, 55.553341], + [37.707135, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707135, 55.553431], + [37.707135, 55.55352], + [37.707294, 55.55352], + [37.707294, 55.553431], + [37.707135, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707135, 55.55352], + [37.707135, 55.55361], + [37.707294, 55.55361], + [37.707294, 55.55352], + [37.707135, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707135, 55.55361], + [37.707135, 55.5537], + [37.707294, 55.5537], + [37.707294, 55.55361], + [37.707135, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707135, 55.5537], + [37.707135, 55.55379], + [37.707294, 55.55379], + [37.707294, 55.5537], + [37.707135, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707135, 55.55379], + [37.707135, 55.55388], + [37.707294, 55.55388], + [37.707294, 55.55379], + [37.707135, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707135, 55.55388], + [37.707135, 55.55397], + [37.707294, 55.55397], + [37.707294, 55.55388], + [37.707135, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707135, 55.55397], + [37.707135, 55.55406], + [37.707294, 55.55406], + [37.707294, 55.55397], + [37.707135, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707135, 55.55406], + [37.707135, 55.55415], + [37.707294, 55.55415], + [37.707294, 55.55406], + [37.707135, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707135, 55.55415], + [37.707135, 55.55424], + [37.707294, 55.55424], + [37.707294, 55.55415], + [37.707135, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707135, 55.55424], + [37.707135, 55.55433], + [37.707294, 55.55433], + [37.707294, 55.55424], + [37.707135, 55.55424] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707135, 55.55433], + [37.707135, 55.55442], + [37.707294, 55.55442], + [37.707294, 55.55433], + [37.707135, 55.55433] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707135, 55.55442], + [37.707135, 55.55451], + [37.707294, 55.55451], + [37.707294, 55.55442], + [37.707135, 55.55442] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707135, 55.55451], + [37.707135, 55.5546], + [37.707294, 55.5546], + [37.707294, 55.55451], + [37.707135, 55.55451] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707135, 55.5546], + [37.707135, 55.55469], + [37.707294, 55.55469], + [37.707294, 55.5546], + [37.707135, 55.5546] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707135, 55.55469], + [37.707135, 55.55478], + [37.707294, 55.55478], + [37.707294, 55.55469], + [37.707135, 55.55469] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707135, 55.55478], + [37.707135, 55.554869], + [37.707294, 55.554869], + [37.707294, 55.55478], + [37.707135, 55.55478] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707135, 55.554869], + [37.707135, 55.554959], + [37.707294, 55.554959], + [37.707294, 55.554869], + [37.707135, 55.554869] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707135, 55.554959], + [37.707135, 55.555049], + [37.707294, 55.555049], + [37.707294, 55.554959], + [37.707135, 55.554959] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707135, 55.555049], + [37.707135, 55.555139], + [37.707294, 55.555139], + [37.707294, 55.555049], + [37.707135, 55.555049] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707135, 55.555139], + [37.707135, 55.555229], + [37.707294, 55.555229], + [37.707294, 55.555139], + [37.707135, 55.555139] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707135, 55.555229], + [37.707135, 55.555319], + [37.707294, 55.555319], + [37.707294, 55.555229], + [37.707135, 55.555229] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707135, 55.555319], + [37.707135, 55.555409], + [37.707294, 55.555409], + [37.707294, 55.555319], + [37.707135, 55.555319] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707135, 55.555409], + [37.707135, 55.555499], + [37.707294, 55.555499], + [37.707294, 55.555409], + [37.707135, 55.555409] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707135, 55.555499], + [37.707135, 55.555589], + [37.707294, 55.555589], + [37.707294, 55.555499], + [37.707135, 55.555499] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707135, 55.555589], + [37.707135, 55.555679], + [37.707294, 55.555679], + [37.707294, 55.555589], + [37.707135, 55.555589] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707135, 55.555679], + [37.707135, 55.555769], + [37.707294, 55.555769], + [37.707294, 55.555679], + [37.707135, 55.555679] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707294, 55.552441], + [37.707294, 55.552531], + [37.707453, 55.552531], + [37.707453, 55.552441], + [37.707294, 55.552441] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707294, 55.552531], + [37.707294, 55.552621], + [37.707453, 55.552621], + [37.707453, 55.552531], + [37.707294, 55.552531] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707294, 55.552621], + [37.707294, 55.552711], + [37.707453, 55.552711], + [37.707453, 55.552621], + [37.707294, 55.552621] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707294, 55.552711], + [37.707294, 55.552801], + [37.707453, 55.552801], + [37.707453, 55.552711], + [37.707294, 55.552711] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707294, 55.552801], + [37.707294, 55.552891], + [37.707453, 55.552891], + [37.707453, 55.552801], + [37.707294, 55.552801] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707294, 55.552891], + [37.707294, 55.552981], + [37.707453, 55.552981], + [37.707453, 55.552891], + [37.707294, 55.552891] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707294, 55.552981], + [37.707294, 55.553071], + [37.707453, 55.553071], + [37.707453, 55.552981], + [37.707294, 55.552981] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707294, 55.553071], + [37.707294, 55.553161], + [37.707453, 55.553161], + [37.707453, 55.553071], + [37.707294, 55.553071] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707294, 55.553161], + [37.707294, 55.553251], + [37.707453, 55.553251], + [37.707453, 55.553161], + [37.707294, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707294, 55.553251], + [37.707294, 55.553341], + [37.707453, 55.553341], + [37.707453, 55.553251], + [37.707294, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707294, 55.553341], + [37.707294, 55.553431], + [37.707453, 55.553431], + [37.707453, 55.553341], + [37.707294, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707294, 55.553431], + [37.707294, 55.55352], + [37.707453, 55.55352], + [37.707453, 55.553431], + [37.707294, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707294, 55.55352], + [37.707294, 55.55361], + [37.707453, 55.55361], + [37.707453, 55.55352], + [37.707294, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707294, 55.55361], + [37.707294, 55.5537], + [37.707453, 55.5537], + [37.707453, 55.55361], + [37.707294, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707294, 55.5537], + [37.707294, 55.55379], + [37.707453, 55.55379], + [37.707453, 55.5537], + [37.707294, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707294, 55.55379], + [37.707294, 55.55388], + [37.707453, 55.55388], + [37.707453, 55.55379], + [37.707294, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707294, 55.55388], + [37.707294, 55.55397], + [37.707453, 55.55397], + [37.707453, 55.55388], + [37.707294, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707294, 55.55397], + [37.707294, 55.55406], + [37.707453, 55.55406], + [37.707453, 55.55397], + [37.707294, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707294, 55.55406], + [37.707294, 55.55415], + [37.707453, 55.55415], + [37.707453, 55.55406], + [37.707294, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707294, 55.55415], + [37.707294, 55.55424], + [37.707453, 55.55424], + [37.707453, 55.55415], + [37.707294, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707294, 55.55424], + [37.707294, 55.55433], + [37.707453, 55.55433], + [37.707453, 55.55424], + [37.707294, 55.55424] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707294, 55.55433], + [37.707294, 55.55442], + [37.707453, 55.55442], + [37.707453, 55.55433], + [37.707294, 55.55433] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707294, 55.55442], + [37.707294, 55.55451], + [37.707453, 55.55451], + [37.707453, 55.55442], + [37.707294, 55.55442] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707294, 55.55451], + [37.707294, 55.5546], + [37.707453, 55.5546], + [37.707453, 55.55451], + [37.707294, 55.55451] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707294, 55.5546], + [37.707294, 55.55469], + [37.707453, 55.55469], + [37.707453, 55.5546], + [37.707294, 55.5546] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707294, 55.55469], + [37.707294, 55.55478], + [37.707453, 55.55478], + [37.707453, 55.55469], + [37.707294, 55.55469] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707294, 55.55478], + [37.707294, 55.554869], + [37.707453, 55.554869], + [37.707453, 55.55478], + [37.707294, 55.55478] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707294, 55.554869], + [37.707294, 55.554959], + [37.707453, 55.554959], + [37.707453, 55.554869], + [37.707294, 55.554869] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707294, 55.554959], + [37.707294, 55.555049], + [37.707453, 55.555049], + [37.707453, 55.554959], + [37.707294, 55.554959] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707294, 55.555049], + [37.707294, 55.555139], + [37.707453, 55.555139], + [37.707453, 55.555049], + [37.707294, 55.555049] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707294, 55.555139], + [37.707294, 55.555229], + [37.707453, 55.555229], + [37.707453, 55.555139], + [37.707294, 55.555139] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707294, 55.555229], + [37.707294, 55.555319], + [37.707453, 55.555319], + [37.707453, 55.555229], + [37.707294, 55.555229] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707294, 55.555319], + [37.707294, 55.555409], + [37.707453, 55.555409], + [37.707453, 55.555319], + [37.707294, 55.555319] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707294, 55.555409], + [37.707294, 55.555499], + [37.707453, 55.555499], + [37.707453, 55.555409], + [37.707294, 55.555409] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707294, 55.555499], + [37.707294, 55.555589], + [37.707453, 55.555589], + [37.707453, 55.555499], + [37.707294, 55.555499] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707294, 55.555589], + [37.707294, 55.555679], + [37.707453, 55.555679], + [37.707453, 55.555589], + [37.707294, 55.555589] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707294, 55.555679], + [37.707294, 55.555769], + [37.707453, 55.555769], + [37.707453, 55.555679], + [37.707294, 55.555679] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707294, 55.555769], + [37.707294, 55.555859], + [37.707453, 55.555859], + [37.707453, 55.555769], + [37.707294, 55.555769] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707453, 55.552621], + [37.707453, 55.552711], + [37.707612, 55.552711], + [37.707612, 55.552621], + [37.707453, 55.552621] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707453, 55.552711], + [37.707453, 55.552801], + [37.707612, 55.552801], + [37.707612, 55.552711], + [37.707453, 55.552711] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707453, 55.552801], + [37.707453, 55.552891], + [37.707612, 55.552891], + [37.707612, 55.552801], + [37.707453, 55.552801] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707453, 55.552891], + [37.707453, 55.552981], + [37.707612, 55.552981], + [37.707612, 55.552891], + [37.707453, 55.552891] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707453, 55.552981], + [37.707453, 55.553071], + [37.707612, 55.553071], + [37.707612, 55.552981], + [37.707453, 55.552981] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707453, 55.553071], + [37.707453, 55.553161], + [37.707612, 55.553161], + [37.707612, 55.553071], + [37.707453, 55.553071] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707453, 55.553161], + [37.707453, 55.553251], + [37.707612, 55.553251], + [37.707612, 55.553161], + [37.707453, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707453, 55.553251], + [37.707453, 55.553341], + [37.707612, 55.553341], + [37.707612, 55.553251], + [37.707453, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707453, 55.553341], + [37.707453, 55.553431], + [37.707612, 55.553431], + [37.707612, 55.553341], + [37.707453, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707453, 55.553431], + [37.707453, 55.55352], + [37.707612, 55.55352], + [37.707612, 55.553431], + [37.707453, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707453, 55.55352], + [37.707453, 55.55361], + [37.707612, 55.55361], + [37.707612, 55.55352], + [37.707453, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707453, 55.55361], + [37.707453, 55.5537], + [37.707612, 55.5537], + [37.707612, 55.55361], + [37.707453, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707453, 55.5537], + [37.707453, 55.55379], + [37.707612, 55.55379], + [37.707612, 55.5537], + [37.707453, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707453, 55.55379], + [37.707453, 55.55388], + [37.707612, 55.55388], + [37.707612, 55.55379], + [37.707453, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707453, 55.55388], + [37.707453, 55.55397], + [37.707612, 55.55397], + [37.707612, 55.55388], + [37.707453, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707453, 55.55397], + [37.707453, 55.55406], + [37.707612, 55.55406], + [37.707612, 55.55397], + [37.707453, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707453, 55.55406], + [37.707453, 55.55415], + [37.707612, 55.55415], + [37.707612, 55.55406], + [37.707453, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707453, 55.55415], + [37.707453, 55.55424], + [37.707612, 55.55424], + [37.707612, 55.55415], + [37.707453, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707453, 55.55424], + [37.707453, 55.55433], + [37.707612, 55.55433], + [37.707612, 55.55424], + [37.707453, 55.55424] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707453, 55.55433], + [37.707453, 55.55442], + [37.707612, 55.55442], + [37.707612, 55.55433], + [37.707453, 55.55433] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707453, 55.55442], + [37.707453, 55.55451], + [37.707612, 55.55451], + [37.707612, 55.55442], + [37.707453, 55.55442] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707453, 55.55451], + [37.707453, 55.5546], + [37.707612, 55.5546], + [37.707612, 55.55451], + [37.707453, 55.55451] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707453, 55.5546], + [37.707453, 55.55469], + [37.707612, 55.55469], + [37.707612, 55.5546], + [37.707453, 55.5546] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707453, 55.55469], + [37.707453, 55.55478], + [37.707612, 55.55478], + [37.707612, 55.55469], + [37.707453, 55.55469] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707453, 55.55478], + [37.707453, 55.554869], + [37.707612, 55.554869], + [37.707612, 55.55478], + [37.707453, 55.55478] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707453, 55.554869], + [37.707453, 55.554959], + [37.707612, 55.554959], + [37.707612, 55.554869], + [37.707453, 55.554869] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707453, 55.554959], + [37.707453, 55.555049], + [37.707612, 55.555049], + [37.707612, 55.554959], + [37.707453, 55.554959] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707453, 55.555049], + [37.707453, 55.555139], + [37.707612, 55.555139], + [37.707612, 55.555049], + [37.707453, 55.555049] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707453, 55.555139], + [37.707453, 55.555229], + [37.707612, 55.555229], + [37.707612, 55.555139], + [37.707453, 55.555139] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707453, 55.555229], + [37.707453, 55.555319], + [37.707612, 55.555319], + [37.707612, 55.555229], + [37.707453, 55.555229] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707453, 55.555319], + [37.707453, 55.555409], + [37.707612, 55.555409], + [37.707612, 55.555319], + [37.707453, 55.555319] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707453, 55.555409], + [37.707453, 55.555499], + [37.707612, 55.555499], + [37.707612, 55.555409], + [37.707453, 55.555409] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707453, 55.555499], + [37.707453, 55.555589], + [37.707612, 55.555589], + [37.707612, 55.555499], + [37.707453, 55.555499] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707453, 55.555589], + [37.707453, 55.555679], + [37.707612, 55.555679], + [37.707612, 55.555589], + [37.707453, 55.555589] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707453, 55.555679], + [37.707453, 55.555769], + [37.707612, 55.555769], + [37.707612, 55.555679], + [37.707453, 55.555679] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707453, 55.555769], + [37.707453, 55.555859], + [37.707612, 55.555859], + [37.707612, 55.555769], + [37.707453, 55.555769] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707612, 55.552801], + [37.707612, 55.552891], + [37.707771, 55.552891], + [37.707771, 55.552801], + [37.707612, 55.552801] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707612, 55.552891], + [37.707612, 55.552981], + [37.707771, 55.552981], + [37.707771, 55.552891], + [37.707612, 55.552891] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707612, 55.552981], + [37.707612, 55.553071], + [37.707771, 55.553071], + [37.707771, 55.552981], + [37.707612, 55.552981] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707612, 55.553071], + [37.707612, 55.553161], + [37.707771, 55.553161], + [37.707771, 55.553071], + [37.707612, 55.553071] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707612, 55.553161], + [37.707612, 55.553251], + [37.707771, 55.553251], + [37.707771, 55.553161], + [37.707612, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707612, 55.553251], + [37.707612, 55.553341], + [37.707771, 55.553341], + [37.707771, 55.553251], + [37.707612, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707612, 55.553341], + [37.707612, 55.553431], + [37.707771, 55.553431], + [37.707771, 55.553341], + [37.707612, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707612, 55.553431], + [37.707612, 55.55352], + [37.707771, 55.55352], + [37.707771, 55.553431], + [37.707612, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707612, 55.55352], + [37.707612, 55.55361], + [37.707771, 55.55361], + [37.707771, 55.55352], + [37.707612, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707612, 55.55361], + [37.707612, 55.5537], + [37.707771, 55.5537], + [37.707771, 55.55361], + [37.707612, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707612, 55.5537], + [37.707612, 55.55379], + [37.707771, 55.55379], + [37.707771, 55.5537], + [37.707612, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707612, 55.55379], + [37.707612, 55.55388], + [37.707771, 55.55388], + [37.707771, 55.55379], + [37.707612, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707612, 55.55388], + [37.707612, 55.55397], + [37.707771, 55.55397], + [37.707771, 55.55388], + [37.707612, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707612, 55.55397], + [37.707612, 55.55406], + [37.707771, 55.55406], + [37.707771, 55.55397], + [37.707612, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707612, 55.55406], + [37.707612, 55.55415], + [37.707771, 55.55415], + [37.707771, 55.55406], + [37.707612, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707612, 55.55415], + [37.707612, 55.55424], + [37.707771, 55.55424], + [37.707771, 55.55415], + [37.707612, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707612, 55.55424], + [37.707612, 55.55433], + [37.707771, 55.55433], + [37.707771, 55.55424], + [37.707612, 55.55424] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707612, 55.55433], + [37.707612, 55.55442], + [37.707771, 55.55442], + [37.707771, 55.55433], + [37.707612, 55.55433] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707612, 55.55442], + [37.707612, 55.55451], + [37.707771, 55.55451], + [37.707771, 55.55442], + [37.707612, 55.55442] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707612, 55.55451], + [37.707612, 55.5546], + [37.707771, 55.5546], + [37.707771, 55.55451], + [37.707612, 55.55451] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707612, 55.5546], + [37.707612, 55.55469], + [37.707771, 55.55469], + [37.707771, 55.5546], + [37.707612, 55.5546] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707612, 55.55469], + [37.707612, 55.55478], + [37.707771, 55.55478], + [37.707771, 55.55469], + [37.707612, 55.55469] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707612, 55.55478], + [37.707612, 55.554869], + [37.707771, 55.554869], + [37.707771, 55.55478], + [37.707612, 55.55478] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707612, 55.554869], + [37.707612, 55.554959], + [37.707771, 55.554959], + [37.707771, 55.554869], + [37.707612, 55.554869] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707612, 55.554959], + [37.707612, 55.555049], + [37.707771, 55.555049], + [37.707771, 55.554959], + [37.707612, 55.554959] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707612, 55.555049], + [37.707612, 55.555139], + [37.707771, 55.555139], + [37.707771, 55.555049], + [37.707612, 55.555049] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707612, 55.555139], + [37.707612, 55.555229], + [37.707771, 55.555229], + [37.707771, 55.555139], + [37.707612, 55.555139] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707612, 55.555229], + [37.707612, 55.555319], + [37.707771, 55.555319], + [37.707771, 55.555229], + [37.707612, 55.555229] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707612, 55.555319], + [37.707612, 55.555409], + [37.707771, 55.555409], + [37.707771, 55.555319], + [37.707612, 55.555319] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707612, 55.555409], + [37.707612, 55.555499], + [37.707771, 55.555499], + [37.707771, 55.555409], + [37.707612, 55.555409] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707612, 55.555499], + [37.707612, 55.555589], + [37.707771, 55.555589], + [37.707771, 55.555499], + [37.707612, 55.555499] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707612, 55.555589], + [37.707612, 55.555679], + [37.707771, 55.555679], + [37.707771, 55.555589], + [37.707612, 55.555589] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707612, 55.555679], + [37.707612, 55.555769], + [37.707771, 55.555769], + [37.707771, 55.555679], + [37.707612, 55.555679] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707612, 55.555769], + [37.707612, 55.555859], + [37.707771, 55.555859], + [37.707771, 55.555769], + [37.707612, 55.555769] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707612, 55.555859], + [37.707612, 55.555949], + [37.707771, 55.555949], + [37.707771, 55.555859], + [37.707612, 55.555859] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707771, 55.552981], + [37.707771, 55.553071], + [37.70793, 55.553071], + [37.70793, 55.552981], + [37.707771, 55.552981] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707771, 55.553071], + [37.707771, 55.553161], + [37.70793, 55.553161], + [37.70793, 55.553071], + [37.707771, 55.553071] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707771, 55.553161], + [37.707771, 55.553251], + [37.70793, 55.553251], + [37.70793, 55.553161], + [37.707771, 55.553161] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707771, 55.553251], + [37.707771, 55.553341], + [37.70793, 55.553341], + [37.70793, 55.553251], + [37.707771, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707771, 55.553341], + [37.707771, 55.553431], + [37.70793, 55.553431], + [37.70793, 55.553341], + [37.707771, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707771, 55.553431], + [37.707771, 55.55352], + [37.70793, 55.55352], + [37.70793, 55.553431], + [37.707771, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707771, 55.55352], + [37.707771, 55.55361], + [37.70793, 55.55361], + [37.70793, 55.55352], + [37.707771, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707771, 55.55361], + [37.707771, 55.5537], + [37.70793, 55.5537], + [37.70793, 55.55361], + [37.707771, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707771, 55.5537], + [37.707771, 55.55379], + [37.70793, 55.55379], + [37.70793, 55.5537], + [37.707771, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707771, 55.55379], + [37.707771, 55.55388], + [37.70793, 55.55388], + [37.70793, 55.55379], + [37.707771, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707771, 55.55388], + [37.707771, 55.55397], + [37.70793, 55.55397], + [37.70793, 55.55388], + [37.707771, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707771, 55.55397], + [37.707771, 55.55406], + [37.70793, 55.55406], + [37.70793, 55.55397], + [37.707771, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707771, 55.55406], + [37.707771, 55.55415], + [37.70793, 55.55415], + [37.70793, 55.55406], + [37.707771, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707771, 55.55415], + [37.707771, 55.55424], + [37.70793, 55.55424], + [37.70793, 55.55415], + [37.707771, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707771, 55.55424], + [37.707771, 55.55433], + [37.70793, 55.55433], + [37.70793, 55.55424], + [37.707771, 55.55424] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707771, 55.55433], + [37.707771, 55.55442], + [37.70793, 55.55442], + [37.70793, 55.55433], + [37.707771, 55.55433] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707771, 55.55442], + [37.707771, 55.55451], + [37.70793, 55.55451], + [37.70793, 55.55442], + [37.707771, 55.55442] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707771, 55.55451], + [37.707771, 55.5546], + [37.70793, 55.5546], + [37.70793, 55.55451], + [37.707771, 55.55451] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707771, 55.5546], + [37.707771, 55.55469], + [37.70793, 55.55469], + [37.70793, 55.5546], + [37.707771, 55.5546] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707771, 55.55469], + [37.707771, 55.55478], + [37.70793, 55.55478], + [37.70793, 55.55469], + [37.707771, 55.55469] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707771, 55.55478], + [37.707771, 55.554869], + [37.70793, 55.554869], + [37.70793, 55.55478], + [37.707771, 55.55478] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707771, 55.554869], + [37.707771, 55.554959], + [37.70793, 55.554959], + [37.70793, 55.554869], + [37.707771, 55.554869] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707771, 55.554959], + [37.707771, 55.555049], + [37.70793, 55.555049], + [37.70793, 55.554959], + [37.707771, 55.554959] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707771, 55.555049], + [37.707771, 55.555139], + [37.70793, 55.555139], + [37.70793, 55.555049], + [37.707771, 55.555049] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707771, 55.555139], + [37.707771, 55.555229], + [37.70793, 55.555229], + [37.70793, 55.555139], + [37.707771, 55.555139] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707771, 55.555229], + [37.707771, 55.555319], + [37.70793, 55.555319], + [37.70793, 55.555229], + [37.707771, 55.555229] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707771, 55.555319], + [37.707771, 55.555409], + [37.70793, 55.555409], + [37.70793, 55.555319], + [37.707771, 55.555319] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707771, 55.555409], + [37.707771, 55.555499], + [37.70793, 55.555499], + [37.70793, 55.555409], + [37.707771, 55.555409] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707771, 55.555499], + [37.707771, 55.555589], + [37.70793, 55.555589], + [37.70793, 55.555499], + [37.707771, 55.555499] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707771, 55.555589], + [37.707771, 55.555679], + [37.70793, 55.555679], + [37.70793, 55.555589], + [37.707771, 55.555589] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707771, 55.555679], + [37.707771, 55.555769], + [37.70793, 55.555769], + [37.70793, 55.555679], + [37.707771, 55.555679] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707771, 55.555769], + [37.707771, 55.555859], + [37.70793, 55.555859], + [37.70793, 55.555769], + [37.707771, 55.555769] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.707771, 55.555859], + [37.707771, 55.555949], + [37.70793, 55.555949], + [37.70793, 55.555859], + [37.707771, 55.555859] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70793, 55.553251], + [37.70793, 55.553341], + [37.708089, 55.553341], + [37.708089, 55.553251], + [37.70793, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70793, 55.553341], + [37.70793, 55.553431], + [37.708089, 55.553431], + [37.708089, 55.553341], + [37.70793, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70793, 55.553431], + [37.70793, 55.55352], + [37.708089, 55.55352], + [37.708089, 55.553431], + [37.70793, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70793, 55.55352], + [37.70793, 55.55361], + [37.708089, 55.55361], + [37.708089, 55.55352], + [37.70793, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70793, 55.55361], + [37.70793, 55.5537], + [37.708089, 55.5537], + [37.708089, 55.55361], + [37.70793, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70793, 55.5537], + [37.70793, 55.55379], + [37.708089, 55.55379], + [37.708089, 55.5537], + [37.70793, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70793, 55.55379], + [37.70793, 55.55388], + [37.708089, 55.55388], + [37.708089, 55.55379], + [37.70793, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70793, 55.55388], + [37.70793, 55.55397], + [37.708089, 55.55397], + [37.708089, 55.55388], + [37.70793, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70793, 55.55397], + [37.70793, 55.55406], + [37.708089, 55.55406], + [37.708089, 55.55397], + [37.70793, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70793, 55.55406], + [37.70793, 55.55415], + [37.708089, 55.55415], + [37.708089, 55.55406], + [37.70793, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70793, 55.55415], + [37.70793, 55.55424], + [37.708089, 55.55424], + [37.708089, 55.55415], + [37.70793, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70793, 55.55424], + [37.70793, 55.55433], + [37.708089, 55.55433], + [37.708089, 55.55424], + [37.70793, 55.55424] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70793, 55.55433], + [37.70793, 55.55442], + [37.708089, 55.55442], + [37.708089, 55.55433], + [37.70793, 55.55433] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70793, 55.55442], + [37.70793, 55.55451], + [37.708089, 55.55451], + [37.708089, 55.55442], + [37.70793, 55.55442] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70793, 55.55451], + [37.70793, 55.5546], + [37.708089, 55.5546], + [37.708089, 55.55451], + [37.70793, 55.55451] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70793, 55.5546], + [37.70793, 55.55469], + [37.708089, 55.55469], + [37.708089, 55.5546], + [37.70793, 55.5546] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70793, 55.55469], + [37.70793, 55.55478], + [37.708089, 55.55478], + [37.708089, 55.55469], + [37.70793, 55.55469] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70793, 55.55478], + [37.70793, 55.554869], + [37.708089, 55.554869], + [37.708089, 55.55478], + [37.70793, 55.55478] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70793, 55.554869], + [37.70793, 55.554959], + [37.708089, 55.554959], + [37.708089, 55.554869], + [37.70793, 55.554869] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70793, 55.554959], + [37.70793, 55.555049], + [37.708089, 55.555049], + [37.708089, 55.554959], + [37.70793, 55.554959] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70793, 55.555049], + [37.70793, 55.555139], + [37.708089, 55.555139], + [37.708089, 55.555049], + [37.70793, 55.555049] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70793, 55.555139], + [37.70793, 55.555229], + [37.708089, 55.555229], + [37.708089, 55.555139], + [37.70793, 55.555139] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70793, 55.555229], + [37.70793, 55.555319], + [37.708089, 55.555319], + [37.708089, 55.555229], + [37.70793, 55.555229] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70793, 55.555319], + [37.70793, 55.555409], + [37.708089, 55.555409], + [37.708089, 55.555319], + [37.70793, 55.555319] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70793, 55.555409], + [37.70793, 55.555499], + [37.708089, 55.555499], + [37.708089, 55.555409], + [37.70793, 55.555409] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70793, 55.555499], + [37.70793, 55.555589], + [37.708089, 55.555589], + [37.708089, 55.555499], + [37.70793, 55.555499] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70793, 55.555589], + [37.70793, 55.555679], + [37.708089, 55.555679], + [37.708089, 55.555589], + [37.70793, 55.555589] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70793, 55.555679], + [37.70793, 55.555769], + [37.708089, 55.555769], + [37.708089, 55.555679], + [37.70793, 55.555679] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70793, 55.555769], + [37.70793, 55.555859], + [37.708089, 55.555859], + [37.708089, 55.555769], + [37.70793, 55.555769] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70793, 55.555859], + [37.70793, 55.555949], + [37.708089, 55.555949], + [37.708089, 55.555859], + [37.70793, 55.555859] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70793, 55.555949], + [37.70793, 55.556039], + [37.708089, 55.556039], + [37.708089, 55.555949], + [37.70793, 55.555949] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708089, 55.553431], + [37.708089, 55.55352], + [37.708248, 55.55352], + [37.708248, 55.553431], + [37.708089, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708089, 55.55352], + [37.708089, 55.55361], + [37.708248, 55.55361], + [37.708248, 55.55352], + [37.708089, 55.55352] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708089, 55.55361], + [37.708089, 55.5537], + [37.708248, 55.5537], + [37.708248, 55.55361], + [37.708089, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708089, 55.5537], + [37.708089, 55.55379], + [37.708248, 55.55379], + [37.708248, 55.5537], + [37.708089, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708089, 55.55379], + [37.708089, 55.55388], + [37.708248, 55.55388], + [37.708248, 55.55379], + [37.708089, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708089, 55.55388], + [37.708089, 55.55397], + [37.708248, 55.55397], + [37.708248, 55.55388], + [37.708089, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708089, 55.55397], + [37.708089, 55.55406], + [37.708248, 55.55406], + [37.708248, 55.55397], + [37.708089, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708089, 55.55406], + [37.708089, 55.55415], + [37.708248, 55.55415], + [37.708248, 55.55406], + [37.708089, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708089, 55.55415], + [37.708089, 55.55424], + [37.708248, 55.55424], + [37.708248, 55.55415], + [37.708089, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708089, 55.55424], + [37.708089, 55.55433], + [37.708248, 55.55433], + [37.708248, 55.55424], + [37.708089, 55.55424] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708089, 55.55433], + [37.708089, 55.55442], + [37.708248, 55.55442], + [37.708248, 55.55433], + [37.708089, 55.55433] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708089, 55.55442], + [37.708089, 55.55451], + [37.708248, 55.55451], + [37.708248, 55.55442], + [37.708089, 55.55442] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708089, 55.55451], + [37.708089, 55.5546], + [37.708248, 55.5546], + [37.708248, 55.55451], + [37.708089, 55.55451] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708089, 55.5546], + [37.708089, 55.55469], + [37.708248, 55.55469], + [37.708248, 55.5546], + [37.708089, 55.5546] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708089, 55.55469], + [37.708089, 55.55478], + [37.708248, 55.55478], + [37.708248, 55.55469], + [37.708089, 55.55469] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708089, 55.55478], + [37.708089, 55.554869], + [37.708248, 55.554869], + [37.708248, 55.55478], + [37.708089, 55.55478] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708089, 55.554869], + [37.708089, 55.554959], + [37.708248, 55.554959], + [37.708248, 55.554869], + [37.708089, 55.554869] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708089, 55.554959], + [37.708089, 55.555049], + [37.708248, 55.555049], + [37.708248, 55.554959], + [37.708089, 55.554959] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708089, 55.555049], + [37.708089, 55.555139], + [37.708248, 55.555139], + [37.708248, 55.555049], + [37.708089, 55.555049] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708089, 55.555139], + [37.708089, 55.555229], + [37.708248, 55.555229], + [37.708248, 55.555139], + [37.708089, 55.555139] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708089, 55.555229], + [37.708089, 55.555319], + [37.708248, 55.555319], + [37.708248, 55.555229], + [37.708089, 55.555229] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708089, 55.555319], + [37.708089, 55.555409], + [37.708248, 55.555409], + [37.708248, 55.555319], + [37.708089, 55.555319] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708089, 55.555409], + [37.708089, 55.555499], + [37.708248, 55.555499], + [37.708248, 55.555409], + [37.708089, 55.555409] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708089, 55.555499], + [37.708089, 55.555589], + [37.708248, 55.555589], + [37.708248, 55.555499], + [37.708089, 55.555499] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708089, 55.555589], + [37.708089, 55.555679], + [37.708248, 55.555679], + [37.708248, 55.555589], + [37.708089, 55.555589] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708089, 55.555679], + [37.708089, 55.555769], + [37.708248, 55.555769], + [37.708248, 55.555679], + [37.708089, 55.555679] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708089, 55.555769], + [37.708089, 55.555859], + [37.708248, 55.555859], + [37.708248, 55.555769], + [37.708089, 55.555769] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708089, 55.555859], + [37.708089, 55.555949], + [37.708248, 55.555949], + [37.708248, 55.555859], + [37.708089, 55.555859] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708089, 55.555949], + [37.708089, 55.556039], + [37.708248, 55.556039], + [37.708248, 55.555949], + [37.708089, 55.555949] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708248, 55.55361], + [37.708248, 55.5537], + [37.708407, 55.5537], + [37.708407, 55.55361], + [37.708248, 55.55361] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708248, 55.5537], + [37.708248, 55.55379], + [37.708407, 55.55379], + [37.708407, 55.5537], + [37.708248, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708248, 55.55379], + [37.708248, 55.55388], + [37.708407, 55.55388], + [37.708407, 55.55379], + [37.708248, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708248, 55.55388], + [37.708248, 55.55397], + [37.708407, 55.55397], + [37.708407, 55.55388], + [37.708248, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708248, 55.55397], + [37.708248, 55.55406], + [37.708407, 55.55406], + [37.708407, 55.55397], + [37.708248, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708248, 55.55406], + [37.708248, 55.55415], + [37.708407, 55.55415], + [37.708407, 55.55406], + [37.708248, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708248, 55.55415], + [37.708248, 55.55424], + [37.708407, 55.55424], + [37.708407, 55.55415], + [37.708248, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708248, 55.55424], + [37.708248, 55.55433], + [37.708407, 55.55433], + [37.708407, 55.55424], + [37.708248, 55.55424] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708248, 55.55433], + [37.708248, 55.55442], + [37.708407, 55.55442], + [37.708407, 55.55433], + [37.708248, 55.55433] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708248, 55.55442], + [37.708248, 55.55451], + [37.708407, 55.55451], + [37.708407, 55.55442], + [37.708248, 55.55442] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708248, 55.55451], + [37.708248, 55.5546], + [37.708407, 55.5546], + [37.708407, 55.55451], + [37.708248, 55.55451] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708248, 55.5546], + [37.708248, 55.55469], + [37.708407, 55.55469], + [37.708407, 55.5546], + [37.708248, 55.5546] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708248, 55.55469], + [37.708248, 55.55478], + [37.708407, 55.55478], + [37.708407, 55.55469], + [37.708248, 55.55469] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708248, 55.55478], + [37.708248, 55.554869], + [37.708407, 55.554869], + [37.708407, 55.55478], + [37.708248, 55.55478] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708248, 55.554869], + [37.708248, 55.554959], + [37.708407, 55.554959], + [37.708407, 55.554869], + [37.708248, 55.554869] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708248, 55.554959], + [37.708248, 55.555049], + [37.708407, 55.555049], + [37.708407, 55.554959], + [37.708248, 55.554959] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708248, 55.555049], + [37.708248, 55.555139], + [37.708407, 55.555139], + [37.708407, 55.555049], + [37.708248, 55.555049] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708248, 55.555139], + [37.708248, 55.555229], + [37.708407, 55.555229], + [37.708407, 55.555139], + [37.708248, 55.555139] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708248, 55.555229], + [37.708248, 55.555319], + [37.708407, 55.555319], + [37.708407, 55.555229], + [37.708248, 55.555229] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708248, 55.555319], + [37.708248, 55.555409], + [37.708407, 55.555409], + [37.708407, 55.555319], + [37.708248, 55.555319] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708248, 55.555409], + [37.708248, 55.555499], + [37.708407, 55.555499], + [37.708407, 55.555409], + [37.708248, 55.555409] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708248, 55.555499], + [37.708248, 55.555589], + [37.708407, 55.555589], + [37.708407, 55.555499], + [37.708248, 55.555499] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708248, 55.555589], + [37.708248, 55.555679], + [37.708407, 55.555679], + [37.708407, 55.555589], + [37.708248, 55.555589] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708248, 55.555679], + [37.708248, 55.555769], + [37.708407, 55.555769], + [37.708407, 55.555679], + [37.708248, 55.555679] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708248, 55.555769], + [37.708248, 55.555859], + [37.708407, 55.555859], + [37.708407, 55.555769], + [37.708248, 55.555769] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708248, 55.555859], + [37.708248, 55.555949], + [37.708407, 55.555949], + [37.708407, 55.555859], + [37.708248, 55.555859] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708248, 55.555949], + [37.708248, 55.556039], + [37.708407, 55.556039], + [37.708407, 55.555949], + [37.708248, 55.555949] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708407, 55.55379], + [37.708407, 55.55388], + [37.708566, 55.55388], + [37.708566, 55.55379], + [37.708407, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708407, 55.55388], + [37.708407, 55.55397], + [37.708566, 55.55397], + [37.708566, 55.55388], + [37.708407, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708407, 55.55397], + [37.708407, 55.55406], + [37.708566, 55.55406], + [37.708566, 55.55397], + [37.708407, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708407, 55.55406], + [37.708407, 55.55415], + [37.708566, 55.55415], + [37.708566, 55.55406], + [37.708407, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708407, 55.55415], + [37.708407, 55.55424], + [37.708566, 55.55424], + [37.708566, 55.55415], + [37.708407, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708407, 55.55424], + [37.708407, 55.55433], + [37.708566, 55.55433], + [37.708566, 55.55424], + [37.708407, 55.55424] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708407, 55.55433], + [37.708407, 55.55442], + [37.708566, 55.55442], + [37.708566, 55.55433], + [37.708407, 55.55433] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708407, 55.55442], + [37.708407, 55.55451], + [37.708566, 55.55451], + [37.708566, 55.55442], + [37.708407, 55.55442] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708407, 55.55451], + [37.708407, 55.5546], + [37.708566, 55.5546], + [37.708566, 55.55451], + [37.708407, 55.55451] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708407, 55.5546], + [37.708407, 55.55469], + [37.708566, 55.55469], + [37.708566, 55.5546], + [37.708407, 55.5546] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708407, 55.55469], + [37.708407, 55.55478], + [37.708566, 55.55478], + [37.708566, 55.55469], + [37.708407, 55.55469] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708407, 55.55478], + [37.708407, 55.554869], + [37.708566, 55.554869], + [37.708566, 55.55478], + [37.708407, 55.55478] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708407, 55.554869], + [37.708407, 55.554959], + [37.708566, 55.554959], + [37.708566, 55.554869], + [37.708407, 55.554869] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708407, 55.554959], + [37.708407, 55.555049], + [37.708566, 55.555049], + [37.708566, 55.554959], + [37.708407, 55.554959] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708407, 55.555049], + [37.708407, 55.555139], + [37.708566, 55.555139], + [37.708566, 55.555049], + [37.708407, 55.555049] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708407, 55.555139], + [37.708407, 55.555229], + [37.708566, 55.555229], + [37.708566, 55.555139], + [37.708407, 55.555139] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708407, 55.555229], + [37.708407, 55.555319], + [37.708566, 55.555319], + [37.708566, 55.555229], + [37.708407, 55.555229] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708407, 55.555319], + [37.708407, 55.555409], + [37.708566, 55.555409], + [37.708566, 55.555319], + [37.708407, 55.555319] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708407, 55.555409], + [37.708407, 55.555499], + [37.708566, 55.555499], + [37.708566, 55.555409], + [37.708407, 55.555409] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708407, 55.555499], + [37.708407, 55.555589], + [37.708566, 55.555589], + [37.708566, 55.555499], + [37.708407, 55.555499] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708407, 55.555589], + [37.708407, 55.555679], + [37.708566, 55.555679], + [37.708566, 55.555589], + [37.708407, 55.555589] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708407, 55.555679], + [37.708407, 55.555769], + [37.708566, 55.555769], + [37.708566, 55.555679], + [37.708407, 55.555679] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708407, 55.555769], + [37.708407, 55.555859], + [37.708566, 55.555859], + [37.708566, 55.555769], + [37.708407, 55.555769] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708407, 55.555859], + [37.708407, 55.555949], + [37.708566, 55.555949], + [37.708566, 55.555859], + [37.708407, 55.555859] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708407, 55.555949], + [37.708407, 55.556039], + [37.708566, 55.556039], + [37.708566, 55.555949], + [37.708407, 55.555949] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708407, 55.556039], + [37.708407, 55.556128], + [37.708566, 55.556128], + [37.708566, 55.556039], + [37.708407, 55.556039] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708566, 55.55397], + [37.708566, 55.55406], + [37.708725, 55.55406], + [37.708725, 55.55397], + [37.708566, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708566, 55.55406], + [37.708566, 55.55415], + [37.708725, 55.55415], + [37.708725, 55.55406], + [37.708566, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708566, 55.55415], + [37.708566, 55.55424], + [37.708725, 55.55424], + [37.708725, 55.55415], + [37.708566, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708566, 55.55424], + [37.708566, 55.55433], + [37.708725, 55.55433], + [37.708725, 55.55424], + [37.708566, 55.55424] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708566, 55.55433], + [37.708566, 55.55442], + [37.708725, 55.55442], + [37.708725, 55.55433], + [37.708566, 55.55433] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708566, 55.55442], + [37.708566, 55.55451], + [37.708725, 55.55451], + [37.708725, 55.55442], + [37.708566, 55.55442] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708566, 55.55451], + [37.708566, 55.5546], + [37.708725, 55.5546], + [37.708725, 55.55451], + [37.708566, 55.55451] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708566, 55.5546], + [37.708566, 55.55469], + [37.708725, 55.55469], + [37.708725, 55.5546], + [37.708566, 55.5546] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708566, 55.55469], + [37.708566, 55.55478], + [37.708725, 55.55478], + [37.708725, 55.55469], + [37.708566, 55.55469] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708566, 55.55478], + [37.708566, 55.554869], + [37.708725, 55.554869], + [37.708725, 55.55478], + [37.708566, 55.55478] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708566, 55.554869], + [37.708566, 55.554959], + [37.708725, 55.554959], + [37.708725, 55.554869], + [37.708566, 55.554869] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708566, 55.554959], + [37.708566, 55.555049], + [37.708725, 55.555049], + [37.708725, 55.554959], + [37.708566, 55.554959] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708566, 55.555049], + [37.708566, 55.555139], + [37.708725, 55.555139], + [37.708725, 55.555049], + [37.708566, 55.555049] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708566, 55.555139], + [37.708566, 55.555229], + [37.708725, 55.555229], + [37.708725, 55.555139], + [37.708566, 55.555139] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708566, 55.555229], + [37.708566, 55.555319], + [37.708725, 55.555319], + [37.708725, 55.555229], + [37.708566, 55.555229] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708566, 55.555319], + [37.708566, 55.555409], + [37.708725, 55.555409], + [37.708725, 55.555319], + [37.708566, 55.555319] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708566, 55.555409], + [37.708566, 55.555499], + [37.708725, 55.555499], + [37.708725, 55.555409], + [37.708566, 55.555409] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708566, 55.555499], + [37.708566, 55.555589], + [37.708725, 55.555589], + [37.708725, 55.555499], + [37.708566, 55.555499] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708566, 55.555589], + [37.708566, 55.555679], + [37.708725, 55.555679], + [37.708725, 55.555589], + [37.708566, 55.555589] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708566, 55.555679], + [37.708566, 55.555769], + [37.708725, 55.555769], + [37.708725, 55.555679], + [37.708566, 55.555679] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708566, 55.555769], + [37.708566, 55.555859], + [37.708725, 55.555859], + [37.708725, 55.555769], + [37.708566, 55.555769] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708566, 55.555859], + [37.708566, 55.555949], + [37.708725, 55.555949], + [37.708725, 55.555859], + [37.708566, 55.555859] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708566, 55.555949], + [37.708566, 55.556039], + [37.708725, 55.556039], + [37.708725, 55.555949], + [37.708566, 55.555949] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708566, 55.556039], + [37.708566, 55.556128], + [37.708725, 55.556128], + [37.708725, 55.556039], + [37.708566, 55.556039] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708725, 55.55415], + [37.708725, 55.55424], + [37.708884, 55.55424], + [37.708884, 55.55415], + [37.708725, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708725, 55.55424], + [37.708725, 55.55433], + [37.708884, 55.55433], + [37.708884, 55.55424], + [37.708725, 55.55424] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708725, 55.55433], + [37.708725, 55.55442], + [37.708884, 55.55442], + [37.708884, 55.55433], + [37.708725, 55.55433] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708725, 55.55442], + [37.708725, 55.55451], + [37.708884, 55.55451], + [37.708884, 55.55442], + [37.708725, 55.55442] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708725, 55.55451], + [37.708725, 55.5546], + [37.708884, 55.5546], + [37.708884, 55.55451], + [37.708725, 55.55451] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708725, 55.5546], + [37.708725, 55.55469], + [37.708884, 55.55469], + [37.708884, 55.5546], + [37.708725, 55.5546] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708725, 55.55469], + [37.708725, 55.55478], + [37.708884, 55.55478], + [37.708884, 55.55469], + [37.708725, 55.55469] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708725, 55.55478], + [37.708725, 55.554869], + [37.708884, 55.554869], + [37.708884, 55.55478], + [37.708725, 55.55478] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708725, 55.554869], + [37.708725, 55.554959], + [37.708884, 55.554959], + [37.708884, 55.554869], + [37.708725, 55.554869] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708725, 55.554959], + [37.708725, 55.555049], + [37.708884, 55.555049], + [37.708884, 55.554959], + [37.708725, 55.554959] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708725, 55.555049], + [37.708725, 55.555139], + [37.708884, 55.555139], + [37.708884, 55.555049], + [37.708725, 55.555049] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708725, 55.555139], + [37.708725, 55.555229], + [37.708884, 55.555229], + [37.708884, 55.555139], + [37.708725, 55.555139] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708725, 55.555229], + [37.708725, 55.555319], + [37.708884, 55.555319], + [37.708884, 55.555229], + [37.708725, 55.555229] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708725, 55.555319], + [37.708725, 55.555409], + [37.708884, 55.555409], + [37.708884, 55.555319], + [37.708725, 55.555319] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708725, 55.555409], + [37.708725, 55.555499], + [37.708884, 55.555499], + [37.708884, 55.555409], + [37.708725, 55.555409] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708725, 55.555499], + [37.708725, 55.555589], + [37.708884, 55.555589], + [37.708884, 55.555499], + [37.708725, 55.555499] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708725, 55.555589], + [37.708725, 55.555679], + [37.708884, 55.555679], + [37.708884, 55.555589], + [37.708725, 55.555589] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708725, 55.555679], + [37.708725, 55.555769], + [37.708884, 55.555769], + [37.708884, 55.555679], + [37.708725, 55.555679] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708725, 55.555769], + [37.708725, 55.555859], + [37.708884, 55.555859], + [37.708884, 55.555769], + [37.708725, 55.555769] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708725, 55.555859], + [37.708725, 55.555949], + [37.708884, 55.555949], + [37.708884, 55.555859], + [37.708725, 55.555859] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708725, 55.555949], + [37.708725, 55.556039], + [37.708884, 55.556039], + [37.708884, 55.555949], + [37.708725, 55.555949] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708725, 55.556039], + [37.708725, 55.556128], + [37.708884, 55.556128], + [37.708884, 55.556039], + [37.708725, 55.556039] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708884, 55.55442], + [37.708884, 55.55451], + [37.709043, 55.55451], + [37.709043, 55.55442], + [37.708884, 55.55442] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708884, 55.55451], + [37.708884, 55.5546], + [37.709043, 55.5546], + [37.709043, 55.55451], + [37.708884, 55.55451] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708884, 55.5546], + [37.708884, 55.55469], + [37.709043, 55.55469], + [37.709043, 55.5546], + [37.708884, 55.5546] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708884, 55.55469], + [37.708884, 55.55478], + [37.709043, 55.55478], + [37.709043, 55.55469], + [37.708884, 55.55469] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708884, 55.55478], + [37.708884, 55.554869], + [37.709043, 55.554869], + [37.709043, 55.55478], + [37.708884, 55.55478] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708884, 55.554869], + [37.708884, 55.554959], + [37.709043, 55.554959], + [37.709043, 55.554869], + [37.708884, 55.554869] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708884, 55.554959], + [37.708884, 55.555049], + [37.709043, 55.555049], + [37.709043, 55.554959], + [37.708884, 55.554959] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708884, 55.555049], + [37.708884, 55.555139], + [37.709043, 55.555139], + [37.709043, 55.555049], + [37.708884, 55.555049] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708884, 55.555139], + [37.708884, 55.555229], + [37.709043, 55.555229], + [37.709043, 55.555139], + [37.708884, 55.555139] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708884, 55.555229], + [37.708884, 55.555319], + [37.709043, 55.555319], + [37.709043, 55.555229], + [37.708884, 55.555229] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708884, 55.555319], + [37.708884, 55.555409], + [37.709043, 55.555409], + [37.709043, 55.555319], + [37.708884, 55.555319] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708884, 55.555409], + [37.708884, 55.555499], + [37.709043, 55.555499], + [37.709043, 55.555409], + [37.708884, 55.555409] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708884, 55.555499], + [37.708884, 55.555589], + [37.709043, 55.555589], + [37.709043, 55.555499], + [37.708884, 55.555499] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708884, 55.555589], + [37.708884, 55.555679], + [37.709043, 55.555679], + [37.709043, 55.555589], + [37.708884, 55.555589] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708884, 55.555679], + [37.708884, 55.555769], + [37.709043, 55.555769], + [37.709043, 55.555679], + [37.708884, 55.555679] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708884, 55.555769], + [37.708884, 55.555859], + [37.709043, 55.555859], + [37.709043, 55.555769], + [37.708884, 55.555769] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708884, 55.555859], + [37.708884, 55.555949], + [37.709043, 55.555949], + [37.709043, 55.555859], + [37.708884, 55.555859] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708884, 55.555949], + [37.708884, 55.556039], + [37.709043, 55.556039], + [37.709043, 55.555949], + [37.708884, 55.555949] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.708884, 55.556039], + [37.708884, 55.556128], + [37.709043, 55.556128], + [37.709043, 55.556039], + [37.708884, 55.556039] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.709043, 55.5546], + [37.709043, 55.55469], + [37.709201, 55.55469], + [37.709201, 55.5546], + [37.709043, 55.5546] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.709043, 55.55469], + [37.709043, 55.55478], + [37.709201, 55.55478], + [37.709201, 55.55469], + [37.709043, 55.55469] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.709043, 55.55478], + [37.709043, 55.554869], + [37.709201, 55.554869], + [37.709201, 55.55478], + [37.709043, 55.55478] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.709043, 55.554869], + [37.709043, 55.554959], + [37.709201, 55.554959], + [37.709201, 55.554869], + [37.709043, 55.554869] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.709043, 55.554959], + [37.709043, 55.555049], + [37.709201, 55.555049], + [37.709201, 55.554959], + [37.709043, 55.554959] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.709043, 55.555049], + [37.709043, 55.555139], + [37.709201, 55.555139], + [37.709201, 55.555049], + [37.709043, 55.555049] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.709043, 55.555139], + [37.709043, 55.555229], + [37.709201, 55.555229], + [37.709201, 55.555139], + [37.709043, 55.555139] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.709043, 55.555229], + [37.709043, 55.555319], + [37.709201, 55.555319], + [37.709201, 55.555229], + [37.709043, 55.555229] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.709043, 55.555319], + [37.709043, 55.555409], + [37.709201, 55.555409], + [37.709201, 55.555319], + [37.709043, 55.555319] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.709043, 55.555409], + [37.709043, 55.555499], + [37.709201, 55.555499], + [37.709201, 55.555409], + [37.709043, 55.555409] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.709043, 55.555499], + [37.709043, 55.555589], + [37.709201, 55.555589], + [37.709201, 55.555499], + [37.709043, 55.555499] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.709043, 55.555589], + [37.709043, 55.555679], + [37.709201, 55.555679], + [37.709201, 55.555589], + [37.709043, 55.555589] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.709043, 55.555679], + [37.709043, 55.555769], + [37.709201, 55.555769], + [37.709201, 55.555679], + [37.709043, 55.555679] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.709043, 55.555769], + [37.709043, 55.555859], + [37.709201, 55.555859], + [37.709201, 55.555769], + [37.709043, 55.555769] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.709043, 55.555859], + [37.709043, 55.555949], + [37.709201, 55.555949], + [37.709201, 55.555859], + [37.709043, 55.555859] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.709043, 55.555949], + [37.709043, 55.556039], + [37.709201, 55.556039], + [37.709201, 55.555949], + [37.709043, 55.555949] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.709201, 55.55478], + [37.709201, 55.554869], + [37.70936, 55.554869], + [37.70936, 55.55478], + [37.709201, 55.55478] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.709201, 55.554869], + [37.709201, 55.554959], + [37.70936, 55.554959], + [37.70936, 55.554869], + [37.709201, 55.554869] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.709201, 55.554959], + [37.709201, 55.555049], + [37.70936, 55.555049], + [37.70936, 55.554959], + [37.709201, 55.554959] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.709201, 55.555049], + [37.709201, 55.555139], + [37.70936, 55.555139], + [37.70936, 55.555049], + [37.709201, 55.555049] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.709201, 55.555139], + [37.709201, 55.555229], + [37.70936, 55.555229], + [37.70936, 55.555139], + [37.709201, 55.555139] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.709201, 55.555229], + [37.709201, 55.555319], + [37.70936, 55.555319], + [37.70936, 55.555229], + [37.709201, 55.555229] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.709201, 55.555319], + [37.709201, 55.555409], + [37.70936, 55.555409], + [37.70936, 55.555319], + [37.709201, 55.555319] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.709201, 55.555409], + [37.709201, 55.555499], + [37.70936, 55.555499], + [37.70936, 55.555409], + [37.709201, 55.555409] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.709201, 55.555499], + [37.709201, 55.555589], + [37.70936, 55.555589], + [37.70936, 55.555499], + [37.709201, 55.555499] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.709201, 55.555589], + [37.709201, 55.555679], + [37.70936, 55.555679], + [37.70936, 55.555589], + [37.709201, 55.555589] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.709201, 55.555679], + [37.709201, 55.555769], + [37.70936, 55.555769], + [37.70936, 55.555679], + [37.709201, 55.555679] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.709201, 55.555769], + [37.709201, 55.555859], + [37.70936, 55.555859], + [37.70936, 55.555769], + [37.709201, 55.555769] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.709201, 55.555859], + [37.709201, 55.555949], + [37.70936, 55.555949], + [37.70936, 55.555859], + [37.709201, 55.555859] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70936, 55.554959], + [37.70936, 55.555049], + [37.709519, 55.555049], + [37.709519, 55.554959], + [37.70936, 55.554959] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70936, 55.555049], + [37.70936, 55.555139], + [37.709519, 55.555139], + [37.709519, 55.555049], + [37.70936, 55.555049] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70936, 55.555139], + [37.70936, 55.555229], + [37.709519, 55.555229], + [37.709519, 55.555139], + [37.70936, 55.555139] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70936, 55.555229], + [37.70936, 55.555319], + [37.709519, 55.555319], + [37.709519, 55.555229], + [37.70936, 55.555229] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70936, 55.555319], + [37.70936, 55.555409], + [37.709519, 55.555409], + [37.709519, 55.555319], + [37.70936, 55.555319] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70936, 55.555409], + [37.70936, 55.555499], + [37.709519, 55.555499], + [37.709519, 55.555409], + [37.70936, 55.555409] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70936, 55.555499], + [37.70936, 55.555589], + [37.709519, 55.555589], + [37.709519, 55.555499], + [37.70936, 55.555499] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70936, 55.555589], + [37.70936, 55.555679], + [37.709519, 55.555679], + [37.709519, 55.555589], + [37.70936, 55.555589] + ] + ] + } + }, + { + "type": "Feature", + "bbox": [ + 37.69975662231445, + 55.55151096909941, + 37.70958423614502, + 55.55615949302079 + ], + "properties": { + "stroke": "#F00", + "stroke-width": 6, + "fill-opacity": 0 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.69975662231445, 55.55151096909941], + [37.70958423614502, 55.55151096909941], + [37.70958423614502, 55.55615949302079], + [37.69975662231445, 55.55615949302079], + [37.69975662231445, 55.55151096909941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "stroke": "#00F", + "stroke-width": 6, + "fill-opacity": 0 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70651578903198, 55.55151096909941], + [37.70958423614502, 55.555297797727704], + [37.709230184555054, 55.555850013083], + [37.70885467529296, 55.55615949302079], + [37.70013213157654, 55.55376247689539], + [37.69975662231445, 55.55329519343182], + [37.70651578903198, 55.55151096909941] + ] + ] + } + } + ] } diff --git a/packages/turf-square-grid/test/out/london-20-miles.geojson b/packages/turf-square-grid/test/out/london-20-miles.geojson index 31b163228c..344d0dcfae 100644 --- a/packages/turf-square-grid/test/out/london-20-miles.geojson +++ b/packages/turf-square-grid/test/out/london-20-miles.geojson @@ -1,108 +1,63 @@ { - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.552977, - 51.358112 - ], - [ - -0.552977, - 51.647575 - ], - [ - -0.090637, - 51.647575 - ], - [ - -0.090637, - 51.358112 - ], - [ - -0.552977, - 51.358112 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.090637, - 51.358112 - ], - [ - -0.090637, - 51.647575 - ], - [ - 0.371702, - 51.647575 - ], - [ - 0.371702, - 51.358112 - ], - [ - -0.090637, - 51.358112 - ] - ] - ] - } - }, - { - "type": "Feature", - "bbox": [ - -0.6207275390625, - 51.23784668914442, - 0.439453125, - 51.767839887322154 - ], - "properties": { - "stroke": "#F00", - "stroke-width": 6, - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.6207275390625, - 51.23784668914442 - ], - [ - 0.439453125, - 51.23784668914442 - ], - [ - 0.439453125, - 51.767839887322154 - ], - [ - -0.6207275390625, - 51.767839887322154 - ], - [ - -0.6207275390625, - 51.23784668914442 - ] - ] - ] - } - } - ] + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-0.552977, 51.358112], + [-0.552977, 51.647575], + [-0.090637, 51.647575], + [-0.090637, 51.358112], + [-0.552977, 51.358112] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-0.090637, 51.358112], + [-0.090637, 51.647575], + [0.371702, 51.647575], + [0.371702, 51.358112], + [-0.090637, 51.358112] + ] + ] + } + }, + { + "type": "Feature", + "bbox": [ + -0.6207275390625, + 51.23784668914442, + 0.439453125, + 51.767839887322154 + ], + "properties": { + "stroke": "#F00", + "stroke-width": 6, + "fill-opacity": 0 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-0.6207275390625, 51.23784668914442], + [0.439453125, 51.23784668914442], + [0.439453125, 51.767839887322154], + [-0.6207275390625, 51.767839887322154], + [-0.6207275390625, 51.23784668914442] + ] + ] + } + } + ] } diff --git a/packages/turf-square-grid/test/out/piedemont-mask.geojson b/packages/turf-square-grid/test/out/piedemont-mask.geojson index 664d241fcd..836001a47b 100644 --- a/packages/turf-square-grid/test/out/piedemont-mask.geojson +++ b/packages/turf-square-grid/test/out/piedemont-mask.geojson @@ -1,3233 +1,1598 @@ { - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.396892, - 45.009611 - ], - [ - 6.396892, - 45.190526 - ], - [ - 6.648645, - 45.190526 - ], - [ - 6.648645, - 45.009611 - ], - [ - 6.396892, - 45.009611 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.648645, - 44.285953 - ], - [ - 6.648645, - 44.466868 - ], - [ - 6.900398, - 44.466868 - ], - [ - 6.900398, - 44.285953 - ], - [ - 6.648645, - 44.285953 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.648645, - 44.466868 - ], - [ - 6.648645, - 44.647782 - ], - [ - 6.900398, - 44.647782 - ], - [ - 6.900398, - 44.466868 - ], - [ - 6.648645, - 44.466868 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.648645, - 44.828697 - ], - [ - 6.648645, - 45.009611 - ], - [ - 6.900398, - 45.009611 - ], - [ - 6.900398, - 44.828697 - ], - [ - 6.648645, - 44.828697 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.648645, - 45.009611 - ], - [ - 6.648645, - 45.190526 - ], - [ - 6.900398, - 45.190526 - ], - [ - 6.900398, - 45.009611 - ], - [ - 6.648645, - 45.009611 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.900398, - 44.105039 - ], - [ - 6.900398, - 44.285953 - ], - [ - 7.152151, - 44.285953 - ], - [ - 7.152151, - 44.105039 - ], - [ - 6.900398, - 44.105039 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.900398, - 44.285953 - ], - [ - 6.900398, - 44.466868 - ], - [ - 7.152151, - 44.466868 - ], - [ - 7.152151, - 44.285953 - ], - [ - 6.900398, - 44.285953 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.900398, - 44.466868 - ], - [ - 6.900398, - 44.647782 - ], - [ - 7.152151, - 44.647782 - ], - [ - 7.152151, - 44.466868 - ], - [ - 6.900398, - 44.466868 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.900398, - 44.647782 - ], - [ - 6.900398, - 44.828697 - ], - [ - 7.152151, - 44.828697 - ], - [ - 7.152151, - 44.647782 - ], - [ - 6.900398, - 44.647782 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.900398, - 44.828697 - ], - [ - 6.900398, - 45.009611 - ], - [ - 7.152151, - 45.009611 - ], - [ - 7.152151, - 44.828697 - ], - [ - 6.900398, - 44.828697 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.900398, - 45.009611 - ], - [ - 6.900398, - 45.190526 - ], - [ - 7.152151, - 45.190526 - ], - [ - 7.152151, - 45.009611 - ], - [ - 6.900398, - 45.009611 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.900398, - 45.190526 - ], - [ - 6.900398, - 45.37144 - ], - [ - 7.152151, - 45.37144 - ], - [ - 7.152151, - 45.190526 - ], - [ - 6.900398, - 45.190526 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.900398, - 45.37144 - ], - [ - 6.900398, - 45.552355 - ], - [ - 7.152151, - 45.552355 - ], - [ - 7.152151, - 45.37144 - ], - [ - 6.900398, - 45.37144 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.152151, - 44.105039 - ], - [ - 7.152151, - 44.285953 - ], - [ - 7.403904, - 44.285953 - ], - [ - 7.403904, - 44.105039 - ], - [ - 7.152151, - 44.105039 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.152151, - 44.285953 - ], - [ - 7.152151, - 44.466868 - ], - [ - 7.403904, - 44.466868 - ], - [ - 7.403904, - 44.285953 - ], - [ - 7.152151, - 44.285953 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.152151, - 44.466868 - ], - [ - 7.152151, - 44.647782 - ], - [ - 7.403904, - 44.647782 - ], - [ - 7.403904, - 44.466868 - ], - [ - 7.152151, - 44.466868 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.152151, - 44.647782 - ], - [ - 7.152151, - 44.828697 - ], - [ - 7.403904, - 44.828697 - ], - [ - 7.403904, - 44.647782 - ], - [ - 7.152151, - 44.647782 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.152151, - 44.828697 - ], - [ - 7.152151, - 45.009611 - ], - [ - 7.403904, - 45.009611 - ], - [ - 7.403904, - 44.828697 - ], - [ - 7.152151, - 44.828697 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.152151, - 45.009611 - ], - [ - 7.152151, - 45.190526 - ], - [ - 7.403904, - 45.190526 - ], - [ - 7.403904, - 45.009611 - ], - [ - 7.152151, - 45.009611 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.152151, - 45.190526 - ], - [ - 7.152151, - 45.37144 - ], - [ - 7.403904, - 45.37144 - ], - [ - 7.403904, - 45.190526 - ], - [ - 7.152151, - 45.190526 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.152151, - 45.37144 - ], - [ - 7.152151, - 45.552355 - ], - [ - 7.403904, - 45.552355 - ], - [ - 7.403904, - 45.37144 - ], - [ - 7.152151, - 45.37144 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.403904, - 44.105039 - ], - [ - 7.403904, - 44.285953 - ], - [ - 7.655657, - 44.285953 - ], - [ - 7.655657, - 44.105039 - ], - [ - 7.403904, - 44.105039 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.403904, - 44.285953 - ], - [ - 7.403904, - 44.466868 - ], - [ - 7.655657, - 44.466868 - ], - [ - 7.655657, - 44.285953 - ], - [ - 7.403904, - 44.285953 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.403904, - 44.466868 - ], - [ - 7.403904, - 44.647782 - ], - [ - 7.655657, - 44.647782 - ], - [ - 7.655657, - 44.466868 - ], - [ - 7.403904, - 44.466868 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.403904, - 44.647782 - ], - [ - 7.403904, - 44.828697 - ], - [ - 7.655657, - 44.828697 - ], - [ - 7.655657, - 44.647782 - ], - [ - 7.403904, - 44.647782 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.403904, - 44.828697 - ], - [ - 7.403904, - 45.009611 - ], - [ - 7.655657, - 45.009611 - ], - [ - 7.655657, - 44.828697 - ], - [ - 7.403904, - 44.828697 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.403904, - 45.009611 - ], - [ - 7.403904, - 45.190526 - ], - [ - 7.655657, - 45.190526 - ], - [ - 7.655657, - 45.009611 - ], - [ - 7.403904, - 45.009611 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.403904, - 45.190526 - ], - [ - 7.403904, - 45.37144 - ], - [ - 7.655657, - 45.37144 - ], - [ - 7.655657, - 45.190526 - ], - [ - 7.403904, - 45.190526 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.403904, - 45.37144 - ], - [ - 7.403904, - 45.552355 - ], - [ - 7.655657, - 45.552355 - ], - [ - 7.655657, - 45.37144 - ], - [ - 7.403904, - 45.37144 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.403904, - 45.552355 - ], - [ - 7.403904, - 45.733269 - ], - [ - 7.655657, - 45.733269 - ], - [ - 7.655657, - 45.552355 - ], - [ - 7.403904, - 45.552355 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.655657, - 44.105039 - ], - [ - 7.655657, - 44.285953 - ], - [ - 7.90741, - 44.285953 - ], - [ - 7.90741, - 44.105039 - ], - [ - 7.655657, - 44.105039 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.655657, - 44.285953 - ], - [ - 7.655657, - 44.466868 - ], - [ - 7.90741, - 44.466868 - ], - [ - 7.90741, - 44.285953 - ], - [ - 7.655657, - 44.285953 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.655657, - 44.466868 - ], - [ - 7.655657, - 44.647782 - ], - [ - 7.90741, - 44.647782 - ], - [ - 7.90741, - 44.466868 - ], - [ - 7.655657, - 44.466868 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.655657, - 44.647782 - ], - [ - 7.655657, - 44.828697 - ], - [ - 7.90741, - 44.828697 - ], - [ - 7.90741, - 44.647782 - ], - [ - 7.655657, - 44.647782 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.655657, - 44.828697 - ], - [ - 7.655657, - 45.009611 - ], - [ - 7.90741, - 45.009611 - ], - [ - 7.90741, - 44.828697 - ], - [ - 7.655657, - 44.828697 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.655657, - 45.009611 - ], - [ - 7.655657, - 45.190526 - ], - [ - 7.90741, - 45.190526 - ], - [ - 7.90741, - 45.009611 - ], - [ - 7.655657, - 45.009611 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.655657, - 45.190526 - ], - [ - 7.655657, - 45.37144 - ], - [ - 7.90741, - 45.37144 - ], - [ - 7.90741, - 45.190526 - ], - [ - 7.655657, - 45.190526 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.655657, - 45.37144 - ], - [ - 7.655657, - 45.552355 - ], - [ - 7.90741, - 45.552355 - ], - [ - 7.90741, - 45.37144 - ], - [ - 7.655657, - 45.37144 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.655657, - 45.552355 - ], - [ - 7.655657, - 45.733269 - ], - [ - 7.90741, - 45.733269 - ], - [ - 7.90741, - 45.552355 - ], - [ - 7.655657, - 45.552355 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.655657, - 45.733269 - ], - [ - 7.655657, - 45.914184 - ], - [ - 7.90741, - 45.914184 - ], - [ - 7.90741, - 45.733269 - ], - [ - 7.655657, - 45.733269 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.655657, - 45.914184 - ], - [ - 7.655657, - 46.095098 - ], - [ - 7.90741, - 46.095098 - ], - [ - 7.90741, - 45.914184 - ], - [ - 7.655657, - 45.914184 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.90741, - 44.105039 - ], - [ - 7.90741, - 44.285953 - ], - [ - 8.159163, - 44.285953 - ], - [ - 8.159163, - 44.105039 - ], - [ - 7.90741, - 44.105039 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.90741, - 44.285953 - ], - [ - 7.90741, - 44.466868 - ], - [ - 8.159163, - 44.466868 - ], - [ - 8.159163, - 44.285953 - ], - [ - 7.90741, - 44.285953 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.90741, - 44.466868 - ], - [ - 7.90741, - 44.647782 - ], - [ - 8.159163, - 44.647782 - ], - [ - 8.159163, - 44.466868 - ], - [ - 7.90741, - 44.466868 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.90741, - 44.647782 - ], - [ - 7.90741, - 44.828697 - ], - [ - 8.159163, - 44.828697 - ], - [ - 8.159163, - 44.647782 - ], - [ - 7.90741, - 44.647782 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.90741, - 44.828697 - ], - [ - 7.90741, - 45.009611 - ], - [ - 8.159163, - 45.009611 - ], - [ - 8.159163, - 44.828697 - ], - [ - 7.90741, - 44.828697 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.90741, - 45.009611 - ], - [ - 7.90741, - 45.190526 - ], - [ - 8.159163, - 45.190526 - ], - [ - 8.159163, - 45.009611 - ], - [ - 7.90741, - 45.009611 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.90741, - 45.190526 - ], - [ - 7.90741, - 45.37144 - ], - [ - 8.159163, - 45.37144 - ], - [ - 8.159163, - 45.190526 - ], - [ - 7.90741, - 45.190526 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.90741, - 45.37144 - ], - [ - 7.90741, - 45.552355 - ], - [ - 8.159163, - 45.552355 - ], - [ - 8.159163, - 45.37144 - ], - [ - 7.90741, - 45.37144 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.90741, - 45.552355 - ], - [ - 7.90741, - 45.733269 - ], - [ - 8.159163, - 45.733269 - ], - [ - 8.159163, - 45.552355 - ], - [ - 7.90741, - 45.552355 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.90741, - 45.733269 - ], - [ - 7.90741, - 45.914184 - ], - [ - 8.159163, - 45.914184 - ], - [ - 8.159163, - 45.733269 - ], - [ - 7.90741, - 45.733269 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.90741, - 45.914184 - ], - [ - 7.90741, - 46.095098 - ], - [ - 8.159163, - 46.095098 - ], - [ - 8.159163, - 45.914184 - ], - [ - 7.90741, - 45.914184 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.90741, - 46.095098 - ], - [ - 7.90741, - 46.276013 - ], - [ - 8.159163, - 46.276013 - ], - [ - 8.159163, - 46.095098 - ], - [ - 7.90741, - 46.095098 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.90741, - 46.276013 - ], - [ - 7.90741, - 46.456927 - ], - [ - 8.159163, - 46.456927 - ], - [ - 8.159163, - 46.276013 - ], - [ - 7.90741, - 46.276013 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.159163, - 44.285953 - ], - [ - 8.159163, - 44.466868 - ], - [ - 8.410916, - 44.466868 - ], - [ - 8.410916, - 44.285953 - ], - [ - 8.159163, - 44.285953 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.159163, - 44.466868 - ], - [ - 8.159163, - 44.647782 - ], - [ - 8.410916, - 44.647782 - ], - [ - 8.410916, - 44.466868 - ], - [ - 8.159163, - 44.466868 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.159163, - 44.647782 - ], - [ - 8.159163, - 44.828697 - ], - [ - 8.410916, - 44.828697 - ], - [ - 8.410916, - 44.647782 - ], - [ - 8.159163, - 44.647782 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.159163, - 44.828697 - ], - [ - 8.159163, - 45.009611 - ], - [ - 8.410916, - 45.009611 - ], - [ - 8.410916, - 44.828697 - ], - [ - 8.159163, - 44.828697 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.159163, - 45.009611 - ], - [ - 8.159163, - 45.190526 - ], - [ - 8.410916, - 45.190526 - ], - [ - 8.410916, - 45.009611 - ], - [ - 8.159163, - 45.009611 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.159163, - 45.190526 - ], - [ - 8.159163, - 45.37144 - ], - [ - 8.410916, - 45.37144 - ], - [ - 8.410916, - 45.190526 - ], - [ - 8.159163, - 45.190526 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.159163, - 45.37144 - ], - [ - 8.159163, - 45.552355 - ], - [ - 8.410916, - 45.552355 - ], - [ - 8.410916, - 45.37144 - ], - [ - 8.159163, - 45.37144 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.159163, - 45.552355 - ], - [ - 8.159163, - 45.733269 - ], - [ - 8.410916, - 45.733269 - ], - [ - 8.410916, - 45.552355 - ], - [ - 8.159163, - 45.552355 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.159163, - 45.733269 - ], - [ - 8.159163, - 45.914184 - ], - [ - 8.410916, - 45.914184 - ], - [ - 8.410916, - 45.733269 - ], - [ - 8.159163, - 45.733269 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.159163, - 45.914184 - ], - [ - 8.159163, - 46.095098 - ], - [ - 8.410916, - 46.095098 - ], - [ - 8.410916, - 45.914184 - ], - [ - 8.159163, - 45.914184 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.159163, - 46.095098 - ], - [ - 8.159163, - 46.276013 - ], - [ - 8.410916, - 46.276013 - ], - [ - 8.410916, - 46.095098 - ], - [ - 8.159163, - 46.095098 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.159163, - 46.276013 - ], - [ - 8.159163, - 46.456927 - ], - [ - 8.410916, - 46.456927 - ], - [ - 8.410916, - 46.276013 - ], - [ - 8.159163, - 46.276013 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.410916, - 44.466868 - ], - [ - 8.410916, - 44.647782 - ], - [ - 8.662669, - 44.647782 - ], - [ - 8.662669, - 44.466868 - ], - [ - 8.410916, - 44.466868 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.410916, - 44.647782 - ], - [ - 8.410916, - 44.828697 - ], - [ - 8.662669, - 44.828697 - ], - [ - 8.662669, - 44.647782 - ], - [ - 8.410916, - 44.647782 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.410916, - 44.828697 - ], - [ - 8.410916, - 45.009611 - ], - [ - 8.662669, - 45.009611 - ], - [ - 8.662669, - 44.828697 - ], - [ - 8.410916, - 44.828697 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.410916, - 45.009611 - ], - [ - 8.410916, - 45.190526 - ], - [ - 8.662669, - 45.190526 - ], - [ - 8.662669, - 45.009611 - ], - [ - 8.410916, - 45.009611 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.410916, - 45.190526 - ], - [ - 8.410916, - 45.37144 - ], - [ - 8.662669, - 45.37144 - ], - [ - 8.662669, - 45.190526 - ], - [ - 8.410916, - 45.190526 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.410916, - 45.37144 - ], - [ - 8.410916, - 45.552355 - ], - [ - 8.662669, - 45.552355 - ], - [ - 8.662669, - 45.37144 - ], - [ - 8.410916, - 45.37144 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.410916, - 45.552355 - ], - [ - 8.410916, - 45.733269 - ], - [ - 8.662669, - 45.733269 - ], - [ - 8.662669, - 45.552355 - ], - [ - 8.410916, - 45.552355 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.410916, - 45.733269 - ], - [ - 8.410916, - 45.914184 - ], - [ - 8.662669, - 45.914184 - ], - [ - 8.662669, - 45.733269 - ], - [ - 8.410916, - 45.733269 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.410916, - 45.914184 - ], - [ - 8.410916, - 46.095098 - ], - [ - 8.662669, - 46.095098 - ], - [ - 8.662669, - 45.914184 - ], - [ - 8.410916, - 45.914184 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.410916, - 46.095098 - ], - [ - 8.410916, - 46.276013 - ], - [ - 8.662669, - 46.276013 - ], - [ - 8.662669, - 46.095098 - ], - [ - 8.410916, - 46.095098 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.410916, - 46.276013 - ], - [ - 8.410916, - 46.456927 - ], - [ - 8.662669, - 46.456927 - ], - [ - 8.662669, - 46.276013 - ], - [ - 8.410916, - 46.276013 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.662669, - 44.466868 - ], - [ - 8.662669, - 44.647782 - ], - [ - 8.914422, - 44.647782 - ], - [ - 8.914422, - 44.466868 - ], - [ - 8.662669, - 44.466868 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.662669, - 44.647782 - ], - [ - 8.662669, - 44.828697 - ], - [ - 8.914422, - 44.828697 - ], - [ - 8.914422, - 44.647782 - ], - [ - 8.662669, - 44.647782 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.662669, - 44.828697 - ], - [ - 8.662669, - 45.009611 - ], - [ - 8.914422, - 45.009611 - ], - [ - 8.914422, - 44.828697 - ], - [ - 8.662669, - 44.828697 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.662669, - 45.009611 - ], - [ - 8.662669, - 45.190526 - ], - [ - 8.914422, - 45.190526 - ], - [ - 8.914422, - 45.009611 - ], - [ - 8.662669, - 45.009611 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.662669, - 45.190526 - ], - [ - 8.662669, - 45.37144 - ], - [ - 8.914422, - 45.37144 - ], - [ - 8.914422, - 45.190526 - ], - [ - 8.662669, - 45.190526 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.662669, - 45.37144 - ], - [ - 8.662669, - 45.552355 - ], - [ - 8.914422, - 45.552355 - ], - [ - 8.914422, - 45.37144 - ], - [ - 8.662669, - 45.37144 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.662669, - 45.552355 - ], - [ - 8.662669, - 45.733269 - ], - [ - 8.914422, - 45.733269 - ], - [ - 8.914422, - 45.552355 - ], - [ - 8.662669, - 45.552355 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.662669, - 45.914184 - ], - [ - 8.662669, - 46.095098 - ], - [ - 8.914422, - 46.095098 - ], - [ - 8.914422, - 45.914184 - ], - [ - 8.662669, - 45.914184 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.662669, - 46.095098 - ], - [ - 8.662669, - 46.276013 - ], - [ - 8.914422, - 46.276013 - ], - [ - 8.914422, - 46.095098 - ], - [ - 8.662669, - 46.095098 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.914422, - 44.466868 - ], - [ - 8.914422, - 44.647782 - ], - [ - 9.166174, - 44.647782 - ], - [ - 9.166174, - 44.466868 - ], - [ - 8.914422, - 44.466868 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.914422, - 44.647782 - ], - [ - 8.914422, - 44.828697 - ], - [ - 9.166174, - 44.828697 - ], - [ - 9.166174, - 44.647782 - ], - [ - 8.914422, - 44.647782 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.914422, - 44.828697 - ], - [ - 8.914422, - 45.009611 - ], - [ - 9.166174, - 45.009611 - ], - [ - 9.166174, - 44.828697 - ], - [ - 8.914422, - 44.828697 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.914422, - 45.009611 - ], - [ - 8.914422, - 45.190526 - ], - [ - 9.166174, - 45.190526 - ], - [ - 9.166174, - 45.009611 - ], - [ - 8.914422, - 45.009611 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.166174, - 44.466868 - ], - [ - 9.166174, - 44.647782 - ], - [ - 9.417927, - 44.647782 - ], - [ - 9.417927, - 44.466868 - ], - [ - 9.166174, - 44.466868 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.166174, - 44.647782 - ], - [ - 9.166174, - 44.828697 - ], - [ - 9.417927, - 44.828697 - ], - [ - 9.417927, - 44.647782 - ], - [ - 9.166174, - 44.647782 - ] - ] - ] - } - }, - { - "type": "Feature", - "bbox": [ - 6.3775634765625, - 44.05601169578525, - 9.437255859375, - 46.50595444552049 - ], - "properties": { - "stroke": "#F00", - "stroke-width": 6, - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.3775634765625, - 44.05601169578525 - ], - [ - 9.437255859375, - 44.05601169578525 - ], - [ - 9.437255859375, - 46.50595444552049 - ], - [ - 6.3775634765625, - 46.50595444552049 - ], - [ - 6.3775634765625, - 44.05601169578525 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "stroke": "#00F", - "stroke-width": 6, - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.382568359375012, - 46.456781428126554 - ], - [ - 8.313903808593762, - 46.41892578708079 - ], - [ - 8.31939697265626, - 46.379149058330775 - ], - [ - 8.099670410156264, - 46.26913887119718 - ], - [ - 8.171081542968762, - 46.1893382140708 - ], - [ - 7.8799438476562615, - 45.94160076422079 - ], - [ - 7.907409667968761, - 45.627484212338246 - ], - [ - 7.7247619628906365, - 45.55444852652113 - ], - [ - 7.5833129882812615, - 45.5900172453615 - ], - [ - 7.484436035156261, - 45.58136746810096 - ], - [ - 7.347106933593762, - 45.527516684421215 - ], - [ - 7.116394042968763, - 45.46976215263039 - ], - [ - 7.176818847656262, - 45.408092022812276 - ], - [ - 7.094421386718762, - 45.222677199620094 - ], - [ - 6.980438232421887, - 45.20719857986464 - ], - [ - 6.9515991210937615, - 45.17332441090049 - ], - [ - 6.900787353515638, - 45.166547157856016 - ], - [ - 6.900787353515638, - 45.14621056019852 - ], - [ - 6.854095458984387, - 45.1278045274732 - ], - [ - 6.7813110351562615, - 45.164610651725425 - ], - [ - 6.749725341796888, - 45.1394300814679 - ], - [ - 6.687927246093762, - 45.1394300814679 - ], - [ - 6.6302490234375, - 45.10987715527803 - ], - [ - 6.65496826171875, - 45.069156265623505 - ], - [ - 6.6741943359375, - 45.02015580433459 - ], - [ - 6.755218505859382, - 45.0182143279711 - ], - [ - 6.749725341796875, - 44.90744135615697 - ], - [ - 6.815643310546875, - 44.872415981701394 - ], - [ - 6.900787353515625, - 44.84515927771909 - ], - [ - 6.946105957031258, - 44.86560301534198 - ], - [ - 7.017517089843757, - 44.8344477567128 - ], - [ - 7.002410888671875, - 44.78378451819761 - ], - [ - 7.032623291015625, - 44.73210119404699 - ], - [ - 7.0751953125, - 44.68330096401701 - ], - [ - 6.990051269531262, - 44.69404054463802 - ], - [ - 6.8637084960937615, - 44.51021754644927 - ], - [ - 6.9021606445312615, - 44.36509667482153 - ], - [ - 7.055969238281263, - 44.219615400229195 - ], - [ - 7.3965454101562615, - 44.125056482685174 - ], - [ - 7.6712036132812615, - 44.180234276372886 - ], - [ - 7.7151489257812615, - 44.09350315285844 - ], - [ - 7.770080566406262, - 44.136884638560495 - ], - [ - 8.02825927734376, - 44.140826830775524 - ], - [ - 8.08868408203126, - 44.321883129398586 - ], - [ - 8.247985839843762, - 44.52196830685208 - ], - [ - 8.357849121093762, - 44.48670891691767 - ], - [ - 8.599548339843762, - 44.537632301346086 - ], - [ - 8.665466308593762, - 44.58851118961441 - ], - [ - 8.802795410156264, - 44.51805165000559 - ], - [ - 8.912658691406264, - 44.592423107178654 - ], - [ - 8.912658691406264, - 44.67841867818858 - ], - [ - 9.017028808593762, - 44.6725593921204 - ], - [ - 9.139251708984387, - 44.57970841241188 - ], - [ - 9.213409423828137, - 44.6061127451739 - ], - [ - 9.221649169921887, - 44.75453548416007 - ], - [ - 9.066467285156264, - 44.85002749260048 - ], - [ - 8.896179199218762, - 45.05606124274412 - ], - [ - 8.775329589843762, - 45.01530198999206 - ], - [ - 8.659973144531262, - 45.02695045318543 - ], - [ - 8.522644042968764, - 45.28841433167348 - ], - [ - 8.550109863281262, - 45.3617951914213 - ], - [ - 8.63800048828126, - 45.34828480683997 - ], - [ - 8.676452636718762, - 45.30773430004872 - ], - [ - 8.76983642578126, - 45.35407536661812 - ], - [ - 8.734130859375014, - 45.38494834654319 - ], - [ - 8.846740722656262, - 45.40423540168332 - ], - [ - 8.725891113281262, - 45.51789504294005 - ], - [ - 8.654479980468762, - 45.70809729528788 - ], - [ - 8.56109619140626, - 45.79242458189573 - ], - [ - 8.599548339843762, - 45.832626782661585 - ], - [ - 8.580322265625012, - 45.90529985724794 - ], - [ - 8.725891113281262, - 46.02557483126793 - ], - [ - 8.717651367187512, - 46.0998999106273 - ], - [ - 8.610534667968762, - 46.14178273759229 - ], - [ - 8.539123535156262, - 46.221652456379104 - ], - [ - 8.451232910156262, - 46.25774588045678 - ], - [ - 8.445739746093764, - 46.30899569419854 - ], - [ - 8.47045898437501, - 46.34313560260196 - ], - [ - 8.462219238281264, - 46.462457505996056 - ], - [ - 8.382568359375012, - 46.456781428126554 - ] - ] - ] - } - } - ] + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [6.396892, 45.009611], + [6.396892, 45.190526], + [6.648645, 45.190526], + [6.648645, 45.009611], + [6.396892, 45.009611] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [6.648645, 44.285953], + [6.648645, 44.466868], + [6.900398, 44.466868], + [6.900398, 44.285953], + [6.648645, 44.285953] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [6.648645, 44.466868], + [6.648645, 44.647782], + [6.900398, 44.647782], + [6.900398, 44.466868], + [6.648645, 44.466868] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [6.648645, 44.828697], + [6.648645, 45.009611], + [6.900398, 45.009611], + [6.900398, 44.828697], + [6.648645, 44.828697] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [6.648645, 45.009611], + [6.648645, 45.190526], + [6.900398, 45.190526], + [6.900398, 45.009611], + [6.648645, 45.009611] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [6.900398, 44.105039], + [6.900398, 44.285953], + [7.152151, 44.285953], + [7.152151, 44.105039], + [6.900398, 44.105039] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [6.900398, 44.285953], + [6.900398, 44.466868], + [7.152151, 44.466868], + [7.152151, 44.285953], + [6.900398, 44.285953] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [6.900398, 44.466868], + [6.900398, 44.647782], + [7.152151, 44.647782], + [7.152151, 44.466868], + [6.900398, 44.466868] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [6.900398, 44.647782], + [6.900398, 44.828697], + [7.152151, 44.828697], + [7.152151, 44.647782], + [6.900398, 44.647782] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [6.900398, 44.828697], + [6.900398, 45.009611], + [7.152151, 45.009611], + [7.152151, 44.828697], + [6.900398, 44.828697] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [6.900398, 45.009611], + [6.900398, 45.190526], + [7.152151, 45.190526], + [7.152151, 45.009611], + [6.900398, 45.009611] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [6.900398, 45.190526], + [6.900398, 45.37144], + [7.152151, 45.37144], + [7.152151, 45.190526], + [6.900398, 45.190526] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [6.900398, 45.37144], + [6.900398, 45.552355], + [7.152151, 45.552355], + [7.152151, 45.37144], + [6.900398, 45.37144] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [7.152151, 44.105039], + [7.152151, 44.285953], + [7.403904, 44.285953], + [7.403904, 44.105039], + [7.152151, 44.105039] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [7.152151, 44.285953], + [7.152151, 44.466868], + [7.403904, 44.466868], + [7.403904, 44.285953], + [7.152151, 44.285953] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [7.152151, 44.466868], + [7.152151, 44.647782], + [7.403904, 44.647782], + [7.403904, 44.466868], + [7.152151, 44.466868] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [7.152151, 44.647782], + [7.152151, 44.828697], + [7.403904, 44.828697], + [7.403904, 44.647782], + [7.152151, 44.647782] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [7.152151, 44.828697], + [7.152151, 45.009611], + [7.403904, 45.009611], + [7.403904, 44.828697], + [7.152151, 44.828697] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [7.152151, 45.009611], + [7.152151, 45.190526], + [7.403904, 45.190526], + [7.403904, 45.009611], + [7.152151, 45.009611] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [7.152151, 45.190526], + [7.152151, 45.37144], + [7.403904, 45.37144], + [7.403904, 45.190526], + [7.152151, 45.190526] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [7.152151, 45.37144], + [7.152151, 45.552355], + [7.403904, 45.552355], + [7.403904, 45.37144], + [7.152151, 45.37144] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [7.403904, 44.105039], + [7.403904, 44.285953], + [7.655657, 44.285953], + [7.655657, 44.105039], + [7.403904, 44.105039] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [7.403904, 44.285953], + [7.403904, 44.466868], + [7.655657, 44.466868], + [7.655657, 44.285953], + [7.403904, 44.285953] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [7.403904, 44.466868], + [7.403904, 44.647782], + [7.655657, 44.647782], + [7.655657, 44.466868], + [7.403904, 44.466868] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [7.403904, 44.647782], + [7.403904, 44.828697], + [7.655657, 44.828697], + [7.655657, 44.647782], + [7.403904, 44.647782] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [7.403904, 44.828697], + [7.403904, 45.009611], + [7.655657, 45.009611], + [7.655657, 44.828697], + [7.403904, 44.828697] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [7.403904, 45.009611], + [7.403904, 45.190526], + [7.655657, 45.190526], + [7.655657, 45.009611], + [7.403904, 45.009611] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [7.403904, 45.190526], + [7.403904, 45.37144], + [7.655657, 45.37144], + [7.655657, 45.190526], + [7.403904, 45.190526] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [7.403904, 45.37144], + [7.403904, 45.552355], + [7.655657, 45.552355], + [7.655657, 45.37144], + [7.403904, 45.37144] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [7.403904, 45.552355], + [7.403904, 45.733269], + [7.655657, 45.733269], + [7.655657, 45.552355], + [7.403904, 45.552355] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [7.655657, 44.105039], + [7.655657, 44.285953], + [7.90741, 44.285953], + [7.90741, 44.105039], + [7.655657, 44.105039] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [7.655657, 44.285953], + [7.655657, 44.466868], + [7.90741, 44.466868], + [7.90741, 44.285953], + [7.655657, 44.285953] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [7.655657, 44.466868], + [7.655657, 44.647782], + [7.90741, 44.647782], + [7.90741, 44.466868], + [7.655657, 44.466868] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [7.655657, 44.647782], + [7.655657, 44.828697], + [7.90741, 44.828697], + [7.90741, 44.647782], + [7.655657, 44.647782] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [7.655657, 44.828697], + [7.655657, 45.009611], + [7.90741, 45.009611], + [7.90741, 44.828697], + [7.655657, 44.828697] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [7.655657, 45.009611], + [7.655657, 45.190526], + [7.90741, 45.190526], + [7.90741, 45.009611], + [7.655657, 45.009611] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [7.655657, 45.190526], + [7.655657, 45.37144], + [7.90741, 45.37144], + [7.90741, 45.190526], + [7.655657, 45.190526] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [7.655657, 45.37144], + [7.655657, 45.552355], + [7.90741, 45.552355], + [7.90741, 45.37144], + [7.655657, 45.37144] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [7.655657, 45.552355], + [7.655657, 45.733269], + [7.90741, 45.733269], + [7.90741, 45.552355], + [7.655657, 45.552355] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [7.655657, 45.733269], + [7.655657, 45.914184], + [7.90741, 45.914184], + [7.90741, 45.733269], + [7.655657, 45.733269] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [7.655657, 45.914184], + [7.655657, 46.095098], + [7.90741, 46.095098], + [7.90741, 45.914184], + [7.655657, 45.914184] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [7.90741, 44.105039], + [7.90741, 44.285953], + [8.159163, 44.285953], + [8.159163, 44.105039], + [7.90741, 44.105039] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [7.90741, 44.285953], + [7.90741, 44.466868], + [8.159163, 44.466868], + [8.159163, 44.285953], + [7.90741, 44.285953] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [7.90741, 44.466868], + [7.90741, 44.647782], + [8.159163, 44.647782], + [8.159163, 44.466868], + [7.90741, 44.466868] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [7.90741, 44.647782], + [7.90741, 44.828697], + [8.159163, 44.828697], + [8.159163, 44.647782], + [7.90741, 44.647782] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [7.90741, 44.828697], + [7.90741, 45.009611], + [8.159163, 45.009611], + [8.159163, 44.828697], + [7.90741, 44.828697] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [7.90741, 45.009611], + [7.90741, 45.190526], + [8.159163, 45.190526], + [8.159163, 45.009611], + [7.90741, 45.009611] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [7.90741, 45.190526], + [7.90741, 45.37144], + [8.159163, 45.37144], + [8.159163, 45.190526], + [7.90741, 45.190526] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [7.90741, 45.37144], + [7.90741, 45.552355], + [8.159163, 45.552355], + [8.159163, 45.37144], + [7.90741, 45.37144] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [7.90741, 45.552355], + [7.90741, 45.733269], + [8.159163, 45.733269], + [8.159163, 45.552355], + [7.90741, 45.552355] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [7.90741, 45.733269], + [7.90741, 45.914184], + [8.159163, 45.914184], + [8.159163, 45.733269], + [7.90741, 45.733269] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [7.90741, 45.914184], + [7.90741, 46.095098], + [8.159163, 46.095098], + [8.159163, 45.914184], + [7.90741, 45.914184] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [7.90741, 46.095098], + [7.90741, 46.276013], + [8.159163, 46.276013], + [8.159163, 46.095098], + [7.90741, 46.095098] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [7.90741, 46.276013], + [7.90741, 46.456927], + [8.159163, 46.456927], + [8.159163, 46.276013], + [7.90741, 46.276013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.159163, 44.285953], + [8.159163, 44.466868], + [8.410916, 44.466868], + [8.410916, 44.285953], + [8.159163, 44.285953] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.159163, 44.466868], + [8.159163, 44.647782], + [8.410916, 44.647782], + [8.410916, 44.466868], + [8.159163, 44.466868] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.159163, 44.647782], + [8.159163, 44.828697], + [8.410916, 44.828697], + [8.410916, 44.647782], + [8.159163, 44.647782] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.159163, 44.828697], + [8.159163, 45.009611], + [8.410916, 45.009611], + [8.410916, 44.828697], + [8.159163, 44.828697] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.159163, 45.009611], + [8.159163, 45.190526], + [8.410916, 45.190526], + [8.410916, 45.009611], + [8.159163, 45.009611] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.159163, 45.190526], + [8.159163, 45.37144], + [8.410916, 45.37144], + [8.410916, 45.190526], + [8.159163, 45.190526] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.159163, 45.37144], + [8.159163, 45.552355], + [8.410916, 45.552355], + [8.410916, 45.37144], + [8.159163, 45.37144] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.159163, 45.552355], + [8.159163, 45.733269], + [8.410916, 45.733269], + [8.410916, 45.552355], + [8.159163, 45.552355] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.159163, 45.733269], + [8.159163, 45.914184], + [8.410916, 45.914184], + [8.410916, 45.733269], + [8.159163, 45.733269] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.159163, 45.914184], + [8.159163, 46.095098], + [8.410916, 46.095098], + [8.410916, 45.914184], + [8.159163, 45.914184] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.159163, 46.095098], + [8.159163, 46.276013], + [8.410916, 46.276013], + [8.410916, 46.095098], + [8.159163, 46.095098] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.159163, 46.276013], + [8.159163, 46.456927], + [8.410916, 46.456927], + [8.410916, 46.276013], + [8.159163, 46.276013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.410916, 44.466868], + [8.410916, 44.647782], + [8.662669, 44.647782], + [8.662669, 44.466868], + [8.410916, 44.466868] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.410916, 44.647782], + [8.410916, 44.828697], + [8.662669, 44.828697], + [8.662669, 44.647782], + [8.410916, 44.647782] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.410916, 44.828697], + [8.410916, 45.009611], + [8.662669, 45.009611], + [8.662669, 44.828697], + [8.410916, 44.828697] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.410916, 45.009611], + [8.410916, 45.190526], + [8.662669, 45.190526], + [8.662669, 45.009611], + [8.410916, 45.009611] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.410916, 45.190526], + [8.410916, 45.37144], + [8.662669, 45.37144], + [8.662669, 45.190526], + [8.410916, 45.190526] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.410916, 45.37144], + [8.410916, 45.552355], + [8.662669, 45.552355], + [8.662669, 45.37144], + [8.410916, 45.37144] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.410916, 45.552355], + [8.410916, 45.733269], + [8.662669, 45.733269], + [8.662669, 45.552355], + [8.410916, 45.552355] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.410916, 45.733269], + [8.410916, 45.914184], + [8.662669, 45.914184], + [8.662669, 45.733269], + [8.410916, 45.733269] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.410916, 45.914184], + [8.410916, 46.095098], + [8.662669, 46.095098], + [8.662669, 45.914184], + [8.410916, 45.914184] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.410916, 46.095098], + [8.410916, 46.276013], + [8.662669, 46.276013], + [8.662669, 46.095098], + [8.410916, 46.095098] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.410916, 46.276013], + [8.410916, 46.456927], + [8.662669, 46.456927], + [8.662669, 46.276013], + [8.410916, 46.276013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.662669, 44.466868], + [8.662669, 44.647782], + [8.914422, 44.647782], + [8.914422, 44.466868], + [8.662669, 44.466868] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.662669, 44.647782], + [8.662669, 44.828697], + [8.914422, 44.828697], + [8.914422, 44.647782], + [8.662669, 44.647782] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.662669, 44.828697], + [8.662669, 45.009611], + [8.914422, 45.009611], + [8.914422, 44.828697], + [8.662669, 44.828697] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.662669, 45.009611], + [8.662669, 45.190526], + [8.914422, 45.190526], + [8.914422, 45.009611], + [8.662669, 45.009611] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.662669, 45.190526], + [8.662669, 45.37144], + [8.914422, 45.37144], + [8.914422, 45.190526], + [8.662669, 45.190526] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.662669, 45.37144], + [8.662669, 45.552355], + [8.914422, 45.552355], + [8.914422, 45.37144], + [8.662669, 45.37144] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.662669, 45.552355], + [8.662669, 45.733269], + [8.914422, 45.733269], + [8.914422, 45.552355], + [8.662669, 45.552355] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.662669, 45.914184], + [8.662669, 46.095098], + [8.914422, 46.095098], + [8.914422, 45.914184], + [8.662669, 45.914184] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.662669, 46.095098], + [8.662669, 46.276013], + [8.914422, 46.276013], + [8.914422, 46.095098], + [8.662669, 46.095098] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.914422, 44.466868], + [8.914422, 44.647782], + [9.166174, 44.647782], + [9.166174, 44.466868], + [8.914422, 44.466868] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.914422, 44.647782], + [8.914422, 44.828697], + [9.166174, 44.828697], + [9.166174, 44.647782], + [8.914422, 44.647782] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.914422, 44.828697], + [8.914422, 45.009611], + [9.166174, 45.009611], + [9.166174, 44.828697], + [8.914422, 44.828697] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.914422, 45.009611], + [8.914422, 45.190526], + [9.166174, 45.190526], + [9.166174, 45.009611], + [8.914422, 45.009611] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.166174, 44.466868], + [9.166174, 44.647782], + [9.417927, 44.647782], + [9.417927, 44.466868], + [9.166174, 44.466868] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.166174, 44.647782], + [9.166174, 44.828697], + [9.417927, 44.828697], + [9.417927, 44.647782], + [9.166174, 44.647782] + ] + ] + } + }, + { + "type": "Feature", + "bbox": [ + 6.3775634765625, + 44.05601169578525, + 9.437255859375, + 46.50595444552049 + ], + "properties": { + "stroke": "#F00", + "stroke-width": 6, + "fill-opacity": 0 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [6.3775634765625, 44.05601169578525], + [9.437255859375, 44.05601169578525], + [9.437255859375, 46.50595444552049], + [6.3775634765625, 46.50595444552049], + [6.3775634765625, 44.05601169578525] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "stroke": "#00F", + "stroke-width": 6, + "fill-opacity": 0 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.382568359375012, 46.456781428126554], + [8.313903808593762, 46.41892578708079], + [8.31939697265626, 46.379149058330775], + [8.099670410156264, 46.26913887119718], + [8.171081542968762, 46.1893382140708], + [7.8799438476562615, 45.94160076422079], + [7.907409667968761, 45.627484212338246], + [7.7247619628906365, 45.55444852652113], + [7.5833129882812615, 45.5900172453615], + [7.484436035156261, 45.58136746810096], + [7.347106933593762, 45.527516684421215], + [7.116394042968763, 45.46976215263039], + [7.176818847656262, 45.408092022812276], + [7.094421386718762, 45.222677199620094], + [6.980438232421887, 45.20719857986464], + [6.9515991210937615, 45.17332441090049], + [6.900787353515638, 45.166547157856016], + [6.900787353515638, 45.14621056019852], + [6.854095458984387, 45.1278045274732], + [6.7813110351562615, 45.164610651725425], + [6.749725341796888, 45.1394300814679], + [6.687927246093762, 45.1394300814679], + [6.6302490234375, 45.10987715527803], + [6.65496826171875, 45.069156265623505], + [6.6741943359375, 45.02015580433459], + [6.755218505859382, 45.0182143279711], + [6.749725341796875, 44.90744135615697], + [6.815643310546875, 44.872415981701394], + [6.900787353515625, 44.84515927771909], + [6.946105957031258, 44.86560301534198], + [7.017517089843757, 44.8344477567128], + [7.002410888671875, 44.78378451819761], + [7.032623291015625, 44.73210119404699], + [7.0751953125, 44.68330096401701], + [6.990051269531262, 44.69404054463802], + [6.8637084960937615, 44.51021754644927], + [6.9021606445312615, 44.36509667482153], + [7.055969238281263, 44.219615400229195], + [7.3965454101562615, 44.125056482685174], + [7.6712036132812615, 44.180234276372886], + [7.7151489257812615, 44.09350315285844], + [7.770080566406262, 44.136884638560495], + [8.02825927734376, 44.140826830775524], + [8.08868408203126, 44.321883129398586], + [8.247985839843762, 44.52196830685208], + [8.357849121093762, 44.48670891691767], + [8.599548339843762, 44.537632301346086], + [8.665466308593762, 44.58851118961441], + [8.802795410156264, 44.51805165000559], + [8.912658691406264, 44.592423107178654], + [8.912658691406264, 44.67841867818858], + [9.017028808593762, 44.6725593921204], + [9.139251708984387, 44.57970841241188], + [9.213409423828137, 44.6061127451739], + [9.221649169921887, 44.75453548416007], + [9.066467285156264, 44.85002749260048], + [8.896179199218762, 45.05606124274412], + [8.775329589843762, 45.01530198999206], + [8.659973144531262, 45.02695045318543], + [8.522644042968764, 45.28841433167348], + [8.550109863281262, 45.3617951914213], + [8.63800048828126, 45.34828480683997], + [8.676452636718762, 45.30773430004872], + [8.76983642578126, 45.35407536661812], + [8.734130859375014, 45.38494834654319], + [8.846740722656262, 45.40423540168332], + [8.725891113281262, 45.51789504294005], + [8.654479980468762, 45.70809729528788], + [8.56109619140626, 45.79242458189573], + [8.599548339843762, 45.832626782661585], + [8.580322265625012, 45.90529985724794], + [8.725891113281262, 46.02557483126793], + [8.717651367187512, 46.0998999106273], + [8.610534667968762, 46.14178273759229], + [8.539123535156262, 46.221652456379104], + [8.451232910156262, 46.25774588045678], + [8.445739746093764, 46.30899569419854], + [8.47045898437501, 46.34313560260196], + [8.462219238281264, 46.462457505996056], + [8.382568359375012, 46.456781428126554] + ] + ] + } + } + ] } diff --git a/packages/turf-square-grid/test/out/properties.geojson b/packages/turf-square-grid/test/out/properties.geojson index 82c0da8387..ab6583645b 100644 --- a/packages/turf-square-grid/test/out/properties.geojson +++ b/packages/turf-square-grid/test/out/properties.geojson @@ -1,1207 +1,664 @@ { - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.137036, - 41.39763 - ], - [ - 2.137036, - 41.406623 - ], - [ - 2.149021, - 41.406623 - ], - [ - 2.149021, - 41.39763 - ], - [ - 2.137036, - 41.39763 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.137036, - 41.406623 - ], - [ - 2.137036, - 41.415616 - ], - [ - 2.149021, - 41.415616 - ], - [ - 2.149021, - 41.406623 - ], - [ - 2.137036, - 41.406623 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.149021, - 41.388636 - ], - [ - 2.149021, - 41.39763 - ], - [ - 2.161006, - 41.39763 - ], - [ - 2.161006, - 41.388636 - ], - [ - 2.149021, - 41.388636 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.149021, - 41.39763 - ], - [ - 2.149021, - 41.406623 - ], - [ - 2.161006, - 41.406623 - ], - [ - 2.161006, - 41.39763 - ], - [ - 2.149021, - 41.39763 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.149021, - 41.406623 - ], - [ - 2.149021, - 41.415616 - ], - [ - 2.161006, - 41.415616 - ], - [ - 2.161006, - 41.406623 - ], - [ - 2.149021, - 41.406623 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.161006, - 41.379643 - ], - [ - 2.161006, - 41.388636 - ], - [ - 2.172991, - 41.388636 - ], - [ - 2.172991, - 41.379643 - ], - [ - 2.161006, - 41.379643 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.161006, - 41.388636 - ], - [ - 2.161006, - 41.39763 - ], - [ - 2.172991, - 41.39763 - ], - [ - 2.172991, - 41.388636 - ], - [ - 2.161006, - 41.388636 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.161006, - 41.39763 - ], - [ - 2.161006, - 41.406623 - ], - [ - 2.172991, - 41.406623 - ], - [ - 2.172991, - 41.39763 - ], - [ - 2.161006, - 41.39763 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.161006, - 41.406623 - ], - [ - 2.161006, - 41.415616 - ], - [ - 2.172991, - 41.415616 - ], - [ - 2.172991, - 41.406623 - ], - [ - 2.161006, - 41.406623 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.161006, - 41.415616 - ], - [ - 2.161006, - 41.424609 - ], - [ - 2.172991, - 41.424609 - ], - [ - 2.172991, - 41.415616 - ], - [ - 2.161006, - 41.415616 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.161006, - 41.424609 - ], - [ - 2.161006, - 41.433602 - ], - [ - 2.172991, - 41.433602 - ], - [ - 2.172991, - 41.424609 - ], - [ - 2.161006, - 41.424609 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.161006, - 41.433602 - ], - [ - 2.161006, - 41.442596 - ], - [ - 2.172991, - 41.442596 - ], - [ - 2.172991, - 41.433602 - ], - [ - 2.161006, - 41.433602 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.172991, - 41.379643 - ], - [ - 2.172991, - 41.388636 - ], - [ - 2.184976, - 41.388636 - ], - [ - 2.184976, - 41.379643 - ], - [ - 2.172991, - 41.379643 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.172991, - 41.388636 - ], - [ - 2.172991, - 41.39763 - ], - [ - 2.184976, - 41.39763 - ], - [ - 2.184976, - 41.388636 - ], - [ - 2.172991, - 41.388636 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.172991, - 41.39763 - ], - [ - 2.172991, - 41.406623 - ], - [ - 2.184976, - 41.406623 - ], - [ - 2.184976, - 41.39763 - ], - [ - 2.172991, - 41.39763 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.172991, - 41.406623 - ], - [ - 2.172991, - 41.415616 - ], - [ - 2.184976, - 41.415616 - ], - [ - 2.184976, - 41.406623 - ], - [ - 2.172991, - 41.406623 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.172991, - 41.415616 - ], - [ - 2.172991, - 41.424609 - ], - [ - 2.184976, - 41.424609 - ], - [ - 2.184976, - 41.415616 - ], - [ - 2.172991, - 41.415616 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.172991, - 41.424609 - ], - [ - 2.172991, - 41.433602 - ], - [ - 2.184976, - 41.433602 - ], - [ - 2.184976, - 41.424609 - ], - [ - 2.172991, - 41.424609 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.172991, - 41.433602 - ], - [ - 2.172991, - 41.442596 - ], - [ - 2.184976, - 41.442596 - ], - [ - 2.184976, - 41.433602 - ], - [ - 2.172991, - 41.433602 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.184976, - 41.379643 - ], - [ - 2.184976, - 41.388636 - ], - [ - 2.196961, - 41.388636 - ], - [ - 2.196961, - 41.379643 - ], - [ - 2.184976, - 41.379643 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.184976, - 41.388636 - ], - [ - 2.184976, - 41.39763 - ], - [ - 2.196961, - 41.39763 - ], - [ - 2.196961, - 41.388636 - ], - [ - 2.184976, - 41.388636 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.184976, - 41.39763 - ], - [ - 2.184976, - 41.406623 - ], - [ - 2.196961, - 41.406623 - ], - [ - 2.196961, - 41.39763 - ], - [ - 2.184976, - 41.39763 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.184976, - 41.406623 - ], - [ - 2.184976, - 41.415616 - ], - [ - 2.196961, - 41.415616 - ], - [ - 2.196961, - 41.406623 - ], - [ - 2.184976, - 41.406623 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.184976, - 41.415616 - ], - [ - 2.184976, - 41.424609 - ], - [ - 2.196961, - 41.424609 - ], - [ - 2.196961, - 41.415616 - ], - [ - 2.184976, - 41.415616 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.184976, - 41.424609 - ], - [ - 2.184976, - 41.433602 - ], - [ - 2.196961, - 41.433602 - ], - [ - 2.196961, - 41.424609 - ], - [ - 2.184976, - 41.424609 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.184976, - 41.433602 - ], - [ - 2.184976, - 41.442596 - ], - [ - 2.196961, - 41.442596 - ], - [ - 2.196961, - 41.433602 - ], - [ - 2.184976, - 41.433602 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.196961, - 41.388636 - ], - [ - 2.196961, - 41.39763 - ], - [ - 2.208947, - 41.39763 - ], - [ - 2.208947, - 41.388636 - ], - [ - 2.196961, - 41.388636 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.196961, - 41.39763 - ], - [ - 2.196961, - 41.406623 - ], - [ - 2.208947, - 41.406623 - ], - [ - 2.208947, - 41.39763 - ], - [ - 2.196961, - 41.39763 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.196961, - 41.406623 - ], - [ - 2.196961, - 41.415616 - ], - [ - 2.208947, - 41.415616 - ], - [ - 2.208947, - 41.406623 - ], - [ - 2.196961, - 41.406623 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.196961, - 41.415616 - ], - [ - 2.196961, - 41.424609 - ], - [ - 2.208947, - 41.424609 - ], - [ - 2.208947, - 41.415616 - ], - [ - 2.196961, - 41.415616 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.196961, - 41.424609 - ], - [ - 2.196961, - 41.433602 - ], - [ - 2.208947, - 41.433602 - ], - [ - 2.208947, - 41.424609 - ], - [ - 2.196961, - 41.424609 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.208947, - 41.39763 - ], - [ - 2.208947, - 41.406623 - ], - [ - 2.220932, - 41.406623 - ], - [ - 2.220932, - 41.39763 - ], - [ - 2.208947, - 41.39763 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.208947, - 41.406623 - ], - [ - 2.208947, - 41.415616 - ], - [ - 2.220932, - 41.415616 - ], - [ - 2.220932, - 41.406623 - ], - [ - 2.208947, - 41.406623 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "marker-color": "#0ff" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.208947, - 41.415616 - ], - [ - 2.208947, - 41.424609 - ], - [ - 2.220932, - 41.424609 - ], - [ - 2.220932, - 41.415616 - ], - [ - 2.208947, - 41.415616 - ] - ] - ] - } - }, - { - "type": "Feature", - "bbox": [ - 2.131519317626953, - 41.37835427979543, - 2.2264480590820312, - 41.44388449101261 - ], - "properties": { - "stroke": "#F00", - "stroke-width": 6, - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.131519317626953, - 41.37835427979543 - ], - [ - 2.2264480590820312, - 41.37835427979543 - ], - [ - 2.2264480590820312, - 41.44388449101261 - ], - [ - 2.131519317626953, - 41.44388449101261 - ], - [ - 2.131519317626953, - 41.37835427979543 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "stroke": "#00F", - "stroke-width": 6, - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.223186492919922, - 41.416856461155575 - ], - [ - 2.1716880798339844, - 41.44182560856202 - ], - [ - 2.1636199951171875, - 41.41608406639095 - ], - [ - 2.1334075927734375, - 41.407200866420744 - ], - [ - 2.1845626831054683, - 41.37977115211044 - ], - [ - 2.223186492919922, - 41.416856461155575 - ] - ] - ] - } - } - ] + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.137036, 41.39763], + [2.137036, 41.406623], + [2.149021, 41.406623], + [2.149021, 41.39763], + [2.137036, 41.39763] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.137036, 41.406623], + [2.137036, 41.415616], + [2.149021, 41.415616], + [2.149021, 41.406623], + [2.137036, 41.406623] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.149021, 41.388636], + [2.149021, 41.39763], + [2.161006, 41.39763], + [2.161006, 41.388636], + [2.149021, 41.388636] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.149021, 41.39763], + [2.149021, 41.406623], + [2.161006, 41.406623], + [2.161006, 41.39763], + [2.149021, 41.39763] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.149021, 41.406623], + [2.149021, 41.415616], + [2.161006, 41.415616], + [2.161006, 41.406623], + [2.149021, 41.406623] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.161006, 41.379643], + [2.161006, 41.388636], + [2.172991, 41.388636], + [2.172991, 41.379643], + [2.161006, 41.379643] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.161006, 41.388636], + [2.161006, 41.39763], + [2.172991, 41.39763], + [2.172991, 41.388636], + [2.161006, 41.388636] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.161006, 41.39763], + [2.161006, 41.406623], + [2.172991, 41.406623], + [2.172991, 41.39763], + [2.161006, 41.39763] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.161006, 41.406623], + [2.161006, 41.415616], + [2.172991, 41.415616], + [2.172991, 41.406623], + [2.161006, 41.406623] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.161006, 41.415616], + [2.161006, 41.424609], + [2.172991, 41.424609], + [2.172991, 41.415616], + [2.161006, 41.415616] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.161006, 41.424609], + [2.161006, 41.433602], + [2.172991, 41.433602], + [2.172991, 41.424609], + [2.161006, 41.424609] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.161006, 41.433602], + [2.161006, 41.442596], + [2.172991, 41.442596], + [2.172991, 41.433602], + [2.161006, 41.433602] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.172991, 41.379643], + [2.172991, 41.388636], + [2.184976, 41.388636], + [2.184976, 41.379643], + [2.172991, 41.379643] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.172991, 41.388636], + [2.172991, 41.39763], + [2.184976, 41.39763], + [2.184976, 41.388636], + [2.172991, 41.388636] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.172991, 41.39763], + [2.172991, 41.406623], + [2.184976, 41.406623], + [2.184976, 41.39763], + [2.172991, 41.39763] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.172991, 41.406623], + [2.172991, 41.415616], + [2.184976, 41.415616], + [2.184976, 41.406623], + [2.172991, 41.406623] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.172991, 41.415616], + [2.172991, 41.424609], + [2.184976, 41.424609], + [2.184976, 41.415616], + [2.172991, 41.415616] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.172991, 41.424609], + [2.172991, 41.433602], + [2.184976, 41.433602], + [2.184976, 41.424609], + [2.172991, 41.424609] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.172991, 41.433602], + [2.172991, 41.442596], + [2.184976, 41.442596], + [2.184976, 41.433602], + [2.172991, 41.433602] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.184976, 41.379643], + [2.184976, 41.388636], + [2.196961, 41.388636], + [2.196961, 41.379643], + [2.184976, 41.379643] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.184976, 41.388636], + [2.184976, 41.39763], + [2.196961, 41.39763], + [2.196961, 41.388636], + [2.184976, 41.388636] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.184976, 41.39763], + [2.184976, 41.406623], + [2.196961, 41.406623], + [2.196961, 41.39763], + [2.184976, 41.39763] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.184976, 41.406623], + [2.184976, 41.415616], + [2.196961, 41.415616], + [2.196961, 41.406623], + [2.184976, 41.406623] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.184976, 41.415616], + [2.184976, 41.424609], + [2.196961, 41.424609], + [2.196961, 41.415616], + [2.184976, 41.415616] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.184976, 41.424609], + [2.184976, 41.433602], + [2.196961, 41.433602], + [2.196961, 41.424609], + [2.184976, 41.424609] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.184976, 41.433602], + [2.184976, 41.442596], + [2.196961, 41.442596], + [2.196961, 41.433602], + [2.184976, 41.433602] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.196961, 41.388636], + [2.196961, 41.39763], + [2.208947, 41.39763], + [2.208947, 41.388636], + [2.196961, 41.388636] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.196961, 41.39763], + [2.196961, 41.406623], + [2.208947, 41.406623], + [2.208947, 41.39763], + [2.196961, 41.39763] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.196961, 41.406623], + [2.196961, 41.415616], + [2.208947, 41.415616], + [2.208947, 41.406623], + [2.196961, 41.406623] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.196961, 41.415616], + [2.196961, 41.424609], + [2.208947, 41.424609], + [2.208947, 41.415616], + [2.196961, 41.415616] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.196961, 41.424609], + [2.196961, 41.433602], + [2.208947, 41.433602], + [2.208947, 41.424609], + [2.196961, 41.424609] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.208947, 41.39763], + [2.208947, 41.406623], + [2.220932, 41.406623], + [2.220932, 41.39763], + [2.208947, 41.39763] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.208947, 41.406623], + [2.208947, 41.415616], + [2.220932, 41.415616], + [2.220932, 41.406623], + [2.208947, 41.406623] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.208947, 41.415616], + [2.208947, 41.424609], + [2.220932, 41.424609], + [2.220932, 41.415616], + [2.208947, 41.415616] + ] + ] + } + }, + { + "type": "Feature", + "bbox": [ + 2.131519317626953, + 41.37835427979543, + 2.2264480590820312, + 41.44388449101261 + ], + "properties": { + "stroke": "#F00", + "stroke-width": 6, + "fill-opacity": 0 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.131519317626953, 41.37835427979543], + [2.2264480590820312, 41.37835427979543], + [2.2264480590820312, 41.44388449101261], + [2.131519317626953, 41.44388449101261], + [2.131519317626953, 41.37835427979543] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "stroke": "#00F", + "stroke-width": 6, + "fill-opacity": 0 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.223186492919922, 41.416856461155575], + [2.1716880798339844, 41.44182560856202], + [2.1636199951171875, 41.41608406639095], + [2.1334075927734375, 41.407200866420744], + [2.1845626831054683, 41.37977115211044], + [2.223186492919922, 41.416856461155575] + ] + ] + } + } + ] } diff --git a/packages/turf-square-grid/test/out/resolute.geojson b/packages/turf-square-grid/test/out/resolute.geojson index 8b96b4e998..2c5c55bf65 100644 --- a/packages/turf-square-grid/test/out/resolute.geojson +++ b/packages/turf-square-grid/test/out/resolute.geojson @@ -1,170 +1,95 @@ { - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -95.630499, - 74.504464 - ], - [ - -95.630499, - 74.685378 - ], - [ - -94.954834, - 74.685378 - ], - [ - -94.954834, - 74.504464 - ], - [ - -95.630499, - 74.504464 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -95.630499, - 74.685378 - ], - [ - -95.630499, - 74.866293 - ], - [ - -94.954834, - 74.866293 - ], - [ - -94.954834, - 74.685378 - ], - [ - -95.630499, - 74.685378 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -94.954834, - 74.504464 - ], - [ - -94.954834, - 74.685378 - ], - [ - -94.279169, - 74.685378 - ], - [ - -94.279169, - 74.504464 - ], - [ - -94.954834, - 74.504464 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -94.954834, - 74.685378 - ], - [ - -94.954834, - 74.866293 - ], - [ - -94.279169, - 74.866293 - ], - [ - -94.279169, - 74.685378 - ], - [ - -94.954834, - 74.685378 - ] - ] - ] - } - }, - { - "type": "Feature", - "bbox": [ - -95.877685546875, - 74.46849062193377, - -94.031982421875, - 74.90226611990785 - ], - "properties": { - "stroke": "#F00", - "stroke-width": 6, - "fill-opacity": 0 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -95.877685546875, - 74.46849062193377 - ], - [ - -94.031982421875, - 74.46849062193377 - ], - [ - -94.031982421875, - 74.90226611990785 - ], - [ - -95.877685546875, - 74.90226611990785 - ], - [ - -95.877685546875, - 74.46849062193377 - ] - ] - ] - } - } - ] + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-95.630499, 74.504464], + [-95.630499, 74.685378], + [-94.954834, 74.685378], + [-94.954834, 74.504464], + [-95.630499, 74.504464] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-95.630499, 74.685378], + [-95.630499, 74.866293], + [-94.954834, 74.866293], + [-94.954834, 74.685378], + [-95.630499, 74.685378] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-94.954834, 74.504464], + [-94.954834, 74.685378], + [-94.279169, 74.685378], + [-94.279169, 74.504464], + [-94.954834, 74.504464] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-94.954834, 74.685378], + [-94.954834, 74.866293], + [-94.279169, 74.866293], + [-94.279169, 74.685378], + [-94.954834, 74.685378] + ] + ] + } + }, + { + "type": "Feature", + "bbox": [ + -95.877685546875, + 74.46849062193377, + -94.031982421875, + 74.90226611990785 + ], + "properties": { + "stroke": "#F00", + "stroke-width": 6, + "fill-opacity": 0 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-95.877685546875, 74.46849062193377], + [-94.031982421875, 74.46849062193377], + [-94.031982421875, 74.90226611990785], + [-95.877685546875, 74.90226611990785], + [-95.877685546875, 74.46849062193377] + ] + ] + } + } + ] } From eb37959edc7bce1fa5ac2ae8ca376957fc13931c Mon Sep 17 00:00:00 2001 From: Rowan Winsemius Date: Sat, 31 Jul 2021 22:12:55 +1000 Subject: [PATCH 6/9] Fix the square grid tests properly --- packages/turf-square-grid/README.md | 22 +- .../test/in/fiji-10-miles.json | 4 +- .../test/in/issue-1215.geojson | 5 +- .../test/in/london-20-miles.json | 5 +- .../test/in/piedemont-mask.json | 5 +- .../turf-square-grid/test/in/properties.json | 5 +- .../turf-square-grid/test/in/resolute.json | 5 +- .../test/out/big-bbox.geojson | 8484 +++- .../test/out/fiji-10-miles.geojson | 204 +- .../test/out/issue-1215.geojson | 36390 ++++++++++++---- .../test/out/london-20-miles.geojson | 41 +- .../test/out/piedemont-mask.geojson | 1373 +- .../test/out/properties.geojson | 578 +- .../test/out/resolute.geojson | 291 +- 14 files changed, 38103 insertions(+), 9309 deletions(-) diff --git a/packages/turf-square-grid/README.md b/packages/turf-square-grid/README.md index 9ab6093ffd..25f638d69d 100644 --- a/packages/turf-square-grid/README.md +++ b/packages/turf-square-grid/README.md @@ -8,26 +8,26 @@ Creates a square grid from a bounding box. **Parameters** -- `bbox` **[Array](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array)<[number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)>** extent in [minX, minY, maxX, maxY] order -- `cellSide` **[number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)** of each cell, in units -- `options` **[Object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object)** Optional parameters (optional, default `{}`) - - `options.units` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** used in calculating cellSide, can be degrees, - radians, miles, or kilometers (optional, default `'kilometers'`) - - `options.mask` **[Feature](https://tools.ietf.org/html/rfc7946#section-3.2)<([Polygon](https://tools.ietf.org/html/rfc7946#section-3.1.6) \| [MultiPolygon](https://tools.ietf.org/html/rfc7946#section-3.1.7))>?** if passed a Polygon or MultiPolygon, - the grid Points will be created only inside it - - `options.properties` **[Object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object)** passed to each point of the grid (optional, default `{}`) +- `bbox` **[Array](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array)<[number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)>** extent in [minX, minY, maxX, maxY] order +- `cellSide` **[number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)** of each cell, in units +- `options` **[Object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object)** Optional parameters (optional, default `{}`) + - `options.units` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** used in calculating cellSide, can be degrees, + radians, miles, or kilometers (optional, default `'kilometers'`) + - `options.mask` **[Feature](https://tools.ietf.org/html/rfc7946#section-3.2)<([Polygon](https://tools.ietf.org/html/rfc7946#section-3.1.6) \| [MultiPolygon](https://tools.ietf.org/html/rfc7946#section-3.1.7))>?** if passed a Polygon or MultiPolygon, + the grid Points will be created only inside it + - `options.properties` **[Object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object)** passed to each point of the grid (optional, default `{}`) **Examples** ```javascript -var bbox = [-95, 30 ,-85, 40]; +var bbox = [-95, 30, -85, 40]; var cellSide = 50; -var options = {units: 'miles'}; +var options = { units: "miles" }; var squareGrid = turf.squareGrid(bbox, cellSide, options); //addToMap -var addToMap = [squareGrid] +var addToMap = [squareGrid]; ``` Returns **[FeatureCollection](https://tools.ietf.org/html/rfc7946#section-3.3)<[Polygon](https://tools.ietf.org/html/rfc7946#section-3.1.6)>** grid a grid of polygons diff --git a/packages/turf-square-grid/test/in/fiji-10-miles.json b/packages/turf-square-grid/test/in/fiji-10-miles.json index b4497e0f1d..d5a71f0026 100644 --- a/packages/turf-square-grid/test/in/fiji-10-miles.json +++ b/packages/turf-square-grid/test/in/fiji-10-miles.json @@ -1,8 +1,6 @@ { "bbox": [ - -180.3460693359375, - -17.16703442146408, - -179.5770263671875, + -180.3460693359375, -17.16703442146408, -179.5770263671875, -16.48349760264812 ], "cellSide": 10, diff --git a/packages/turf-square-grid/test/in/issue-1215.geojson b/packages/turf-square-grid/test/in/issue-1215.geojson index 951b3718fc..4ac2ff8ebc 100644 --- a/packages/turf-square-grid/test/in/issue-1215.geojson +++ b/packages/turf-square-grid/test/in/issue-1215.geojson @@ -1,9 +1,6 @@ { "bbox": [ - 37.69975662231445, - 55.55151096909941, - 37.70958423614502, - 55.55615949302079 + 37.69975662231445, 55.55151096909941, 37.70958423614502, 55.55615949302079 ], "cellSide": 0.01, "units": "kilometers", diff --git a/packages/turf-square-grid/test/in/london-20-miles.json b/packages/turf-square-grid/test/in/london-20-miles.json index 634ed5b566..404dc56709 100644 --- a/packages/turf-square-grid/test/in/london-20-miles.json +++ b/packages/turf-square-grid/test/in/london-20-miles.json @@ -1,9 +1,6 @@ { "bbox": [ - -0.6207275390625, - 51.23784668914442, - 0.439453125, - 51.767839887322154 + -0.6207275390625, 51.23784668914442, 0.439453125, 51.767839887322154 ], "cellSide": 20, "units": "miles" diff --git a/packages/turf-square-grid/test/in/piedemont-mask.json b/packages/turf-square-grid/test/in/piedemont-mask.json index 52311fc419..5f53b65e24 100644 --- a/packages/turf-square-grid/test/in/piedemont-mask.json +++ b/packages/turf-square-grid/test/in/piedemont-mask.json @@ -1,9 +1,6 @@ { "bbox": [ - 6.3775634765625, - 44.05601169578525, - 9.437255859375, - 46.50595444552049 + 6.3775634765625, 44.05601169578525, 9.437255859375, 46.50595444552049 ], "cellSide": 12.5, "units": "miles", diff --git a/packages/turf-square-grid/test/in/properties.json b/packages/turf-square-grid/test/in/properties.json index a1f89b7b34..13148f1c10 100644 --- a/packages/turf-square-grid/test/in/properties.json +++ b/packages/turf-square-grid/test/in/properties.json @@ -1,9 +1,6 @@ { "bbox": [ - 2.131519317626953, - 41.37835427979543, - 2.2264480590820312, - 41.44388449101261 + 2.131519317626953, 41.37835427979543, 2.2264480590820312, 41.44388449101261 ], "properties": { "marker-color": "#0ff" diff --git a/packages/turf-square-grid/test/in/resolute.json b/packages/turf-square-grid/test/in/resolute.json index df7df65f6c..78d15417cc 100644 --- a/packages/turf-square-grid/test/in/resolute.json +++ b/packages/turf-square-grid/test/in/resolute.json @@ -1,9 +1,6 @@ { "bbox": [ - -95.877685546875, - 74.46849062193377, - -94.031982421875, - 74.90226611990785 + -95.877685546875, 74.46849062193377, -94.031982421875, 74.90226611990785 ], "cellSide": 12.5, "units": "miles" diff --git a/packages/turf-square-grid/test/out/big-bbox.geojson b/packages/turf-square-grid/test/out/big-bbox.geojson index fcbcbed7ed..d22cbc1226 100644 --- a/packages/turf-square-grid/test/out/big-bbox.geojson +++ b/packages/turf-square-grid/test/out/big-bbox.geojson @@ -8,11 +8,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -77.132893], - [-199.504452, -69.896314], - [-125.15625, -69.896314], - [-125.15625, -77.132893], - [-199.504452, -77.132893] + [-219.12199, -77.044217], + [-219.12199, -69.816084], + [-211.893856, -69.816084], + [-211.893856, -77.044217], + [-219.12199, -77.044217] ] ] } @@ -24,11 +24,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -69.896314], - [-199.504452, -62.659735], - [-125.15625, -62.659735], - [-125.15625, -69.896314], - [-199.504452, -69.896314] + [-219.12199, -69.816084], + [-219.12199, -62.58795], + [-211.893856, -62.58795], + [-211.893856, -69.816084], + [-219.12199, -69.816084] ] ] } @@ -40,11 +40,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -62.659735], - [-199.504452, -55.423156], - [-125.15625, -55.423156], - [-125.15625, -62.659735], - [-199.504452, -62.659735] + [-219.12199, -62.58795], + [-219.12199, -55.359816], + [-211.893856, -55.359816], + [-211.893856, -62.58795], + [-219.12199, -62.58795] ] ] } @@ -56,11 +56,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -55.423156], - [-199.504452, -48.186577], - [-125.15625, -48.186577], - [-125.15625, -55.423156], - [-199.504452, -55.423156] + [-219.12199, -55.359816], + [-219.12199, -48.131682], + [-211.893856, -48.131682], + [-211.893856, -55.359816], + [-219.12199, -55.359816] ] ] } @@ -72,11 +72,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -48.186577], - [-199.504452, -40.949997], - [-125.15625, -40.949997], - [-125.15625, -48.186577], - [-199.504452, -48.186577] + [-219.12199, -48.131682], + [-219.12199, -40.903548], + [-211.893856, -40.903548], + [-211.893856, -48.131682], + [-219.12199, -48.131682] ] ] } @@ -88,11 +88,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -40.949997], - [-199.504452, -33.713418], - [-125.15625, -33.713418], - [-125.15625, -40.949997], - [-199.504452, -40.949997] + [-219.12199, -40.903548], + [-219.12199, -33.675414], + [-211.893856, -33.675414], + [-211.893856, -40.903548], + [-219.12199, -40.903548] ] ] } @@ -104,11 +104,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -33.713418], - [-199.504452, -26.476839], - [-125.15625, -26.476839], - [-125.15625, -33.713418], - [-199.504452, -33.713418] + [-219.12199, -33.675414], + [-219.12199, -26.44728], + [-211.893856, -26.44728], + [-211.893856, -33.675414], + [-219.12199, -33.675414] ] ] } @@ -120,11 +120,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -26.476839], - [-199.504452, -19.24026], - [-125.15625, -19.24026], - [-125.15625, -26.476839], - [-199.504452, -26.476839] + [-219.12199, -26.44728], + [-219.12199, -19.219147], + [-211.893856, -19.219147], + [-211.893856, -26.44728], + [-219.12199, -26.44728] ] ] } @@ -136,11 +136,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -19.24026], - [-199.504452, -12.003681], - [-125.15625, -12.003681], - [-125.15625, -19.24026], - [-199.504452, -19.24026] + [-219.12199, -19.219147], + [-219.12199, -11.991013], + [-211.893856, -11.991013], + [-211.893856, -19.219147], + [-219.12199, -19.219147] ] ] } @@ -152,11 +152,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -12.003681], - [-199.504452, -4.767102], - [-125.15625, -4.767102], - [-125.15625, -12.003681], - [-199.504452, -12.003681] + [-219.12199, -11.991013], + [-219.12199, -4.762879], + [-211.893856, -4.762879], + [-211.893856, -11.991013], + [-219.12199, -11.991013] ] ] } @@ -168,11 +168,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, -4.767102], - [-199.504452, 2.469478], - [-125.15625, 2.469478], - [-125.15625, -4.767102], - [-199.504452, -4.767102] + [-219.12199, -4.762879], + [-219.12199, 2.465255], + [-211.893856, 2.465255], + [-211.893856, -4.762879], + [-219.12199, -4.762879] ] ] } @@ -184,11 +184,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 2.469478], - [-199.504452, 9.706057], - [-125.15625, 9.706057], - [-125.15625, 2.469478], - [-199.504452, 2.469478] + [-219.12199, 2.465255], + [-219.12199, 9.693389], + [-211.893856, 9.693389], + [-211.893856, 2.465255], + [-219.12199, 2.465255] ] ] } @@ -200,11 +200,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 9.706057], - [-199.504452, 16.942636], - [-125.15625, 16.942636], - [-125.15625, 9.706057], - [-199.504452, 9.706057] + [-219.12199, 9.693389], + [-219.12199, 16.921523], + [-211.893856, 16.921523], + [-211.893856, 9.693389], + [-219.12199, 9.693389] ] ] } @@ -216,11 +216,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 16.942636], - [-199.504452, 24.179215], - [-125.15625, 24.179215], - [-125.15625, 16.942636], - [-199.504452, 16.942636] + [-219.12199, 16.921523], + [-219.12199, 24.149656], + [-211.893856, 24.149656], + [-211.893856, 16.921523], + [-219.12199, 16.921523] ] ] } @@ -232,11 +232,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 24.179215], - [-199.504452, 31.415794], - [-125.15625, 31.415794], - [-125.15625, 24.179215], - [-199.504452, 24.179215] + [-219.12199, 24.149656], + [-219.12199, 31.37779], + [-211.893856, 31.37779], + [-211.893856, 24.149656], + [-219.12199, 24.149656] ] ] } @@ -248,11 +248,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 31.415794], - [-199.504452, 38.652373], - [-125.15625, 38.652373], - [-125.15625, 31.415794], - [-199.504452, 31.415794] + [-219.12199, 31.37779], + [-219.12199, 38.605924], + [-211.893856, 38.605924], + [-211.893856, 31.37779], + [-219.12199, 31.37779] ] ] } @@ -264,11 +264,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 38.652373], - [-199.504452, 45.888952], - [-125.15625, 45.888952], - [-125.15625, 38.652373], - [-199.504452, 38.652373] + [-219.12199, 38.605924], + [-219.12199, 45.834058], + [-211.893856, 45.834058], + [-211.893856, 38.605924], + [-219.12199, 38.605924] ] ] } @@ -280,11 +280,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 45.888952], - [-199.504452, 53.125532], - [-125.15625, 53.125532], - [-125.15625, 45.888952], - [-199.504452, 45.888952] + [-219.12199, 45.834058], + [-219.12199, 53.062192], + [-211.893856, 53.062192], + [-211.893856, 45.834058], + [-219.12199, 45.834058] ] ] } @@ -296,11 +296,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 53.125532], - [-199.504452, 60.362111], - [-125.15625, 60.362111], - [-125.15625, 53.125532], - [-199.504452, 53.125532] + [-219.12199, 53.062192], + [-219.12199, 60.290326], + [-211.893856, 60.290326], + [-211.893856, 53.062192], + [-219.12199, 53.062192] ] ] } @@ -312,11 +312,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 60.362111], - [-199.504452, 67.59869], - [-125.15625, 67.59869], - [-125.15625, 60.362111], - [-199.504452, 60.362111] + [-219.12199, 60.290326], + [-219.12199, 67.518459], + [-211.893856, 67.518459], + [-211.893856, 60.290326], + [-219.12199, 60.290326] ] ] } @@ -328,11 +328,11 @@ "type": "Polygon", "coordinates": [ [ - [-199.504452, 67.59869], - [-199.504452, 74.835269], - [-125.15625, 74.835269], - [-125.15625, 67.59869], - [-199.504452, 67.59869] + [-219.12199, 67.518459], + [-219.12199, 74.746593], + [-211.893856, 74.746593], + [-211.893856, 67.518459], + [-219.12199, 67.518459] ] ] } @@ -344,11 +344,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -77.132893], - [-125.15625, -69.896314], - [-50.808048, -69.896314], - [-50.808048, -77.132893], - [-125.15625, -77.132893] + [-211.893856, -77.044217], + [-211.893856, -69.816084], + [-204.665722, -69.816084], + [-204.665722, -77.044217], + [-211.893856, -77.044217] ] ] } @@ -360,11 +360,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -69.896314], - [-125.15625, -62.659735], - [-50.808048, -62.659735], - [-50.808048, -69.896314], - [-125.15625, -69.896314] + [-211.893856, -69.816084], + [-211.893856, -62.58795], + [-204.665722, -62.58795], + [-204.665722, -69.816084], + [-211.893856, -69.816084] ] ] } @@ -376,11 +376,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -62.659735], - [-125.15625, -55.423156], - [-50.808048, -55.423156], - [-50.808048, -62.659735], - [-125.15625, -62.659735] + [-211.893856, -62.58795], + [-211.893856, -55.359816], + [-204.665722, -55.359816], + [-204.665722, -62.58795], + [-211.893856, -62.58795] ] ] } @@ -392,11 +392,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -55.423156], - [-125.15625, -48.186577], - [-50.808048, -48.186577], - [-50.808048, -55.423156], - [-125.15625, -55.423156] + [-211.893856, -55.359816], + [-211.893856, -48.131682], + [-204.665722, -48.131682], + [-204.665722, -55.359816], + [-211.893856, -55.359816] ] ] } @@ -408,11 +408,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -48.186577], - [-125.15625, -40.949997], - [-50.808048, -40.949997], - [-50.808048, -48.186577], - [-125.15625, -48.186577] + [-211.893856, -48.131682], + [-211.893856, -40.903548], + [-204.665722, -40.903548], + [-204.665722, -48.131682], + [-211.893856, -48.131682] ] ] } @@ -424,11 +424,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -40.949997], - [-125.15625, -33.713418], - [-50.808048, -33.713418], - [-50.808048, -40.949997], - [-125.15625, -40.949997] + [-211.893856, -40.903548], + [-211.893856, -33.675414], + [-204.665722, -33.675414], + [-204.665722, -40.903548], + [-211.893856, -40.903548] ] ] } @@ -440,11 +440,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -33.713418], - [-125.15625, -26.476839], - [-50.808048, -26.476839], - [-50.808048, -33.713418], - [-125.15625, -33.713418] + [-211.893856, -33.675414], + [-211.893856, -26.44728], + [-204.665722, -26.44728], + [-204.665722, -33.675414], + [-211.893856, -33.675414] ] ] } @@ -456,11 +456,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -26.476839], - [-125.15625, -19.24026], - [-50.808048, -19.24026], - [-50.808048, -26.476839], - [-125.15625, -26.476839] + [-211.893856, -26.44728], + [-211.893856, -19.219147], + [-204.665722, -19.219147], + [-204.665722, -26.44728], + [-211.893856, -26.44728] ] ] } @@ -472,11 +472,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -19.24026], - [-125.15625, -12.003681], - [-50.808048, -12.003681], - [-50.808048, -19.24026], - [-125.15625, -19.24026] + [-211.893856, -19.219147], + [-211.893856, -11.991013], + [-204.665722, -11.991013], + [-204.665722, -19.219147], + [-211.893856, -19.219147] ] ] } @@ -488,11 +488,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -12.003681], - [-125.15625, -4.767102], - [-50.808048, -4.767102], - [-50.808048, -12.003681], - [-125.15625, -12.003681] + [-211.893856, -11.991013], + [-211.893856, -4.762879], + [-204.665722, -4.762879], + [-204.665722, -11.991013], + [-211.893856, -11.991013] ] ] } @@ -504,11 +504,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -4.767102], - [-125.15625, 2.469478], - [-50.808048, 2.469478], - [-50.808048, -4.767102], - [-125.15625, -4.767102] + [-211.893856, -4.762879], + [-211.893856, 2.465255], + [-204.665722, 2.465255], + [-204.665722, -4.762879], + [-211.893856, -4.762879] ] ] } @@ -520,11 +520,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 2.469478], - [-125.15625, 9.706057], - [-50.808048, 9.706057], - [-50.808048, 2.469478], - [-125.15625, 2.469478] + [-211.893856, 2.465255], + [-211.893856, 9.693389], + [-204.665722, 9.693389], + [-204.665722, 2.465255], + [-211.893856, 2.465255] ] ] } @@ -536,11 +536,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 9.706057], - [-125.15625, 16.942636], - [-50.808048, 16.942636], - [-50.808048, 9.706057], - [-125.15625, 9.706057] + [-211.893856, 9.693389], + [-211.893856, 16.921523], + [-204.665722, 16.921523], + [-204.665722, 9.693389], + [-211.893856, 9.693389] ] ] } @@ -552,11 +552,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 16.942636], - [-125.15625, 24.179215], - [-50.808048, 24.179215], - [-50.808048, 16.942636], - [-125.15625, 16.942636] + [-211.893856, 16.921523], + [-211.893856, 24.149656], + [-204.665722, 24.149656], + [-204.665722, 16.921523], + [-211.893856, 16.921523] ] ] } @@ -568,11 +568,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 24.179215], - [-125.15625, 31.415794], - [-50.808048, 31.415794], - [-50.808048, 24.179215], - [-125.15625, 24.179215] + [-211.893856, 24.149656], + [-211.893856, 31.37779], + [-204.665722, 31.37779], + [-204.665722, 24.149656], + [-211.893856, 24.149656] ] ] } @@ -584,11 +584,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 31.415794], - [-125.15625, 38.652373], - [-50.808048, 38.652373], - [-50.808048, 31.415794], - [-125.15625, 31.415794] + [-211.893856, 31.37779], + [-211.893856, 38.605924], + [-204.665722, 38.605924], + [-204.665722, 31.37779], + [-211.893856, 31.37779] ] ] } @@ -600,11 +600,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 38.652373], - [-125.15625, 45.888952], - [-50.808048, 45.888952], - [-50.808048, 38.652373], - [-125.15625, 38.652373] + [-211.893856, 38.605924], + [-211.893856, 45.834058], + [-204.665722, 45.834058], + [-204.665722, 38.605924], + [-211.893856, 38.605924] ] ] } @@ -616,11 +616,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 45.888952], - [-125.15625, 53.125532], - [-50.808048, 53.125532], - [-50.808048, 45.888952], - [-125.15625, 45.888952] + [-211.893856, 45.834058], + [-211.893856, 53.062192], + [-204.665722, 53.062192], + [-204.665722, 45.834058], + [-211.893856, 45.834058] ] ] } @@ -632,11 +632,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 53.125532], - [-125.15625, 60.362111], - [-50.808048, 60.362111], - [-50.808048, 53.125532], - [-125.15625, 53.125532] + [-211.893856, 53.062192], + [-211.893856, 60.290326], + [-204.665722, 60.290326], + [-204.665722, 53.062192], + [-211.893856, 53.062192] ] ] } @@ -648,11 +648,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 60.362111], - [-125.15625, 67.59869], - [-50.808048, 67.59869], - [-50.808048, 60.362111], - [-125.15625, 60.362111] + [-211.893856, 60.290326], + [-211.893856, 67.518459], + [-204.665722, 67.518459], + [-204.665722, 60.290326], + [-211.893856, 60.290326] ] ] } @@ -664,11 +664,8075 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 67.59869], - [-125.15625, 74.835269], - [-50.808048, 74.835269], - [-50.808048, 67.59869], - [-125.15625, 67.59869] + [-211.893856, 67.518459], + [-211.893856, 74.746593], + [-204.665722, 74.746593], + [-204.665722, 67.518459], + [-211.893856, 67.518459] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -77.044217], + [-204.665722, -69.816084], + [-197.437588, -69.816084], + [-197.437588, -77.044217], + [-204.665722, -77.044217] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -69.816084], + [-204.665722, -62.58795], + [-197.437588, -62.58795], + [-197.437588, -69.816084], + [-204.665722, -69.816084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -62.58795], + [-204.665722, -55.359816], + [-197.437588, -55.359816], + [-197.437588, -62.58795], + [-204.665722, -62.58795] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -55.359816], + [-204.665722, -48.131682], + [-197.437588, -48.131682], + [-197.437588, -55.359816], + [-204.665722, -55.359816] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -48.131682], + [-204.665722, -40.903548], + [-197.437588, -40.903548], + [-197.437588, -48.131682], + [-204.665722, -48.131682] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -40.903548], + [-204.665722, -33.675414], + [-197.437588, -33.675414], + [-197.437588, -40.903548], + [-204.665722, -40.903548] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -33.675414], + [-204.665722, -26.44728], + [-197.437588, -26.44728], + [-197.437588, -33.675414], + [-204.665722, -33.675414] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -26.44728], + [-204.665722, -19.219147], + [-197.437588, -19.219147], + [-197.437588, -26.44728], + [-204.665722, -26.44728] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -19.219147], + [-204.665722, -11.991013], + [-197.437588, -11.991013], + [-197.437588, -19.219147], + [-204.665722, -19.219147] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -11.991013], + [-204.665722, -4.762879], + [-197.437588, -4.762879], + [-197.437588, -11.991013], + [-204.665722, -11.991013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, -4.762879], + [-204.665722, 2.465255], + [-197.437588, 2.465255], + [-197.437588, -4.762879], + [-204.665722, -4.762879] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 2.465255], + [-204.665722, 9.693389], + [-197.437588, 9.693389], + [-197.437588, 2.465255], + [-204.665722, 2.465255] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 9.693389], + [-204.665722, 16.921523], + [-197.437588, 16.921523], + [-197.437588, 9.693389], + [-204.665722, 9.693389] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 16.921523], + [-204.665722, 24.149656], + [-197.437588, 24.149656], + [-197.437588, 16.921523], + [-204.665722, 16.921523] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 24.149656], + [-204.665722, 31.37779], + [-197.437588, 31.37779], + [-197.437588, 24.149656], + [-204.665722, 24.149656] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 31.37779], + [-204.665722, 38.605924], + [-197.437588, 38.605924], + [-197.437588, 31.37779], + [-204.665722, 31.37779] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 38.605924], + [-204.665722, 45.834058], + [-197.437588, 45.834058], + [-197.437588, 38.605924], + [-204.665722, 38.605924] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 45.834058], + [-204.665722, 53.062192], + [-197.437588, 53.062192], + [-197.437588, 45.834058], + [-204.665722, 45.834058] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 53.062192], + [-204.665722, 60.290326], + [-197.437588, 60.290326], + [-197.437588, 53.062192], + [-204.665722, 53.062192] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 60.290326], + [-204.665722, 67.518459], + [-197.437588, 67.518459], + [-197.437588, 60.290326], + [-204.665722, 60.290326] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-204.665722, 67.518459], + [-204.665722, 74.746593], + [-197.437588, 74.746593], + [-197.437588, 67.518459], + [-204.665722, 67.518459] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -77.044217], + [-197.437588, -69.816084], + [-190.209455, -69.816084], + [-190.209455, -77.044217], + [-197.437588, -77.044217] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -69.816084], + [-197.437588, -62.58795], + [-190.209455, -62.58795], + [-190.209455, -69.816084], + [-197.437588, -69.816084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -62.58795], + [-197.437588, -55.359816], + [-190.209455, -55.359816], + [-190.209455, -62.58795], + [-197.437588, -62.58795] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -55.359816], + [-197.437588, -48.131682], + [-190.209455, -48.131682], + [-190.209455, -55.359816], + [-197.437588, -55.359816] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -48.131682], + [-197.437588, -40.903548], + [-190.209455, -40.903548], + [-190.209455, -48.131682], + [-197.437588, -48.131682] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -40.903548], + [-197.437588, -33.675414], + [-190.209455, -33.675414], + [-190.209455, -40.903548], + [-197.437588, -40.903548] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -33.675414], + [-197.437588, -26.44728], + [-190.209455, -26.44728], + [-190.209455, -33.675414], + [-197.437588, -33.675414] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -26.44728], + [-197.437588, -19.219147], + [-190.209455, -19.219147], + [-190.209455, -26.44728], + [-197.437588, -26.44728] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -19.219147], + [-197.437588, -11.991013], + [-190.209455, -11.991013], + [-190.209455, -19.219147], + [-197.437588, -19.219147] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -11.991013], + [-197.437588, -4.762879], + [-190.209455, -4.762879], + [-190.209455, -11.991013], + [-197.437588, -11.991013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, -4.762879], + [-197.437588, 2.465255], + [-190.209455, 2.465255], + [-190.209455, -4.762879], + [-197.437588, -4.762879] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 2.465255], + [-197.437588, 9.693389], + [-190.209455, 9.693389], + [-190.209455, 2.465255], + [-197.437588, 2.465255] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 9.693389], + [-197.437588, 16.921523], + [-190.209455, 16.921523], + [-190.209455, 9.693389], + [-197.437588, 9.693389] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 16.921523], + [-197.437588, 24.149656], + [-190.209455, 24.149656], + [-190.209455, 16.921523], + [-197.437588, 16.921523] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 24.149656], + [-197.437588, 31.37779], + [-190.209455, 31.37779], + [-190.209455, 24.149656], + [-197.437588, 24.149656] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 31.37779], + [-197.437588, 38.605924], + [-190.209455, 38.605924], + [-190.209455, 31.37779], + [-197.437588, 31.37779] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 38.605924], + [-197.437588, 45.834058], + [-190.209455, 45.834058], + [-190.209455, 38.605924], + [-197.437588, 38.605924] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 45.834058], + [-197.437588, 53.062192], + [-190.209455, 53.062192], + [-190.209455, 45.834058], + [-197.437588, 45.834058] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 53.062192], + [-197.437588, 60.290326], + [-190.209455, 60.290326], + [-190.209455, 53.062192], + [-197.437588, 53.062192] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 60.290326], + [-197.437588, 67.518459], + [-190.209455, 67.518459], + [-190.209455, 60.290326], + [-197.437588, 60.290326] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-197.437588, 67.518459], + [-197.437588, 74.746593], + [-190.209455, 74.746593], + [-190.209455, 67.518459], + [-197.437588, 67.518459] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -77.044217], + [-190.209455, -69.816084], + [-182.981321, -69.816084], + [-182.981321, -77.044217], + [-190.209455, -77.044217] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -69.816084], + [-190.209455, -62.58795], + [-182.981321, -62.58795], + [-182.981321, -69.816084], + [-190.209455, -69.816084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -62.58795], + [-190.209455, -55.359816], + [-182.981321, -55.359816], + [-182.981321, -62.58795], + [-190.209455, -62.58795] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -55.359816], + [-190.209455, -48.131682], + [-182.981321, -48.131682], + [-182.981321, -55.359816], + [-190.209455, -55.359816] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -48.131682], + [-190.209455, -40.903548], + [-182.981321, -40.903548], + [-182.981321, -48.131682], + [-190.209455, -48.131682] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -40.903548], + [-190.209455, -33.675414], + [-182.981321, -33.675414], + [-182.981321, -40.903548], + [-190.209455, -40.903548] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -33.675414], + [-190.209455, -26.44728], + [-182.981321, -26.44728], + [-182.981321, -33.675414], + [-190.209455, -33.675414] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -26.44728], + [-190.209455, -19.219147], + [-182.981321, -19.219147], + [-182.981321, -26.44728], + [-190.209455, -26.44728] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -19.219147], + [-190.209455, -11.991013], + [-182.981321, -11.991013], + [-182.981321, -19.219147], + [-190.209455, -19.219147] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -11.991013], + [-190.209455, -4.762879], + [-182.981321, -4.762879], + [-182.981321, -11.991013], + [-190.209455, -11.991013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, -4.762879], + [-190.209455, 2.465255], + [-182.981321, 2.465255], + [-182.981321, -4.762879], + [-190.209455, -4.762879] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 2.465255], + [-190.209455, 9.693389], + [-182.981321, 9.693389], + [-182.981321, 2.465255], + [-190.209455, 2.465255] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 9.693389], + [-190.209455, 16.921523], + [-182.981321, 16.921523], + [-182.981321, 9.693389], + [-190.209455, 9.693389] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 16.921523], + [-190.209455, 24.149656], + [-182.981321, 24.149656], + [-182.981321, 16.921523], + [-190.209455, 16.921523] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 24.149656], + [-190.209455, 31.37779], + [-182.981321, 31.37779], + [-182.981321, 24.149656], + [-190.209455, 24.149656] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 31.37779], + [-190.209455, 38.605924], + [-182.981321, 38.605924], + [-182.981321, 31.37779], + [-190.209455, 31.37779] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 38.605924], + [-190.209455, 45.834058], + [-182.981321, 45.834058], + [-182.981321, 38.605924], + [-190.209455, 38.605924] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 45.834058], + [-190.209455, 53.062192], + [-182.981321, 53.062192], + [-182.981321, 45.834058], + [-190.209455, 45.834058] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 53.062192], + [-190.209455, 60.290326], + [-182.981321, 60.290326], + [-182.981321, 53.062192], + [-190.209455, 53.062192] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 60.290326], + [-190.209455, 67.518459], + [-182.981321, 67.518459], + [-182.981321, 60.290326], + [-190.209455, 60.290326] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-190.209455, 67.518459], + [-190.209455, 74.746593], + [-182.981321, 74.746593], + [-182.981321, 67.518459], + [-190.209455, 67.518459] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -77.044217], + [-182.981321, -69.816084], + [-175.753187, -69.816084], + [-175.753187, -77.044217], + [-182.981321, -77.044217] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -69.816084], + [-182.981321, -62.58795], + [-175.753187, -62.58795], + [-175.753187, -69.816084], + [-182.981321, -69.816084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -62.58795], + [-182.981321, -55.359816], + [-175.753187, -55.359816], + [-175.753187, -62.58795], + [-182.981321, -62.58795] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -55.359816], + [-182.981321, -48.131682], + [-175.753187, -48.131682], + [-175.753187, -55.359816], + [-182.981321, -55.359816] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -48.131682], + [-182.981321, -40.903548], + [-175.753187, -40.903548], + [-175.753187, -48.131682], + [-182.981321, -48.131682] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -40.903548], + [-182.981321, -33.675414], + [-175.753187, -33.675414], + [-175.753187, -40.903548], + [-182.981321, -40.903548] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -33.675414], + [-182.981321, -26.44728], + [-175.753187, -26.44728], + [-175.753187, -33.675414], + [-182.981321, -33.675414] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -26.44728], + [-182.981321, -19.219147], + [-175.753187, -19.219147], + [-175.753187, -26.44728], + [-182.981321, -26.44728] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -19.219147], + [-182.981321, -11.991013], + [-175.753187, -11.991013], + [-175.753187, -19.219147], + [-182.981321, -19.219147] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -11.991013], + [-182.981321, -4.762879], + [-175.753187, -4.762879], + [-175.753187, -11.991013], + [-182.981321, -11.991013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, -4.762879], + [-182.981321, 2.465255], + [-175.753187, 2.465255], + [-175.753187, -4.762879], + [-182.981321, -4.762879] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 2.465255], + [-182.981321, 9.693389], + [-175.753187, 9.693389], + [-175.753187, 2.465255], + [-182.981321, 2.465255] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 9.693389], + [-182.981321, 16.921523], + [-175.753187, 16.921523], + [-175.753187, 9.693389], + [-182.981321, 9.693389] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 16.921523], + [-182.981321, 24.149656], + [-175.753187, 24.149656], + [-175.753187, 16.921523], + [-182.981321, 16.921523] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 24.149656], + [-182.981321, 31.37779], + [-175.753187, 31.37779], + [-175.753187, 24.149656], + [-182.981321, 24.149656] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 31.37779], + [-182.981321, 38.605924], + [-175.753187, 38.605924], + [-175.753187, 31.37779], + [-182.981321, 31.37779] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 38.605924], + [-182.981321, 45.834058], + [-175.753187, 45.834058], + [-175.753187, 38.605924], + [-182.981321, 38.605924] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 45.834058], + [-182.981321, 53.062192], + [-175.753187, 53.062192], + [-175.753187, 45.834058], + [-182.981321, 45.834058] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 53.062192], + [-182.981321, 60.290326], + [-175.753187, 60.290326], + [-175.753187, 53.062192], + [-182.981321, 53.062192] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 60.290326], + [-182.981321, 67.518459], + [-175.753187, 67.518459], + [-175.753187, 60.290326], + [-182.981321, 60.290326] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-182.981321, 67.518459], + [-182.981321, 74.746593], + [-175.753187, 74.746593], + [-175.753187, 67.518459], + [-182.981321, 67.518459] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -77.044217], + [-175.753187, -69.816084], + [-168.525053, -69.816084], + [-168.525053, -77.044217], + [-175.753187, -77.044217] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -69.816084], + [-175.753187, -62.58795], + [-168.525053, -62.58795], + [-168.525053, -69.816084], + [-175.753187, -69.816084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -62.58795], + [-175.753187, -55.359816], + [-168.525053, -55.359816], + [-168.525053, -62.58795], + [-175.753187, -62.58795] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -55.359816], + [-175.753187, -48.131682], + [-168.525053, -48.131682], + [-168.525053, -55.359816], + [-175.753187, -55.359816] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -48.131682], + [-175.753187, -40.903548], + [-168.525053, -40.903548], + [-168.525053, -48.131682], + [-175.753187, -48.131682] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -40.903548], + [-175.753187, -33.675414], + [-168.525053, -33.675414], + [-168.525053, -40.903548], + [-175.753187, -40.903548] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -33.675414], + [-175.753187, -26.44728], + [-168.525053, -26.44728], + [-168.525053, -33.675414], + [-175.753187, -33.675414] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -26.44728], + [-175.753187, -19.219147], + [-168.525053, -19.219147], + [-168.525053, -26.44728], + [-175.753187, -26.44728] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -19.219147], + [-175.753187, -11.991013], + [-168.525053, -11.991013], + [-168.525053, -19.219147], + [-175.753187, -19.219147] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -11.991013], + [-175.753187, -4.762879], + [-168.525053, -4.762879], + [-168.525053, -11.991013], + [-175.753187, -11.991013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, -4.762879], + [-175.753187, 2.465255], + [-168.525053, 2.465255], + [-168.525053, -4.762879], + [-175.753187, -4.762879] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 2.465255], + [-175.753187, 9.693389], + [-168.525053, 9.693389], + [-168.525053, 2.465255], + [-175.753187, 2.465255] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 9.693389], + [-175.753187, 16.921523], + [-168.525053, 16.921523], + [-168.525053, 9.693389], + [-175.753187, 9.693389] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 16.921523], + [-175.753187, 24.149656], + [-168.525053, 24.149656], + [-168.525053, 16.921523], + [-175.753187, 16.921523] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 24.149656], + [-175.753187, 31.37779], + [-168.525053, 31.37779], + [-168.525053, 24.149656], + [-175.753187, 24.149656] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 31.37779], + [-175.753187, 38.605924], + [-168.525053, 38.605924], + [-168.525053, 31.37779], + [-175.753187, 31.37779] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 38.605924], + [-175.753187, 45.834058], + [-168.525053, 45.834058], + [-168.525053, 38.605924], + [-175.753187, 38.605924] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 45.834058], + [-175.753187, 53.062192], + [-168.525053, 53.062192], + [-168.525053, 45.834058], + [-175.753187, 45.834058] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 53.062192], + [-175.753187, 60.290326], + [-168.525053, 60.290326], + [-168.525053, 53.062192], + [-175.753187, 53.062192] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 60.290326], + [-175.753187, 67.518459], + [-168.525053, 67.518459], + [-168.525053, 60.290326], + [-175.753187, 60.290326] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.753187, 67.518459], + [-175.753187, 74.746593], + [-168.525053, 74.746593], + [-168.525053, 67.518459], + [-175.753187, 67.518459] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -77.044217], + [-168.525053, -69.816084], + [-161.296919, -69.816084], + [-161.296919, -77.044217], + [-168.525053, -77.044217] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -69.816084], + [-168.525053, -62.58795], + [-161.296919, -62.58795], + [-161.296919, -69.816084], + [-168.525053, -69.816084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -62.58795], + [-168.525053, -55.359816], + [-161.296919, -55.359816], + [-161.296919, -62.58795], + [-168.525053, -62.58795] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -55.359816], + [-168.525053, -48.131682], + [-161.296919, -48.131682], + [-161.296919, -55.359816], + [-168.525053, -55.359816] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -48.131682], + [-168.525053, -40.903548], + [-161.296919, -40.903548], + [-161.296919, -48.131682], + [-168.525053, -48.131682] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -40.903548], + [-168.525053, -33.675414], + [-161.296919, -33.675414], + [-161.296919, -40.903548], + [-168.525053, -40.903548] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -33.675414], + [-168.525053, -26.44728], + [-161.296919, -26.44728], + [-161.296919, -33.675414], + [-168.525053, -33.675414] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -26.44728], + [-168.525053, -19.219147], + [-161.296919, -19.219147], + [-161.296919, -26.44728], + [-168.525053, -26.44728] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -19.219147], + [-168.525053, -11.991013], + [-161.296919, -11.991013], + [-161.296919, -19.219147], + [-168.525053, -19.219147] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -11.991013], + [-168.525053, -4.762879], + [-161.296919, -4.762879], + [-161.296919, -11.991013], + [-168.525053, -11.991013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, -4.762879], + [-168.525053, 2.465255], + [-161.296919, 2.465255], + [-161.296919, -4.762879], + [-168.525053, -4.762879] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 2.465255], + [-168.525053, 9.693389], + [-161.296919, 9.693389], + [-161.296919, 2.465255], + [-168.525053, 2.465255] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 9.693389], + [-168.525053, 16.921523], + [-161.296919, 16.921523], + [-161.296919, 9.693389], + [-168.525053, 9.693389] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 16.921523], + [-168.525053, 24.149656], + [-161.296919, 24.149656], + [-161.296919, 16.921523], + [-168.525053, 16.921523] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 24.149656], + [-168.525053, 31.37779], + [-161.296919, 31.37779], + [-161.296919, 24.149656], + [-168.525053, 24.149656] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 31.37779], + [-168.525053, 38.605924], + [-161.296919, 38.605924], + [-161.296919, 31.37779], + [-168.525053, 31.37779] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 38.605924], + [-168.525053, 45.834058], + [-161.296919, 45.834058], + [-161.296919, 38.605924], + [-168.525053, 38.605924] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 45.834058], + [-168.525053, 53.062192], + [-161.296919, 53.062192], + [-161.296919, 45.834058], + [-168.525053, 45.834058] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 53.062192], + [-168.525053, 60.290326], + [-161.296919, 60.290326], + [-161.296919, 53.062192], + [-168.525053, 53.062192] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 60.290326], + [-168.525053, 67.518459], + [-161.296919, 67.518459], + [-161.296919, 60.290326], + [-168.525053, 60.290326] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-168.525053, 67.518459], + [-168.525053, 74.746593], + [-161.296919, 74.746593], + [-161.296919, 67.518459], + [-168.525053, 67.518459] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -77.044217], + [-161.296919, -69.816084], + [-154.068785, -69.816084], + [-154.068785, -77.044217], + [-161.296919, -77.044217] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -69.816084], + [-161.296919, -62.58795], + [-154.068785, -62.58795], + [-154.068785, -69.816084], + [-161.296919, -69.816084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -62.58795], + [-161.296919, -55.359816], + [-154.068785, -55.359816], + [-154.068785, -62.58795], + [-161.296919, -62.58795] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -55.359816], + [-161.296919, -48.131682], + [-154.068785, -48.131682], + [-154.068785, -55.359816], + [-161.296919, -55.359816] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -48.131682], + [-161.296919, -40.903548], + [-154.068785, -40.903548], + [-154.068785, -48.131682], + [-161.296919, -48.131682] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -40.903548], + [-161.296919, -33.675414], + [-154.068785, -33.675414], + [-154.068785, -40.903548], + [-161.296919, -40.903548] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -33.675414], + [-161.296919, -26.44728], + [-154.068785, -26.44728], + [-154.068785, -33.675414], + [-161.296919, -33.675414] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -26.44728], + [-161.296919, -19.219147], + [-154.068785, -19.219147], + [-154.068785, -26.44728], + [-161.296919, -26.44728] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -19.219147], + [-161.296919, -11.991013], + [-154.068785, -11.991013], + [-154.068785, -19.219147], + [-161.296919, -19.219147] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -11.991013], + [-161.296919, -4.762879], + [-154.068785, -4.762879], + [-154.068785, -11.991013], + [-161.296919, -11.991013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, -4.762879], + [-161.296919, 2.465255], + [-154.068785, 2.465255], + [-154.068785, -4.762879], + [-161.296919, -4.762879] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 2.465255], + [-161.296919, 9.693389], + [-154.068785, 9.693389], + [-154.068785, 2.465255], + [-161.296919, 2.465255] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 9.693389], + [-161.296919, 16.921523], + [-154.068785, 16.921523], + [-154.068785, 9.693389], + [-161.296919, 9.693389] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 16.921523], + [-161.296919, 24.149656], + [-154.068785, 24.149656], + [-154.068785, 16.921523], + [-161.296919, 16.921523] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 24.149656], + [-161.296919, 31.37779], + [-154.068785, 31.37779], + [-154.068785, 24.149656], + [-161.296919, 24.149656] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 31.37779], + [-161.296919, 38.605924], + [-154.068785, 38.605924], + [-154.068785, 31.37779], + [-161.296919, 31.37779] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 38.605924], + [-161.296919, 45.834058], + [-154.068785, 45.834058], + [-154.068785, 38.605924], + [-161.296919, 38.605924] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 45.834058], + [-161.296919, 53.062192], + [-154.068785, 53.062192], + [-154.068785, 45.834058], + [-161.296919, 45.834058] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 53.062192], + [-161.296919, 60.290326], + [-154.068785, 60.290326], + [-154.068785, 53.062192], + [-161.296919, 53.062192] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 60.290326], + [-161.296919, 67.518459], + [-154.068785, 67.518459], + [-154.068785, 60.290326], + [-161.296919, 60.290326] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-161.296919, 67.518459], + [-161.296919, 74.746593], + [-154.068785, 74.746593], + [-154.068785, 67.518459], + [-161.296919, 67.518459] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -77.044217], + [-154.068785, -69.816084], + [-146.840652, -69.816084], + [-146.840652, -77.044217], + [-154.068785, -77.044217] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -69.816084], + [-154.068785, -62.58795], + [-146.840652, -62.58795], + [-146.840652, -69.816084], + [-154.068785, -69.816084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -62.58795], + [-154.068785, -55.359816], + [-146.840652, -55.359816], + [-146.840652, -62.58795], + [-154.068785, -62.58795] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -55.359816], + [-154.068785, -48.131682], + [-146.840652, -48.131682], + [-146.840652, -55.359816], + [-154.068785, -55.359816] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -48.131682], + [-154.068785, -40.903548], + [-146.840652, -40.903548], + [-146.840652, -48.131682], + [-154.068785, -48.131682] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -40.903548], + [-154.068785, -33.675414], + [-146.840652, -33.675414], + [-146.840652, -40.903548], + [-154.068785, -40.903548] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -33.675414], + [-154.068785, -26.44728], + [-146.840652, -26.44728], + [-146.840652, -33.675414], + [-154.068785, -33.675414] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -26.44728], + [-154.068785, -19.219147], + [-146.840652, -19.219147], + [-146.840652, -26.44728], + [-154.068785, -26.44728] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -19.219147], + [-154.068785, -11.991013], + [-146.840652, -11.991013], + [-146.840652, -19.219147], + [-154.068785, -19.219147] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -11.991013], + [-154.068785, -4.762879], + [-146.840652, -4.762879], + [-146.840652, -11.991013], + [-154.068785, -11.991013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, -4.762879], + [-154.068785, 2.465255], + [-146.840652, 2.465255], + [-146.840652, -4.762879], + [-154.068785, -4.762879] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 2.465255], + [-154.068785, 9.693389], + [-146.840652, 9.693389], + [-146.840652, 2.465255], + [-154.068785, 2.465255] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 9.693389], + [-154.068785, 16.921523], + [-146.840652, 16.921523], + [-146.840652, 9.693389], + [-154.068785, 9.693389] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 16.921523], + [-154.068785, 24.149656], + [-146.840652, 24.149656], + [-146.840652, 16.921523], + [-154.068785, 16.921523] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 24.149656], + [-154.068785, 31.37779], + [-146.840652, 31.37779], + [-146.840652, 24.149656], + [-154.068785, 24.149656] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 31.37779], + [-154.068785, 38.605924], + [-146.840652, 38.605924], + [-146.840652, 31.37779], + [-154.068785, 31.37779] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 38.605924], + [-154.068785, 45.834058], + [-146.840652, 45.834058], + [-146.840652, 38.605924], + [-154.068785, 38.605924] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 45.834058], + [-154.068785, 53.062192], + [-146.840652, 53.062192], + [-146.840652, 45.834058], + [-154.068785, 45.834058] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 53.062192], + [-154.068785, 60.290326], + [-146.840652, 60.290326], + [-146.840652, 53.062192], + [-154.068785, 53.062192] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 60.290326], + [-154.068785, 67.518459], + [-146.840652, 67.518459], + [-146.840652, 60.290326], + [-154.068785, 60.290326] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-154.068785, 67.518459], + [-154.068785, 74.746593], + [-146.840652, 74.746593], + [-146.840652, 67.518459], + [-154.068785, 67.518459] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -77.044217], + [-146.840652, -69.816084], + [-139.612518, -69.816084], + [-139.612518, -77.044217], + [-146.840652, -77.044217] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -69.816084], + [-146.840652, -62.58795], + [-139.612518, -62.58795], + [-139.612518, -69.816084], + [-146.840652, -69.816084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -62.58795], + [-146.840652, -55.359816], + [-139.612518, -55.359816], + [-139.612518, -62.58795], + [-146.840652, -62.58795] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -55.359816], + [-146.840652, -48.131682], + [-139.612518, -48.131682], + [-139.612518, -55.359816], + [-146.840652, -55.359816] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -48.131682], + [-146.840652, -40.903548], + [-139.612518, -40.903548], + [-139.612518, -48.131682], + [-146.840652, -48.131682] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -40.903548], + [-146.840652, -33.675414], + [-139.612518, -33.675414], + [-139.612518, -40.903548], + [-146.840652, -40.903548] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -33.675414], + [-146.840652, -26.44728], + [-139.612518, -26.44728], + [-139.612518, -33.675414], + [-146.840652, -33.675414] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -26.44728], + [-146.840652, -19.219147], + [-139.612518, -19.219147], + [-139.612518, -26.44728], + [-146.840652, -26.44728] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -19.219147], + [-146.840652, -11.991013], + [-139.612518, -11.991013], + [-139.612518, -19.219147], + [-146.840652, -19.219147] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -11.991013], + [-146.840652, -4.762879], + [-139.612518, -4.762879], + [-139.612518, -11.991013], + [-146.840652, -11.991013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, -4.762879], + [-146.840652, 2.465255], + [-139.612518, 2.465255], + [-139.612518, -4.762879], + [-146.840652, -4.762879] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 2.465255], + [-146.840652, 9.693389], + [-139.612518, 9.693389], + [-139.612518, 2.465255], + [-146.840652, 2.465255] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 9.693389], + [-146.840652, 16.921523], + [-139.612518, 16.921523], + [-139.612518, 9.693389], + [-146.840652, 9.693389] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 16.921523], + [-146.840652, 24.149656], + [-139.612518, 24.149656], + [-139.612518, 16.921523], + [-146.840652, 16.921523] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 24.149656], + [-146.840652, 31.37779], + [-139.612518, 31.37779], + [-139.612518, 24.149656], + [-146.840652, 24.149656] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 31.37779], + [-146.840652, 38.605924], + [-139.612518, 38.605924], + [-139.612518, 31.37779], + [-146.840652, 31.37779] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 38.605924], + [-146.840652, 45.834058], + [-139.612518, 45.834058], + [-139.612518, 38.605924], + [-146.840652, 38.605924] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 45.834058], + [-146.840652, 53.062192], + [-139.612518, 53.062192], + [-139.612518, 45.834058], + [-146.840652, 45.834058] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 53.062192], + [-146.840652, 60.290326], + [-139.612518, 60.290326], + [-139.612518, 53.062192], + [-146.840652, 53.062192] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 60.290326], + [-146.840652, 67.518459], + [-139.612518, 67.518459], + [-139.612518, 60.290326], + [-146.840652, 60.290326] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-146.840652, 67.518459], + [-146.840652, 74.746593], + [-139.612518, 74.746593], + [-139.612518, 67.518459], + [-146.840652, 67.518459] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -77.044217], + [-139.612518, -69.816084], + [-132.384384, -69.816084], + [-132.384384, -77.044217], + [-139.612518, -77.044217] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -69.816084], + [-139.612518, -62.58795], + [-132.384384, -62.58795], + [-132.384384, -69.816084], + [-139.612518, -69.816084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -62.58795], + [-139.612518, -55.359816], + [-132.384384, -55.359816], + [-132.384384, -62.58795], + [-139.612518, -62.58795] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -55.359816], + [-139.612518, -48.131682], + [-132.384384, -48.131682], + [-132.384384, -55.359816], + [-139.612518, -55.359816] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -48.131682], + [-139.612518, -40.903548], + [-132.384384, -40.903548], + [-132.384384, -48.131682], + [-139.612518, -48.131682] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -40.903548], + [-139.612518, -33.675414], + [-132.384384, -33.675414], + [-132.384384, -40.903548], + [-139.612518, -40.903548] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -33.675414], + [-139.612518, -26.44728], + [-132.384384, -26.44728], + [-132.384384, -33.675414], + [-139.612518, -33.675414] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -26.44728], + [-139.612518, -19.219147], + [-132.384384, -19.219147], + [-132.384384, -26.44728], + [-139.612518, -26.44728] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -19.219147], + [-139.612518, -11.991013], + [-132.384384, -11.991013], + [-132.384384, -19.219147], + [-139.612518, -19.219147] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -11.991013], + [-139.612518, -4.762879], + [-132.384384, -4.762879], + [-132.384384, -11.991013], + [-139.612518, -11.991013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, -4.762879], + [-139.612518, 2.465255], + [-132.384384, 2.465255], + [-132.384384, -4.762879], + [-139.612518, -4.762879] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 2.465255], + [-139.612518, 9.693389], + [-132.384384, 9.693389], + [-132.384384, 2.465255], + [-139.612518, 2.465255] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 9.693389], + [-139.612518, 16.921523], + [-132.384384, 16.921523], + [-132.384384, 9.693389], + [-139.612518, 9.693389] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 16.921523], + [-139.612518, 24.149656], + [-132.384384, 24.149656], + [-132.384384, 16.921523], + [-139.612518, 16.921523] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 24.149656], + [-139.612518, 31.37779], + [-132.384384, 31.37779], + [-132.384384, 24.149656], + [-139.612518, 24.149656] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 31.37779], + [-139.612518, 38.605924], + [-132.384384, 38.605924], + [-132.384384, 31.37779], + [-139.612518, 31.37779] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 38.605924], + [-139.612518, 45.834058], + [-132.384384, 45.834058], + [-132.384384, 38.605924], + [-139.612518, 38.605924] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 45.834058], + [-139.612518, 53.062192], + [-132.384384, 53.062192], + [-132.384384, 45.834058], + [-139.612518, 45.834058] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 53.062192], + [-139.612518, 60.290326], + [-132.384384, 60.290326], + [-132.384384, 53.062192], + [-139.612518, 53.062192] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 60.290326], + [-139.612518, 67.518459], + [-132.384384, 67.518459], + [-132.384384, 60.290326], + [-139.612518, 60.290326] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-139.612518, 67.518459], + [-139.612518, 74.746593], + [-132.384384, 74.746593], + [-132.384384, 67.518459], + [-139.612518, 67.518459] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -77.044217], + [-132.384384, -69.816084], + [-125.15625, -69.816084], + [-125.15625, -77.044217], + [-132.384384, -77.044217] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -69.816084], + [-132.384384, -62.58795], + [-125.15625, -62.58795], + [-125.15625, -69.816084], + [-132.384384, -69.816084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -62.58795], + [-132.384384, -55.359816], + [-125.15625, -55.359816], + [-125.15625, -62.58795], + [-132.384384, -62.58795] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -55.359816], + [-132.384384, -48.131682], + [-125.15625, -48.131682], + [-125.15625, -55.359816], + [-132.384384, -55.359816] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -48.131682], + [-132.384384, -40.903548], + [-125.15625, -40.903548], + [-125.15625, -48.131682], + [-132.384384, -48.131682] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -40.903548], + [-132.384384, -33.675414], + [-125.15625, -33.675414], + [-125.15625, -40.903548], + [-132.384384, -40.903548] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -33.675414], + [-132.384384, -26.44728], + [-125.15625, -26.44728], + [-125.15625, -33.675414], + [-132.384384, -33.675414] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -26.44728], + [-132.384384, -19.219147], + [-125.15625, -19.219147], + [-125.15625, -26.44728], + [-132.384384, -26.44728] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -19.219147], + [-132.384384, -11.991013], + [-125.15625, -11.991013], + [-125.15625, -19.219147], + [-132.384384, -19.219147] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -11.991013], + [-132.384384, -4.762879], + [-125.15625, -4.762879], + [-125.15625, -11.991013], + [-132.384384, -11.991013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, -4.762879], + [-132.384384, 2.465255], + [-125.15625, 2.465255], + [-125.15625, -4.762879], + [-132.384384, -4.762879] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 2.465255], + [-132.384384, 9.693389], + [-125.15625, 9.693389], + [-125.15625, 2.465255], + [-132.384384, 2.465255] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 9.693389], + [-132.384384, 16.921523], + [-125.15625, 16.921523], + [-125.15625, 9.693389], + [-132.384384, 9.693389] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 16.921523], + [-132.384384, 24.149656], + [-125.15625, 24.149656], + [-125.15625, 16.921523], + [-132.384384, 16.921523] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 24.149656], + [-132.384384, 31.37779], + [-125.15625, 31.37779], + [-125.15625, 24.149656], + [-132.384384, 24.149656] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 31.37779], + [-132.384384, 38.605924], + [-125.15625, 38.605924], + [-125.15625, 31.37779], + [-132.384384, 31.37779] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 38.605924], + [-132.384384, 45.834058], + [-125.15625, 45.834058], + [-125.15625, 38.605924], + [-132.384384, 38.605924] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 45.834058], + [-132.384384, 53.062192], + [-125.15625, 53.062192], + [-125.15625, 45.834058], + [-132.384384, 45.834058] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 53.062192], + [-132.384384, 60.290326], + [-125.15625, 60.290326], + [-125.15625, 53.062192], + [-132.384384, 53.062192] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 60.290326], + [-132.384384, 67.518459], + [-125.15625, 67.518459], + [-125.15625, 60.290326], + [-132.384384, 60.290326] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-132.384384, 67.518459], + [-132.384384, 74.746593], + [-125.15625, 74.746593], + [-125.15625, 67.518459], + [-132.384384, 67.518459] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -77.044217], + [-125.15625, -69.816084], + [-117.928116, -69.816084], + [-117.928116, -77.044217], + [-125.15625, -77.044217] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -69.816084], + [-125.15625, -62.58795], + [-117.928116, -62.58795], + [-117.928116, -69.816084], + [-125.15625, -69.816084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -62.58795], + [-125.15625, -55.359816], + [-117.928116, -55.359816], + [-117.928116, -62.58795], + [-125.15625, -62.58795] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -55.359816], + [-125.15625, -48.131682], + [-117.928116, -48.131682], + [-117.928116, -55.359816], + [-125.15625, -55.359816] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -48.131682], + [-125.15625, -40.903548], + [-117.928116, -40.903548], + [-117.928116, -48.131682], + [-125.15625, -48.131682] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -40.903548], + [-125.15625, -33.675414], + [-117.928116, -33.675414], + [-117.928116, -40.903548], + [-125.15625, -40.903548] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -33.675414], + [-125.15625, -26.44728], + [-117.928116, -26.44728], + [-117.928116, -33.675414], + [-125.15625, -33.675414] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -26.44728], + [-125.15625, -19.219147], + [-117.928116, -19.219147], + [-117.928116, -26.44728], + [-125.15625, -26.44728] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -19.219147], + [-125.15625, -11.991013], + [-117.928116, -11.991013], + [-117.928116, -19.219147], + [-125.15625, -19.219147] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -11.991013], + [-125.15625, -4.762879], + [-117.928116, -4.762879], + [-117.928116, -11.991013], + [-125.15625, -11.991013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, -4.762879], + [-125.15625, 2.465255], + [-117.928116, 2.465255], + [-117.928116, -4.762879], + [-125.15625, -4.762879] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 2.465255], + [-125.15625, 9.693389], + [-117.928116, 9.693389], + [-117.928116, 2.465255], + [-125.15625, 2.465255] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 9.693389], + [-125.15625, 16.921523], + [-117.928116, 16.921523], + [-117.928116, 9.693389], + [-125.15625, 9.693389] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 16.921523], + [-125.15625, 24.149656], + [-117.928116, 24.149656], + [-117.928116, 16.921523], + [-125.15625, 16.921523] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 24.149656], + [-125.15625, 31.37779], + [-117.928116, 31.37779], + [-117.928116, 24.149656], + [-125.15625, 24.149656] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 31.37779], + [-125.15625, 38.605924], + [-117.928116, 38.605924], + [-117.928116, 31.37779], + [-125.15625, 31.37779] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 38.605924], + [-125.15625, 45.834058], + [-117.928116, 45.834058], + [-117.928116, 38.605924], + [-125.15625, 38.605924] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 45.834058], + [-125.15625, 53.062192], + [-117.928116, 53.062192], + [-117.928116, 45.834058], + [-125.15625, 45.834058] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 53.062192], + [-125.15625, 60.290326], + [-117.928116, 60.290326], + [-117.928116, 53.062192], + [-125.15625, 53.062192] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 60.290326], + [-125.15625, 67.518459], + [-117.928116, 67.518459], + [-117.928116, 60.290326], + [-125.15625, 60.290326] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-125.15625, 67.518459], + [-125.15625, 74.746593], + [-117.928116, 74.746593], + [-117.928116, 67.518459], + [-125.15625, 67.518459] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -77.044217], + [-117.928116, -69.816084], + [-110.699982, -69.816084], + [-110.699982, -77.044217], + [-117.928116, -77.044217] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -69.816084], + [-117.928116, -62.58795], + [-110.699982, -62.58795], + [-110.699982, -69.816084], + [-117.928116, -69.816084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -62.58795], + [-117.928116, -55.359816], + [-110.699982, -55.359816], + [-110.699982, -62.58795], + [-117.928116, -62.58795] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -55.359816], + [-117.928116, -48.131682], + [-110.699982, -48.131682], + [-110.699982, -55.359816], + [-117.928116, -55.359816] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -48.131682], + [-117.928116, -40.903548], + [-110.699982, -40.903548], + [-110.699982, -48.131682], + [-117.928116, -48.131682] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -40.903548], + [-117.928116, -33.675414], + [-110.699982, -33.675414], + [-110.699982, -40.903548], + [-117.928116, -40.903548] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -33.675414], + [-117.928116, -26.44728], + [-110.699982, -26.44728], + [-110.699982, -33.675414], + [-117.928116, -33.675414] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -26.44728], + [-117.928116, -19.219147], + [-110.699982, -19.219147], + [-110.699982, -26.44728], + [-117.928116, -26.44728] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -19.219147], + [-117.928116, -11.991013], + [-110.699982, -11.991013], + [-110.699982, -19.219147], + [-117.928116, -19.219147] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -11.991013], + [-117.928116, -4.762879], + [-110.699982, -4.762879], + [-110.699982, -11.991013], + [-117.928116, -11.991013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, -4.762879], + [-117.928116, 2.465255], + [-110.699982, 2.465255], + [-110.699982, -4.762879], + [-117.928116, -4.762879] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 2.465255], + [-117.928116, 9.693389], + [-110.699982, 9.693389], + [-110.699982, 2.465255], + [-117.928116, 2.465255] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 9.693389], + [-117.928116, 16.921523], + [-110.699982, 16.921523], + [-110.699982, 9.693389], + [-117.928116, 9.693389] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 16.921523], + [-117.928116, 24.149656], + [-110.699982, 24.149656], + [-110.699982, 16.921523], + [-117.928116, 16.921523] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 24.149656], + [-117.928116, 31.37779], + [-110.699982, 31.37779], + [-110.699982, 24.149656], + [-117.928116, 24.149656] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 31.37779], + [-117.928116, 38.605924], + [-110.699982, 38.605924], + [-110.699982, 31.37779], + [-117.928116, 31.37779] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 38.605924], + [-117.928116, 45.834058], + [-110.699982, 45.834058], + [-110.699982, 38.605924], + [-117.928116, 38.605924] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 45.834058], + [-117.928116, 53.062192], + [-110.699982, 53.062192], + [-110.699982, 45.834058], + [-117.928116, 45.834058] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 53.062192], + [-117.928116, 60.290326], + [-110.699982, 60.290326], + [-110.699982, 53.062192], + [-117.928116, 53.062192] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 60.290326], + [-117.928116, 67.518459], + [-110.699982, 67.518459], + [-110.699982, 60.290326], + [-117.928116, 60.290326] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.928116, 67.518459], + [-117.928116, 74.746593], + [-110.699982, 74.746593], + [-110.699982, 67.518459], + [-117.928116, 67.518459] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -77.044217], + [-110.699982, -69.816084], + [-103.471848, -69.816084], + [-103.471848, -77.044217], + [-110.699982, -77.044217] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -69.816084], + [-110.699982, -62.58795], + [-103.471848, -62.58795], + [-103.471848, -69.816084], + [-110.699982, -69.816084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -62.58795], + [-110.699982, -55.359816], + [-103.471848, -55.359816], + [-103.471848, -62.58795], + [-110.699982, -62.58795] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -55.359816], + [-110.699982, -48.131682], + [-103.471848, -48.131682], + [-103.471848, -55.359816], + [-110.699982, -55.359816] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -48.131682], + [-110.699982, -40.903548], + [-103.471848, -40.903548], + [-103.471848, -48.131682], + [-110.699982, -48.131682] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -40.903548], + [-110.699982, -33.675414], + [-103.471848, -33.675414], + [-103.471848, -40.903548], + [-110.699982, -40.903548] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -33.675414], + [-110.699982, -26.44728], + [-103.471848, -26.44728], + [-103.471848, -33.675414], + [-110.699982, -33.675414] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -26.44728], + [-110.699982, -19.219147], + [-103.471848, -19.219147], + [-103.471848, -26.44728], + [-110.699982, -26.44728] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -19.219147], + [-110.699982, -11.991013], + [-103.471848, -11.991013], + [-103.471848, -19.219147], + [-110.699982, -19.219147] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -11.991013], + [-110.699982, -4.762879], + [-103.471848, -4.762879], + [-103.471848, -11.991013], + [-110.699982, -11.991013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, -4.762879], + [-110.699982, 2.465255], + [-103.471848, 2.465255], + [-103.471848, -4.762879], + [-110.699982, -4.762879] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 2.465255], + [-110.699982, 9.693389], + [-103.471848, 9.693389], + [-103.471848, 2.465255], + [-110.699982, 2.465255] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 9.693389], + [-110.699982, 16.921523], + [-103.471848, 16.921523], + [-103.471848, 9.693389], + [-110.699982, 9.693389] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 16.921523], + [-110.699982, 24.149656], + [-103.471848, 24.149656], + [-103.471848, 16.921523], + [-110.699982, 16.921523] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 24.149656], + [-110.699982, 31.37779], + [-103.471848, 31.37779], + [-103.471848, 24.149656], + [-110.699982, 24.149656] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 31.37779], + [-110.699982, 38.605924], + [-103.471848, 38.605924], + [-103.471848, 31.37779], + [-110.699982, 31.37779] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 38.605924], + [-110.699982, 45.834058], + [-103.471848, 45.834058], + [-103.471848, 38.605924], + [-110.699982, 38.605924] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 45.834058], + [-110.699982, 53.062192], + [-103.471848, 53.062192], + [-103.471848, 45.834058], + [-110.699982, 45.834058] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 53.062192], + [-110.699982, 60.290326], + [-103.471848, 60.290326], + [-103.471848, 53.062192], + [-110.699982, 53.062192] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 60.290326], + [-110.699982, 67.518459], + [-103.471848, 67.518459], + [-103.471848, 60.290326], + [-110.699982, 60.290326] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-110.699982, 67.518459], + [-110.699982, 74.746593], + [-103.471848, 74.746593], + [-103.471848, 67.518459], + [-110.699982, 67.518459] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -77.044217], + [-103.471848, -69.816084], + [-96.243715, -69.816084], + [-96.243715, -77.044217], + [-103.471848, -77.044217] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -69.816084], + [-103.471848, -62.58795], + [-96.243715, -62.58795], + [-96.243715, -69.816084], + [-103.471848, -69.816084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -62.58795], + [-103.471848, -55.359816], + [-96.243715, -55.359816], + [-96.243715, -62.58795], + [-103.471848, -62.58795] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -55.359816], + [-103.471848, -48.131682], + [-96.243715, -48.131682], + [-96.243715, -55.359816], + [-103.471848, -55.359816] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -48.131682], + [-103.471848, -40.903548], + [-96.243715, -40.903548], + [-96.243715, -48.131682], + [-103.471848, -48.131682] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -40.903548], + [-103.471848, -33.675414], + [-96.243715, -33.675414], + [-96.243715, -40.903548], + [-103.471848, -40.903548] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -33.675414], + [-103.471848, -26.44728], + [-96.243715, -26.44728], + [-96.243715, -33.675414], + [-103.471848, -33.675414] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -26.44728], + [-103.471848, -19.219147], + [-96.243715, -19.219147], + [-96.243715, -26.44728], + [-103.471848, -26.44728] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -19.219147], + [-103.471848, -11.991013], + [-96.243715, -11.991013], + [-96.243715, -19.219147], + [-103.471848, -19.219147] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -11.991013], + [-103.471848, -4.762879], + [-96.243715, -4.762879], + [-96.243715, -11.991013], + [-103.471848, -11.991013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, -4.762879], + [-103.471848, 2.465255], + [-96.243715, 2.465255], + [-96.243715, -4.762879], + [-103.471848, -4.762879] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 2.465255], + [-103.471848, 9.693389], + [-96.243715, 9.693389], + [-96.243715, 2.465255], + [-103.471848, 2.465255] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 9.693389], + [-103.471848, 16.921523], + [-96.243715, 16.921523], + [-96.243715, 9.693389], + [-103.471848, 9.693389] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 16.921523], + [-103.471848, 24.149656], + [-96.243715, 24.149656], + [-96.243715, 16.921523], + [-103.471848, 16.921523] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 24.149656], + [-103.471848, 31.37779], + [-96.243715, 31.37779], + [-96.243715, 24.149656], + [-103.471848, 24.149656] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 31.37779], + [-103.471848, 38.605924], + [-96.243715, 38.605924], + [-96.243715, 31.37779], + [-103.471848, 31.37779] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 38.605924], + [-103.471848, 45.834058], + [-96.243715, 45.834058], + [-96.243715, 38.605924], + [-103.471848, 38.605924] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 45.834058], + [-103.471848, 53.062192], + [-96.243715, 53.062192], + [-96.243715, 45.834058], + [-103.471848, 45.834058] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 53.062192], + [-103.471848, 60.290326], + [-96.243715, 60.290326], + [-96.243715, 53.062192], + [-103.471848, 53.062192] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 60.290326], + [-103.471848, 67.518459], + [-96.243715, 67.518459], + [-96.243715, 60.290326], + [-103.471848, 60.290326] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-103.471848, 67.518459], + [-103.471848, 74.746593], + [-96.243715, 74.746593], + [-96.243715, 67.518459], + [-103.471848, 67.518459] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -77.044217], + [-96.243715, -69.816084], + [-89.015581, -69.816084], + [-89.015581, -77.044217], + [-96.243715, -77.044217] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -69.816084], + [-96.243715, -62.58795], + [-89.015581, -62.58795], + [-89.015581, -69.816084], + [-96.243715, -69.816084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -62.58795], + [-96.243715, -55.359816], + [-89.015581, -55.359816], + [-89.015581, -62.58795], + [-96.243715, -62.58795] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -55.359816], + [-96.243715, -48.131682], + [-89.015581, -48.131682], + [-89.015581, -55.359816], + [-96.243715, -55.359816] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -48.131682], + [-96.243715, -40.903548], + [-89.015581, -40.903548], + [-89.015581, -48.131682], + [-96.243715, -48.131682] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -40.903548], + [-96.243715, -33.675414], + [-89.015581, -33.675414], + [-89.015581, -40.903548], + [-96.243715, -40.903548] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -33.675414], + [-96.243715, -26.44728], + [-89.015581, -26.44728], + [-89.015581, -33.675414], + [-96.243715, -33.675414] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -26.44728], + [-96.243715, -19.219147], + [-89.015581, -19.219147], + [-89.015581, -26.44728], + [-96.243715, -26.44728] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -19.219147], + [-96.243715, -11.991013], + [-89.015581, -11.991013], + [-89.015581, -19.219147], + [-96.243715, -19.219147] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -11.991013], + [-96.243715, -4.762879], + [-89.015581, -4.762879], + [-89.015581, -11.991013], + [-96.243715, -11.991013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, -4.762879], + [-96.243715, 2.465255], + [-89.015581, 2.465255], + [-89.015581, -4.762879], + [-96.243715, -4.762879] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 2.465255], + [-96.243715, 9.693389], + [-89.015581, 9.693389], + [-89.015581, 2.465255], + [-96.243715, 2.465255] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 9.693389], + [-96.243715, 16.921523], + [-89.015581, 16.921523], + [-89.015581, 9.693389], + [-96.243715, 9.693389] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 16.921523], + [-96.243715, 24.149656], + [-89.015581, 24.149656], + [-89.015581, 16.921523], + [-96.243715, 16.921523] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 24.149656], + [-96.243715, 31.37779], + [-89.015581, 31.37779], + [-89.015581, 24.149656], + [-96.243715, 24.149656] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 31.37779], + [-96.243715, 38.605924], + [-89.015581, 38.605924], + [-89.015581, 31.37779], + [-96.243715, 31.37779] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 38.605924], + [-96.243715, 45.834058], + [-89.015581, 45.834058], + [-89.015581, 38.605924], + [-96.243715, 38.605924] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 45.834058], + [-96.243715, 53.062192], + [-89.015581, 53.062192], + [-89.015581, 45.834058], + [-96.243715, 45.834058] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 53.062192], + [-96.243715, 60.290326], + [-89.015581, 60.290326], + [-89.015581, 53.062192], + [-96.243715, 53.062192] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 60.290326], + [-96.243715, 67.518459], + [-89.015581, 67.518459], + [-89.015581, 60.290326], + [-96.243715, 60.290326] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.243715, 67.518459], + [-96.243715, 74.746593], + [-89.015581, 74.746593], + [-89.015581, 67.518459], + [-96.243715, 67.518459] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -77.044217], + [-89.015581, -69.816084], + [-81.787447, -69.816084], + [-81.787447, -77.044217], + [-89.015581, -77.044217] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -69.816084], + [-89.015581, -62.58795], + [-81.787447, -62.58795], + [-81.787447, -69.816084], + [-89.015581, -69.816084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -62.58795], + [-89.015581, -55.359816], + [-81.787447, -55.359816], + [-81.787447, -62.58795], + [-89.015581, -62.58795] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -55.359816], + [-89.015581, -48.131682], + [-81.787447, -48.131682], + [-81.787447, -55.359816], + [-89.015581, -55.359816] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -48.131682], + [-89.015581, -40.903548], + [-81.787447, -40.903548], + [-81.787447, -48.131682], + [-89.015581, -48.131682] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -40.903548], + [-89.015581, -33.675414], + [-81.787447, -33.675414], + [-81.787447, -40.903548], + [-89.015581, -40.903548] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -33.675414], + [-89.015581, -26.44728], + [-81.787447, -26.44728], + [-81.787447, -33.675414], + [-89.015581, -33.675414] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -26.44728], + [-89.015581, -19.219147], + [-81.787447, -19.219147], + [-81.787447, -26.44728], + [-89.015581, -26.44728] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -19.219147], + [-89.015581, -11.991013], + [-81.787447, -11.991013], + [-81.787447, -19.219147], + [-89.015581, -19.219147] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -11.991013], + [-89.015581, -4.762879], + [-81.787447, -4.762879], + [-81.787447, -11.991013], + [-89.015581, -11.991013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, -4.762879], + [-89.015581, 2.465255], + [-81.787447, 2.465255], + [-81.787447, -4.762879], + [-89.015581, -4.762879] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 2.465255], + [-89.015581, 9.693389], + [-81.787447, 9.693389], + [-81.787447, 2.465255], + [-89.015581, 2.465255] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 9.693389], + [-89.015581, 16.921523], + [-81.787447, 16.921523], + [-81.787447, 9.693389], + [-89.015581, 9.693389] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 16.921523], + [-89.015581, 24.149656], + [-81.787447, 24.149656], + [-81.787447, 16.921523], + [-89.015581, 16.921523] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 24.149656], + [-89.015581, 31.37779], + [-81.787447, 31.37779], + [-81.787447, 24.149656], + [-89.015581, 24.149656] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 31.37779], + [-89.015581, 38.605924], + [-81.787447, 38.605924], + [-81.787447, 31.37779], + [-89.015581, 31.37779] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 38.605924], + [-89.015581, 45.834058], + [-81.787447, 45.834058], + [-81.787447, 38.605924], + [-89.015581, 38.605924] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 45.834058], + [-89.015581, 53.062192], + [-81.787447, 53.062192], + [-81.787447, 45.834058], + [-89.015581, 45.834058] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 53.062192], + [-89.015581, 60.290326], + [-81.787447, 60.290326], + [-81.787447, 53.062192], + [-89.015581, 53.062192] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 60.290326], + [-89.015581, 67.518459], + [-81.787447, 67.518459], + [-81.787447, 60.290326], + [-89.015581, 60.290326] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.015581, 67.518459], + [-89.015581, 74.746593], + [-81.787447, 74.746593], + [-81.787447, 67.518459], + [-89.015581, 67.518459] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -77.044217], + [-81.787447, -69.816084], + [-74.559313, -69.816084], + [-74.559313, -77.044217], + [-81.787447, -77.044217] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -69.816084], + [-81.787447, -62.58795], + [-74.559313, -62.58795], + [-74.559313, -69.816084], + [-81.787447, -69.816084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -62.58795], + [-81.787447, -55.359816], + [-74.559313, -55.359816], + [-74.559313, -62.58795], + [-81.787447, -62.58795] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -55.359816], + [-81.787447, -48.131682], + [-74.559313, -48.131682], + [-74.559313, -55.359816], + [-81.787447, -55.359816] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -48.131682], + [-81.787447, -40.903548], + [-74.559313, -40.903548], + [-74.559313, -48.131682], + [-81.787447, -48.131682] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -40.903548], + [-81.787447, -33.675414], + [-74.559313, -33.675414], + [-74.559313, -40.903548], + [-81.787447, -40.903548] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -33.675414], + [-81.787447, -26.44728], + [-74.559313, -26.44728], + [-74.559313, -33.675414], + [-81.787447, -33.675414] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -26.44728], + [-81.787447, -19.219147], + [-74.559313, -19.219147], + [-74.559313, -26.44728], + [-81.787447, -26.44728] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -19.219147], + [-81.787447, -11.991013], + [-74.559313, -11.991013], + [-74.559313, -19.219147], + [-81.787447, -19.219147] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -11.991013], + [-81.787447, -4.762879], + [-74.559313, -4.762879], + [-74.559313, -11.991013], + [-81.787447, -11.991013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, -4.762879], + [-81.787447, 2.465255], + [-74.559313, 2.465255], + [-74.559313, -4.762879], + [-81.787447, -4.762879] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 2.465255], + [-81.787447, 9.693389], + [-74.559313, 9.693389], + [-74.559313, 2.465255], + [-81.787447, 2.465255] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 9.693389], + [-81.787447, 16.921523], + [-74.559313, 16.921523], + [-74.559313, 9.693389], + [-81.787447, 9.693389] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 16.921523], + [-81.787447, 24.149656], + [-74.559313, 24.149656], + [-74.559313, 16.921523], + [-81.787447, 16.921523] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 24.149656], + [-81.787447, 31.37779], + [-74.559313, 31.37779], + [-74.559313, 24.149656], + [-81.787447, 24.149656] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 31.37779], + [-81.787447, 38.605924], + [-74.559313, 38.605924], + [-74.559313, 31.37779], + [-81.787447, 31.37779] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 38.605924], + [-81.787447, 45.834058], + [-74.559313, 45.834058], + [-74.559313, 38.605924], + [-81.787447, 38.605924] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 45.834058], + [-81.787447, 53.062192], + [-74.559313, 53.062192], + [-74.559313, 45.834058], + [-81.787447, 45.834058] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 53.062192], + [-81.787447, 60.290326], + [-74.559313, 60.290326], + [-74.559313, 53.062192], + [-81.787447, 53.062192] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 60.290326], + [-81.787447, 67.518459], + [-74.559313, 67.518459], + [-74.559313, 60.290326], + [-81.787447, 60.290326] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.787447, 67.518459], + [-81.787447, 74.746593], + [-74.559313, 74.746593], + [-74.559313, 67.518459], + [-81.787447, 67.518459] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -77.044217], + [-74.559313, -69.816084], + [-67.331179, -69.816084], + [-67.331179, -77.044217], + [-74.559313, -77.044217] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -69.816084], + [-74.559313, -62.58795], + [-67.331179, -62.58795], + [-67.331179, -69.816084], + [-74.559313, -69.816084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -62.58795], + [-74.559313, -55.359816], + [-67.331179, -55.359816], + [-67.331179, -62.58795], + [-74.559313, -62.58795] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -55.359816], + [-74.559313, -48.131682], + [-67.331179, -48.131682], + [-67.331179, -55.359816], + [-74.559313, -55.359816] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -48.131682], + [-74.559313, -40.903548], + [-67.331179, -40.903548], + [-67.331179, -48.131682], + [-74.559313, -48.131682] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -40.903548], + [-74.559313, -33.675414], + [-67.331179, -33.675414], + [-67.331179, -40.903548], + [-74.559313, -40.903548] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -33.675414], + [-74.559313, -26.44728], + [-67.331179, -26.44728], + [-67.331179, -33.675414], + [-74.559313, -33.675414] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -26.44728], + [-74.559313, -19.219147], + [-67.331179, -19.219147], + [-67.331179, -26.44728], + [-74.559313, -26.44728] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -19.219147], + [-74.559313, -11.991013], + [-67.331179, -11.991013], + [-67.331179, -19.219147], + [-74.559313, -19.219147] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -11.991013], + [-74.559313, -4.762879], + [-67.331179, -4.762879], + [-67.331179, -11.991013], + [-74.559313, -11.991013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, -4.762879], + [-74.559313, 2.465255], + [-67.331179, 2.465255], + [-67.331179, -4.762879], + [-74.559313, -4.762879] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 2.465255], + [-74.559313, 9.693389], + [-67.331179, 9.693389], + [-67.331179, 2.465255], + [-74.559313, 2.465255] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 9.693389], + [-74.559313, 16.921523], + [-67.331179, 16.921523], + [-67.331179, 9.693389], + [-74.559313, 9.693389] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 16.921523], + [-74.559313, 24.149656], + [-67.331179, 24.149656], + [-67.331179, 16.921523], + [-74.559313, 16.921523] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 24.149656], + [-74.559313, 31.37779], + [-67.331179, 31.37779], + [-67.331179, 24.149656], + [-74.559313, 24.149656] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 31.37779], + [-74.559313, 38.605924], + [-67.331179, 38.605924], + [-67.331179, 31.37779], + [-74.559313, 31.37779] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 38.605924], + [-74.559313, 45.834058], + [-67.331179, 45.834058], + [-67.331179, 38.605924], + [-74.559313, 38.605924] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 45.834058], + [-74.559313, 53.062192], + [-67.331179, 53.062192], + [-67.331179, 45.834058], + [-74.559313, 45.834058] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 53.062192], + [-74.559313, 60.290326], + [-67.331179, 60.290326], + [-67.331179, 53.062192], + [-74.559313, 53.062192] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 60.290326], + [-74.559313, 67.518459], + [-67.331179, 67.518459], + [-67.331179, 60.290326], + [-74.559313, 60.290326] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-74.559313, 67.518459], + [-74.559313, 74.746593], + [-67.331179, 74.746593], + [-67.331179, 67.518459], + [-74.559313, 67.518459] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -77.044217], + [-67.331179, -69.816084], + [-60.103045, -69.816084], + [-60.103045, -77.044217], + [-67.331179, -77.044217] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -69.816084], + [-67.331179, -62.58795], + [-60.103045, -62.58795], + [-60.103045, -69.816084], + [-67.331179, -69.816084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -62.58795], + [-67.331179, -55.359816], + [-60.103045, -55.359816], + [-60.103045, -62.58795], + [-67.331179, -62.58795] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -55.359816], + [-67.331179, -48.131682], + [-60.103045, -48.131682], + [-60.103045, -55.359816], + [-67.331179, -55.359816] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -48.131682], + [-67.331179, -40.903548], + [-60.103045, -40.903548], + [-60.103045, -48.131682], + [-67.331179, -48.131682] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -40.903548], + [-67.331179, -33.675414], + [-60.103045, -33.675414], + [-60.103045, -40.903548], + [-67.331179, -40.903548] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -33.675414], + [-67.331179, -26.44728], + [-60.103045, -26.44728], + [-60.103045, -33.675414], + [-67.331179, -33.675414] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -26.44728], + [-67.331179, -19.219147], + [-60.103045, -19.219147], + [-60.103045, -26.44728], + [-67.331179, -26.44728] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -19.219147], + [-67.331179, -11.991013], + [-60.103045, -11.991013], + [-60.103045, -19.219147], + [-67.331179, -19.219147] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -11.991013], + [-67.331179, -4.762879], + [-60.103045, -4.762879], + [-60.103045, -11.991013], + [-67.331179, -11.991013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, -4.762879], + [-67.331179, 2.465255], + [-60.103045, 2.465255], + [-60.103045, -4.762879], + [-67.331179, -4.762879] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 2.465255], + [-67.331179, 9.693389], + [-60.103045, 9.693389], + [-60.103045, 2.465255], + [-67.331179, 2.465255] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 9.693389], + [-67.331179, 16.921523], + [-60.103045, 16.921523], + [-60.103045, 9.693389], + [-67.331179, 9.693389] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 16.921523], + [-67.331179, 24.149656], + [-60.103045, 24.149656], + [-60.103045, 16.921523], + [-67.331179, 16.921523] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 24.149656], + [-67.331179, 31.37779], + [-60.103045, 31.37779], + [-60.103045, 24.149656], + [-67.331179, 24.149656] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 31.37779], + [-67.331179, 38.605924], + [-60.103045, 38.605924], + [-60.103045, 31.37779], + [-67.331179, 31.37779] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 38.605924], + [-67.331179, 45.834058], + [-60.103045, 45.834058], + [-60.103045, 38.605924], + [-67.331179, 38.605924] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 45.834058], + [-67.331179, 53.062192], + [-60.103045, 53.062192], + [-60.103045, 45.834058], + [-67.331179, 45.834058] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 53.062192], + [-67.331179, 60.290326], + [-60.103045, 60.290326], + [-60.103045, 53.062192], + [-67.331179, 53.062192] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 60.290326], + [-67.331179, 67.518459], + [-60.103045, 67.518459], + [-60.103045, 60.290326], + [-67.331179, 60.290326] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-67.331179, 67.518459], + [-67.331179, 74.746593], + [-60.103045, 74.746593], + [-60.103045, 67.518459], + [-67.331179, 67.518459] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -77.044217], + [-60.103045, -69.816084], + [-52.874912, -69.816084], + [-52.874912, -77.044217], + [-60.103045, -77.044217] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -69.816084], + [-60.103045, -62.58795], + [-52.874912, -62.58795], + [-52.874912, -69.816084], + [-60.103045, -69.816084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -62.58795], + [-60.103045, -55.359816], + [-52.874912, -55.359816], + [-52.874912, -62.58795], + [-60.103045, -62.58795] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -55.359816], + [-60.103045, -48.131682], + [-52.874912, -48.131682], + [-52.874912, -55.359816], + [-60.103045, -55.359816] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -48.131682], + [-60.103045, -40.903548], + [-52.874912, -40.903548], + [-52.874912, -48.131682], + [-60.103045, -48.131682] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -40.903548], + [-60.103045, -33.675414], + [-52.874912, -33.675414], + [-52.874912, -40.903548], + [-60.103045, -40.903548] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -33.675414], + [-60.103045, -26.44728], + [-52.874912, -26.44728], + [-52.874912, -33.675414], + [-60.103045, -33.675414] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -26.44728], + [-60.103045, -19.219147], + [-52.874912, -19.219147], + [-52.874912, -26.44728], + [-60.103045, -26.44728] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -19.219147], + [-60.103045, -11.991013], + [-52.874912, -11.991013], + [-52.874912, -19.219147], + [-60.103045, -19.219147] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -11.991013], + [-60.103045, -4.762879], + [-52.874912, -4.762879], + [-52.874912, -11.991013], + [-60.103045, -11.991013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, -4.762879], + [-60.103045, 2.465255], + [-52.874912, 2.465255], + [-52.874912, -4.762879], + [-60.103045, -4.762879] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 2.465255], + [-60.103045, 9.693389], + [-52.874912, 9.693389], + [-52.874912, 2.465255], + [-60.103045, 2.465255] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 9.693389], + [-60.103045, 16.921523], + [-52.874912, 16.921523], + [-52.874912, 9.693389], + [-60.103045, 9.693389] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 16.921523], + [-60.103045, 24.149656], + [-52.874912, 24.149656], + [-52.874912, 16.921523], + [-60.103045, 16.921523] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 24.149656], + [-60.103045, 31.37779], + [-52.874912, 31.37779], + [-52.874912, 24.149656], + [-60.103045, 24.149656] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 31.37779], + [-60.103045, 38.605924], + [-52.874912, 38.605924], + [-52.874912, 31.37779], + [-60.103045, 31.37779] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 38.605924], + [-60.103045, 45.834058], + [-52.874912, 45.834058], + [-52.874912, 38.605924], + [-60.103045, 38.605924] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 45.834058], + [-60.103045, 53.062192], + [-52.874912, 53.062192], + [-52.874912, 45.834058], + [-60.103045, 45.834058] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 53.062192], + [-60.103045, 60.290326], + [-52.874912, 60.290326], + [-52.874912, 53.062192], + [-60.103045, 53.062192] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 60.290326], + [-60.103045, 67.518459], + [-52.874912, 67.518459], + [-52.874912, 60.290326], + [-60.103045, 60.290326] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.103045, 67.518459], + [-60.103045, 74.746593], + [-52.874912, 74.746593], + [-52.874912, 67.518459], + [-60.103045, 67.518459] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -77.044217], + [-52.874912, -69.816084], + [-45.646778, -69.816084], + [-45.646778, -77.044217], + [-52.874912, -77.044217] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -69.816084], + [-52.874912, -62.58795], + [-45.646778, -62.58795], + [-45.646778, -69.816084], + [-52.874912, -69.816084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -62.58795], + [-52.874912, -55.359816], + [-45.646778, -55.359816], + [-45.646778, -62.58795], + [-52.874912, -62.58795] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -55.359816], + [-52.874912, -48.131682], + [-45.646778, -48.131682], + [-45.646778, -55.359816], + [-52.874912, -55.359816] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -48.131682], + [-52.874912, -40.903548], + [-45.646778, -40.903548], + [-45.646778, -48.131682], + [-52.874912, -48.131682] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -40.903548], + [-52.874912, -33.675414], + [-45.646778, -33.675414], + [-45.646778, -40.903548], + [-52.874912, -40.903548] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -33.675414], + [-52.874912, -26.44728], + [-45.646778, -26.44728], + [-45.646778, -33.675414], + [-52.874912, -33.675414] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -26.44728], + [-52.874912, -19.219147], + [-45.646778, -19.219147], + [-45.646778, -26.44728], + [-52.874912, -26.44728] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -19.219147], + [-52.874912, -11.991013], + [-45.646778, -11.991013], + [-45.646778, -19.219147], + [-52.874912, -19.219147] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -11.991013], + [-52.874912, -4.762879], + [-45.646778, -4.762879], + [-45.646778, -11.991013], + [-52.874912, -11.991013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, -4.762879], + [-52.874912, 2.465255], + [-45.646778, 2.465255], + [-45.646778, -4.762879], + [-52.874912, -4.762879] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 2.465255], + [-52.874912, 9.693389], + [-45.646778, 9.693389], + [-45.646778, 2.465255], + [-52.874912, 2.465255] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 9.693389], + [-52.874912, 16.921523], + [-45.646778, 16.921523], + [-45.646778, 9.693389], + [-52.874912, 9.693389] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 16.921523], + [-52.874912, 24.149656], + [-45.646778, 24.149656], + [-45.646778, 16.921523], + [-52.874912, 16.921523] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 24.149656], + [-52.874912, 31.37779], + [-45.646778, 31.37779], + [-45.646778, 24.149656], + [-52.874912, 24.149656] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 31.37779], + [-52.874912, 38.605924], + [-45.646778, 38.605924], + [-45.646778, 31.37779], + [-52.874912, 31.37779] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 38.605924], + [-52.874912, 45.834058], + [-45.646778, 45.834058], + [-45.646778, 38.605924], + [-52.874912, 38.605924] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 45.834058], + [-52.874912, 53.062192], + [-45.646778, 53.062192], + [-45.646778, 45.834058], + [-52.874912, 45.834058] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 53.062192], + [-52.874912, 60.290326], + [-45.646778, 60.290326], + [-45.646778, 53.062192], + [-52.874912, 53.062192] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 60.290326], + [-52.874912, 67.518459], + [-45.646778, 67.518459], + [-45.646778, 60.290326], + [-52.874912, 60.290326] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-52.874912, 67.518459], + [-52.874912, 74.746593], + [-45.646778, 74.746593], + [-45.646778, 67.518459], + [-52.874912, 67.518459] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -77.044217], + [-45.646778, -69.816084], + [-38.418644, -69.816084], + [-38.418644, -77.044217], + [-45.646778, -77.044217] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -69.816084], + [-45.646778, -62.58795], + [-38.418644, -62.58795], + [-38.418644, -69.816084], + [-45.646778, -69.816084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -62.58795], + [-45.646778, -55.359816], + [-38.418644, -55.359816], + [-38.418644, -62.58795], + [-45.646778, -62.58795] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -55.359816], + [-45.646778, -48.131682], + [-38.418644, -48.131682], + [-38.418644, -55.359816], + [-45.646778, -55.359816] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -48.131682], + [-45.646778, -40.903548], + [-38.418644, -40.903548], + [-38.418644, -48.131682], + [-45.646778, -48.131682] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -40.903548], + [-45.646778, -33.675414], + [-38.418644, -33.675414], + [-38.418644, -40.903548], + [-45.646778, -40.903548] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -33.675414], + [-45.646778, -26.44728], + [-38.418644, -26.44728], + [-38.418644, -33.675414], + [-45.646778, -33.675414] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -26.44728], + [-45.646778, -19.219147], + [-38.418644, -19.219147], + [-38.418644, -26.44728], + [-45.646778, -26.44728] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -19.219147], + [-45.646778, -11.991013], + [-38.418644, -11.991013], + [-38.418644, -19.219147], + [-45.646778, -19.219147] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -11.991013], + [-45.646778, -4.762879], + [-38.418644, -4.762879], + [-38.418644, -11.991013], + [-45.646778, -11.991013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, -4.762879], + [-45.646778, 2.465255], + [-38.418644, 2.465255], + [-38.418644, -4.762879], + [-45.646778, -4.762879] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 2.465255], + [-45.646778, 9.693389], + [-38.418644, 9.693389], + [-38.418644, 2.465255], + [-45.646778, 2.465255] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 9.693389], + [-45.646778, 16.921523], + [-38.418644, 16.921523], + [-38.418644, 9.693389], + [-45.646778, 9.693389] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 16.921523], + [-45.646778, 24.149656], + [-38.418644, 24.149656], + [-38.418644, 16.921523], + [-45.646778, 16.921523] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 24.149656], + [-45.646778, 31.37779], + [-38.418644, 31.37779], + [-38.418644, 24.149656], + [-45.646778, 24.149656] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 31.37779], + [-45.646778, 38.605924], + [-38.418644, 38.605924], + [-38.418644, 31.37779], + [-45.646778, 31.37779] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 38.605924], + [-45.646778, 45.834058], + [-38.418644, 45.834058], + [-38.418644, 38.605924], + [-45.646778, 38.605924] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 45.834058], + [-45.646778, 53.062192], + [-38.418644, 53.062192], + [-38.418644, 45.834058], + [-45.646778, 45.834058] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 53.062192], + [-45.646778, 60.290326], + [-38.418644, 60.290326], + [-38.418644, 53.062192], + [-45.646778, 53.062192] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 60.290326], + [-45.646778, 67.518459], + [-38.418644, 67.518459], + [-38.418644, 60.290326], + [-45.646778, 60.290326] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-45.646778, 67.518459], + [-45.646778, 74.746593], + [-38.418644, 74.746593], + [-38.418644, 67.518459], + [-45.646778, 67.518459] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -77.044217], + [-38.418644, -69.816084], + [-31.19051, -69.816084], + [-31.19051, -77.044217], + [-38.418644, -77.044217] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -69.816084], + [-38.418644, -62.58795], + [-31.19051, -62.58795], + [-31.19051, -69.816084], + [-38.418644, -69.816084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -62.58795], + [-38.418644, -55.359816], + [-31.19051, -55.359816], + [-31.19051, -62.58795], + [-38.418644, -62.58795] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -55.359816], + [-38.418644, -48.131682], + [-31.19051, -48.131682], + [-31.19051, -55.359816], + [-38.418644, -55.359816] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -48.131682], + [-38.418644, -40.903548], + [-31.19051, -40.903548], + [-31.19051, -48.131682], + [-38.418644, -48.131682] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -40.903548], + [-38.418644, -33.675414], + [-31.19051, -33.675414], + [-31.19051, -40.903548], + [-38.418644, -40.903548] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -33.675414], + [-38.418644, -26.44728], + [-31.19051, -26.44728], + [-31.19051, -33.675414], + [-38.418644, -33.675414] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -26.44728], + [-38.418644, -19.219147], + [-31.19051, -19.219147], + [-31.19051, -26.44728], + [-38.418644, -26.44728] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -19.219147], + [-38.418644, -11.991013], + [-31.19051, -11.991013], + [-31.19051, -19.219147], + [-38.418644, -19.219147] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -11.991013], + [-38.418644, -4.762879], + [-31.19051, -4.762879], + [-31.19051, -11.991013], + [-38.418644, -11.991013] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, -4.762879], + [-38.418644, 2.465255], + [-31.19051, 2.465255], + [-31.19051, -4.762879], + [-38.418644, -4.762879] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 2.465255], + [-38.418644, 9.693389], + [-31.19051, 9.693389], + [-31.19051, 2.465255], + [-38.418644, 2.465255] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 9.693389], + [-38.418644, 16.921523], + [-31.19051, 16.921523], + [-31.19051, 9.693389], + [-38.418644, 9.693389] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 16.921523], + [-38.418644, 24.149656], + [-31.19051, 24.149656], + [-31.19051, 16.921523], + [-38.418644, 16.921523] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 24.149656], + [-38.418644, 31.37779], + [-31.19051, 31.37779], + [-31.19051, 24.149656], + [-38.418644, 24.149656] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 31.37779], + [-38.418644, 38.605924], + [-31.19051, 38.605924], + [-31.19051, 31.37779], + [-38.418644, 31.37779] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 38.605924], + [-38.418644, 45.834058], + [-31.19051, 45.834058], + [-31.19051, 38.605924], + [-38.418644, 38.605924] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 45.834058], + [-38.418644, 53.062192], + [-31.19051, 53.062192], + [-31.19051, 45.834058], + [-38.418644, 45.834058] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 53.062192], + [-38.418644, 60.290326], + [-31.19051, 60.290326], + [-31.19051, 53.062192], + [-38.418644, 53.062192] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 60.290326], + [-38.418644, 67.518459], + [-31.19051, 67.518459], + [-31.19051, 60.290326], + [-38.418644, 60.290326] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-38.418644, 67.518459], + [-38.418644, 74.746593], + [-31.19051, 74.746593], + [-31.19051, 67.518459], + [-38.418644, 67.518459] ] ] } diff --git a/packages/turf-square-grid/test/out/fiji-10-miles.geojson b/packages/turf-square-grid/test/out/fiji-10-miles.geojson index 151ba92f0d..c9a33e5978 100644 --- a/packages/turf-square-grid/test/out/fiji-10-miles.geojson +++ b/packages/turf-square-grid/test/out/fiji-10-miles.geojson @@ -8,11 +8,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.340249, -17.114729], - [-180.340249, -16.969998], - [-180.188768, -16.969998], - [-180.188768, -17.114729], - [-180.340249, -17.114729] + [-180.322955, -17.114391], + [-180.322955, -16.969829], + [-180.178392, -16.969829], + [-180.178392, -17.114391], + [-180.322955, -17.114391] ] ] } @@ -24,11 +24,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.340249, -16.969998], - [-180.340249, -16.825266], - [-180.188768, -16.825266], - [-180.188768, -16.969998], - [-180.340249, -16.969998] + [-180.322955, -16.969829], + [-180.322955, -16.825266], + [-180.178392, -16.825266], + [-180.178392, -16.969829], + [-180.322955, -16.969829] ] ] } @@ -40,11 +40,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.340249, -16.825266], - [-180.340249, -16.680534], - [-180.188768, -16.680534], - [-180.188768, -16.825266], - [-180.340249, -16.825266] + [-180.322955, -16.825266], + [-180.322955, -16.680703], + [-180.178392, -16.680703], + [-180.178392, -16.825266], + [-180.322955, -16.825266] ] ] } @@ -56,11 +56,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.340249, -16.680534], - [-180.340249, -16.535803], - [-180.188768, -16.535803], - [-180.188768, -16.680534], - [-180.340249, -16.680534] + [-180.322955, -16.680703], + [-180.322955, -16.536141], + [-180.178392, -16.536141], + [-180.178392, -16.680703], + [-180.322955, -16.680703] ] ] } @@ -72,11 +72,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.188768, -17.114729], - [-180.188768, -16.969998], - [-180.037288, -16.969998], - [-180.037288, -17.114729], - [-180.188768, -17.114729] + [-180.178392, -17.114391], + [-180.178392, -16.969829], + [-180.033829, -16.969829], + [-180.033829, -17.114391], + [-180.178392, -17.114391] ] ] } @@ -88,11 +88,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.188768, -16.969998], - [-180.188768, -16.825266], - [-180.037288, -16.825266], - [-180.037288, -16.969998], - [-180.188768, -16.969998] + [-180.178392, -16.969829], + [-180.178392, -16.825266], + [-180.033829, -16.825266], + [-180.033829, -16.969829], + [-180.178392, -16.969829] ] ] } @@ -104,11 +104,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.188768, -16.825266], - [-180.188768, -16.680534], - [-180.037288, -16.680534], - [-180.037288, -16.825266], - [-180.188768, -16.825266] + [-180.178392, -16.825266], + [-180.178392, -16.680703], + [-180.033829, -16.680703], + [-180.033829, -16.825266], + [-180.178392, -16.825266] ] ] } @@ -120,11 +120,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.188768, -16.680534], - [-180.188768, -16.535803], - [-180.037288, -16.535803], - [-180.037288, -16.680534], - [-180.188768, -16.680534] + [-180.178392, -16.680703], + [-180.178392, -16.536141], + [-180.033829, -16.536141], + [-180.033829, -16.680703], + [-180.178392, -16.680703] ] ] } @@ -136,11 +136,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.037288, -17.114729], - [-180.037288, -16.969998], - [-179.885808, -16.969998], - [-179.885808, -17.114729], - [-180.037288, -17.114729] + [-180.033829, -17.114391], + [-180.033829, -16.969829], + [-179.889267, -16.969829], + [-179.889267, -17.114391], + [-180.033829, -17.114391] ] ] } @@ -152,11 +152,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.037288, -16.969998], - [-180.037288, -16.825266], - [-179.885808, -16.825266], - [-179.885808, -16.969998], - [-180.037288, -16.969998] + [-180.033829, -16.969829], + [-180.033829, -16.825266], + [-179.889267, -16.825266], + [-179.889267, -16.969829], + [-180.033829, -16.969829] ] ] } @@ -168,11 +168,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.037288, -16.825266], - [-180.037288, -16.680534], - [-179.885808, -16.680534], - [-179.885808, -16.825266], - [-180.037288, -16.825266] + [-180.033829, -16.825266], + [-180.033829, -16.680703], + [-179.889267, -16.680703], + [-179.889267, -16.825266], + [-180.033829, -16.825266] ] ] } @@ -184,11 +184,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.037288, -16.680534], - [-180.037288, -16.535803], - [-179.885808, -16.535803], - [-179.885808, -16.680534], - [-180.037288, -16.680534] + [-180.033829, -16.680703], + [-180.033829, -16.536141], + [-179.889267, -16.536141], + [-179.889267, -16.680703], + [-180.033829, -16.680703] ] ] } @@ -200,11 +200,11 @@ "type": "Polygon", "coordinates": [ [ - [-179.885808, -17.114729], - [-179.885808, -16.969998], - [-179.734327, -16.969998], - [-179.734327, -17.114729], - [-179.885808, -17.114729] + [-179.889267, -17.114391], + [-179.889267, -16.969829], + [-179.744704, -16.969829], + [-179.744704, -17.114391], + [-179.889267, -17.114391] ] ] } @@ -216,11 +216,11 @@ "type": "Polygon", "coordinates": [ [ - [-179.885808, -16.969998], - [-179.885808, -16.825266], - [-179.734327, -16.825266], - [-179.734327, -16.969998], - [-179.885808, -16.969998] + [-179.889267, -16.969829], + [-179.889267, -16.825266], + [-179.744704, -16.825266], + [-179.744704, -16.969829], + [-179.889267, -16.969829] ] ] } @@ -232,11 +232,11 @@ "type": "Polygon", "coordinates": [ [ - [-179.885808, -16.825266], - [-179.885808, -16.680534], - [-179.734327, -16.680534], - [-179.734327, -16.825266], - [-179.885808, -16.825266] + [-179.889267, -16.825266], + [-179.889267, -16.680703], + [-179.744704, -16.680703], + [-179.744704, -16.825266], + [-179.889267, -16.825266] ] ] } @@ -248,11 +248,11 @@ "type": "Polygon", "coordinates": [ [ - [-179.885808, -16.680534], - [-179.885808, -16.535803], - [-179.734327, -16.535803], - [-179.734327, -16.680534], - [-179.885808, -16.680534] + [-179.889267, -16.680703], + [-179.889267, -16.536141], + [-179.744704, -16.536141], + [-179.744704, -16.680703], + [-179.889267, -16.680703] ] ] } @@ -264,11 +264,11 @@ "type": "Polygon", "coordinates": [ [ - [-179.734327, -17.114729], - [-179.734327, -16.969998], - [-179.582847, -16.969998], - [-179.582847, -17.114729], - [-179.734327, -17.114729] + [-179.744704, -17.114391], + [-179.744704, -16.969829], + [-179.600141, -16.969829], + [-179.600141, -17.114391], + [-179.744704, -17.114391] ] ] } @@ -280,11 +280,11 @@ "type": "Polygon", "coordinates": [ [ - [-179.734327, -16.969998], - [-179.734327, -16.825266], - [-179.582847, -16.825266], - [-179.582847, -16.969998], - [-179.734327, -16.969998] + [-179.744704, -16.969829], + [-179.744704, -16.825266], + [-179.600141, -16.825266], + [-179.600141, -16.969829], + [-179.744704, -16.969829] ] ] } @@ -296,11 +296,11 @@ "type": "Polygon", "coordinates": [ [ - [-179.734327, -16.825266], - [-179.734327, -16.680534], - [-179.582847, -16.680534], - [-179.582847, -16.825266], - [-179.734327, -16.825266] + [-179.744704, -16.825266], + [-179.744704, -16.680703], + [-179.600141, -16.680703], + [-179.600141, -16.825266], + [-179.744704, -16.825266] ] ] } @@ -312,11 +312,11 @@ "type": "Polygon", "coordinates": [ [ - [-179.734327, -16.680534], - [-179.734327, -16.535803], - [-179.582847, -16.535803], - [-179.582847, -16.680534], - [-179.734327, -16.680534] + [-179.744704, -16.680703], + [-179.744704, -16.536141], + [-179.600141, -16.536141], + [-179.600141, -16.680703], + [-179.744704, -16.680703] ] ] } @@ -324,9 +324,7 @@ { "type": "Feature", "bbox": [ - -180.3460693359375, - -17.16703442146408, - -179.5770263671875, + -180.3460693359375, -17.16703442146408, -179.5770263671875, -16.48349760264812 ], "properties": { diff --git a/packages/turf-square-grid/test/out/issue-1215.geojson b/packages/turf-square-grid/test/out/issue-1215.geojson index a858b77e6b..ee69ad07c8 100644 --- a/packages/turf-square-grid/test/out/issue-1215.geojson +++ b/packages/turf-square-grid/test/out/issue-1215.geojson @@ -8,11 +8,11 @@ "type": "Polygon", "coordinates": [ [ - [37.699821, 55.553161], - [37.699821, 55.553251], - [37.69998, 55.553251], - [37.69998, 55.553161], - [37.699821, 55.553161] + [37.699775, 55.553251], + [37.699775, 55.553341], + [37.699865, 55.553341], + [37.699865, 55.553251], + [37.699775, 55.553251] ] ] } @@ -24,11 +24,11 @@ "type": "Polygon", "coordinates": [ [ - [37.699821, 55.553251], - [37.699821, 55.553341], - [37.69998, 55.553341], - [37.69998, 55.553251], - [37.699821, 55.553251] + [37.699775, 55.553341], + [37.699775, 55.553431], + [37.699865, 55.553431], + [37.699865, 55.553341], + [37.699775, 55.553341] ] ] } @@ -40,11 +40,11 @@ "type": "Polygon", "coordinates": [ [ - [37.699821, 55.553341], - [37.699821, 55.553431], - [37.69998, 55.553431], - [37.69998, 55.553341], - [37.699821, 55.553341] + [37.699865, 55.553162], + [37.699865, 55.553251], + [37.699955, 55.553251], + [37.699955, 55.553162], + [37.699865, 55.553162] ] ] } @@ -56,11 +56,11 @@ "type": "Polygon", "coordinates": [ [ - [37.699821, 55.553431], - [37.699821, 55.55352], - [37.69998, 55.55352], - [37.69998, 55.553431], - [37.699821, 55.553431] + [37.699865, 55.553251], + [37.699865, 55.553341], + [37.699955, 55.553341], + [37.699955, 55.553251], + [37.699865, 55.553251] ] ] } @@ -72,11 +72,11 @@ "type": "Polygon", "coordinates": [ [ - [37.699821, 55.55352], - [37.699821, 55.55361], - [37.69998, 55.55361], - [37.69998, 55.55352], - [37.699821, 55.55352] + [37.699865, 55.553341], + [37.699865, 55.553431], + [37.699955, 55.553431], + [37.699955, 55.553341], + [37.699865, 55.553341] ] ] } @@ -88,11 +88,11 @@ "type": "Polygon", "coordinates": [ [ - [37.69998, 55.553161], - [37.69998, 55.553251], - [37.700139, 55.553251], - [37.700139, 55.553161], - [37.69998, 55.553161] + [37.699865, 55.553431], + [37.699865, 55.553521], + [37.699955, 55.553521], + [37.699955, 55.553431], + [37.699865, 55.553431] ] ] } @@ -104,11 +104,11 @@ "type": "Polygon", "coordinates": [ [ - [37.69998, 55.553251], - [37.69998, 55.553341], - [37.700139, 55.553341], - [37.700139, 55.553251], - [37.69998, 55.553251] + [37.699865, 55.553521], + [37.699865, 55.553611], + [37.699955, 55.553611], + [37.699955, 55.553521], + [37.699865, 55.553521] ] ] } @@ -120,11 +120,11 @@ "type": "Polygon", "coordinates": [ [ - [37.69998, 55.553341], - [37.69998, 55.553431], - [37.700139, 55.553431], - [37.700139, 55.553341], - [37.69998, 55.553341] + [37.699955, 55.553162], + [37.699955, 55.553251], + [37.700044, 55.553251], + [37.700044, 55.553162], + [37.699955, 55.553162] ] ] } @@ -136,11 +136,11 @@ "type": "Polygon", "coordinates": [ [ - [37.69998, 55.553431], - [37.69998, 55.55352], - [37.700139, 55.55352], - [37.700139, 55.553431], - [37.69998, 55.553431] + [37.699955, 55.553251], + [37.699955, 55.553341], + [37.700044, 55.553341], + [37.700044, 55.553251], + [37.699955, 55.553251] ] ] } @@ -152,11 +152,11 @@ "type": "Polygon", "coordinates": [ [ - [37.69998, 55.55352], - [37.69998, 55.55361], - [37.700139, 55.55361], - [37.700139, 55.55352], - [37.69998, 55.55352] + [37.699955, 55.553341], + [37.699955, 55.553431], + [37.700044, 55.553431], + [37.700044, 55.553341], + [37.699955, 55.553341] ] ] } @@ -168,11 +168,11 @@ "type": "Polygon", "coordinates": [ [ - [37.69998, 55.55361], - [37.69998, 55.5537], - [37.700139, 55.5537], - [37.700139, 55.55361], - [37.69998, 55.55361] + [37.699955, 55.553431], + [37.699955, 55.553521], + [37.700044, 55.553521], + [37.700044, 55.553431], + [37.699955, 55.553431] ] ] } @@ -184,11 +184,11 @@ "type": "Polygon", "coordinates": [ [ - [37.69998, 55.5537], - [37.69998, 55.55379], - [37.700139, 55.55379], - [37.700139, 55.5537], - [37.69998, 55.5537] + [37.699955, 55.553521], + [37.699955, 55.553611], + [37.700044, 55.553611], + [37.700044, 55.553521], + [37.699955, 55.553521] ] ] } @@ -200,11 +200,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700139, 55.553071], - [37.700139, 55.553161], - [37.700298, 55.553161], - [37.700298, 55.553071], - [37.700139, 55.553071] + [37.699955, 55.553611], + [37.699955, 55.5537], + [37.700044, 55.5537], + [37.700044, 55.553611], + [37.699955, 55.553611] ] ] } @@ -216,11 +216,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700139, 55.553161], - [37.700139, 55.553251], - [37.700298, 55.553251], - [37.700298, 55.553161], - [37.700139, 55.553161] + [37.700044, 55.553162], + [37.700044, 55.553251], + [37.700134, 55.553251], + [37.700134, 55.553162], + [37.700044, 55.553162] ] ] } @@ -232,11 +232,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700139, 55.553251], - [37.700139, 55.553341], - [37.700298, 55.553341], - [37.700298, 55.553251], - [37.700139, 55.553251] + [37.700044, 55.553251], + [37.700044, 55.553341], + [37.700134, 55.553341], + [37.700134, 55.553251], + [37.700044, 55.553251] ] ] } @@ -248,11 +248,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700139, 55.553341], - [37.700139, 55.553431], - [37.700298, 55.553431], - [37.700298, 55.553341], - [37.700139, 55.553341] + [37.700044, 55.553341], + [37.700044, 55.553431], + [37.700134, 55.553431], + [37.700134, 55.553341], + [37.700044, 55.553341] ] ] } @@ -264,11 +264,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700139, 55.553431], - [37.700139, 55.55352], - [37.700298, 55.55352], - [37.700298, 55.553431], - [37.700139, 55.553431] + [37.700044, 55.553431], + [37.700044, 55.553521], + [37.700134, 55.553521], + [37.700134, 55.553431], + [37.700044, 55.553431] ] ] } @@ -280,11 +280,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700139, 55.55352], - [37.700139, 55.55361], - [37.700298, 55.55361], - [37.700298, 55.55352], - [37.700139, 55.55352] + [37.700044, 55.553521], + [37.700044, 55.553611], + [37.700134, 55.553611], + [37.700134, 55.553521], + [37.700044, 55.553521] ] ] } @@ -296,11 +296,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700139, 55.55361], - [37.700139, 55.5537], - [37.700298, 55.5537], - [37.700298, 55.55361], - [37.700139, 55.55361] + [37.700044, 55.553611], + [37.700044, 55.5537], + [37.700134, 55.5537], + [37.700134, 55.553611], + [37.700044, 55.553611] ] ] } @@ -312,11 +312,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700139, 55.5537], - [37.700139, 55.55379], - [37.700298, 55.55379], - [37.700298, 55.5537], - [37.700139, 55.5537] + [37.700044, 55.5537], + [37.700044, 55.55379], + [37.700134, 55.55379], + [37.700134, 55.5537], + [37.700044, 55.5537] ] ] } @@ -328,11 +328,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700139, 55.55379], - [37.700139, 55.55388], - [37.700298, 55.55388], - [37.700298, 55.55379], - [37.700139, 55.55379] + [37.700134, 55.553162], + [37.700134, 55.553251], + [37.700224, 55.553251], + [37.700224, 55.553162], + [37.700134, 55.553162] ] ] } @@ -344,11 +344,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700298, 55.553071], - [37.700298, 55.553161], - [37.700457, 55.553161], - [37.700457, 55.553071], - [37.700298, 55.553071] + [37.700134, 55.553251], + [37.700134, 55.553341], + [37.700224, 55.553341], + [37.700224, 55.553251], + [37.700134, 55.553251] ] ] } @@ -360,11 +360,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700298, 55.553161], - [37.700298, 55.553251], - [37.700457, 55.553251], - [37.700457, 55.553161], - [37.700298, 55.553161] + [37.700134, 55.553341], + [37.700134, 55.553431], + [37.700224, 55.553431], + [37.700224, 55.553341], + [37.700134, 55.553341] ] ] } @@ -376,11 +376,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700298, 55.553251], - [37.700298, 55.553341], - [37.700457, 55.553341], - [37.700457, 55.553251], - [37.700298, 55.553251] + [37.700134, 55.553431], + [37.700134, 55.553521], + [37.700224, 55.553521], + [37.700224, 55.553431], + [37.700134, 55.553431] ] ] } @@ -392,11 +392,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700298, 55.553341], - [37.700298, 55.553431], - [37.700457, 55.553431], - [37.700457, 55.553341], - [37.700298, 55.553341] + [37.700134, 55.553521], + [37.700134, 55.553611], + [37.700224, 55.553611], + [37.700224, 55.553521], + [37.700134, 55.553521] ] ] } @@ -408,11 +408,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700298, 55.553431], - [37.700298, 55.55352], - [37.700457, 55.55352], - [37.700457, 55.553431], - [37.700298, 55.553431] + [37.700134, 55.553611], + [37.700134, 55.5537], + [37.700224, 55.5537], + [37.700224, 55.553611], + [37.700134, 55.553611] ] ] } @@ -424,11 +424,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700298, 55.55352], - [37.700298, 55.55361], - [37.700457, 55.55361], - [37.700457, 55.55352], - [37.700298, 55.55352] + [37.700134, 55.5537], + [37.700134, 55.55379], + [37.700224, 55.55379], + [37.700224, 55.5537], + [37.700134, 55.5537] ] ] } @@ -440,11 +440,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700298, 55.55361], - [37.700298, 55.5537], - [37.700457, 55.5537], - [37.700457, 55.55361], - [37.700298, 55.55361] + [37.700224, 55.553072], + [37.700224, 55.553162], + [37.700314, 55.553162], + [37.700314, 55.553072], + [37.700224, 55.553072] ] ] } @@ -456,11 +456,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700298, 55.5537], - [37.700298, 55.55379], - [37.700457, 55.55379], - [37.700457, 55.5537], - [37.700298, 55.5537] + [37.700224, 55.553162], + [37.700224, 55.553251], + [37.700314, 55.553251], + [37.700314, 55.553162], + [37.700224, 55.553162] ] ] } @@ -472,11 +472,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700298, 55.55379], - [37.700298, 55.55388], - [37.700457, 55.55388], - [37.700457, 55.55379], - [37.700298, 55.55379] + [37.700224, 55.553251], + [37.700224, 55.553341], + [37.700314, 55.553341], + [37.700314, 55.553251], + [37.700224, 55.553251] ] ] } @@ -488,11 +488,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700457, 55.552981], - [37.700457, 55.553071], - [37.700616, 55.553071], - [37.700616, 55.552981], - [37.700457, 55.552981] + [37.700224, 55.553341], + [37.700224, 55.553431], + [37.700314, 55.553431], + [37.700314, 55.553341], + [37.700224, 55.553341] ] ] } @@ -504,11 +504,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700457, 55.553071], - [37.700457, 55.553161], - [37.700616, 55.553161], - [37.700616, 55.553071], - [37.700457, 55.553071] + [37.700224, 55.553431], + [37.700224, 55.553521], + [37.700314, 55.553521], + [37.700314, 55.553431], + [37.700224, 55.553431] ] ] } @@ -520,11 +520,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700457, 55.553161], - [37.700457, 55.553251], - [37.700616, 55.553251], - [37.700616, 55.553161], - [37.700457, 55.553161] + [37.700224, 55.553521], + [37.700224, 55.553611], + [37.700314, 55.553611], + [37.700314, 55.553521], + [37.700224, 55.553521] ] ] } @@ -536,11 +536,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700457, 55.553251], - [37.700457, 55.553341], - [37.700616, 55.553341], - [37.700616, 55.553251], - [37.700457, 55.553251] + [37.700224, 55.553611], + [37.700224, 55.5537], + [37.700314, 55.5537], + [37.700314, 55.553611], + [37.700224, 55.553611] ] ] } @@ -552,11 +552,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700457, 55.553341], - [37.700457, 55.553431], - [37.700616, 55.553431], - [37.700616, 55.553341], - [37.700457, 55.553341] + [37.700224, 55.5537], + [37.700224, 55.55379], + [37.700314, 55.55379], + [37.700314, 55.5537], + [37.700224, 55.5537] ] ] } @@ -568,11 +568,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700457, 55.553431], - [37.700457, 55.55352], - [37.700616, 55.55352], - [37.700616, 55.553431], - [37.700457, 55.553431] + [37.700224, 55.55379], + [37.700224, 55.55388], + [37.700314, 55.55388], + [37.700314, 55.55379], + [37.700224, 55.55379] ] ] } @@ -584,11 +584,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700457, 55.55352], - [37.700457, 55.55361], - [37.700616, 55.55361], - [37.700616, 55.55352], - [37.700457, 55.55352] + [37.700314, 55.553072], + [37.700314, 55.553162], + [37.700404, 55.553162], + [37.700404, 55.553072], + [37.700314, 55.553072] ] ] } @@ -600,11 +600,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700457, 55.55361], - [37.700457, 55.5537], - [37.700616, 55.5537], - [37.700616, 55.55361], - [37.700457, 55.55361] + [37.700314, 55.553162], + [37.700314, 55.553251], + [37.700404, 55.553251], + [37.700404, 55.553162], + [37.700314, 55.553162] ] ] } @@ -616,11 +616,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700457, 55.5537], - [37.700457, 55.55379], - [37.700616, 55.55379], - [37.700616, 55.5537], - [37.700457, 55.5537] + [37.700314, 55.553251], + [37.700314, 55.553341], + [37.700404, 55.553341], + [37.700404, 55.553251], + [37.700314, 55.553251] ] ] } @@ -632,11 +632,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700457, 55.55379], - [37.700457, 55.55388], - [37.700616, 55.55388], - [37.700616, 55.55379], - [37.700457, 55.55379] + [37.700314, 55.553341], + [37.700314, 55.553431], + [37.700404, 55.553431], + [37.700404, 55.553341], + [37.700314, 55.553341] ] ] } @@ -648,11 +648,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700457, 55.55388], - [37.700457, 55.55397], - [37.700616, 55.55397], - [37.700616, 55.55388], - [37.700457, 55.55388] + [37.700314, 55.553431], + [37.700314, 55.553521], + [37.700404, 55.553521], + [37.700404, 55.553431], + [37.700314, 55.553431] ] ] } @@ -664,11 +664,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700616, 55.552981], - [37.700616, 55.553071], - [37.700775, 55.553071], - [37.700775, 55.552981], - [37.700616, 55.552981] + [37.700314, 55.553521], + [37.700314, 55.553611], + [37.700404, 55.553611], + [37.700404, 55.553521], + [37.700314, 55.553521] ] ] } @@ -680,11 +680,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700616, 55.553071], - [37.700616, 55.553161], - [37.700775, 55.553161], - [37.700775, 55.553071], - [37.700616, 55.553071] + [37.700314, 55.553611], + [37.700314, 55.5537], + [37.700404, 55.5537], + [37.700404, 55.553611], + [37.700314, 55.553611] ] ] } @@ -696,11 +696,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700616, 55.553161], - [37.700616, 55.553251], - [37.700775, 55.553251], - [37.700775, 55.553161], - [37.700616, 55.553161] + [37.700314, 55.5537], + [37.700314, 55.55379], + [37.700404, 55.55379], + [37.700404, 55.5537], + [37.700314, 55.5537] ] ] } @@ -712,11 +712,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700616, 55.553251], - [37.700616, 55.553341], - [37.700775, 55.553341], - [37.700775, 55.553251], - [37.700616, 55.553251] + [37.700314, 55.55379], + [37.700314, 55.55388], + [37.700404, 55.55388], + [37.700404, 55.55379], + [37.700314, 55.55379] ] ] } @@ -728,11 +728,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700616, 55.553341], - [37.700616, 55.553431], - [37.700775, 55.553431], - [37.700775, 55.553341], - [37.700616, 55.553341] + [37.700404, 55.553072], + [37.700404, 55.553162], + [37.700493, 55.553162], + [37.700493, 55.553072], + [37.700404, 55.553072] ] ] } @@ -744,11 +744,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700616, 55.553431], - [37.700616, 55.55352], - [37.700775, 55.55352], - [37.700775, 55.553431], - [37.700616, 55.553431] + [37.700404, 55.553162], + [37.700404, 55.553251], + [37.700493, 55.553251], + [37.700493, 55.553162], + [37.700404, 55.553162] ] ] } @@ -760,11 +760,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700616, 55.55352], - [37.700616, 55.55361], - [37.700775, 55.55361], - [37.700775, 55.55352], - [37.700616, 55.55352] + [37.700404, 55.553251], + [37.700404, 55.553341], + [37.700493, 55.553341], + [37.700493, 55.553251], + [37.700404, 55.553251] ] ] } @@ -776,11 +776,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700616, 55.55361], - [37.700616, 55.5537], - [37.700775, 55.5537], - [37.700775, 55.55361], - [37.700616, 55.55361] + [37.700404, 55.553341], + [37.700404, 55.553431], + [37.700493, 55.553431], + [37.700493, 55.553341], + [37.700404, 55.553341] ] ] } @@ -792,11 +792,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700616, 55.5537], - [37.700616, 55.55379], - [37.700775, 55.55379], - [37.700775, 55.5537], - [37.700616, 55.5537] + [37.700404, 55.553431], + [37.700404, 55.553521], + [37.700493, 55.553521], + [37.700493, 55.553431], + [37.700404, 55.553431] ] ] } @@ -808,11 +808,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700616, 55.55379], - [37.700616, 55.55388], - [37.700775, 55.55388], - [37.700775, 55.55379], - [37.700616, 55.55379] + [37.700404, 55.553521], + [37.700404, 55.553611], + [37.700493, 55.553611], + [37.700493, 55.553521], + [37.700404, 55.553521] ] ] } @@ -824,11 +824,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700616, 55.55388], - [37.700616, 55.55397], - [37.700775, 55.55397], - [37.700775, 55.55388], - [37.700616, 55.55388] + [37.700404, 55.553611], + [37.700404, 55.5537], + [37.700493, 55.5537], + [37.700493, 55.553611], + [37.700404, 55.553611] ] ] } @@ -840,11 +840,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700775, 55.552981], - [37.700775, 55.553071], - [37.700934, 55.553071], - [37.700934, 55.552981], - [37.700775, 55.552981] + [37.700404, 55.5537], + [37.700404, 55.55379], + [37.700493, 55.55379], + [37.700493, 55.5537], + [37.700404, 55.5537] ] ] } @@ -856,11 +856,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700775, 55.553071], - [37.700775, 55.553161], - [37.700934, 55.553161], - [37.700934, 55.553071], - [37.700775, 55.553071] + [37.700404, 55.55379], + [37.700404, 55.55388], + [37.700493, 55.55388], + [37.700493, 55.55379], + [37.700404, 55.55379] ] ] } @@ -872,11 +872,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700775, 55.553161], - [37.700775, 55.553251], - [37.700934, 55.553251], - [37.700934, 55.553161], - [37.700775, 55.553161] + [37.700493, 55.553072], + [37.700493, 55.553162], + [37.700583, 55.553162], + [37.700583, 55.553072], + [37.700493, 55.553072] ] ] } @@ -888,11 +888,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700775, 55.553251], - [37.700775, 55.553341], - [37.700934, 55.553341], - [37.700934, 55.553251], - [37.700775, 55.553251] + [37.700493, 55.553162], + [37.700493, 55.553251], + [37.700583, 55.553251], + [37.700583, 55.553162], + [37.700493, 55.553162] ] ] } @@ -904,11 +904,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700775, 55.553341], - [37.700775, 55.553431], - [37.700934, 55.553431], - [37.700934, 55.553341], - [37.700775, 55.553341] + [37.700493, 55.553251], + [37.700493, 55.553341], + [37.700583, 55.553341], + [37.700583, 55.553251], + [37.700493, 55.553251] ] ] } @@ -920,11 +920,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700775, 55.553431], - [37.700775, 55.55352], - [37.700934, 55.55352], - [37.700934, 55.553431], - [37.700775, 55.553431] + [37.700493, 55.553341], + [37.700493, 55.553431], + [37.700583, 55.553431], + [37.700583, 55.553341], + [37.700493, 55.553341] ] ] } @@ -936,11 +936,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700775, 55.55352], - [37.700775, 55.55361], - [37.700934, 55.55361], - [37.700934, 55.55352], - [37.700775, 55.55352] + [37.700493, 55.553431], + [37.700493, 55.553521], + [37.700583, 55.553521], + [37.700583, 55.553431], + [37.700493, 55.553431] ] ] } @@ -952,11 +952,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700775, 55.55361], - [37.700775, 55.5537], - [37.700934, 55.5537], - [37.700934, 55.55361], - [37.700775, 55.55361] + [37.700493, 55.553521], + [37.700493, 55.553611], + [37.700583, 55.553611], + [37.700583, 55.553521], + [37.700493, 55.553521] ] ] } @@ -968,11 +968,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700775, 55.5537], - [37.700775, 55.55379], - [37.700934, 55.55379], - [37.700934, 55.5537], - [37.700775, 55.5537] + [37.700493, 55.553611], + [37.700493, 55.5537], + [37.700583, 55.5537], + [37.700583, 55.553611], + [37.700493, 55.553611] ] ] } @@ -984,11 +984,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700775, 55.55379], - [37.700775, 55.55388], - [37.700934, 55.55388], - [37.700934, 55.55379], - [37.700775, 55.55379] + [37.700493, 55.5537], + [37.700493, 55.55379], + [37.700583, 55.55379], + [37.700583, 55.5537], + [37.700493, 55.5537] ] ] } @@ -1000,11 +1000,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700775, 55.55388], - [37.700775, 55.55397], - [37.700934, 55.55397], - [37.700934, 55.55388], - [37.700775, 55.55388] + [37.700493, 55.55379], + [37.700493, 55.55388], + [37.700583, 55.55388], + [37.700583, 55.55379], + [37.700493, 55.55379] ] ] } @@ -1016,11 +1016,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700775, 55.55397], - [37.700775, 55.55406], - [37.700934, 55.55406], - [37.700934, 55.55397], - [37.700775, 55.55397] + [37.700493, 55.55388], + [37.700493, 55.55397], + [37.700583, 55.55397], + [37.700583, 55.55388], + [37.700493, 55.55388] ] ] } @@ -1032,11 +1032,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700934, 55.552891], - [37.700934, 55.552981], - [37.701093, 55.552981], - [37.701093, 55.552891], - [37.700934, 55.552891] + [37.700583, 55.552982], + [37.700583, 55.553072], + [37.700673, 55.553072], + [37.700673, 55.552982], + [37.700583, 55.552982] ] ] } @@ -1048,11 +1048,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700934, 55.552981], - [37.700934, 55.553071], - [37.701093, 55.553071], - [37.701093, 55.552981], - [37.700934, 55.552981] + [37.700583, 55.553072], + [37.700583, 55.553162], + [37.700673, 55.553162], + [37.700673, 55.553072], + [37.700583, 55.553072] ] ] } @@ -1064,11 +1064,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700934, 55.553071], - [37.700934, 55.553161], - [37.701093, 55.553161], - [37.701093, 55.553071], - [37.700934, 55.553071] + [37.700583, 55.553162], + [37.700583, 55.553251], + [37.700673, 55.553251], + [37.700673, 55.553162], + [37.700583, 55.553162] ] ] } @@ -1080,11 +1080,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700934, 55.553161], - [37.700934, 55.553251], - [37.701093, 55.553251], - [37.701093, 55.553161], - [37.700934, 55.553161] + [37.700583, 55.553251], + [37.700583, 55.553341], + [37.700673, 55.553341], + [37.700673, 55.553251], + [37.700583, 55.553251] ] ] } @@ -1096,11 +1096,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700934, 55.553251], - [37.700934, 55.553341], - [37.701093, 55.553341], - [37.701093, 55.553251], - [37.700934, 55.553251] + [37.700583, 55.553341], + [37.700583, 55.553431], + [37.700673, 55.553431], + [37.700673, 55.553341], + [37.700583, 55.553341] ] ] } @@ -1112,11 +1112,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700934, 55.553341], - [37.700934, 55.553431], - [37.701093, 55.553431], - [37.701093, 55.553341], - [37.700934, 55.553341] + [37.700583, 55.553431], + [37.700583, 55.553521], + [37.700673, 55.553521], + [37.700673, 55.553431], + [37.700583, 55.553431] ] ] } @@ -1128,11 +1128,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700934, 55.553431], - [37.700934, 55.55352], - [37.701093, 55.55352], - [37.701093, 55.553431], - [37.700934, 55.553431] + [37.700583, 55.553521], + [37.700583, 55.553611], + [37.700673, 55.553611], + [37.700673, 55.553521], + [37.700583, 55.553521] ] ] } @@ -1144,11 +1144,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700934, 55.55352], - [37.700934, 55.55361], - [37.701093, 55.55361], - [37.701093, 55.55352], - [37.700934, 55.55352] + [37.700583, 55.553611], + [37.700583, 55.5537], + [37.700673, 55.5537], + [37.700673, 55.553611], + [37.700583, 55.553611] ] ] } @@ -1160,11 +1160,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700934, 55.55361], - [37.700934, 55.5537], - [37.701093, 55.5537], - [37.701093, 55.55361], - [37.700934, 55.55361] + [37.700583, 55.5537], + [37.700583, 55.55379], + [37.700673, 55.55379], + [37.700673, 55.5537], + [37.700583, 55.5537] ] ] } @@ -1176,11 +1176,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700934, 55.5537], - [37.700934, 55.55379], - [37.701093, 55.55379], - [37.701093, 55.5537], - [37.700934, 55.5537] + [37.700583, 55.55379], + [37.700583, 55.55388], + [37.700673, 55.55388], + [37.700673, 55.55379], + [37.700583, 55.55379] ] ] } @@ -1192,11 +1192,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700934, 55.55379], - [37.700934, 55.55388], - [37.701093, 55.55388], - [37.701093, 55.55379], - [37.700934, 55.55379] + [37.700583, 55.55388], + [37.700583, 55.55397], + [37.700673, 55.55397], + [37.700673, 55.55388], + [37.700583, 55.55388] ] ] } @@ -1208,11 +1208,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700934, 55.55388], - [37.700934, 55.55397], - [37.701093, 55.55397], - [37.701093, 55.55388], - [37.700934, 55.55388] + [37.700673, 55.552982], + [37.700673, 55.553072], + [37.700763, 55.553072], + [37.700763, 55.552982], + [37.700673, 55.552982] ] ] } @@ -1224,11 +1224,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700934, 55.55397], - [37.700934, 55.55406], - [37.701093, 55.55406], - [37.701093, 55.55397], - [37.700934, 55.55397] + [37.700673, 55.553072], + [37.700673, 55.553162], + [37.700763, 55.553162], + [37.700763, 55.553072], + [37.700673, 55.553072] ] ] } @@ -1240,11 +1240,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701093, 55.552891], - [37.701093, 55.552981], - [37.701252, 55.552981], - [37.701252, 55.552891], - [37.701093, 55.552891] + [37.700673, 55.553162], + [37.700673, 55.553251], + [37.700763, 55.553251], + [37.700763, 55.553162], + [37.700673, 55.553162] ] ] } @@ -1256,11 +1256,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701093, 55.552981], - [37.701093, 55.553071], - [37.701252, 55.553071], - [37.701252, 55.552981], - [37.701093, 55.552981] + [37.700673, 55.553251], + [37.700673, 55.553341], + [37.700763, 55.553341], + [37.700763, 55.553251], + [37.700673, 55.553251] ] ] } @@ -1272,11 +1272,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701093, 55.553071], - [37.701093, 55.553161], - [37.701252, 55.553161], - [37.701252, 55.553071], - [37.701093, 55.553071] + [37.700673, 55.553341], + [37.700673, 55.553431], + [37.700763, 55.553431], + [37.700763, 55.553341], + [37.700673, 55.553341] ] ] } @@ -1288,11 +1288,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701093, 55.553161], - [37.701093, 55.553251], - [37.701252, 55.553251], - [37.701252, 55.553161], - [37.701093, 55.553161] + [37.700673, 55.553431], + [37.700673, 55.553521], + [37.700763, 55.553521], + [37.700763, 55.553431], + [37.700673, 55.553431] ] ] } @@ -1304,11 +1304,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701093, 55.553251], - [37.701093, 55.553341], - [37.701252, 55.553341], - [37.701252, 55.553251], - [37.701093, 55.553251] + [37.700673, 55.553521], + [37.700673, 55.553611], + [37.700763, 55.553611], + [37.700763, 55.553521], + [37.700673, 55.553521] ] ] } @@ -1320,11 +1320,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701093, 55.553341], - [37.701093, 55.553431], - [37.701252, 55.553431], - [37.701252, 55.553341], - [37.701093, 55.553341] + [37.700673, 55.553611], + [37.700673, 55.5537], + [37.700763, 55.5537], + [37.700763, 55.553611], + [37.700673, 55.553611] ] ] } @@ -1336,11 +1336,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701093, 55.553431], - [37.701093, 55.55352], - [37.701252, 55.55352], - [37.701252, 55.553431], - [37.701093, 55.553431] + [37.700673, 55.5537], + [37.700673, 55.55379], + [37.700763, 55.55379], + [37.700763, 55.5537], + [37.700673, 55.5537] ] ] } @@ -1352,11 +1352,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701093, 55.55352], - [37.701093, 55.55361], - [37.701252, 55.55361], - [37.701252, 55.55352], - [37.701093, 55.55352] + [37.700673, 55.55379], + [37.700673, 55.55388], + [37.700763, 55.55388], + [37.700763, 55.55379], + [37.700673, 55.55379] ] ] } @@ -1368,11 +1368,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701093, 55.55361], - [37.701093, 55.5537], - [37.701252, 55.5537], - [37.701252, 55.55361], - [37.701093, 55.55361] + [37.700673, 55.55388], + [37.700673, 55.55397], + [37.700763, 55.55397], + [37.700763, 55.55388], + [37.700673, 55.55388] ] ] } @@ -1384,11 +1384,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701093, 55.5537], - [37.701093, 55.55379], - [37.701252, 55.55379], - [37.701252, 55.5537], - [37.701093, 55.5537] + [37.700763, 55.552982], + [37.700763, 55.553072], + [37.700853, 55.553072], + [37.700853, 55.552982], + [37.700763, 55.552982] ] ] } @@ -1400,11 +1400,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701093, 55.55379], - [37.701093, 55.55388], - [37.701252, 55.55388], - [37.701252, 55.55379], - [37.701093, 55.55379] + [37.700763, 55.553072], + [37.700763, 55.553162], + [37.700853, 55.553162], + [37.700853, 55.553072], + [37.700763, 55.553072] ] ] } @@ -1416,11 +1416,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701093, 55.55388], - [37.701093, 55.55397], - [37.701252, 55.55397], - [37.701252, 55.55388], - [37.701093, 55.55388] + [37.700763, 55.553162], + [37.700763, 55.553251], + [37.700853, 55.553251], + [37.700853, 55.553162], + [37.700763, 55.553162] ] ] } @@ -1432,11 +1432,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701093, 55.55397], - [37.701093, 55.55406], - [37.701252, 55.55406], - [37.701252, 55.55397], - [37.701093, 55.55397] + [37.700763, 55.553251], + [37.700763, 55.553341], + [37.700853, 55.553341], + [37.700853, 55.553251], + [37.700763, 55.553251] ] ] } @@ -1448,11 +1448,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701093, 55.55406], - [37.701093, 55.55415], - [37.701252, 55.55415], - [37.701252, 55.55406], - [37.701093, 55.55406] + [37.700763, 55.553341], + [37.700763, 55.553431], + [37.700853, 55.553431], + [37.700853, 55.553341], + [37.700763, 55.553341] ] ] } @@ -1464,11 +1464,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701252, 55.552801], - [37.701252, 55.552891], - [37.701411, 55.552891], - [37.701411, 55.552801], - [37.701252, 55.552801] + [37.700763, 55.553431], + [37.700763, 55.553521], + [37.700853, 55.553521], + [37.700853, 55.553431], + [37.700763, 55.553431] ] ] } @@ -1480,11 +1480,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701252, 55.552891], - [37.701252, 55.552981], - [37.701411, 55.552981], - [37.701411, 55.552891], - [37.701252, 55.552891] + [37.700763, 55.553521], + [37.700763, 55.553611], + [37.700853, 55.553611], + [37.700853, 55.553521], + [37.700763, 55.553521] ] ] } @@ -1496,11 +1496,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701252, 55.552981], - [37.701252, 55.553071], - [37.701411, 55.553071], - [37.701411, 55.552981], - [37.701252, 55.552981] + [37.700763, 55.553611], + [37.700763, 55.5537], + [37.700853, 55.5537], + [37.700853, 55.553611], + [37.700763, 55.553611] ] ] } @@ -1512,11 +1512,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701252, 55.553071], - [37.701252, 55.553161], - [37.701411, 55.553161], - [37.701411, 55.553071], - [37.701252, 55.553071] + [37.700763, 55.5537], + [37.700763, 55.55379], + [37.700853, 55.55379], + [37.700853, 55.5537], + [37.700763, 55.5537] ] ] } @@ -1528,11 +1528,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701252, 55.553161], - [37.701252, 55.553251], - [37.701411, 55.553251], - [37.701411, 55.553161], - [37.701252, 55.553161] + [37.700763, 55.55379], + [37.700763, 55.55388], + [37.700853, 55.55388], + [37.700853, 55.55379], + [37.700763, 55.55379] ] ] } @@ -1544,11 +1544,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701252, 55.553251], - [37.701252, 55.553341], - [37.701411, 55.553341], - [37.701411, 55.553251], - [37.701252, 55.553251] + [37.700763, 55.55388], + [37.700763, 55.55397], + [37.700853, 55.55397], + [37.700853, 55.55388], + [37.700763, 55.55388] ] ] } @@ -1560,11 +1560,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701252, 55.553341], - [37.701252, 55.553431], - [37.701411, 55.553431], - [37.701411, 55.553341], - [37.701252, 55.553341] + [37.700853, 55.552982], + [37.700853, 55.553072], + [37.700943, 55.553072], + [37.700943, 55.552982], + [37.700853, 55.552982] ] ] } @@ -1576,11 +1576,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701252, 55.553431], - [37.701252, 55.55352], - [37.701411, 55.55352], - [37.701411, 55.553431], - [37.701252, 55.553431] + [37.700853, 55.553072], + [37.700853, 55.553162], + [37.700943, 55.553162], + [37.700943, 55.553072], + [37.700853, 55.553072] ] ] } @@ -1592,11 +1592,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701252, 55.55352], - [37.701252, 55.55361], - [37.701411, 55.55361], - [37.701411, 55.55352], - [37.701252, 55.55352] + [37.700853, 55.553162], + [37.700853, 55.553251], + [37.700943, 55.553251], + [37.700943, 55.553162], + [37.700853, 55.553162] ] ] } @@ -1608,11 +1608,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701252, 55.55361], - [37.701252, 55.5537], - [37.701411, 55.5537], - [37.701411, 55.55361], - [37.701252, 55.55361] + [37.700853, 55.553251], + [37.700853, 55.553341], + [37.700943, 55.553341], + [37.700943, 55.553251], + [37.700853, 55.553251] ] ] } @@ -1624,11 +1624,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701252, 55.5537], - [37.701252, 55.55379], - [37.701411, 55.55379], - [37.701411, 55.5537], - [37.701252, 55.5537] + [37.700853, 55.553341], + [37.700853, 55.553431], + [37.700943, 55.553431], + [37.700943, 55.553341], + [37.700853, 55.553341] ] ] } @@ -1640,11 +1640,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701252, 55.55379], - [37.701252, 55.55388], - [37.701411, 55.55388], - [37.701411, 55.55379], - [37.701252, 55.55379] + [37.700853, 55.553431], + [37.700853, 55.553521], + [37.700943, 55.553521], + [37.700943, 55.553431], + [37.700853, 55.553431] ] ] } @@ -1656,11 +1656,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701252, 55.55388], - [37.701252, 55.55397], - [37.701411, 55.55397], - [37.701411, 55.55388], - [37.701252, 55.55388] + [37.700853, 55.553521], + [37.700853, 55.553611], + [37.700943, 55.553611], + [37.700943, 55.553521], + [37.700853, 55.553521] ] ] } @@ -1672,11 +1672,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701252, 55.55397], - [37.701252, 55.55406], - [37.701411, 55.55406], - [37.701411, 55.55397], - [37.701252, 55.55397] + [37.700853, 55.553611], + [37.700853, 55.5537], + [37.700943, 55.5537], + [37.700943, 55.553611], + [37.700853, 55.553611] ] ] } @@ -1688,11 +1688,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701252, 55.55406], - [37.701252, 55.55415], - [37.701411, 55.55415], - [37.701411, 55.55406], - [37.701252, 55.55406] + [37.700853, 55.5537], + [37.700853, 55.55379], + [37.700943, 55.55379], + [37.700943, 55.5537], + [37.700853, 55.5537] ] ] } @@ -1704,11 +1704,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701411, 55.552801], - [37.701411, 55.552891], - [37.70157, 55.552891], - [37.70157, 55.552801], - [37.701411, 55.552801] + [37.700853, 55.55379], + [37.700853, 55.55388], + [37.700943, 55.55388], + [37.700943, 55.55379], + [37.700853, 55.55379] ] ] } @@ -1720,11 +1720,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701411, 55.552891], - [37.701411, 55.552981], - [37.70157, 55.552981], - [37.70157, 55.552891], - [37.701411, 55.552891] + [37.700853, 55.55388], + [37.700853, 55.55397], + [37.700943, 55.55397], + [37.700943, 55.55388], + [37.700853, 55.55388] ] ] } @@ -1736,11 +1736,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701411, 55.552981], - [37.701411, 55.553071], - [37.70157, 55.553071], - [37.70157, 55.552981], - [37.701411, 55.552981] + [37.700853, 55.55397], + [37.700853, 55.55406], + [37.700943, 55.55406], + [37.700943, 55.55397], + [37.700853, 55.55397] ] ] } @@ -1752,11 +1752,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701411, 55.553071], - [37.701411, 55.553161], - [37.70157, 55.553161], - [37.70157, 55.553071], - [37.701411, 55.553071] + [37.700943, 55.552892], + [37.700943, 55.552982], + [37.701032, 55.552982], + [37.701032, 55.552892], + [37.700943, 55.552892] ] ] } @@ -1768,11 +1768,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701411, 55.553161], - [37.701411, 55.553251], - [37.70157, 55.553251], - [37.70157, 55.553161], - [37.701411, 55.553161] + [37.700943, 55.552982], + [37.700943, 55.553072], + [37.701032, 55.553072], + [37.701032, 55.552982], + [37.700943, 55.552982] ] ] } @@ -1784,11 +1784,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701411, 55.553251], - [37.701411, 55.553341], - [37.70157, 55.553341], - [37.70157, 55.553251], - [37.701411, 55.553251] + [37.700943, 55.553072], + [37.700943, 55.553162], + [37.701032, 55.553162], + [37.701032, 55.553072], + [37.700943, 55.553072] ] ] } @@ -1800,11 +1800,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701411, 55.553341], - [37.701411, 55.553431], - [37.70157, 55.553431], - [37.70157, 55.553341], - [37.701411, 55.553341] + [37.700943, 55.553162], + [37.700943, 55.553251], + [37.701032, 55.553251], + [37.701032, 55.553162], + [37.700943, 55.553162] ] ] } @@ -1816,11 +1816,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701411, 55.553431], - [37.701411, 55.55352], - [37.70157, 55.55352], - [37.70157, 55.553431], - [37.701411, 55.553431] + [37.700943, 55.553251], + [37.700943, 55.553341], + [37.701032, 55.553341], + [37.701032, 55.553251], + [37.700943, 55.553251] ] ] } @@ -1832,11 +1832,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701411, 55.55352], - [37.701411, 55.55361], - [37.70157, 55.55361], - [37.70157, 55.55352], - [37.701411, 55.55352] + [37.700943, 55.553341], + [37.700943, 55.553431], + [37.701032, 55.553431], + [37.701032, 55.553341], + [37.700943, 55.553341] ] ] } @@ -1848,11 +1848,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701411, 55.55361], - [37.701411, 55.5537], - [37.70157, 55.5537], - [37.70157, 55.55361], - [37.701411, 55.55361] + [37.700943, 55.553431], + [37.700943, 55.553521], + [37.701032, 55.553521], + [37.701032, 55.553431], + [37.700943, 55.553431] ] ] } @@ -1864,11 +1864,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701411, 55.5537], - [37.701411, 55.55379], - [37.70157, 55.55379], - [37.70157, 55.5537], - [37.701411, 55.5537] + [37.700943, 55.553521], + [37.700943, 55.553611], + [37.701032, 55.553611], + [37.701032, 55.553521], + [37.700943, 55.553521] ] ] } @@ -1880,11 +1880,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701411, 55.55379], - [37.701411, 55.55388], - [37.70157, 55.55388], - [37.70157, 55.55379], - [37.701411, 55.55379] + [37.700943, 55.553611], + [37.700943, 55.5537], + [37.701032, 55.5537], + [37.701032, 55.553611], + [37.700943, 55.553611] ] ] } @@ -1896,11 +1896,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701411, 55.55388], - [37.701411, 55.55397], - [37.70157, 55.55397], - [37.70157, 55.55388], - [37.701411, 55.55388] + [37.700943, 55.5537], + [37.700943, 55.55379], + [37.701032, 55.55379], + [37.701032, 55.5537], + [37.700943, 55.5537] ] ] } @@ -1912,11 +1912,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701411, 55.55397], - [37.701411, 55.55406], - [37.70157, 55.55406], - [37.70157, 55.55397], - [37.701411, 55.55397] + [37.700943, 55.55379], + [37.700943, 55.55388], + [37.701032, 55.55388], + [37.701032, 55.55379], + [37.700943, 55.55379] ] ] } @@ -1928,11 +1928,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701411, 55.55406], - [37.701411, 55.55415], - [37.70157, 55.55415], - [37.70157, 55.55406], - [37.701411, 55.55406] + [37.700943, 55.55388], + [37.700943, 55.55397], + [37.701032, 55.55397], + [37.701032, 55.55388], + [37.700943, 55.55388] ] ] } @@ -1944,11 +1944,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701411, 55.55415], - [37.701411, 55.55424], - [37.70157, 55.55424], - [37.70157, 55.55415], - [37.701411, 55.55415] + [37.700943, 55.55397], + [37.700943, 55.55406], + [37.701032, 55.55406], + [37.701032, 55.55397], + [37.700943, 55.55397] ] ] } @@ -1960,11 +1960,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70157, 55.552711], - [37.70157, 55.552801], - [37.701729, 55.552801], - [37.701729, 55.552711], - [37.70157, 55.552711] + [37.701032, 55.552892], + [37.701032, 55.552982], + [37.701122, 55.552982], + [37.701122, 55.552892], + [37.701032, 55.552892] ] ] } @@ -1976,11 +1976,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70157, 55.552801], - [37.70157, 55.552891], - [37.701729, 55.552891], - [37.701729, 55.552801], - [37.70157, 55.552801] + [37.701032, 55.552982], + [37.701032, 55.553072], + [37.701122, 55.553072], + [37.701122, 55.552982], + [37.701032, 55.552982] ] ] } @@ -1992,11 +1992,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70157, 55.552891], - [37.70157, 55.552981], - [37.701729, 55.552981], - [37.701729, 55.552891], - [37.70157, 55.552891] + [37.701032, 55.553072], + [37.701032, 55.553162], + [37.701122, 55.553162], + [37.701122, 55.553072], + [37.701032, 55.553072] ] ] } @@ -2008,11 +2008,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70157, 55.552981], - [37.70157, 55.553071], - [37.701729, 55.553071], - [37.701729, 55.552981], - [37.70157, 55.552981] + [37.701032, 55.553162], + [37.701032, 55.553251], + [37.701122, 55.553251], + [37.701122, 55.553162], + [37.701032, 55.553162] ] ] } @@ -2024,11 +2024,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70157, 55.553071], - [37.70157, 55.553161], - [37.701729, 55.553161], - [37.701729, 55.553071], - [37.70157, 55.553071] + [37.701032, 55.553251], + [37.701032, 55.553341], + [37.701122, 55.553341], + [37.701122, 55.553251], + [37.701032, 55.553251] ] ] } @@ -2040,11 +2040,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70157, 55.553161], - [37.70157, 55.553251], - [37.701729, 55.553251], - [37.701729, 55.553161], - [37.70157, 55.553161] + [37.701032, 55.553341], + [37.701032, 55.553431], + [37.701122, 55.553431], + [37.701122, 55.553341], + [37.701032, 55.553341] ] ] } @@ -2056,11 +2056,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70157, 55.553251], - [37.70157, 55.553341], - [37.701729, 55.553341], - [37.701729, 55.553251], - [37.70157, 55.553251] + [37.701032, 55.553431], + [37.701032, 55.553521], + [37.701122, 55.553521], + [37.701122, 55.553431], + [37.701032, 55.553431] ] ] } @@ -2072,11 +2072,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70157, 55.553341], - [37.70157, 55.553431], - [37.701729, 55.553431], - [37.701729, 55.553341], - [37.70157, 55.553341] + [37.701032, 55.553521], + [37.701032, 55.553611], + [37.701122, 55.553611], + [37.701122, 55.553521], + [37.701032, 55.553521] ] ] } @@ -2088,11 +2088,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70157, 55.553431], - [37.70157, 55.55352], - [37.701729, 55.55352], - [37.701729, 55.553431], - [37.70157, 55.553431] + [37.701032, 55.553611], + [37.701032, 55.5537], + [37.701122, 55.5537], + [37.701122, 55.553611], + [37.701032, 55.553611] ] ] } @@ -2104,11 +2104,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70157, 55.55352], - [37.70157, 55.55361], - [37.701729, 55.55361], - [37.701729, 55.55352], - [37.70157, 55.55352] + [37.701032, 55.5537], + [37.701032, 55.55379], + [37.701122, 55.55379], + [37.701122, 55.5537], + [37.701032, 55.5537] ] ] } @@ -2120,11 +2120,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70157, 55.55361], - [37.70157, 55.5537], - [37.701729, 55.5537], - [37.701729, 55.55361], - [37.70157, 55.55361] + [37.701032, 55.55379], + [37.701032, 55.55388], + [37.701122, 55.55388], + [37.701122, 55.55379], + [37.701032, 55.55379] ] ] } @@ -2136,11 +2136,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70157, 55.5537], - [37.70157, 55.55379], - [37.701729, 55.55379], - [37.701729, 55.5537], - [37.70157, 55.5537] + [37.701032, 55.55388], + [37.701032, 55.55397], + [37.701122, 55.55397], + [37.701122, 55.55388], + [37.701032, 55.55388] ] ] } @@ -2152,11 +2152,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70157, 55.55379], - [37.70157, 55.55388], - [37.701729, 55.55388], - [37.701729, 55.55379], - [37.70157, 55.55379] + [37.701032, 55.55397], + [37.701032, 55.55406], + [37.701122, 55.55406], + [37.701122, 55.55397], + [37.701032, 55.55397] ] ] } @@ -2168,11 +2168,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70157, 55.55388], - [37.70157, 55.55397], - [37.701729, 55.55397], - [37.701729, 55.55388], - [37.70157, 55.55388] + [37.701122, 55.552892], + [37.701122, 55.552982], + [37.701212, 55.552982], + [37.701212, 55.552892], + [37.701122, 55.552892] ] ] } @@ -2184,11 +2184,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70157, 55.55397], - [37.70157, 55.55406], - [37.701729, 55.55406], - [37.701729, 55.55397], - [37.70157, 55.55397] + [37.701122, 55.552982], + [37.701122, 55.553072], + [37.701212, 55.553072], + [37.701212, 55.552982], + [37.701122, 55.552982] ] ] } @@ -2200,11 +2200,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70157, 55.55406], - [37.70157, 55.55415], - [37.701729, 55.55415], - [37.701729, 55.55406], - [37.70157, 55.55406] + [37.701122, 55.553072], + [37.701122, 55.553162], + [37.701212, 55.553162], + [37.701212, 55.553072], + [37.701122, 55.553072] ] ] } @@ -2216,11 +2216,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70157, 55.55415], - [37.70157, 55.55424], - [37.701729, 55.55424], - [37.701729, 55.55415], - [37.70157, 55.55415] + [37.701122, 55.553162], + [37.701122, 55.553251], + [37.701212, 55.553251], + [37.701212, 55.553162], + [37.701122, 55.553162] ] ] } @@ -2232,11 +2232,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701729, 55.552711], - [37.701729, 55.552801], - [37.701888, 55.552801], - [37.701888, 55.552711], - [37.701729, 55.552711] + [37.701122, 55.553251], + [37.701122, 55.553341], + [37.701212, 55.553341], + [37.701212, 55.553251], + [37.701122, 55.553251] ] ] } @@ -2248,11 +2248,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701729, 55.552801], - [37.701729, 55.552891], - [37.701888, 55.552891], - [37.701888, 55.552801], - [37.701729, 55.552801] + [37.701122, 55.553341], + [37.701122, 55.553431], + [37.701212, 55.553431], + [37.701212, 55.553341], + [37.701122, 55.553341] ] ] } @@ -2264,11 +2264,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701729, 55.552891], - [37.701729, 55.552981], - [37.701888, 55.552981], - [37.701888, 55.552891], - [37.701729, 55.552891] + [37.701122, 55.553431], + [37.701122, 55.553521], + [37.701212, 55.553521], + [37.701212, 55.553431], + [37.701122, 55.553431] ] ] } @@ -2280,11 +2280,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701729, 55.552981], - [37.701729, 55.553071], - [37.701888, 55.553071], - [37.701888, 55.552981], - [37.701729, 55.552981] + [37.701122, 55.553521], + [37.701122, 55.553611], + [37.701212, 55.553611], + [37.701212, 55.553521], + [37.701122, 55.553521] ] ] } @@ -2296,11 +2296,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701729, 55.553071], - [37.701729, 55.553161], - [37.701888, 55.553161], - [37.701888, 55.553071], - [37.701729, 55.553071] + [37.701122, 55.553611], + [37.701122, 55.5537], + [37.701212, 55.5537], + [37.701212, 55.553611], + [37.701122, 55.553611] ] ] } @@ -2312,11 +2312,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701729, 55.553161], - [37.701729, 55.553251], - [37.701888, 55.553251], - [37.701888, 55.553161], - [37.701729, 55.553161] + [37.701122, 55.5537], + [37.701122, 55.55379], + [37.701212, 55.55379], + [37.701212, 55.5537], + [37.701122, 55.5537] ] ] } @@ -2328,11 +2328,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701729, 55.553251], - [37.701729, 55.553341], - [37.701888, 55.553341], - [37.701888, 55.553251], - [37.701729, 55.553251] + [37.701122, 55.55379], + [37.701122, 55.55388], + [37.701212, 55.55388], + [37.701212, 55.55379], + [37.701122, 55.55379] ] ] } @@ -2344,11 +2344,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701729, 55.553341], - [37.701729, 55.553431], - [37.701888, 55.553431], - [37.701888, 55.553341], - [37.701729, 55.553341] + [37.701122, 55.55388], + [37.701122, 55.55397], + [37.701212, 55.55397], + [37.701212, 55.55388], + [37.701122, 55.55388] ] ] } @@ -2360,11 +2360,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701729, 55.553431], - [37.701729, 55.55352], - [37.701888, 55.55352], - [37.701888, 55.553431], - [37.701729, 55.553431] + [37.701122, 55.55397], + [37.701122, 55.55406], + [37.701212, 55.55406], + [37.701212, 55.55397], + [37.701122, 55.55397] ] ] } @@ -2376,11 +2376,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701729, 55.55352], - [37.701729, 55.55361], - [37.701888, 55.55361], - [37.701888, 55.55352], - [37.701729, 55.55352] + [37.701212, 55.552802], + [37.701212, 55.552892], + [37.701302, 55.552892], + [37.701302, 55.552802], + [37.701212, 55.552802] ] ] } @@ -2392,11 +2392,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701729, 55.55361], - [37.701729, 55.5537], - [37.701888, 55.5537], - [37.701888, 55.55361], - [37.701729, 55.55361] + [37.701212, 55.552892], + [37.701212, 55.552982], + [37.701302, 55.552982], + [37.701302, 55.552892], + [37.701212, 55.552892] ] ] } @@ -2408,11 +2408,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701729, 55.5537], - [37.701729, 55.55379], - [37.701888, 55.55379], - [37.701888, 55.5537], - [37.701729, 55.5537] + [37.701212, 55.552982], + [37.701212, 55.553072], + [37.701302, 55.553072], + [37.701302, 55.552982], + [37.701212, 55.552982] ] ] } @@ -2424,11 +2424,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701729, 55.55379], - [37.701729, 55.55388], - [37.701888, 55.55388], - [37.701888, 55.55379], - [37.701729, 55.55379] + [37.701212, 55.553072], + [37.701212, 55.553162], + [37.701302, 55.553162], + [37.701302, 55.553072], + [37.701212, 55.553072] ] ] } @@ -2440,11 +2440,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701729, 55.55388], - [37.701729, 55.55397], - [37.701888, 55.55397], - [37.701888, 55.55388], - [37.701729, 55.55388] + [37.701212, 55.553162], + [37.701212, 55.553251], + [37.701302, 55.553251], + [37.701302, 55.553162], + [37.701212, 55.553162] ] ] } @@ -2456,11 +2456,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701729, 55.55397], - [37.701729, 55.55406], - [37.701888, 55.55406], - [37.701888, 55.55397], - [37.701729, 55.55397] + [37.701212, 55.553251], + [37.701212, 55.553341], + [37.701302, 55.553341], + [37.701302, 55.553251], + [37.701212, 55.553251] ] ] } @@ -2472,11 +2472,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701729, 55.55406], - [37.701729, 55.55415], - [37.701888, 55.55415], - [37.701888, 55.55406], - [37.701729, 55.55406] + [37.701212, 55.553341], + [37.701212, 55.553431], + [37.701302, 55.553431], + [37.701302, 55.553341], + [37.701212, 55.553341] ] ] } @@ -2488,11 +2488,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701729, 55.55415], - [37.701729, 55.55424], - [37.701888, 55.55424], - [37.701888, 55.55415], - [37.701729, 55.55415] + [37.701212, 55.553431], + [37.701212, 55.553521], + [37.701302, 55.553521], + [37.701302, 55.553431], + [37.701212, 55.553431] ] ] } @@ -2504,11 +2504,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701729, 55.55424], - [37.701729, 55.55433], - [37.701888, 55.55433], - [37.701888, 55.55424], - [37.701729, 55.55424] + [37.701212, 55.553521], + [37.701212, 55.553611], + [37.701302, 55.553611], + [37.701302, 55.553521], + [37.701212, 55.553521] ] ] } @@ -2520,11 +2520,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701888, 55.552621], - [37.701888, 55.552711], - [37.702047, 55.552711], - [37.702047, 55.552621], - [37.701888, 55.552621] + [37.701212, 55.553611], + [37.701212, 55.5537], + [37.701302, 55.5537], + [37.701302, 55.553611], + [37.701212, 55.553611] ] ] } @@ -2536,11 +2536,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701888, 55.552711], - [37.701888, 55.552801], - [37.702047, 55.552801], - [37.702047, 55.552711], - [37.701888, 55.552711] + [37.701212, 55.5537], + [37.701212, 55.55379], + [37.701302, 55.55379], + [37.701302, 55.5537], + [37.701212, 55.5537] ] ] } @@ -2552,11 +2552,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701888, 55.552801], - [37.701888, 55.552891], - [37.702047, 55.552891], - [37.702047, 55.552801], - [37.701888, 55.552801] + [37.701212, 55.55379], + [37.701212, 55.55388], + [37.701302, 55.55388], + [37.701302, 55.55379], + [37.701212, 55.55379] ] ] } @@ -2568,11 +2568,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701888, 55.552891], - [37.701888, 55.552981], - [37.702047, 55.552981], - [37.702047, 55.552891], - [37.701888, 55.552891] + [37.701212, 55.55388], + [37.701212, 55.55397], + [37.701302, 55.55397], + [37.701302, 55.55388], + [37.701212, 55.55388] ] ] } @@ -2584,11 +2584,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701888, 55.552981], - [37.701888, 55.553071], - [37.702047, 55.553071], - [37.702047, 55.552981], - [37.701888, 55.552981] + [37.701212, 55.55397], + [37.701212, 55.55406], + [37.701302, 55.55406], + [37.701302, 55.55397], + [37.701212, 55.55397] ] ] } @@ -2600,11 +2600,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701888, 55.553071], - [37.701888, 55.553161], - [37.702047, 55.553161], - [37.702047, 55.553071], - [37.701888, 55.553071] + [37.701212, 55.55406], + [37.701212, 55.55415], + [37.701302, 55.55415], + [37.701302, 55.55406], + [37.701212, 55.55406] ] ] } @@ -2616,11 +2616,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701888, 55.553161], - [37.701888, 55.553251], - [37.702047, 55.553251], - [37.702047, 55.553161], - [37.701888, 55.553161] + [37.701302, 55.552802], + [37.701302, 55.552892], + [37.701392, 55.552892], + [37.701392, 55.552802], + [37.701302, 55.552802] ] ] } @@ -2632,11 +2632,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701888, 55.553251], - [37.701888, 55.553341], - [37.702047, 55.553341], - [37.702047, 55.553251], - [37.701888, 55.553251] + [37.701302, 55.552892], + [37.701302, 55.552982], + [37.701392, 55.552982], + [37.701392, 55.552892], + [37.701302, 55.552892] ] ] } @@ -2648,11 +2648,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701888, 55.553341], - [37.701888, 55.553431], - [37.702047, 55.553431], - [37.702047, 55.553341], - [37.701888, 55.553341] + [37.701302, 55.552982], + [37.701302, 55.553072], + [37.701392, 55.553072], + [37.701392, 55.552982], + [37.701302, 55.552982] ] ] } @@ -2664,11 +2664,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701888, 55.553431], - [37.701888, 55.55352], - [37.702047, 55.55352], - [37.702047, 55.553431], - [37.701888, 55.553431] + [37.701302, 55.553072], + [37.701302, 55.553162], + [37.701392, 55.553162], + [37.701392, 55.553072], + [37.701302, 55.553072] ] ] } @@ -2680,11 +2680,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701888, 55.55352], - [37.701888, 55.55361], - [37.702047, 55.55361], - [37.702047, 55.55352], - [37.701888, 55.55352] + [37.701302, 55.553162], + [37.701302, 55.553251], + [37.701392, 55.553251], + [37.701392, 55.553162], + [37.701302, 55.553162] ] ] } @@ -2696,11 +2696,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701888, 55.55361], - [37.701888, 55.5537], - [37.702047, 55.5537], - [37.702047, 55.55361], - [37.701888, 55.55361] + [37.701302, 55.553251], + [37.701302, 55.553341], + [37.701392, 55.553341], + [37.701392, 55.553251], + [37.701302, 55.553251] ] ] } @@ -2712,11 +2712,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701888, 55.5537], - [37.701888, 55.55379], - [37.702047, 55.55379], - [37.702047, 55.5537], - [37.701888, 55.5537] + [37.701302, 55.553341], + [37.701302, 55.553431], + [37.701392, 55.553431], + [37.701392, 55.553341], + [37.701302, 55.553341] ] ] } @@ -2728,11 +2728,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701888, 55.55379], - [37.701888, 55.55388], - [37.702047, 55.55388], - [37.702047, 55.55379], - [37.701888, 55.55379] + [37.701302, 55.553431], + [37.701302, 55.553521], + [37.701392, 55.553521], + [37.701392, 55.553431], + [37.701302, 55.553431] ] ] } @@ -2744,11 +2744,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701888, 55.55388], - [37.701888, 55.55397], - [37.702047, 55.55397], - [37.702047, 55.55388], - [37.701888, 55.55388] + [37.701302, 55.553521], + [37.701302, 55.553611], + [37.701392, 55.553611], + [37.701392, 55.553521], + [37.701302, 55.553521] ] ] } @@ -2760,11 +2760,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701888, 55.55397], - [37.701888, 55.55406], - [37.702047, 55.55406], - [37.702047, 55.55397], - [37.701888, 55.55397] + [37.701302, 55.553611], + [37.701302, 55.5537], + [37.701392, 55.5537], + [37.701392, 55.553611], + [37.701302, 55.553611] ] ] } @@ -2776,11 +2776,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701888, 55.55406], - [37.701888, 55.55415], - [37.702047, 55.55415], - [37.702047, 55.55406], - [37.701888, 55.55406] + [37.701302, 55.5537], + [37.701302, 55.55379], + [37.701392, 55.55379], + [37.701392, 55.5537], + [37.701302, 55.5537] ] ] } @@ -2792,11 +2792,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701888, 55.55415], - [37.701888, 55.55424], - [37.702047, 55.55424], - [37.702047, 55.55415], - [37.701888, 55.55415] + [37.701302, 55.55379], + [37.701302, 55.55388], + [37.701392, 55.55388], + [37.701392, 55.55379], + [37.701302, 55.55379] ] ] } @@ -2808,11 +2808,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701888, 55.55424], - [37.701888, 55.55433], - [37.702047, 55.55433], - [37.702047, 55.55424], - [37.701888, 55.55424] + [37.701302, 55.55388], + [37.701302, 55.55397], + [37.701392, 55.55397], + [37.701392, 55.55388], + [37.701302, 55.55388] ] ] } @@ -2824,11 +2824,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702047, 55.552621], - [37.702047, 55.552711], - [37.702206, 55.552711], - [37.702206, 55.552621], - [37.702047, 55.552621] + [37.701302, 55.55397], + [37.701302, 55.55406], + [37.701392, 55.55406], + [37.701392, 55.55397], + [37.701302, 55.55397] ] ] } @@ -2840,11 +2840,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702047, 55.552711], - [37.702047, 55.552801], - [37.702206, 55.552801], - [37.702206, 55.552711], - [37.702047, 55.552711] + [37.701302, 55.55406], + [37.701302, 55.55415], + [37.701392, 55.55415], + [37.701392, 55.55406], + [37.701302, 55.55406] ] ] } @@ -2856,11 +2856,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702047, 55.552801], - [37.702047, 55.552891], - [37.702206, 55.552891], - [37.702206, 55.552801], - [37.702047, 55.552801] + [37.701392, 55.552802], + [37.701392, 55.552892], + [37.701482, 55.552892], + [37.701482, 55.552802], + [37.701392, 55.552802] ] ] } @@ -2872,11 +2872,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702047, 55.552891], - [37.702047, 55.552981], - [37.702206, 55.552981], - [37.702206, 55.552891], - [37.702047, 55.552891] + [37.701392, 55.552892], + [37.701392, 55.552982], + [37.701482, 55.552982], + [37.701482, 55.552892], + [37.701392, 55.552892] ] ] } @@ -2888,11 +2888,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702047, 55.552981], - [37.702047, 55.553071], - [37.702206, 55.553071], - [37.702206, 55.552981], - [37.702047, 55.552981] + [37.701392, 55.552982], + [37.701392, 55.553072], + [37.701482, 55.553072], + [37.701482, 55.552982], + [37.701392, 55.552982] ] ] } @@ -2904,11 +2904,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702047, 55.553071], - [37.702047, 55.553161], - [37.702206, 55.553161], - [37.702206, 55.553071], - [37.702047, 55.553071] + [37.701392, 55.553072], + [37.701392, 55.553162], + [37.701482, 55.553162], + [37.701482, 55.553072], + [37.701392, 55.553072] ] ] } @@ -2920,11 +2920,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702047, 55.553161], - [37.702047, 55.553251], - [37.702206, 55.553251], - [37.702206, 55.553161], - [37.702047, 55.553161] + [37.701392, 55.553162], + [37.701392, 55.553251], + [37.701482, 55.553251], + [37.701482, 55.553162], + [37.701392, 55.553162] ] ] } @@ -2936,11 +2936,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702047, 55.553251], - [37.702047, 55.553341], - [37.702206, 55.553341], - [37.702206, 55.553251], - [37.702047, 55.553251] + [37.701392, 55.553251], + [37.701392, 55.553341], + [37.701482, 55.553341], + [37.701482, 55.553251], + [37.701392, 55.553251] ] ] } @@ -2952,11 +2952,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702047, 55.553341], - [37.702047, 55.553431], - [37.702206, 55.553431], - [37.702206, 55.553341], - [37.702047, 55.553341] + [37.701392, 55.553341], + [37.701392, 55.553431], + [37.701482, 55.553431], + [37.701482, 55.553341], + [37.701392, 55.553341] ] ] } @@ -2968,11 +2968,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702047, 55.553431], - [37.702047, 55.55352], - [37.702206, 55.55352], - [37.702206, 55.553431], - [37.702047, 55.553431] + [37.701392, 55.553431], + [37.701392, 55.553521], + [37.701482, 55.553521], + [37.701482, 55.553431], + [37.701392, 55.553431] ] ] } @@ -2984,11 +2984,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702047, 55.55352], - [37.702047, 55.55361], - [37.702206, 55.55361], - [37.702206, 55.55352], - [37.702047, 55.55352] + [37.701392, 55.553521], + [37.701392, 55.553611], + [37.701482, 55.553611], + [37.701482, 55.553521], + [37.701392, 55.553521] ] ] } @@ -3000,11 +3000,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702047, 55.55361], - [37.702047, 55.5537], - [37.702206, 55.5537], - [37.702206, 55.55361], - [37.702047, 55.55361] + [37.701392, 55.553611], + [37.701392, 55.5537], + [37.701482, 55.5537], + [37.701482, 55.553611], + [37.701392, 55.553611] ] ] } @@ -3016,11 +3016,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702047, 55.5537], - [37.702047, 55.55379], - [37.702206, 55.55379], - [37.702206, 55.5537], - [37.702047, 55.5537] + [37.701392, 55.5537], + [37.701392, 55.55379], + [37.701482, 55.55379], + [37.701482, 55.5537], + [37.701392, 55.5537] ] ] } @@ -3032,11 +3032,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702047, 55.55379], - [37.702047, 55.55388], - [37.702206, 55.55388], - [37.702206, 55.55379], - [37.702047, 55.55379] + [37.701392, 55.55379], + [37.701392, 55.55388], + [37.701482, 55.55388], + [37.701482, 55.55379], + [37.701392, 55.55379] ] ] } @@ -3048,11 +3048,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702047, 55.55388], - [37.702047, 55.55397], - [37.702206, 55.55397], - [37.702206, 55.55388], - [37.702047, 55.55388] + [37.701392, 55.55388], + [37.701392, 55.55397], + [37.701482, 55.55397], + [37.701482, 55.55388], + [37.701392, 55.55388] ] ] } @@ -3064,11 +3064,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702047, 55.55397], - [37.702047, 55.55406], - [37.702206, 55.55406], - [37.702206, 55.55397], - [37.702047, 55.55397] + [37.701392, 55.55397], + [37.701392, 55.55406], + [37.701482, 55.55406], + [37.701482, 55.55397], + [37.701392, 55.55397] ] ] } @@ -3080,11 +3080,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702047, 55.55406], - [37.702047, 55.55415], - [37.702206, 55.55415], - [37.702206, 55.55406], - [37.702047, 55.55406] + [37.701392, 55.55406], + [37.701392, 55.55415], + [37.701482, 55.55415], + [37.701482, 55.55406], + [37.701392, 55.55406] ] ] } @@ -3096,11 +3096,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702047, 55.55415], - [37.702047, 55.55424], - [37.702206, 55.55424], - [37.702206, 55.55415], - [37.702047, 55.55415] + [37.701482, 55.552802], + [37.701482, 55.552892], + [37.701571, 55.552892], + [37.701571, 55.552802], + [37.701482, 55.552802] ] ] } @@ -3112,11 +3112,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702047, 55.55424], - [37.702047, 55.55433], - [37.702206, 55.55433], - [37.702206, 55.55424], - [37.702047, 55.55424] + [37.701482, 55.552892], + [37.701482, 55.552982], + [37.701571, 55.552982], + [37.701571, 55.552892], + [37.701482, 55.552892] ] ] } @@ -3128,11 +3128,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702047, 55.55433], - [37.702047, 55.55442], - [37.702206, 55.55442], - [37.702206, 55.55433], - [37.702047, 55.55433] + [37.701482, 55.552982], + [37.701482, 55.553072], + [37.701571, 55.553072], + [37.701571, 55.552982], + [37.701482, 55.552982] ] ] } @@ -3144,11 +3144,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702206, 55.552531], - [37.702206, 55.552621], - [37.702365, 55.552621], - [37.702365, 55.552531], - [37.702206, 55.552531] + [37.701482, 55.553072], + [37.701482, 55.553162], + [37.701571, 55.553162], + [37.701571, 55.553072], + [37.701482, 55.553072] ] ] } @@ -3160,11 +3160,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702206, 55.552621], - [37.702206, 55.552711], - [37.702365, 55.552711], - [37.702365, 55.552621], - [37.702206, 55.552621] + [37.701482, 55.553162], + [37.701482, 55.553251], + [37.701571, 55.553251], + [37.701571, 55.553162], + [37.701482, 55.553162] ] ] } @@ -3176,11 +3176,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702206, 55.552711], - [37.702206, 55.552801], - [37.702365, 55.552801], - [37.702365, 55.552711], - [37.702206, 55.552711] + [37.701482, 55.553251], + [37.701482, 55.553341], + [37.701571, 55.553341], + [37.701571, 55.553251], + [37.701482, 55.553251] ] ] } @@ -3192,11 +3192,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702206, 55.552801], - [37.702206, 55.552891], - [37.702365, 55.552891], - [37.702365, 55.552801], - [37.702206, 55.552801] + [37.701482, 55.553341], + [37.701482, 55.553431], + [37.701571, 55.553431], + [37.701571, 55.553341], + [37.701482, 55.553341] ] ] } @@ -3208,11 +3208,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702206, 55.552891], - [37.702206, 55.552981], - [37.702365, 55.552981], - [37.702365, 55.552891], - [37.702206, 55.552891] + [37.701482, 55.553431], + [37.701482, 55.553521], + [37.701571, 55.553521], + [37.701571, 55.553431], + [37.701482, 55.553431] ] ] } @@ -3224,11 +3224,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702206, 55.552981], - [37.702206, 55.553071], - [37.702365, 55.553071], - [37.702365, 55.552981], - [37.702206, 55.552981] + [37.701482, 55.553521], + [37.701482, 55.553611], + [37.701571, 55.553611], + [37.701571, 55.553521], + [37.701482, 55.553521] ] ] } @@ -3240,11 +3240,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702206, 55.553071], - [37.702206, 55.553161], - [37.702365, 55.553161], - [37.702365, 55.553071], - [37.702206, 55.553071] + [37.701482, 55.553611], + [37.701482, 55.5537], + [37.701571, 55.5537], + [37.701571, 55.553611], + [37.701482, 55.553611] ] ] } @@ -3256,11 +3256,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702206, 55.553161], - [37.702206, 55.553251], - [37.702365, 55.553251], - [37.702365, 55.553161], - [37.702206, 55.553161] + [37.701482, 55.5537], + [37.701482, 55.55379], + [37.701571, 55.55379], + [37.701571, 55.5537], + [37.701482, 55.5537] ] ] } @@ -3272,11 +3272,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702206, 55.553251], - [37.702206, 55.553341], - [37.702365, 55.553341], - [37.702365, 55.553251], - [37.702206, 55.553251] + [37.701482, 55.55379], + [37.701482, 55.55388], + [37.701571, 55.55388], + [37.701571, 55.55379], + [37.701482, 55.55379] ] ] } @@ -3288,11 +3288,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702206, 55.553341], - [37.702206, 55.553431], - [37.702365, 55.553431], - [37.702365, 55.553341], - [37.702206, 55.553341] + [37.701482, 55.55388], + [37.701482, 55.55397], + [37.701571, 55.55397], + [37.701571, 55.55388], + [37.701482, 55.55388] ] ] } @@ -3304,11 +3304,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702206, 55.553431], - [37.702206, 55.55352], - [37.702365, 55.55352], - [37.702365, 55.553431], - [37.702206, 55.553431] + [37.701482, 55.55397], + [37.701482, 55.55406], + [37.701571, 55.55406], + [37.701571, 55.55397], + [37.701482, 55.55397] ] ] } @@ -3320,11 +3320,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702206, 55.55352], - [37.702206, 55.55361], - [37.702365, 55.55361], - [37.702365, 55.55352], - [37.702206, 55.55352] + [37.701482, 55.55406], + [37.701482, 55.55415], + [37.701571, 55.55415], + [37.701571, 55.55406], + [37.701482, 55.55406] ] ] } @@ -3336,11 +3336,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702206, 55.55361], - [37.702206, 55.5537], - [37.702365, 55.5537], - [37.702365, 55.55361], - [37.702206, 55.55361] + [37.701482, 55.55415], + [37.701482, 55.554239], + [37.701571, 55.554239], + [37.701571, 55.55415], + [37.701482, 55.55415] ] ] } @@ -3352,11 +3352,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702206, 55.5537], - [37.702206, 55.55379], - [37.702365, 55.55379], - [37.702365, 55.5537], - [37.702206, 55.5537] + [37.701571, 55.552712], + [37.701571, 55.552802], + [37.701661, 55.552802], + [37.701661, 55.552712], + [37.701571, 55.552712] ] ] } @@ -3368,11 +3368,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702206, 55.55379], - [37.702206, 55.55388], - [37.702365, 55.55388], - [37.702365, 55.55379], - [37.702206, 55.55379] + [37.701571, 55.552802], + [37.701571, 55.552892], + [37.701661, 55.552892], + [37.701661, 55.552802], + [37.701571, 55.552802] ] ] } @@ -3384,11 +3384,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702206, 55.55388], - [37.702206, 55.55397], - [37.702365, 55.55397], - [37.702365, 55.55388], - [37.702206, 55.55388] + [37.701571, 55.552892], + [37.701571, 55.552982], + [37.701661, 55.552982], + [37.701661, 55.552892], + [37.701571, 55.552892] ] ] } @@ -3400,11 +3400,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702206, 55.55397], - [37.702206, 55.55406], - [37.702365, 55.55406], - [37.702365, 55.55397], - [37.702206, 55.55397] + [37.701571, 55.552982], + [37.701571, 55.553072], + [37.701661, 55.553072], + [37.701661, 55.552982], + [37.701571, 55.552982] ] ] } @@ -3416,11 +3416,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702206, 55.55406], - [37.702206, 55.55415], - [37.702365, 55.55415], - [37.702365, 55.55406], - [37.702206, 55.55406] + [37.701571, 55.553072], + [37.701571, 55.553162], + [37.701661, 55.553162], + [37.701661, 55.553072], + [37.701571, 55.553072] ] ] } @@ -3432,11 +3432,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702206, 55.55415], - [37.702206, 55.55424], - [37.702365, 55.55424], - [37.702365, 55.55415], - [37.702206, 55.55415] + [37.701571, 55.553162], + [37.701571, 55.553251], + [37.701661, 55.553251], + [37.701661, 55.553162], + [37.701571, 55.553162] ] ] } @@ -3448,11 +3448,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702206, 55.55424], - [37.702206, 55.55433], - [37.702365, 55.55433], - [37.702365, 55.55424], - [37.702206, 55.55424] + [37.701571, 55.553251], + [37.701571, 55.553341], + [37.701661, 55.553341], + [37.701661, 55.553251], + [37.701571, 55.553251] ] ] } @@ -3464,11 +3464,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702206, 55.55433], - [37.702206, 55.55442], - [37.702365, 55.55442], - [37.702365, 55.55433], - [37.702206, 55.55433] + [37.701571, 55.553341], + [37.701571, 55.553431], + [37.701661, 55.553431], + [37.701661, 55.553341], + [37.701571, 55.553341] ] ] } @@ -3480,11 +3480,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702365, 55.552531], - [37.702365, 55.552621], - [37.702524, 55.552621], - [37.702524, 55.552531], - [37.702365, 55.552531] + [37.701571, 55.553431], + [37.701571, 55.553521], + [37.701661, 55.553521], + [37.701661, 55.553431], + [37.701571, 55.553431] ] ] } @@ -3496,11 +3496,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702365, 55.552621], - [37.702365, 55.552711], - [37.702524, 55.552711], - [37.702524, 55.552621], - [37.702365, 55.552621] + [37.701571, 55.553521], + [37.701571, 55.553611], + [37.701661, 55.553611], + [37.701661, 55.553521], + [37.701571, 55.553521] ] ] } @@ -3512,11 +3512,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702365, 55.552711], - [37.702365, 55.552801], - [37.702524, 55.552801], - [37.702524, 55.552711], - [37.702365, 55.552711] + [37.701571, 55.553611], + [37.701571, 55.5537], + [37.701661, 55.5537], + [37.701661, 55.553611], + [37.701571, 55.553611] ] ] } @@ -3528,11 +3528,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702365, 55.552801], - [37.702365, 55.552891], - [37.702524, 55.552891], - [37.702524, 55.552801], - [37.702365, 55.552801] + [37.701571, 55.5537], + [37.701571, 55.55379], + [37.701661, 55.55379], + [37.701661, 55.5537], + [37.701571, 55.5537] ] ] } @@ -3544,11 +3544,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702365, 55.552891], - [37.702365, 55.552981], - [37.702524, 55.552981], - [37.702524, 55.552891], - [37.702365, 55.552891] + [37.701571, 55.55379], + [37.701571, 55.55388], + [37.701661, 55.55388], + [37.701661, 55.55379], + [37.701571, 55.55379] ] ] } @@ -3560,11 +3560,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702365, 55.552981], - [37.702365, 55.553071], - [37.702524, 55.553071], - [37.702524, 55.552981], - [37.702365, 55.552981] + [37.701571, 55.55388], + [37.701571, 55.55397], + [37.701661, 55.55397], + [37.701661, 55.55388], + [37.701571, 55.55388] ] ] } @@ -3576,11 +3576,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702365, 55.553071], - [37.702365, 55.553161], - [37.702524, 55.553161], - [37.702524, 55.553071], - [37.702365, 55.553071] + [37.701571, 55.55397], + [37.701571, 55.55406], + [37.701661, 55.55406], + [37.701661, 55.55397], + [37.701571, 55.55397] ] ] } @@ -3592,11 +3592,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702365, 55.553161], - [37.702365, 55.553251], - [37.702524, 55.553251], - [37.702524, 55.553161], - [37.702365, 55.553161] + [37.701571, 55.55406], + [37.701571, 55.55415], + [37.701661, 55.55415], + [37.701661, 55.55406], + [37.701571, 55.55406] ] ] } @@ -3608,11 +3608,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702365, 55.553251], - [37.702365, 55.553341], - [37.702524, 55.553341], - [37.702524, 55.553251], - [37.702365, 55.553251] + [37.701571, 55.55415], + [37.701571, 55.554239], + [37.701661, 55.554239], + [37.701661, 55.55415], + [37.701571, 55.55415] ] ] } @@ -3624,11 +3624,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702365, 55.553341], - [37.702365, 55.553431], - [37.702524, 55.553431], - [37.702524, 55.553341], - [37.702365, 55.553341] + [37.701661, 55.552712], + [37.701661, 55.552802], + [37.701751, 55.552802], + [37.701751, 55.552712], + [37.701661, 55.552712] ] ] } @@ -3640,11 +3640,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702365, 55.553431], - [37.702365, 55.55352], - [37.702524, 55.55352], - [37.702524, 55.553431], - [37.702365, 55.553431] + [37.701661, 55.552802], + [37.701661, 55.552892], + [37.701751, 55.552892], + [37.701751, 55.552802], + [37.701661, 55.552802] ] ] } @@ -3656,11 +3656,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702365, 55.55352], - [37.702365, 55.55361], - [37.702524, 55.55361], - [37.702524, 55.55352], - [37.702365, 55.55352] + [37.701661, 55.552892], + [37.701661, 55.552982], + [37.701751, 55.552982], + [37.701751, 55.552892], + [37.701661, 55.552892] ] ] } @@ -3672,11 +3672,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702365, 55.55361], - [37.702365, 55.5537], - [37.702524, 55.5537], - [37.702524, 55.55361], - [37.702365, 55.55361] + [37.701661, 55.552982], + [37.701661, 55.553072], + [37.701751, 55.553072], + [37.701751, 55.552982], + [37.701661, 55.552982] ] ] } @@ -3688,11 +3688,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702365, 55.5537], - [37.702365, 55.55379], - [37.702524, 55.55379], - [37.702524, 55.5537], - [37.702365, 55.5537] + [37.701661, 55.553072], + [37.701661, 55.553162], + [37.701751, 55.553162], + [37.701751, 55.553072], + [37.701661, 55.553072] ] ] } @@ -3704,11 +3704,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702365, 55.55379], - [37.702365, 55.55388], - [37.702524, 55.55388], - [37.702524, 55.55379], - [37.702365, 55.55379] + [37.701661, 55.553162], + [37.701661, 55.553251], + [37.701751, 55.553251], + [37.701751, 55.553162], + [37.701661, 55.553162] ] ] } @@ -3720,11 +3720,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702365, 55.55388], - [37.702365, 55.55397], - [37.702524, 55.55397], - [37.702524, 55.55388], - [37.702365, 55.55388] + [37.701661, 55.553251], + [37.701661, 55.553341], + [37.701751, 55.553341], + [37.701751, 55.553251], + [37.701661, 55.553251] ] ] } @@ -3736,11 +3736,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702365, 55.55397], - [37.702365, 55.55406], - [37.702524, 55.55406], - [37.702524, 55.55397], - [37.702365, 55.55397] + [37.701661, 55.553341], + [37.701661, 55.553431], + [37.701751, 55.553431], + [37.701751, 55.553341], + [37.701661, 55.553341] ] ] } @@ -3752,11 +3752,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702365, 55.55406], - [37.702365, 55.55415], - [37.702524, 55.55415], - [37.702524, 55.55406], - [37.702365, 55.55406] + [37.701661, 55.553431], + [37.701661, 55.553521], + [37.701751, 55.553521], + [37.701751, 55.553431], + [37.701661, 55.553431] ] ] } @@ -3768,11 +3768,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702365, 55.55415], - [37.702365, 55.55424], - [37.702524, 55.55424], - [37.702524, 55.55415], - [37.702365, 55.55415] + [37.701661, 55.553521], + [37.701661, 55.553611], + [37.701751, 55.553611], + [37.701751, 55.553521], + [37.701661, 55.553521] ] ] } @@ -3784,11 +3784,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702365, 55.55424], - [37.702365, 55.55433], - [37.702524, 55.55433], - [37.702524, 55.55424], - [37.702365, 55.55424] + [37.701661, 55.553611], + [37.701661, 55.5537], + [37.701751, 55.5537], + [37.701751, 55.553611], + [37.701661, 55.553611] ] ] } @@ -3800,11 +3800,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702365, 55.55433], - [37.702365, 55.55442], - [37.702524, 55.55442], - [37.702524, 55.55433], - [37.702365, 55.55433] + [37.701661, 55.5537], + [37.701661, 55.55379], + [37.701751, 55.55379], + [37.701751, 55.5537], + [37.701661, 55.5537] ] ] } @@ -3816,11 +3816,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702365, 55.55442], - [37.702365, 55.55451], - [37.702524, 55.55451], - [37.702524, 55.55442], - [37.702365, 55.55442] + [37.701661, 55.55379], + [37.701661, 55.55388], + [37.701751, 55.55388], + [37.701751, 55.55379], + [37.701661, 55.55379] ] ] } @@ -3832,11 +3832,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702524, 55.552441], - [37.702524, 55.552531], - [37.702683, 55.552531], - [37.702683, 55.552441], - [37.702524, 55.552441] + [37.701661, 55.55388], + [37.701661, 55.55397], + [37.701751, 55.55397], + [37.701751, 55.55388], + [37.701661, 55.55388] ] ] } @@ -3848,11 +3848,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702524, 55.552531], - [37.702524, 55.552621], - [37.702683, 55.552621], - [37.702683, 55.552531], - [37.702524, 55.552531] + [37.701661, 55.55397], + [37.701661, 55.55406], + [37.701751, 55.55406], + [37.701751, 55.55397], + [37.701661, 55.55397] ] ] } @@ -3864,11 +3864,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702524, 55.552621], - [37.702524, 55.552711], - [37.702683, 55.552711], - [37.702683, 55.552621], - [37.702524, 55.552621] + [37.701661, 55.55406], + [37.701661, 55.55415], + [37.701751, 55.55415], + [37.701751, 55.55406], + [37.701661, 55.55406] ] ] } @@ -3880,11 +3880,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702524, 55.552711], - [37.702524, 55.552801], - [37.702683, 55.552801], - [37.702683, 55.552711], - [37.702524, 55.552711] + [37.701661, 55.55415], + [37.701661, 55.554239], + [37.701751, 55.554239], + [37.701751, 55.55415], + [37.701661, 55.55415] ] ] } @@ -3896,11 +3896,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702524, 55.552801], - [37.702524, 55.552891], - [37.702683, 55.552891], - [37.702683, 55.552801], - [37.702524, 55.552801] + [37.701751, 55.552712], + [37.701751, 55.552802], + [37.701841, 55.552802], + [37.701841, 55.552712], + [37.701751, 55.552712] ] ] } @@ -3912,11 +3912,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702524, 55.552891], - [37.702524, 55.552981], - [37.702683, 55.552981], - [37.702683, 55.552891], - [37.702524, 55.552891] + [37.701751, 55.552802], + [37.701751, 55.552892], + [37.701841, 55.552892], + [37.701841, 55.552802], + [37.701751, 55.552802] ] ] } @@ -3928,11 +3928,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702524, 55.552981], - [37.702524, 55.553071], - [37.702683, 55.553071], - [37.702683, 55.552981], - [37.702524, 55.552981] + [37.701751, 55.552892], + [37.701751, 55.552982], + [37.701841, 55.552982], + [37.701841, 55.552892], + [37.701751, 55.552892] ] ] } @@ -3944,11 +3944,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702524, 55.553071], - [37.702524, 55.553161], - [37.702683, 55.553161], - [37.702683, 55.553071], - [37.702524, 55.553071] + [37.701751, 55.552982], + [37.701751, 55.553072], + [37.701841, 55.553072], + [37.701841, 55.552982], + [37.701751, 55.552982] ] ] } @@ -3960,11 +3960,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702524, 55.553161], - [37.702524, 55.553251], - [37.702683, 55.553251], - [37.702683, 55.553161], - [37.702524, 55.553161] + [37.701751, 55.553072], + [37.701751, 55.553162], + [37.701841, 55.553162], + [37.701841, 55.553072], + [37.701751, 55.553072] ] ] } @@ -3976,11 +3976,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702524, 55.553251], - [37.702524, 55.553341], - [37.702683, 55.553341], - [37.702683, 55.553251], - [37.702524, 55.553251] + [37.701751, 55.553162], + [37.701751, 55.553251], + [37.701841, 55.553251], + [37.701841, 55.553162], + [37.701751, 55.553162] ] ] } @@ -3992,11 +3992,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702524, 55.553341], - [37.702524, 55.553431], - [37.702683, 55.553431], - [37.702683, 55.553341], - [37.702524, 55.553341] + [37.701751, 55.553251], + [37.701751, 55.553341], + [37.701841, 55.553341], + [37.701841, 55.553251], + [37.701751, 55.553251] ] ] } @@ -4008,11 +4008,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702524, 55.553431], - [37.702524, 55.55352], - [37.702683, 55.55352], - [37.702683, 55.553431], - [37.702524, 55.553431] + [37.701751, 55.553341], + [37.701751, 55.553431], + [37.701841, 55.553431], + [37.701841, 55.553341], + [37.701751, 55.553341] ] ] } @@ -4024,11 +4024,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702524, 55.55352], - [37.702524, 55.55361], - [37.702683, 55.55361], - [37.702683, 55.55352], - [37.702524, 55.55352] + [37.701751, 55.553431], + [37.701751, 55.553521], + [37.701841, 55.553521], + [37.701841, 55.553431], + [37.701751, 55.553431] ] ] } @@ -4040,11 +4040,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702524, 55.55361], - [37.702524, 55.5537], - [37.702683, 55.5537], - [37.702683, 55.55361], - [37.702524, 55.55361] + [37.701751, 55.553521], + [37.701751, 55.553611], + [37.701841, 55.553611], + [37.701841, 55.553521], + [37.701751, 55.553521] ] ] } @@ -4056,11 +4056,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702524, 55.5537], - [37.702524, 55.55379], - [37.702683, 55.55379], - [37.702683, 55.5537], - [37.702524, 55.5537] + [37.701751, 55.553611], + [37.701751, 55.5537], + [37.701841, 55.5537], + [37.701841, 55.553611], + [37.701751, 55.553611] ] ] } @@ -4072,11 +4072,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702524, 55.55379], - [37.702524, 55.55388], - [37.702683, 55.55388], - [37.702683, 55.55379], - [37.702524, 55.55379] + [37.701751, 55.5537], + [37.701751, 55.55379], + [37.701841, 55.55379], + [37.701841, 55.5537], + [37.701751, 55.5537] ] ] } @@ -4088,11 +4088,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702524, 55.55388], - [37.702524, 55.55397], - [37.702683, 55.55397], - [37.702683, 55.55388], - [37.702524, 55.55388] + [37.701751, 55.55379], + [37.701751, 55.55388], + [37.701841, 55.55388], + [37.701841, 55.55379], + [37.701751, 55.55379] ] ] } @@ -4104,11 +4104,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702524, 55.55397], - [37.702524, 55.55406], - [37.702683, 55.55406], - [37.702683, 55.55397], - [37.702524, 55.55397] + [37.701751, 55.55388], + [37.701751, 55.55397], + [37.701841, 55.55397], + [37.701841, 55.55388], + [37.701751, 55.55388] ] ] } @@ -4120,11 +4120,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702524, 55.55406], - [37.702524, 55.55415], - [37.702683, 55.55415], - [37.702683, 55.55406], - [37.702524, 55.55406] + [37.701751, 55.55397], + [37.701751, 55.55406], + [37.701841, 55.55406], + [37.701841, 55.55397], + [37.701751, 55.55397] ] ] } @@ -4136,11 +4136,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702524, 55.55415], - [37.702524, 55.55424], - [37.702683, 55.55424], - [37.702683, 55.55415], - [37.702524, 55.55415] + [37.701751, 55.55406], + [37.701751, 55.55415], + [37.701841, 55.55415], + [37.701841, 55.55406], + [37.701751, 55.55406] ] ] } @@ -4152,11 +4152,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702524, 55.55424], - [37.702524, 55.55433], - [37.702683, 55.55433], - [37.702683, 55.55424], - [37.702524, 55.55424] + [37.701751, 55.55415], + [37.701751, 55.554239], + [37.701841, 55.554239], + [37.701841, 55.55415], + [37.701751, 55.55415] ] ] } @@ -4168,11 +4168,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702524, 55.55433], - [37.702524, 55.55442], - [37.702683, 55.55442], - [37.702683, 55.55433], - [37.702524, 55.55433] + [37.701841, 55.552712], + [37.701841, 55.552802], + [37.701931, 55.552802], + [37.701931, 55.552712], + [37.701841, 55.552712] ] ] } @@ -4184,11 +4184,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702524, 55.55442], - [37.702524, 55.55451], - [37.702683, 55.55451], - [37.702683, 55.55442], - [37.702524, 55.55442] + [37.701841, 55.552802], + [37.701841, 55.552892], + [37.701931, 55.552892], + [37.701931, 55.552802], + [37.701841, 55.552802] ] ] } @@ -4200,11 +4200,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702683, 55.552441], - [37.702683, 55.552531], - [37.702842, 55.552531], - [37.702842, 55.552441], - [37.702683, 55.552441] + [37.701841, 55.552892], + [37.701841, 55.552982], + [37.701931, 55.552982], + [37.701931, 55.552892], + [37.701841, 55.552892] ] ] } @@ -4216,11 +4216,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702683, 55.552531], - [37.702683, 55.552621], - [37.702842, 55.552621], - [37.702842, 55.552531], - [37.702683, 55.552531] + [37.701841, 55.552982], + [37.701841, 55.553072], + [37.701931, 55.553072], + [37.701931, 55.552982], + [37.701841, 55.552982] ] ] } @@ -4232,11 +4232,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702683, 55.552621], - [37.702683, 55.552711], - [37.702842, 55.552711], - [37.702842, 55.552621], - [37.702683, 55.552621] + [37.701841, 55.553072], + [37.701841, 55.553162], + [37.701931, 55.553162], + [37.701931, 55.553072], + [37.701841, 55.553072] ] ] } @@ -4248,11 +4248,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702683, 55.552711], - [37.702683, 55.552801], - [37.702842, 55.552801], - [37.702842, 55.552711], - [37.702683, 55.552711] + [37.701841, 55.553162], + [37.701841, 55.553251], + [37.701931, 55.553251], + [37.701931, 55.553162], + [37.701841, 55.553162] ] ] } @@ -4264,11 +4264,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702683, 55.552801], - [37.702683, 55.552891], - [37.702842, 55.552891], - [37.702842, 55.552801], - [37.702683, 55.552801] + [37.701841, 55.553251], + [37.701841, 55.553341], + [37.701931, 55.553341], + [37.701931, 55.553251], + [37.701841, 55.553251] ] ] } @@ -4280,11 +4280,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702683, 55.552891], - [37.702683, 55.552981], - [37.702842, 55.552981], - [37.702842, 55.552891], - [37.702683, 55.552891] + [37.701841, 55.553341], + [37.701841, 55.553431], + [37.701931, 55.553431], + [37.701931, 55.553341], + [37.701841, 55.553341] ] ] } @@ -4296,11 +4296,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702683, 55.552981], - [37.702683, 55.553071], - [37.702842, 55.553071], - [37.702842, 55.552981], - [37.702683, 55.552981] + [37.701841, 55.553431], + [37.701841, 55.553521], + [37.701931, 55.553521], + [37.701931, 55.553431], + [37.701841, 55.553431] ] ] } @@ -4312,11 +4312,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702683, 55.553071], - [37.702683, 55.553161], - [37.702842, 55.553161], - [37.702842, 55.553071], - [37.702683, 55.553071] + [37.701841, 55.553521], + [37.701841, 55.553611], + [37.701931, 55.553611], + [37.701931, 55.553521], + [37.701841, 55.553521] ] ] } @@ -4328,11 +4328,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702683, 55.553161], - [37.702683, 55.553251], - [37.702842, 55.553251], - [37.702842, 55.553161], - [37.702683, 55.553161] + [37.701841, 55.553611], + [37.701841, 55.5537], + [37.701931, 55.5537], + [37.701931, 55.553611], + [37.701841, 55.553611] ] ] } @@ -4344,11 +4344,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702683, 55.553251], - [37.702683, 55.553341], - [37.702842, 55.553341], - [37.702842, 55.553251], - [37.702683, 55.553251] + [37.701841, 55.5537], + [37.701841, 55.55379], + [37.701931, 55.55379], + [37.701931, 55.5537], + [37.701841, 55.5537] ] ] } @@ -4360,11 +4360,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702683, 55.553341], - [37.702683, 55.553431], - [37.702842, 55.553431], - [37.702842, 55.553341], - [37.702683, 55.553341] + [37.701841, 55.55379], + [37.701841, 55.55388], + [37.701931, 55.55388], + [37.701931, 55.55379], + [37.701841, 55.55379] ] ] } @@ -4376,11 +4376,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702683, 55.553431], - [37.702683, 55.55352], - [37.702842, 55.55352], - [37.702842, 55.553431], - [37.702683, 55.553431] + [37.701841, 55.55388], + [37.701841, 55.55397], + [37.701931, 55.55397], + [37.701931, 55.55388], + [37.701841, 55.55388] ] ] } @@ -4392,11 +4392,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702683, 55.55352], - [37.702683, 55.55361], - [37.702842, 55.55361], - [37.702842, 55.55352], - [37.702683, 55.55352] + [37.701841, 55.55397], + [37.701841, 55.55406], + [37.701931, 55.55406], + [37.701931, 55.55397], + [37.701841, 55.55397] ] ] } @@ -4408,11 +4408,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702683, 55.55361], - [37.702683, 55.5537], - [37.702842, 55.5537], - [37.702842, 55.55361], - [37.702683, 55.55361] + [37.701841, 55.55406], + [37.701841, 55.55415], + [37.701931, 55.55415], + [37.701931, 55.55406], + [37.701841, 55.55406] ] ] } @@ -4424,11 +4424,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702683, 55.5537], - [37.702683, 55.55379], - [37.702842, 55.55379], - [37.702842, 55.5537], - [37.702683, 55.5537] + [37.701841, 55.55415], + [37.701841, 55.554239], + [37.701931, 55.554239], + [37.701931, 55.55415], + [37.701841, 55.55415] ] ] } @@ -4440,11 +4440,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702683, 55.55379], - [37.702683, 55.55388], - [37.702842, 55.55388], - [37.702842, 55.55379], - [37.702683, 55.55379] + [37.701841, 55.554239], + [37.701841, 55.554329], + [37.701931, 55.554329], + [37.701931, 55.554239], + [37.701841, 55.554239] ] ] } @@ -4456,11 +4456,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702683, 55.55388], - [37.702683, 55.55397], - [37.702842, 55.55397], - [37.702842, 55.55388], - [37.702683, 55.55388] + [37.701931, 55.552623], + [37.701931, 55.552712], + [37.702021, 55.552712], + [37.702021, 55.552623], + [37.701931, 55.552623] ] ] } @@ -4472,11 +4472,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702683, 55.55397], - [37.702683, 55.55406], - [37.702842, 55.55406], - [37.702842, 55.55397], - [37.702683, 55.55397] + [37.701931, 55.552712], + [37.701931, 55.552802], + [37.702021, 55.552802], + [37.702021, 55.552712], + [37.701931, 55.552712] ] ] } @@ -4488,11 +4488,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702683, 55.55406], - [37.702683, 55.55415], - [37.702842, 55.55415], - [37.702842, 55.55406], - [37.702683, 55.55406] + [37.701931, 55.552802], + [37.701931, 55.552892], + [37.702021, 55.552892], + [37.702021, 55.552802], + [37.701931, 55.552802] ] ] } @@ -4504,11 +4504,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702683, 55.55415], - [37.702683, 55.55424], - [37.702842, 55.55424], - [37.702842, 55.55415], - [37.702683, 55.55415] + [37.701931, 55.552892], + [37.701931, 55.552982], + [37.702021, 55.552982], + [37.702021, 55.552892], + [37.701931, 55.552892] ] ] } @@ -4520,11 +4520,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702683, 55.55424], - [37.702683, 55.55433], - [37.702842, 55.55433], - [37.702842, 55.55424], - [37.702683, 55.55424] + [37.701931, 55.552982], + [37.701931, 55.553072], + [37.702021, 55.553072], + [37.702021, 55.552982], + [37.701931, 55.552982] ] ] } @@ -4536,11 +4536,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702683, 55.55433], - [37.702683, 55.55442], - [37.702842, 55.55442], - [37.702842, 55.55433], - [37.702683, 55.55433] + [37.701931, 55.553072], + [37.701931, 55.553162], + [37.702021, 55.553162], + [37.702021, 55.553072], + [37.701931, 55.553072] ] ] } @@ -4552,11 +4552,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702683, 55.55442], - [37.702683, 55.55451], - [37.702842, 55.55451], - [37.702842, 55.55442], - [37.702683, 55.55442] + [37.701931, 55.553162], + [37.701931, 55.553251], + [37.702021, 55.553251], + [37.702021, 55.553162], + [37.701931, 55.553162] ] ] } @@ -4568,11 +4568,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702842, 55.552351], - [37.702842, 55.552441], - [37.703001, 55.552441], - [37.703001, 55.552351], - [37.702842, 55.552351] + [37.701931, 55.553251], + [37.701931, 55.553341], + [37.702021, 55.553341], + [37.702021, 55.553251], + [37.701931, 55.553251] ] ] } @@ -4584,11 +4584,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702842, 55.552441], - [37.702842, 55.552531], - [37.703001, 55.552531], - [37.703001, 55.552441], - [37.702842, 55.552441] + [37.701931, 55.553341], + [37.701931, 55.553431], + [37.702021, 55.553431], + [37.702021, 55.553341], + [37.701931, 55.553341] ] ] } @@ -4600,11 +4600,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702842, 55.552531], - [37.702842, 55.552621], - [37.703001, 55.552621], - [37.703001, 55.552531], - [37.702842, 55.552531] + [37.701931, 55.553431], + [37.701931, 55.553521], + [37.702021, 55.553521], + [37.702021, 55.553431], + [37.701931, 55.553431] ] ] } @@ -4616,11 +4616,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702842, 55.552621], - [37.702842, 55.552711], - [37.703001, 55.552711], - [37.703001, 55.552621], - [37.702842, 55.552621] + [37.701931, 55.553521], + [37.701931, 55.553611], + [37.702021, 55.553611], + [37.702021, 55.553521], + [37.701931, 55.553521] ] ] } @@ -4632,11 +4632,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702842, 55.552711], - [37.702842, 55.552801], - [37.703001, 55.552801], - [37.703001, 55.552711], - [37.702842, 55.552711] + [37.701931, 55.553611], + [37.701931, 55.5537], + [37.702021, 55.5537], + [37.702021, 55.553611], + [37.701931, 55.553611] ] ] } @@ -4648,11 +4648,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702842, 55.552801], - [37.702842, 55.552891], - [37.703001, 55.552891], - [37.703001, 55.552801], - [37.702842, 55.552801] + [37.701931, 55.5537], + [37.701931, 55.55379], + [37.702021, 55.55379], + [37.702021, 55.5537], + [37.701931, 55.5537] ] ] } @@ -4664,11 +4664,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702842, 55.552891], - [37.702842, 55.552981], - [37.703001, 55.552981], - [37.703001, 55.552891], - [37.702842, 55.552891] + [37.701931, 55.55379], + [37.701931, 55.55388], + [37.702021, 55.55388], + [37.702021, 55.55379], + [37.701931, 55.55379] ] ] } @@ -4680,11 +4680,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702842, 55.552981], - [37.702842, 55.553071], - [37.703001, 55.553071], - [37.703001, 55.552981], - [37.702842, 55.552981] + [37.701931, 55.55388], + [37.701931, 55.55397], + [37.702021, 55.55397], + [37.702021, 55.55388], + [37.701931, 55.55388] ] ] } @@ -4696,11 +4696,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702842, 55.553071], - [37.702842, 55.553161], - [37.703001, 55.553161], - [37.703001, 55.553071], - [37.702842, 55.553071] + [37.701931, 55.55397], + [37.701931, 55.55406], + [37.702021, 55.55406], + [37.702021, 55.55397], + [37.701931, 55.55397] ] ] } @@ -4712,11 +4712,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702842, 55.553161], - [37.702842, 55.553251], - [37.703001, 55.553251], - [37.703001, 55.553161], - [37.702842, 55.553161] + [37.701931, 55.55406], + [37.701931, 55.55415], + [37.702021, 55.55415], + [37.702021, 55.55406], + [37.701931, 55.55406] ] ] } @@ -4728,11 +4728,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702842, 55.553251], - [37.702842, 55.553341], - [37.703001, 55.553341], - [37.703001, 55.553251], - [37.702842, 55.553251] + [37.701931, 55.55415], + [37.701931, 55.554239], + [37.702021, 55.554239], + [37.702021, 55.55415], + [37.701931, 55.55415] ] ] } @@ -4744,11 +4744,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702842, 55.553341], - [37.702842, 55.553431], - [37.703001, 55.553431], - [37.703001, 55.553341], - [37.702842, 55.553341] + [37.701931, 55.554239], + [37.701931, 55.554329], + [37.702021, 55.554329], + [37.702021, 55.554239], + [37.701931, 55.554239] ] ] } @@ -4760,11 +4760,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702842, 55.553431], - [37.702842, 55.55352], - [37.703001, 55.55352], - [37.703001, 55.553431], - [37.702842, 55.553431] + [37.702021, 55.552623], + [37.702021, 55.552712], + [37.70211, 55.552712], + [37.70211, 55.552623], + [37.702021, 55.552623] ] ] } @@ -4776,11 +4776,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702842, 55.55352], - [37.702842, 55.55361], - [37.703001, 55.55361], - [37.703001, 55.55352], - [37.702842, 55.55352] + [37.702021, 55.552712], + [37.702021, 55.552802], + [37.70211, 55.552802], + [37.70211, 55.552712], + [37.702021, 55.552712] ] ] } @@ -4792,11 +4792,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702842, 55.55361], - [37.702842, 55.5537], - [37.703001, 55.5537], - [37.703001, 55.55361], - [37.702842, 55.55361] + [37.702021, 55.552802], + [37.702021, 55.552892], + [37.70211, 55.552892], + [37.70211, 55.552802], + [37.702021, 55.552802] ] ] } @@ -4808,11 +4808,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702842, 55.5537], - [37.702842, 55.55379], - [37.703001, 55.55379], - [37.703001, 55.5537], - [37.702842, 55.5537] + [37.702021, 55.552892], + [37.702021, 55.552982], + [37.70211, 55.552982], + [37.70211, 55.552892], + [37.702021, 55.552892] ] ] } @@ -4824,11 +4824,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702842, 55.55379], - [37.702842, 55.55388], - [37.703001, 55.55388], - [37.703001, 55.55379], - [37.702842, 55.55379] + [37.702021, 55.552982], + [37.702021, 55.553072], + [37.70211, 55.553072], + [37.70211, 55.552982], + [37.702021, 55.552982] ] ] } @@ -4840,11 +4840,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702842, 55.55388], - [37.702842, 55.55397], - [37.703001, 55.55397], - [37.703001, 55.55388], - [37.702842, 55.55388] + [37.702021, 55.553072], + [37.702021, 55.553162], + [37.70211, 55.553162], + [37.70211, 55.553072], + [37.702021, 55.553072] ] ] } @@ -4856,11 +4856,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702842, 55.55397], - [37.702842, 55.55406], - [37.703001, 55.55406], - [37.703001, 55.55397], - [37.702842, 55.55397] + [37.702021, 55.553162], + [37.702021, 55.553251], + [37.70211, 55.553251], + [37.70211, 55.553162], + [37.702021, 55.553162] ] ] } @@ -4872,11 +4872,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702842, 55.55406], - [37.702842, 55.55415], - [37.703001, 55.55415], - [37.703001, 55.55406], - [37.702842, 55.55406] + [37.702021, 55.553251], + [37.702021, 55.553341], + [37.70211, 55.553341], + [37.70211, 55.553251], + [37.702021, 55.553251] ] ] } @@ -4888,11 +4888,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702842, 55.55415], - [37.702842, 55.55424], - [37.703001, 55.55424], - [37.703001, 55.55415], - [37.702842, 55.55415] + [37.702021, 55.553341], + [37.702021, 55.553431], + [37.70211, 55.553431], + [37.70211, 55.553341], + [37.702021, 55.553341] ] ] } @@ -4904,11 +4904,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702842, 55.55424], - [37.702842, 55.55433], - [37.703001, 55.55433], - [37.703001, 55.55424], - [37.702842, 55.55424] + [37.702021, 55.553431], + [37.702021, 55.553521], + [37.70211, 55.553521], + [37.70211, 55.553431], + [37.702021, 55.553431] ] ] } @@ -4920,11 +4920,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702842, 55.55433], - [37.702842, 55.55442], - [37.703001, 55.55442], - [37.703001, 55.55433], - [37.702842, 55.55433] + [37.702021, 55.553521], + [37.702021, 55.553611], + [37.70211, 55.553611], + [37.70211, 55.553521], + [37.702021, 55.553521] ] ] } @@ -4936,11 +4936,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702842, 55.55442], - [37.702842, 55.55451], - [37.703001, 55.55451], - [37.703001, 55.55442], - [37.702842, 55.55442] + [37.702021, 55.553611], + [37.702021, 55.5537], + [37.70211, 55.5537], + [37.70211, 55.553611], + [37.702021, 55.553611] ] ] } @@ -4952,11 +4952,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702842, 55.55451], - [37.702842, 55.5546], - [37.703001, 55.5546], - [37.703001, 55.55451], - [37.702842, 55.55451] + [37.702021, 55.5537], + [37.702021, 55.55379], + [37.70211, 55.55379], + [37.70211, 55.5537], + [37.702021, 55.5537] ] ] } @@ -4968,11 +4968,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703001, 55.552351], - [37.703001, 55.552441], - [37.70316, 55.552441], - [37.70316, 55.552351], - [37.703001, 55.552351] + [37.702021, 55.55379], + [37.702021, 55.55388], + [37.70211, 55.55388], + [37.70211, 55.55379], + [37.702021, 55.55379] ] ] } @@ -4984,11 +4984,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703001, 55.552441], - [37.703001, 55.552531], - [37.70316, 55.552531], - [37.70316, 55.552441], - [37.703001, 55.552441] + [37.702021, 55.55388], + [37.702021, 55.55397], + [37.70211, 55.55397], + [37.70211, 55.55388], + [37.702021, 55.55388] ] ] } @@ -5000,11 +5000,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703001, 55.552531], - [37.703001, 55.552621], - [37.70316, 55.552621], - [37.70316, 55.552531], - [37.703001, 55.552531] + [37.702021, 55.55397], + [37.702021, 55.55406], + [37.70211, 55.55406], + [37.70211, 55.55397], + [37.702021, 55.55397] ] ] } @@ -5016,11 +5016,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703001, 55.552621], - [37.703001, 55.552711], - [37.70316, 55.552711], - [37.70316, 55.552621], - [37.703001, 55.552621] + [37.702021, 55.55406], + [37.702021, 55.55415], + [37.70211, 55.55415], + [37.70211, 55.55406], + [37.702021, 55.55406] ] ] } @@ -5032,11 +5032,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703001, 55.552711], - [37.703001, 55.552801], - [37.70316, 55.552801], - [37.70316, 55.552711], - [37.703001, 55.552711] + [37.702021, 55.55415], + [37.702021, 55.554239], + [37.70211, 55.554239], + [37.70211, 55.55415], + [37.702021, 55.55415] ] ] } @@ -5048,11 +5048,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703001, 55.552801], - [37.703001, 55.552891], - [37.70316, 55.552891], - [37.70316, 55.552801], - [37.703001, 55.552801] + [37.702021, 55.554239], + [37.702021, 55.554329], + [37.70211, 55.554329], + [37.70211, 55.554239], + [37.702021, 55.554239] ] ] } @@ -5064,11 +5064,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703001, 55.552891], - [37.703001, 55.552981], - [37.70316, 55.552981], - [37.70316, 55.552891], - [37.703001, 55.552891] + [37.70211, 55.552623], + [37.70211, 55.552712], + [37.7022, 55.552712], + [37.7022, 55.552623], + [37.70211, 55.552623] ] ] } @@ -5080,11 +5080,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703001, 55.552981], - [37.703001, 55.553071], - [37.70316, 55.553071], - [37.70316, 55.552981], - [37.703001, 55.552981] + [37.70211, 55.552712], + [37.70211, 55.552802], + [37.7022, 55.552802], + [37.7022, 55.552712], + [37.70211, 55.552712] ] ] } @@ -5096,11 +5096,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703001, 55.553071], - [37.703001, 55.553161], - [37.70316, 55.553161], - [37.70316, 55.553071], - [37.703001, 55.553071] + [37.70211, 55.552802], + [37.70211, 55.552892], + [37.7022, 55.552892], + [37.7022, 55.552802], + [37.70211, 55.552802] ] ] } @@ -5112,11 +5112,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703001, 55.553161], - [37.703001, 55.553251], - [37.70316, 55.553251], - [37.70316, 55.553161], - [37.703001, 55.553161] + [37.70211, 55.552892], + [37.70211, 55.552982], + [37.7022, 55.552982], + [37.7022, 55.552892], + [37.70211, 55.552892] ] ] } @@ -5128,11 +5128,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703001, 55.553251], - [37.703001, 55.553341], - [37.70316, 55.553341], - [37.70316, 55.553251], - [37.703001, 55.553251] + [37.70211, 55.552982], + [37.70211, 55.553072], + [37.7022, 55.553072], + [37.7022, 55.552982], + [37.70211, 55.552982] ] ] } @@ -5144,11 +5144,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703001, 55.553341], - [37.703001, 55.553431], - [37.70316, 55.553431], - [37.70316, 55.553341], - [37.703001, 55.553341] + [37.70211, 55.553072], + [37.70211, 55.553162], + [37.7022, 55.553162], + [37.7022, 55.553072], + [37.70211, 55.553072] ] ] } @@ -5160,11 +5160,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703001, 55.553431], - [37.703001, 55.55352], - [37.70316, 55.55352], - [37.70316, 55.553431], - [37.703001, 55.553431] + [37.70211, 55.553162], + [37.70211, 55.553251], + [37.7022, 55.553251], + [37.7022, 55.553162], + [37.70211, 55.553162] ] ] } @@ -5176,11 +5176,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703001, 55.55352], - [37.703001, 55.55361], - [37.70316, 55.55361], - [37.70316, 55.55352], - [37.703001, 55.55352] + [37.70211, 55.553251], + [37.70211, 55.553341], + [37.7022, 55.553341], + [37.7022, 55.553251], + [37.70211, 55.553251] ] ] } @@ -5192,11 +5192,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703001, 55.55361], - [37.703001, 55.5537], - [37.70316, 55.5537], - [37.70316, 55.55361], - [37.703001, 55.55361] + [37.70211, 55.553341], + [37.70211, 55.553431], + [37.7022, 55.553431], + [37.7022, 55.553341], + [37.70211, 55.553341] ] ] } @@ -5208,11 +5208,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703001, 55.5537], - [37.703001, 55.55379], - [37.70316, 55.55379], - [37.70316, 55.5537], - [37.703001, 55.5537] + [37.70211, 55.553431], + [37.70211, 55.553521], + [37.7022, 55.553521], + [37.7022, 55.553431], + [37.70211, 55.553431] ] ] } @@ -5224,11 +5224,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703001, 55.55379], - [37.703001, 55.55388], - [37.70316, 55.55388], - [37.70316, 55.55379], - [37.703001, 55.55379] + [37.70211, 55.553521], + [37.70211, 55.553611], + [37.7022, 55.553611], + [37.7022, 55.553521], + [37.70211, 55.553521] ] ] } @@ -5240,11 +5240,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703001, 55.55388], - [37.703001, 55.55397], - [37.70316, 55.55397], - [37.70316, 55.55388], - [37.703001, 55.55388] + [37.70211, 55.553611], + [37.70211, 55.5537], + [37.7022, 55.5537], + [37.7022, 55.553611], + [37.70211, 55.553611] ] ] } @@ -5256,11 +5256,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703001, 55.55397], - [37.703001, 55.55406], - [37.70316, 55.55406], - [37.70316, 55.55397], - [37.703001, 55.55397] + [37.70211, 55.5537], + [37.70211, 55.55379], + [37.7022, 55.55379], + [37.7022, 55.5537], + [37.70211, 55.5537] ] ] } @@ -5272,11 +5272,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703001, 55.55406], - [37.703001, 55.55415], - [37.70316, 55.55415], - [37.70316, 55.55406], - [37.703001, 55.55406] + [37.70211, 55.55379], + [37.70211, 55.55388], + [37.7022, 55.55388], + [37.7022, 55.55379], + [37.70211, 55.55379] ] ] } @@ -5288,11 +5288,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703001, 55.55415], - [37.703001, 55.55424], - [37.70316, 55.55424], - [37.70316, 55.55415], - [37.703001, 55.55415] + [37.70211, 55.55388], + [37.70211, 55.55397], + [37.7022, 55.55397], + [37.7022, 55.55388], + [37.70211, 55.55388] ] ] } @@ -5304,11 +5304,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703001, 55.55424], - [37.703001, 55.55433], - [37.70316, 55.55433], - [37.70316, 55.55424], - [37.703001, 55.55424] + [37.70211, 55.55397], + [37.70211, 55.55406], + [37.7022, 55.55406], + [37.7022, 55.55397], + [37.70211, 55.55397] ] ] } @@ -5320,11 +5320,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703001, 55.55433], - [37.703001, 55.55442], - [37.70316, 55.55442], - [37.70316, 55.55433], - [37.703001, 55.55433] + [37.70211, 55.55406], + [37.70211, 55.55415], + [37.7022, 55.55415], + [37.7022, 55.55406], + [37.70211, 55.55406] ] ] } @@ -5336,11 +5336,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703001, 55.55442], - [37.703001, 55.55451], - [37.70316, 55.55451], - [37.70316, 55.55442], - [37.703001, 55.55442] + [37.70211, 55.55415], + [37.70211, 55.554239], + [37.7022, 55.554239], + [37.7022, 55.55415], + [37.70211, 55.55415] ] ] } @@ -5352,11 +5352,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703001, 55.55451], - [37.703001, 55.5546], - [37.70316, 55.5546], - [37.70316, 55.55451], - [37.703001, 55.55451] + [37.70211, 55.554239], + [37.70211, 55.554329], + [37.7022, 55.554329], + [37.7022, 55.554239], + [37.70211, 55.554239] ] ] } @@ -5368,11 +5368,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70316, 55.552351], - [37.70316, 55.552441], - [37.703319, 55.552441], - [37.703319, 55.552351], - [37.70316, 55.552351] + [37.70211, 55.554329], + [37.70211, 55.554419], + [37.7022, 55.554419], + [37.7022, 55.554329], + [37.70211, 55.554329] ] ] } @@ -5384,11 +5384,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70316, 55.552441], - [37.70316, 55.552531], - [37.703319, 55.552531], - [37.703319, 55.552441], - [37.70316, 55.552441] + [37.7022, 55.552623], + [37.7022, 55.552712], + [37.70229, 55.552712], + [37.70229, 55.552623], + [37.7022, 55.552623] ] ] } @@ -5400,11 +5400,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70316, 55.552531], - [37.70316, 55.552621], - [37.703319, 55.552621], - [37.703319, 55.552531], - [37.70316, 55.552531] + [37.7022, 55.552712], + [37.7022, 55.552802], + [37.70229, 55.552802], + [37.70229, 55.552712], + [37.7022, 55.552712] ] ] } @@ -5416,11 +5416,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70316, 55.552621], - [37.70316, 55.552711], - [37.703319, 55.552711], - [37.703319, 55.552621], - [37.70316, 55.552621] + [37.7022, 55.552802], + [37.7022, 55.552892], + [37.70229, 55.552892], + [37.70229, 55.552802], + [37.7022, 55.552802] ] ] } @@ -5432,11 +5432,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70316, 55.552711], - [37.70316, 55.552801], - [37.703319, 55.552801], - [37.703319, 55.552711], - [37.70316, 55.552711] + [37.7022, 55.552892], + [37.7022, 55.552982], + [37.70229, 55.552982], + [37.70229, 55.552892], + [37.7022, 55.552892] ] ] } @@ -5448,11 +5448,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70316, 55.552801], - [37.70316, 55.552891], - [37.703319, 55.552891], - [37.703319, 55.552801], - [37.70316, 55.552801] + [37.7022, 55.552982], + [37.7022, 55.553072], + [37.70229, 55.553072], + [37.70229, 55.552982], + [37.7022, 55.552982] ] ] } @@ -5464,11 +5464,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70316, 55.552891], - [37.70316, 55.552981], - [37.703319, 55.552981], - [37.703319, 55.552891], - [37.70316, 55.552891] + [37.7022, 55.553072], + [37.7022, 55.553162], + [37.70229, 55.553162], + [37.70229, 55.553072], + [37.7022, 55.553072] ] ] } @@ -5480,11 +5480,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70316, 55.552981], - [37.70316, 55.553071], - [37.703319, 55.553071], - [37.703319, 55.552981], - [37.70316, 55.552981] + [37.7022, 55.553162], + [37.7022, 55.553251], + [37.70229, 55.553251], + [37.70229, 55.553162], + [37.7022, 55.553162] ] ] } @@ -5496,11 +5496,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70316, 55.553071], - [37.70316, 55.553161], - [37.703319, 55.553161], - [37.703319, 55.553071], - [37.70316, 55.553071] + [37.7022, 55.553251], + [37.7022, 55.553341], + [37.70229, 55.553341], + [37.70229, 55.553251], + [37.7022, 55.553251] ] ] } @@ -5512,11 +5512,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70316, 55.553161], - [37.70316, 55.553251], - [37.703319, 55.553251], - [37.703319, 55.553161], - [37.70316, 55.553161] + [37.7022, 55.553341], + [37.7022, 55.553431], + [37.70229, 55.553431], + [37.70229, 55.553341], + [37.7022, 55.553341] ] ] } @@ -5528,11 +5528,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70316, 55.553251], - [37.70316, 55.553341], - [37.703319, 55.553341], - [37.703319, 55.553251], - [37.70316, 55.553251] + [37.7022, 55.553431], + [37.7022, 55.553521], + [37.70229, 55.553521], + [37.70229, 55.553431], + [37.7022, 55.553431] ] ] } @@ -5544,11 +5544,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70316, 55.553341], - [37.70316, 55.553431], - [37.703319, 55.553431], - [37.703319, 55.553341], - [37.70316, 55.553341] + [37.7022, 55.553521], + [37.7022, 55.553611], + [37.70229, 55.553611], + [37.70229, 55.553521], + [37.7022, 55.553521] ] ] } @@ -5560,11 +5560,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70316, 55.553431], - [37.70316, 55.55352], - [37.703319, 55.55352], - [37.703319, 55.553431], - [37.70316, 55.553431] + [37.7022, 55.553611], + [37.7022, 55.5537], + [37.70229, 55.5537], + [37.70229, 55.553611], + [37.7022, 55.553611] ] ] } @@ -5576,11 +5576,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70316, 55.55352], - [37.70316, 55.55361], - [37.703319, 55.55361], - [37.703319, 55.55352], - [37.70316, 55.55352] + [37.7022, 55.5537], + [37.7022, 55.55379], + [37.70229, 55.55379], + [37.70229, 55.5537], + [37.7022, 55.5537] ] ] } @@ -5592,11 +5592,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70316, 55.55361], - [37.70316, 55.5537], - [37.703319, 55.5537], - [37.703319, 55.55361], - [37.70316, 55.55361] + [37.7022, 55.55379], + [37.7022, 55.55388], + [37.70229, 55.55388], + [37.70229, 55.55379], + [37.7022, 55.55379] ] ] } @@ -5608,11 +5608,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70316, 55.5537], - [37.70316, 55.55379], - [37.703319, 55.55379], - [37.703319, 55.5537], - [37.70316, 55.5537] + [37.7022, 55.55388], + [37.7022, 55.55397], + [37.70229, 55.55397], + [37.70229, 55.55388], + [37.7022, 55.55388] ] ] } @@ -5624,11 +5624,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70316, 55.55379], - [37.70316, 55.55388], - [37.703319, 55.55388], - [37.703319, 55.55379], - [37.70316, 55.55379] + [37.7022, 55.55397], + [37.7022, 55.55406], + [37.70229, 55.55406], + [37.70229, 55.55397], + [37.7022, 55.55397] ] ] } @@ -5640,11 +5640,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70316, 55.55388], - [37.70316, 55.55397], - [37.703319, 55.55397], - [37.703319, 55.55388], - [37.70316, 55.55388] + [37.7022, 55.55406], + [37.7022, 55.55415], + [37.70229, 55.55415], + [37.70229, 55.55406], + [37.7022, 55.55406] ] ] } @@ -5656,11 +5656,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70316, 55.55397], - [37.70316, 55.55406], - [37.703319, 55.55406], - [37.703319, 55.55397], - [37.70316, 55.55397] + [37.7022, 55.55415], + [37.7022, 55.554239], + [37.70229, 55.554239], + [37.70229, 55.55415], + [37.7022, 55.55415] ] ] } @@ -5672,11 +5672,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70316, 55.55406], - [37.70316, 55.55415], - [37.703319, 55.55415], - [37.703319, 55.55406], - [37.70316, 55.55406] + [37.7022, 55.554239], + [37.7022, 55.554329], + [37.70229, 55.554329], + [37.70229, 55.554239], + [37.7022, 55.554239] ] ] } @@ -5688,11 +5688,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70316, 55.55415], - [37.70316, 55.55424], - [37.703319, 55.55424], - [37.703319, 55.55415], - [37.70316, 55.55415] + [37.7022, 55.554329], + [37.7022, 55.554419], + [37.70229, 55.554419], + [37.70229, 55.554329], + [37.7022, 55.554329] ] ] } @@ -5704,11 +5704,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70316, 55.55424], - [37.70316, 55.55433], - [37.703319, 55.55433], - [37.703319, 55.55424], - [37.70316, 55.55424] + [37.70229, 55.552533], + [37.70229, 55.552623], + [37.70238, 55.552623], + [37.70238, 55.552533], + [37.70229, 55.552533] ] ] } @@ -5720,11 +5720,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70316, 55.55433], - [37.70316, 55.55442], - [37.703319, 55.55442], - [37.703319, 55.55433], - [37.70316, 55.55433] + [37.70229, 55.552623], + [37.70229, 55.552712], + [37.70238, 55.552712], + [37.70238, 55.552623], + [37.70229, 55.552623] ] ] } @@ -5736,11 +5736,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70316, 55.55442], - [37.70316, 55.55451], - [37.703319, 55.55451], - [37.703319, 55.55442], - [37.70316, 55.55442] + [37.70229, 55.552712], + [37.70229, 55.552802], + [37.70238, 55.552802], + [37.70238, 55.552712], + [37.70229, 55.552712] ] ] } @@ -5752,11 +5752,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70316, 55.55451], - [37.70316, 55.5546], - [37.703319, 55.5546], - [37.703319, 55.55451], - [37.70316, 55.55451] + [37.70229, 55.552802], + [37.70229, 55.552892], + [37.70238, 55.552892], + [37.70238, 55.552802], + [37.70229, 55.552802] ] ] } @@ -5768,11 +5768,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70316, 55.5546], - [37.70316, 55.55469], - [37.703319, 55.55469], - [37.703319, 55.5546], - [37.70316, 55.5546] + [37.70229, 55.552892], + [37.70229, 55.552982], + [37.70238, 55.552982], + [37.70238, 55.552892], + [37.70229, 55.552892] ] ] } @@ -5784,11 +5784,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703319, 55.552261], - [37.703319, 55.552351], - [37.703478, 55.552351], - [37.703478, 55.552261], - [37.703319, 55.552261] + [37.70229, 55.552982], + [37.70229, 55.553072], + [37.70238, 55.553072], + [37.70238, 55.552982], + [37.70229, 55.552982] ] ] } @@ -5800,11 +5800,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703319, 55.552351], - [37.703319, 55.552441], - [37.703478, 55.552441], - [37.703478, 55.552351], - [37.703319, 55.552351] + [37.70229, 55.553072], + [37.70229, 55.553162], + [37.70238, 55.553162], + [37.70238, 55.553072], + [37.70229, 55.553072] ] ] } @@ -5816,11 +5816,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703319, 55.552441], - [37.703319, 55.552531], - [37.703478, 55.552531], - [37.703478, 55.552441], - [37.703319, 55.552441] + [37.70229, 55.553162], + [37.70229, 55.553251], + [37.70238, 55.553251], + [37.70238, 55.553162], + [37.70229, 55.553162] ] ] } @@ -5832,11 +5832,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703319, 55.552531], - [37.703319, 55.552621], - [37.703478, 55.552621], - [37.703478, 55.552531], - [37.703319, 55.552531] + [37.70229, 55.553251], + [37.70229, 55.553341], + [37.70238, 55.553341], + [37.70238, 55.553251], + [37.70229, 55.553251] ] ] } @@ -5848,11 +5848,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703319, 55.552621], - [37.703319, 55.552711], - [37.703478, 55.552711], - [37.703478, 55.552621], - [37.703319, 55.552621] + [37.70229, 55.553341], + [37.70229, 55.553431], + [37.70238, 55.553431], + [37.70238, 55.553341], + [37.70229, 55.553341] ] ] } @@ -5864,11 +5864,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703319, 55.552711], - [37.703319, 55.552801], - [37.703478, 55.552801], - [37.703478, 55.552711], - [37.703319, 55.552711] + [37.70229, 55.553431], + [37.70229, 55.553521], + [37.70238, 55.553521], + [37.70238, 55.553431], + [37.70229, 55.553431] ] ] } @@ -5880,11 +5880,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703319, 55.552801], - [37.703319, 55.552891], - [37.703478, 55.552891], - [37.703478, 55.552801], - [37.703319, 55.552801] + [37.70229, 55.553521], + [37.70229, 55.553611], + [37.70238, 55.553611], + [37.70238, 55.553521], + [37.70229, 55.553521] ] ] } @@ -5896,11 +5896,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703319, 55.552891], - [37.703319, 55.552981], - [37.703478, 55.552981], - [37.703478, 55.552891], - [37.703319, 55.552891] + [37.70229, 55.553611], + [37.70229, 55.5537], + [37.70238, 55.5537], + [37.70238, 55.553611], + [37.70229, 55.553611] ] ] } @@ -5912,11 +5912,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703319, 55.552981], - [37.703319, 55.553071], - [37.703478, 55.553071], - [37.703478, 55.552981], - [37.703319, 55.552981] + [37.70229, 55.5537], + [37.70229, 55.55379], + [37.70238, 55.55379], + [37.70238, 55.5537], + [37.70229, 55.5537] ] ] } @@ -5928,11 +5928,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703319, 55.553071], - [37.703319, 55.553161], - [37.703478, 55.553161], - [37.703478, 55.553071], - [37.703319, 55.553071] + [37.70229, 55.55379], + [37.70229, 55.55388], + [37.70238, 55.55388], + [37.70238, 55.55379], + [37.70229, 55.55379] ] ] } @@ -5944,11 +5944,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703319, 55.553161], - [37.703319, 55.553251], - [37.703478, 55.553251], - [37.703478, 55.553161], - [37.703319, 55.553161] + [37.70229, 55.55388], + [37.70229, 55.55397], + [37.70238, 55.55397], + [37.70238, 55.55388], + [37.70229, 55.55388] ] ] } @@ -5960,11 +5960,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703319, 55.553251], - [37.703319, 55.553341], - [37.703478, 55.553341], - [37.703478, 55.553251], - [37.703319, 55.553251] + [37.70229, 55.55397], + [37.70229, 55.55406], + [37.70238, 55.55406], + [37.70238, 55.55397], + [37.70229, 55.55397] ] ] } @@ -5976,11 +5976,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703319, 55.553341], - [37.703319, 55.553431], - [37.703478, 55.553431], - [37.703478, 55.553341], - [37.703319, 55.553341] + [37.70229, 55.55406], + [37.70229, 55.55415], + [37.70238, 55.55415], + [37.70238, 55.55406], + [37.70229, 55.55406] ] ] } @@ -5992,11 +5992,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703319, 55.553431], - [37.703319, 55.55352], - [37.703478, 55.55352], - [37.703478, 55.553431], - [37.703319, 55.553431] + [37.70229, 55.55415], + [37.70229, 55.554239], + [37.70238, 55.554239], + [37.70238, 55.55415], + [37.70229, 55.55415] ] ] } @@ -6008,11 +6008,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703319, 55.55352], - [37.703319, 55.55361], - [37.703478, 55.55361], - [37.703478, 55.55352], - [37.703319, 55.55352] + [37.70229, 55.554239], + [37.70229, 55.554329], + [37.70238, 55.554329], + [37.70238, 55.554239], + [37.70229, 55.554239] ] ] } @@ -6024,11 +6024,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703319, 55.55361], - [37.703319, 55.5537], - [37.703478, 55.5537], - [37.703478, 55.55361], - [37.703319, 55.55361] + [37.70229, 55.554329], + [37.70229, 55.554419], + [37.70238, 55.554419], + [37.70238, 55.554329], + [37.70229, 55.554329] ] ] } @@ -6040,11 +6040,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703319, 55.5537], - [37.703319, 55.55379], - [37.703478, 55.55379], - [37.703478, 55.5537], - [37.703319, 55.5537] + [37.70238, 55.552533], + [37.70238, 55.552623], + [37.70247, 55.552623], + [37.70247, 55.552533], + [37.70238, 55.552533] ] ] } @@ -6056,11 +6056,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703319, 55.55379], - [37.703319, 55.55388], - [37.703478, 55.55388], - [37.703478, 55.55379], - [37.703319, 55.55379] + [37.70238, 55.552623], + [37.70238, 55.552712], + [37.70247, 55.552712], + [37.70247, 55.552623], + [37.70238, 55.552623] ] ] } @@ -6072,11 +6072,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703319, 55.55388], - [37.703319, 55.55397], - [37.703478, 55.55397], - [37.703478, 55.55388], - [37.703319, 55.55388] + [37.70238, 55.552712], + [37.70238, 55.552802], + [37.70247, 55.552802], + [37.70247, 55.552712], + [37.70238, 55.552712] ] ] } @@ -6088,11 +6088,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703319, 55.55397], - [37.703319, 55.55406], - [37.703478, 55.55406], - [37.703478, 55.55397], - [37.703319, 55.55397] + [37.70238, 55.552802], + [37.70238, 55.552892], + [37.70247, 55.552892], + [37.70247, 55.552802], + [37.70238, 55.552802] ] ] } @@ -6104,11 +6104,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703319, 55.55406], - [37.703319, 55.55415], - [37.703478, 55.55415], - [37.703478, 55.55406], - [37.703319, 55.55406] + [37.70238, 55.552892], + [37.70238, 55.552982], + [37.70247, 55.552982], + [37.70247, 55.552892], + [37.70238, 55.552892] ] ] } @@ -6120,11 +6120,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703319, 55.55415], - [37.703319, 55.55424], - [37.703478, 55.55424], - [37.703478, 55.55415], - [37.703319, 55.55415] + [37.70238, 55.552982], + [37.70238, 55.553072], + [37.70247, 55.553072], + [37.70247, 55.552982], + [37.70238, 55.552982] ] ] } @@ -6136,11 +6136,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703319, 55.55424], - [37.703319, 55.55433], - [37.703478, 55.55433], - [37.703478, 55.55424], - [37.703319, 55.55424] + [37.70238, 55.553072], + [37.70238, 55.553162], + [37.70247, 55.553162], + [37.70247, 55.553072], + [37.70238, 55.553072] ] ] } @@ -6152,11 +6152,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703319, 55.55433], - [37.703319, 55.55442], - [37.703478, 55.55442], - [37.703478, 55.55433], - [37.703319, 55.55433] + [37.70238, 55.553162], + [37.70238, 55.553251], + [37.70247, 55.553251], + [37.70247, 55.553162], + [37.70238, 55.553162] ] ] } @@ -6168,11 +6168,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703319, 55.55442], - [37.703319, 55.55451], - [37.703478, 55.55451], - [37.703478, 55.55442], - [37.703319, 55.55442] + [37.70238, 55.553251], + [37.70238, 55.553341], + [37.70247, 55.553341], + [37.70247, 55.553251], + [37.70238, 55.553251] ] ] } @@ -6184,11 +6184,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703319, 55.55451], - [37.703319, 55.5546], - [37.703478, 55.5546], - [37.703478, 55.55451], - [37.703319, 55.55451] + [37.70238, 55.553341], + [37.70238, 55.553431], + [37.70247, 55.553431], + [37.70247, 55.553341], + [37.70238, 55.553341] ] ] } @@ -6200,11 +6200,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703319, 55.5546], - [37.703319, 55.55469], - [37.703478, 55.55469], - [37.703478, 55.5546], - [37.703319, 55.5546] + [37.70238, 55.553431], + [37.70238, 55.553521], + [37.70247, 55.553521], + [37.70247, 55.553431], + [37.70238, 55.553431] ] ] } @@ -6216,11 +6216,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703478, 55.552261], - [37.703478, 55.552351], - [37.703637, 55.552351], - [37.703637, 55.552261], - [37.703478, 55.552261] + [37.70238, 55.553521], + [37.70238, 55.553611], + [37.70247, 55.553611], + [37.70247, 55.553521], + [37.70238, 55.553521] ] ] } @@ -6232,11 +6232,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703478, 55.552351], - [37.703478, 55.552441], - [37.703637, 55.552441], - [37.703637, 55.552351], - [37.703478, 55.552351] + [37.70238, 55.553611], + [37.70238, 55.5537], + [37.70247, 55.5537], + [37.70247, 55.553611], + [37.70238, 55.553611] ] ] } @@ -6248,11 +6248,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703478, 55.552441], - [37.703478, 55.552531], - [37.703637, 55.552531], - [37.703637, 55.552441], - [37.703478, 55.552441] + [37.70238, 55.5537], + [37.70238, 55.55379], + [37.70247, 55.55379], + [37.70247, 55.5537], + [37.70238, 55.5537] ] ] } @@ -6264,11 +6264,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703478, 55.552531], - [37.703478, 55.552621], - [37.703637, 55.552621], - [37.703637, 55.552531], - [37.703478, 55.552531] + [37.70238, 55.55379], + [37.70238, 55.55388], + [37.70247, 55.55388], + [37.70247, 55.55379], + [37.70238, 55.55379] ] ] } @@ -6280,11 +6280,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703478, 55.552621], - [37.703478, 55.552711], - [37.703637, 55.552711], - [37.703637, 55.552621], - [37.703478, 55.552621] + [37.70238, 55.55388], + [37.70238, 55.55397], + [37.70247, 55.55397], + [37.70247, 55.55388], + [37.70238, 55.55388] ] ] } @@ -6296,11 +6296,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703478, 55.552711], - [37.703478, 55.552801], - [37.703637, 55.552801], - [37.703637, 55.552711], - [37.703478, 55.552711] + [37.70238, 55.55397], + [37.70238, 55.55406], + [37.70247, 55.55406], + [37.70247, 55.55397], + [37.70238, 55.55397] ] ] } @@ -6312,11 +6312,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703478, 55.552801], - [37.703478, 55.552891], - [37.703637, 55.552891], - [37.703637, 55.552801], - [37.703478, 55.552801] + [37.70238, 55.55406], + [37.70238, 55.55415], + [37.70247, 55.55415], + [37.70247, 55.55406], + [37.70238, 55.55406] ] ] } @@ -6328,11 +6328,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703478, 55.552891], - [37.703478, 55.552981], - [37.703637, 55.552981], - [37.703637, 55.552891], - [37.703478, 55.552891] + [37.70238, 55.55415], + [37.70238, 55.554239], + [37.70247, 55.554239], + [37.70247, 55.55415], + [37.70238, 55.55415] ] ] } @@ -6344,11 +6344,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703478, 55.552981], - [37.703478, 55.553071], - [37.703637, 55.553071], - [37.703637, 55.552981], - [37.703478, 55.552981] + [37.70238, 55.554239], + [37.70238, 55.554329], + [37.70247, 55.554329], + [37.70247, 55.554239], + [37.70238, 55.554239] ] ] } @@ -6360,11 +6360,5435 @@ "type": "Polygon", "coordinates": [ [ - [37.703478, 55.553071], - [37.703478, 55.553161], - [37.703637, 55.553161], - [37.703637, 55.553071], - [37.703478, 55.553071] + [37.70238, 55.554329], + [37.70238, 55.554419], + [37.70247, 55.554419], + [37.70247, 55.554329], + [37.70238, 55.554329] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70247, 55.552533], + [37.70247, 55.552623], + [37.702559, 55.552623], + [37.702559, 55.552533], + [37.70247, 55.552533] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70247, 55.552623], + [37.70247, 55.552712], + [37.702559, 55.552712], + [37.702559, 55.552623], + [37.70247, 55.552623] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70247, 55.552712], + [37.70247, 55.552802], + [37.702559, 55.552802], + [37.702559, 55.552712], + [37.70247, 55.552712] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70247, 55.552802], + [37.70247, 55.552892], + [37.702559, 55.552892], + [37.702559, 55.552802], + [37.70247, 55.552802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70247, 55.552892], + [37.70247, 55.552982], + [37.702559, 55.552982], + [37.702559, 55.552892], + [37.70247, 55.552892] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70247, 55.552982], + [37.70247, 55.553072], + [37.702559, 55.553072], + [37.702559, 55.552982], + [37.70247, 55.552982] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70247, 55.553072], + [37.70247, 55.553162], + [37.702559, 55.553162], + [37.702559, 55.553072], + [37.70247, 55.553072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70247, 55.553162], + [37.70247, 55.553251], + [37.702559, 55.553251], + [37.702559, 55.553162], + [37.70247, 55.553162] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70247, 55.553251], + [37.70247, 55.553341], + [37.702559, 55.553341], + [37.702559, 55.553251], + [37.70247, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70247, 55.553341], + [37.70247, 55.553431], + [37.702559, 55.553431], + [37.702559, 55.553341], + [37.70247, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70247, 55.553431], + [37.70247, 55.553521], + [37.702559, 55.553521], + [37.702559, 55.553431], + [37.70247, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70247, 55.553521], + [37.70247, 55.553611], + [37.702559, 55.553611], + [37.702559, 55.553521], + [37.70247, 55.553521] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70247, 55.553611], + [37.70247, 55.5537], + [37.702559, 55.5537], + [37.702559, 55.553611], + [37.70247, 55.553611] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70247, 55.5537], + [37.70247, 55.55379], + [37.702559, 55.55379], + [37.702559, 55.5537], + [37.70247, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70247, 55.55379], + [37.70247, 55.55388], + [37.702559, 55.55388], + [37.702559, 55.55379], + [37.70247, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70247, 55.55388], + [37.70247, 55.55397], + [37.702559, 55.55397], + [37.702559, 55.55388], + [37.70247, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70247, 55.55397], + [37.70247, 55.55406], + [37.702559, 55.55406], + [37.702559, 55.55397], + [37.70247, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70247, 55.55406], + [37.70247, 55.55415], + [37.702559, 55.55415], + [37.702559, 55.55406], + [37.70247, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70247, 55.55415], + [37.70247, 55.554239], + [37.702559, 55.554239], + [37.702559, 55.55415], + [37.70247, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70247, 55.554239], + [37.70247, 55.554329], + [37.702559, 55.554329], + [37.702559, 55.554239], + [37.70247, 55.554239] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70247, 55.554329], + [37.70247, 55.554419], + [37.702559, 55.554419], + [37.702559, 55.554329], + [37.70247, 55.554329] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.70247, 55.554419], + [37.70247, 55.554509], + [37.702559, 55.554509], + [37.702559, 55.554419], + [37.70247, 55.554419] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702559, 55.552443], + [37.702559, 55.552533], + [37.702649, 55.552533], + [37.702649, 55.552443], + [37.702559, 55.552443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702559, 55.552533], + [37.702559, 55.552623], + [37.702649, 55.552623], + [37.702649, 55.552533], + [37.702559, 55.552533] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702559, 55.552623], + [37.702559, 55.552712], + [37.702649, 55.552712], + [37.702649, 55.552623], + [37.702559, 55.552623] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702559, 55.552712], + [37.702559, 55.552802], + [37.702649, 55.552802], + [37.702649, 55.552712], + [37.702559, 55.552712] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702559, 55.552802], + [37.702559, 55.552892], + [37.702649, 55.552892], + [37.702649, 55.552802], + [37.702559, 55.552802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702559, 55.552892], + [37.702559, 55.552982], + [37.702649, 55.552982], + [37.702649, 55.552892], + [37.702559, 55.552892] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702559, 55.552982], + [37.702559, 55.553072], + [37.702649, 55.553072], + [37.702649, 55.552982], + [37.702559, 55.552982] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702559, 55.553072], + [37.702559, 55.553162], + [37.702649, 55.553162], + [37.702649, 55.553072], + [37.702559, 55.553072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702559, 55.553162], + [37.702559, 55.553251], + [37.702649, 55.553251], + [37.702649, 55.553162], + [37.702559, 55.553162] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702559, 55.553251], + [37.702559, 55.553341], + [37.702649, 55.553341], + [37.702649, 55.553251], + [37.702559, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702559, 55.553341], + [37.702559, 55.553431], + [37.702649, 55.553431], + [37.702649, 55.553341], + [37.702559, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702559, 55.553431], + [37.702559, 55.553521], + [37.702649, 55.553521], + [37.702649, 55.553431], + [37.702559, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702559, 55.553521], + [37.702559, 55.553611], + [37.702649, 55.553611], + [37.702649, 55.553521], + [37.702559, 55.553521] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702559, 55.553611], + [37.702559, 55.5537], + [37.702649, 55.5537], + [37.702649, 55.553611], + [37.702559, 55.553611] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702559, 55.5537], + [37.702559, 55.55379], + [37.702649, 55.55379], + [37.702649, 55.5537], + [37.702559, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702559, 55.55379], + [37.702559, 55.55388], + [37.702649, 55.55388], + [37.702649, 55.55379], + [37.702559, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702559, 55.55388], + [37.702559, 55.55397], + [37.702649, 55.55397], + [37.702649, 55.55388], + [37.702559, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702559, 55.55397], + [37.702559, 55.55406], + [37.702649, 55.55406], + [37.702649, 55.55397], + [37.702559, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702559, 55.55406], + [37.702559, 55.55415], + [37.702649, 55.55415], + [37.702649, 55.55406], + [37.702559, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702559, 55.55415], + [37.702559, 55.554239], + [37.702649, 55.554239], + [37.702649, 55.55415], + [37.702559, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702559, 55.554239], + [37.702559, 55.554329], + [37.702649, 55.554329], + [37.702649, 55.554239], + [37.702559, 55.554239] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702559, 55.554329], + [37.702559, 55.554419], + [37.702649, 55.554419], + [37.702649, 55.554329], + [37.702559, 55.554329] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702559, 55.554419], + [37.702559, 55.554509], + [37.702649, 55.554509], + [37.702649, 55.554419], + [37.702559, 55.554419] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702649, 55.552443], + [37.702649, 55.552533], + [37.702739, 55.552533], + [37.702739, 55.552443], + [37.702649, 55.552443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702649, 55.552533], + [37.702649, 55.552623], + [37.702739, 55.552623], + [37.702739, 55.552533], + [37.702649, 55.552533] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702649, 55.552623], + [37.702649, 55.552712], + [37.702739, 55.552712], + [37.702739, 55.552623], + [37.702649, 55.552623] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702649, 55.552712], + [37.702649, 55.552802], + [37.702739, 55.552802], + [37.702739, 55.552712], + [37.702649, 55.552712] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702649, 55.552802], + [37.702649, 55.552892], + [37.702739, 55.552892], + [37.702739, 55.552802], + [37.702649, 55.552802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702649, 55.552892], + [37.702649, 55.552982], + [37.702739, 55.552982], + [37.702739, 55.552892], + [37.702649, 55.552892] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702649, 55.552982], + [37.702649, 55.553072], + [37.702739, 55.553072], + [37.702739, 55.552982], + [37.702649, 55.552982] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702649, 55.553072], + [37.702649, 55.553162], + [37.702739, 55.553162], + [37.702739, 55.553072], + [37.702649, 55.553072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702649, 55.553162], + [37.702649, 55.553251], + [37.702739, 55.553251], + [37.702739, 55.553162], + [37.702649, 55.553162] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702649, 55.553251], + [37.702649, 55.553341], + [37.702739, 55.553341], + [37.702739, 55.553251], + [37.702649, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702649, 55.553341], + [37.702649, 55.553431], + [37.702739, 55.553431], + [37.702739, 55.553341], + [37.702649, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702649, 55.553431], + [37.702649, 55.553521], + [37.702739, 55.553521], + [37.702739, 55.553431], + [37.702649, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702649, 55.553521], + [37.702649, 55.553611], + [37.702739, 55.553611], + [37.702739, 55.553521], + [37.702649, 55.553521] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702649, 55.553611], + [37.702649, 55.5537], + [37.702739, 55.5537], + [37.702739, 55.553611], + [37.702649, 55.553611] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702649, 55.5537], + [37.702649, 55.55379], + [37.702739, 55.55379], + [37.702739, 55.5537], + [37.702649, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702649, 55.55379], + [37.702649, 55.55388], + [37.702739, 55.55388], + [37.702739, 55.55379], + [37.702649, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702649, 55.55388], + [37.702649, 55.55397], + [37.702739, 55.55397], + [37.702739, 55.55388], + [37.702649, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702649, 55.55397], + [37.702649, 55.55406], + [37.702739, 55.55406], + [37.702739, 55.55397], + [37.702649, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702649, 55.55406], + [37.702649, 55.55415], + [37.702739, 55.55415], + [37.702739, 55.55406], + [37.702649, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702649, 55.55415], + [37.702649, 55.554239], + [37.702739, 55.554239], + [37.702739, 55.55415], + [37.702649, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702649, 55.554239], + [37.702649, 55.554329], + [37.702739, 55.554329], + [37.702739, 55.554239], + [37.702649, 55.554239] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702649, 55.554329], + [37.702649, 55.554419], + [37.702739, 55.554419], + [37.702739, 55.554329], + [37.702649, 55.554329] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702649, 55.554419], + [37.702649, 55.554509], + [37.702739, 55.554509], + [37.702739, 55.554419], + [37.702649, 55.554419] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702739, 55.552443], + [37.702739, 55.552533], + [37.702829, 55.552533], + [37.702829, 55.552443], + [37.702739, 55.552443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702739, 55.552533], + [37.702739, 55.552623], + [37.702829, 55.552623], + [37.702829, 55.552533], + [37.702739, 55.552533] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702739, 55.552623], + [37.702739, 55.552712], + [37.702829, 55.552712], + [37.702829, 55.552623], + [37.702739, 55.552623] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702739, 55.552712], + [37.702739, 55.552802], + [37.702829, 55.552802], + [37.702829, 55.552712], + [37.702739, 55.552712] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702739, 55.552802], + [37.702739, 55.552892], + [37.702829, 55.552892], + [37.702829, 55.552802], + [37.702739, 55.552802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702739, 55.552892], + [37.702739, 55.552982], + [37.702829, 55.552982], + [37.702829, 55.552892], + [37.702739, 55.552892] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702739, 55.552982], + [37.702739, 55.553072], + [37.702829, 55.553072], + [37.702829, 55.552982], + [37.702739, 55.552982] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702739, 55.553072], + [37.702739, 55.553162], + [37.702829, 55.553162], + [37.702829, 55.553072], + [37.702739, 55.553072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702739, 55.553162], + [37.702739, 55.553251], + [37.702829, 55.553251], + [37.702829, 55.553162], + [37.702739, 55.553162] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702739, 55.553251], + [37.702739, 55.553341], + [37.702829, 55.553341], + [37.702829, 55.553251], + [37.702739, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702739, 55.553341], + [37.702739, 55.553431], + [37.702829, 55.553431], + [37.702829, 55.553341], + [37.702739, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702739, 55.553431], + [37.702739, 55.553521], + [37.702829, 55.553521], + [37.702829, 55.553431], + [37.702739, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702739, 55.553521], + [37.702739, 55.553611], + [37.702829, 55.553611], + [37.702829, 55.553521], + [37.702739, 55.553521] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702739, 55.553611], + [37.702739, 55.5537], + [37.702829, 55.5537], + [37.702829, 55.553611], + [37.702739, 55.553611] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702739, 55.5537], + [37.702739, 55.55379], + [37.702829, 55.55379], + [37.702829, 55.5537], + [37.702739, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702739, 55.55379], + [37.702739, 55.55388], + [37.702829, 55.55388], + [37.702829, 55.55379], + [37.702739, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702739, 55.55388], + [37.702739, 55.55397], + [37.702829, 55.55397], + [37.702829, 55.55388], + [37.702739, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702739, 55.55397], + [37.702739, 55.55406], + [37.702829, 55.55406], + [37.702829, 55.55397], + [37.702739, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702739, 55.55406], + [37.702739, 55.55415], + [37.702829, 55.55415], + [37.702829, 55.55406], + [37.702739, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702739, 55.55415], + [37.702739, 55.554239], + [37.702829, 55.554239], + [37.702829, 55.55415], + [37.702739, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702739, 55.554239], + [37.702739, 55.554329], + [37.702829, 55.554329], + [37.702829, 55.554239], + [37.702739, 55.554239] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702739, 55.554329], + [37.702739, 55.554419], + [37.702829, 55.554419], + [37.702829, 55.554329], + [37.702739, 55.554329] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702739, 55.554419], + [37.702739, 55.554509], + [37.702829, 55.554509], + [37.702829, 55.554419], + [37.702739, 55.554419] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702829, 55.552443], + [37.702829, 55.552533], + [37.702919, 55.552533], + [37.702919, 55.552443], + [37.702829, 55.552443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702829, 55.552533], + [37.702829, 55.552623], + [37.702919, 55.552623], + [37.702919, 55.552533], + [37.702829, 55.552533] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702829, 55.552623], + [37.702829, 55.552712], + [37.702919, 55.552712], + [37.702919, 55.552623], + [37.702829, 55.552623] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702829, 55.552712], + [37.702829, 55.552802], + [37.702919, 55.552802], + [37.702919, 55.552712], + [37.702829, 55.552712] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702829, 55.552802], + [37.702829, 55.552892], + [37.702919, 55.552892], + [37.702919, 55.552802], + [37.702829, 55.552802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702829, 55.552892], + [37.702829, 55.552982], + [37.702919, 55.552982], + [37.702919, 55.552892], + [37.702829, 55.552892] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702829, 55.552982], + [37.702829, 55.553072], + [37.702919, 55.553072], + [37.702919, 55.552982], + [37.702829, 55.552982] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702829, 55.553072], + [37.702829, 55.553162], + [37.702919, 55.553162], + [37.702919, 55.553072], + [37.702829, 55.553072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702829, 55.553162], + [37.702829, 55.553251], + [37.702919, 55.553251], + [37.702919, 55.553162], + [37.702829, 55.553162] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702829, 55.553251], + [37.702829, 55.553341], + [37.702919, 55.553341], + [37.702919, 55.553251], + [37.702829, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702829, 55.553341], + [37.702829, 55.553431], + [37.702919, 55.553431], + [37.702919, 55.553341], + [37.702829, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702829, 55.553431], + [37.702829, 55.553521], + [37.702919, 55.553521], + [37.702919, 55.553431], + [37.702829, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702829, 55.553521], + [37.702829, 55.553611], + [37.702919, 55.553611], + [37.702919, 55.553521], + [37.702829, 55.553521] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702829, 55.553611], + [37.702829, 55.5537], + [37.702919, 55.5537], + [37.702919, 55.553611], + [37.702829, 55.553611] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702829, 55.5537], + [37.702829, 55.55379], + [37.702919, 55.55379], + [37.702919, 55.5537], + [37.702829, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702829, 55.55379], + [37.702829, 55.55388], + [37.702919, 55.55388], + [37.702919, 55.55379], + [37.702829, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702829, 55.55388], + [37.702829, 55.55397], + [37.702919, 55.55397], + [37.702919, 55.55388], + [37.702829, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702829, 55.55397], + [37.702829, 55.55406], + [37.702919, 55.55406], + [37.702919, 55.55397], + [37.702829, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702829, 55.55406], + [37.702829, 55.55415], + [37.702919, 55.55415], + [37.702919, 55.55406], + [37.702829, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702829, 55.55415], + [37.702829, 55.554239], + [37.702919, 55.554239], + [37.702919, 55.55415], + [37.702829, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702829, 55.554239], + [37.702829, 55.554329], + [37.702919, 55.554329], + [37.702919, 55.554239], + [37.702829, 55.554239] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702829, 55.554329], + [37.702829, 55.554419], + [37.702919, 55.554419], + [37.702919, 55.554329], + [37.702829, 55.554329] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702829, 55.554419], + [37.702829, 55.554509], + [37.702919, 55.554509], + [37.702919, 55.554419], + [37.702829, 55.554419] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702829, 55.554509], + [37.702829, 55.554599], + [37.702919, 55.554599], + [37.702919, 55.554509], + [37.702829, 55.554509] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702919, 55.552353], + [37.702919, 55.552443], + [37.703009, 55.552443], + [37.703009, 55.552353], + [37.702919, 55.552353] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702919, 55.552443], + [37.702919, 55.552533], + [37.703009, 55.552533], + [37.703009, 55.552443], + [37.702919, 55.552443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702919, 55.552533], + [37.702919, 55.552623], + [37.703009, 55.552623], + [37.703009, 55.552533], + [37.702919, 55.552533] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702919, 55.552623], + [37.702919, 55.552712], + [37.703009, 55.552712], + [37.703009, 55.552623], + [37.702919, 55.552623] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702919, 55.552712], + [37.702919, 55.552802], + [37.703009, 55.552802], + [37.703009, 55.552712], + [37.702919, 55.552712] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702919, 55.552802], + [37.702919, 55.552892], + [37.703009, 55.552892], + [37.703009, 55.552802], + [37.702919, 55.552802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702919, 55.552892], + [37.702919, 55.552982], + [37.703009, 55.552982], + [37.703009, 55.552892], + [37.702919, 55.552892] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702919, 55.552982], + [37.702919, 55.553072], + [37.703009, 55.553072], + [37.703009, 55.552982], + [37.702919, 55.552982] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702919, 55.553072], + [37.702919, 55.553162], + [37.703009, 55.553162], + [37.703009, 55.553072], + [37.702919, 55.553072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702919, 55.553162], + [37.702919, 55.553251], + [37.703009, 55.553251], + [37.703009, 55.553162], + [37.702919, 55.553162] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702919, 55.553251], + [37.702919, 55.553341], + [37.703009, 55.553341], + [37.703009, 55.553251], + [37.702919, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702919, 55.553341], + [37.702919, 55.553431], + [37.703009, 55.553431], + [37.703009, 55.553341], + [37.702919, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702919, 55.553431], + [37.702919, 55.553521], + [37.703009, 55.553521], + [37.703009, 55.553431], + [37.702919, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702919, 55.553521], + [37.702919, 55.553611], + [37.703009, 55.553611], + [37.703009, 55.553521], + [37.702919, 55.553521] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702919, 55.553611], + [37.702919, 55.5537], + [37.703009, 55.5537], + [37.703009, 55.553611], + [37.702919, 55.553611] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702919, 55.5537], + [37.702919, 55.55379], + [37.703009, 55.55379], + [37.703009, 55.5537], + [37.702919, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702919, 55.55379], + [37.702919, 55.55388], + [37.703009, 55.55388], + [37.703009, 55.55379], + [37.702919, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702919, 55.55388], + [37.702919, 55.55397], + [37.703009, 55.55397], + [37.703009, 55.55388], + [37.702919, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702919, 55.55397], + [37.702919, 55.55406], + [37.703009, 55.55406], + [37.703009, 55.55397], + [37.702919, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702919, 55.55406], + [37.702919, 55.55415], + [37.703009, 55.55415], + [37.703009, 55.55406], + [37.702919, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702919, 55.55415], + [37.702919, 55.554239], + [37.703009, 55.554239], + [37.703009, 55.55415], + [37.702919, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702919, 55.554239], + [37.702919, 55.554329], + [37.703009, 55.554329], + [37.703009, 55.554239], + [37.702919, 55.554239] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702919, 55.554329], + [37.702919, 55.554419], + [37.703009, 55.554419], + [37.703009, 55.554329], + [37.702919, 55.554329] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702919, 55.554419], + [37.702919, 55.554509], + [37.703009, 55.554509], + [37.703009, 55.554419], + [37.702919, 55.554419] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.702919, 55.554509], + [37.702919, 55.554599], + [37.703009, 55.554599], + [37.703009, 55.554509], + [37.702919, 55.554509] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703009, 55.552353], + [37.703009, 55.552443], + [37.703098, 55.552443], + [37.703098, 55.552353], + [37.703009, 55.552353] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703009, 55.552443], + [37.703009, 55.552533], + [37.703098, 55.552533], + [37.703098, 55.552443], + [37.703009, 55.552443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703009, 55.552533], + [37.703009, 55.552623], + [37.703098, 55.552623], + [37.703098, 55.552533], + [37.703009, 55.552533] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703009, 55.552623], + [37.703009, 55.552712], + [37.703098, 55.552712], + [37.703098, 55.552623], + [37.703009, 55.552623] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703009, 55.552712], + [37.703009, 55.552802], + [37.703098, 55.552802], + [37.703098, 55.552712], + [37.703009, 55.552712] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703009, 55.552802], + [37.703009, 55.552892], + [37.703098, 55.552892], + [37.703098, 55.552802], + [37.703009, 55.552802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703009, 55.552892], + [37.703009, 55.552982], + [37.703098, 55.552982], + [37.703098, 55.552892], + [37.703009, 55.552892] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703009, 55.552982], + [37.703009, 55.553072], + [37.703098, 55.553072], + [37.703098, 55.552982], + [37.703009, 55.552982] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703009, 55.553072], + [37.703009, 55.553162], + [37.703098, 55.553162], + [37.703098, 55.553072], + [37.703009, 55.553072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703009, 55.553162], + [37.703009, 55.553251], + [37.703098, 55.553251], + [37.703098, 55.553162], + [37.703009, 55.553162] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703009, 55.553251], + [37.703009, 55.553341], + [37.703098, 55.553341], + [37.703098, 55.553251], + [37.703009, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703009, 55.553341], + [37.703009, 55.553431], + [37.703098, 55.553431], + [37.703098, 55.553341], + [37.703009, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703009, 55.553431], + [37.703009, 55.553521], + [37.703098, 55.553521], + [37.703098, 55.553431], + [37.703009, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703009, 55.553521], + [37.703009, 55.553611], + [37.703098, 55.553611], + [37.703098, 55.553521], + [37.703009, 55.553521] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703009, 55.553611], + [37.703009, 55.5537], + [37.703098, 55.5537], + [37.703098, 55.553611], + [37.703009, 55.553611] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703009, 55.5537], + [37.703009, 55.55379], + [37.703098, 55.55379], + [37.703098, 55.5537], + [37.703009, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703009, 55.55379], + [37.703009, 55.55388], + [37.703098, 55.55388], + [37.703098, 55.55379], + [37.703009, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703009, 55.55388], + [37.703009, 55.55397], + [37.703098, 55.55397], + [37.703098, 55.55388], + [37.703009, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703009, 55.55397], + [37.703009, 55.55406], + [37.703098, 55.55406], + [37.703098, 55.55397], + [37.703009, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703009, 55.55406], + [37.703009, 55.55415], + [37.703098, 55.55415], + [37.703098, 55.55406], + [37.703009, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703009, 55.55415], + [37.703009, 55.554239], + [37.703098, 55.554239], + [37.703098, 55.55415], + [37.703009, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703009, 55.554239], + [37.703009, 55.554329], + [37.703098, 55.554329], + [37.703098, 55.554239], + [37.703009, 55.554239] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703009, 55.554329], + [37.703009, 55.554419], + [37.703098, 55.554419], + [37.703098, 55.554329], + [37.703009, 55.554329] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703009, 55.554419], + [37.703009, 55.554509], + [37.703098, 55.554509], + [37.703098, 55.554419], + [37.703009, 55.554419] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703009, 55.554509], + [37.703009, 55.554599], + [37.703098, 55.554599], + [37.703098, 55.554509], + [37.703009, 55.554509] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703098, 55.552353], + [37.703098, 55.552443], + [37.703188, 55.552443], + [37.703188, 55.552353], + [37.703098, 55.552353] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703098, 55.552443], + [37.703098, 55.552533], + [37.703188, 55.552533], + [37.703188, 55.552443], + [37.703098, 55.552443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703098, 55.552533], + [37.703098, 55.552623], + [37.703188, 55.552623], + [37.703188, 55.552533], + [37.703098, 55.552533] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703098, 55.552623], + [37.703098, 55.552712], + [37.703188, 55.552712], + [37.703188, 55.552623], + [37.703098, 55.552623] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703098, 55.552712], + [37.703098, 55.552802], + [37.703188, 55.552802], + [37.703188, 55.552712], + [37.703098, 55.552712] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703098, 55.552802], + [37.703098, 55.552892], + [37.703188, 55.552892], + [37.703188, 55.552802], + [37.703098, 55.552802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703098, 55.552892], + [37.703098, 55.552982], + [37.703188, 55.552982], + [37.703188, 55.552892], + [37.703098, 55.552892] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703098, 55.552982], + [37.703098, 55.553072], + [37.703188, 55.553072], + [37.703188, 55.552982], + [37.703098, 55.552982] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703098, 55.553072], + [37.703098, 55.553162], + [37.703188, 55.553162], + [37.703188, 55.553072], + [37.703098, 55.553072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703098, 55.553162], + [37.703098, 55.553251], + [37.703188, 55.553251], + [37.703188, 55.553162], + [37.703098, 55.553162] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703098, 55.553251], + [37.703098, 55.553341], + [37.703188, 55.553341], + [37.703188, 55.553251], + [37.703098, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703098, 55.553341], + [37.703098, 55.553431], + [37.703188, 55.553431], + [37.703188, 55.553341], + [37.703098, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703098, 55.553431], + [37.703098, 55.553521], + [37.703188, 55.553521], + [37.703188, 55.553431], + [37.703098, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703098, 55.553521], + [37.703098, 55.553611], + [37.703188, 55.553611], + [37.703188, 55.553521], + [37.703098, 55.553521] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703098, 55.553611], + [37.703098, 55.5537], + [37.703188, 55.5537], + [37.703188, 55.553611], + [37.703098, 55.553611] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703098, 55.5537], + [37.703098, 55.55379], + [37.703188, 55.55379], + [37.703188, 55.5537], + [37.703098, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703098, 55.55379], + [37.703098, 55.55388], + [37.703188, 55.55388], + [37.703188, 55.55379], + [37.703098, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703098, 55.55388], + [37.703098, 55.55397], + [37.703188, 55.55397], + [37.703188, 55.55388], + [37.703098, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703098, 55.55397], + [37.703098, 55.55406], + [37.703188, 55.55406], + [37.703188, 55.55397], + [37.703098, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703098, 55.55406], + [37.703098, 55.55415], + [37.703188, 55.55415], + [37.703188, 55.55406], + [37.703098, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703098, 55.55415], + [37.703098, 55.554239], + [37.703188, 55.554239], + [37.703188, 55.55415], + [37.703098, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703098, 55.554239], + [37.703098, 55.554329], + [37.703188, 55.554329], + [37.703188, 55.554239], + [37.703098, 55.554239] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703098, 55.554329], + [37.703098, 55.554419], + [37.703188, 55.554419], + [37.703188, 55.554329], + [37.703098, 55.554329] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703098, 55.554419], + [37.703098, 55.554509], + [37.703188, 55.554509], + [37.703188, 55.554419], + [37.703098, 55.554419] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703098, 55.554509], + [37.703098, 55.554599], + [37.703188, 55.554599], + [37.703188, 55.554509], + [37.703098, 55.554509] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703098, 55.554599], + [37.703098, 55.554689], + [37.703188, 55.554689], + [37.703188, 55.554599], + [37.703098, 55.554599] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703188, 55.552353], + [37.703188, 55.552443], + [37.703278, 55.552443], + [37.703278, 55.552353], + [37.703188, 55.552353] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703188, 55.552443], + [37.703188, 55.552533], + [37.703278, 55.552533], + [37.703278, 55.552443], + [37.703188, 55.552443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703188, 55.552533], + [37.703188, 55.552623], + [37.703278, 55.552623], + [37.703278, 55.552533], + [37.703188, 55.552533] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703188, 55.552623], + [37.703188, 55.552712], + [37.703278, 55.552712], + [37.703278, 55.552623], + [37.703188, 55.552623] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703188, 55.552712], + [37.703188, 55.552802], + [37.703278, 55.552802], + [37.703278, 55.552712], + [37.703188, 55.552712] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703188, 55.552802], + [37.703188, 55.552892], + [37.703278, 55.552892], + [37.703278, 55.552802], + [37.703188, 55.552802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703188, 55.552892], + [37.703188, 55.552982], + [37.703278, 55.552982], + [37.703278, 55.552892], + [37.703188, 55.552892] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703188, 55.552982], + [37.703188, 55.553072], + [37.703278, 55.553072], + [37.703278, 55.552982], + [37.703188, 55.552982] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703188, 55.553072], + [37.703188, 55.553162], + [37.703278, 55.553162], + [37.703278, 55.553072], + [37.703188, 55.553072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703188, 55.553162], + [37.703188, 55.553251], + [37.703278, 55.553251], + [37.703278, 55.553162], + [37.703188, 55.553162] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703188, 55.553251], + [37.703188, 55.553341], + [37.703278, 55.553341], + [37.703278, 55.553251], + [37.703188, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703188, 55.553341], + [37.703188, 55.553431], + [37.703278, 55.553431], + [37.703278, 55.553341], + [37.703188, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703188, 55.553431], + [37.703188, 55.553521], + [37.703278, 55.553521], + [37.703278, 55.553431], + [37.703188, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703188, 55.553521], + [37.703188, 55.553611], + [37.703278, 55.553611], + [37.703278, 55.553521], + [37.703188, 55.553521] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703188, 55.553611], + [37.703188, 55.5537], + [37.703278, 55.5537], + [37.703278, 55.553611], + [37.703188, 55.553611] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703188, 55.5537], + [37.703188, 55.55379], + [37.703278, 55.55379], + [37.703278, 55.5537], + [37.703188, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703188, 55.55379], + [37.703188, 55.55388], + [37.703278, 55.55388], + [37.703278, 55.55379], + [37.703188, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703188, 55.55388], + [37.703188, 55.55397], + [37.703278, 55.55397], + [37.703278, 55.55388], + [37.703188, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703188, 55.55397], + [37.703188, 55.55406], + [37.703278, 55.55406], + [37.703278, 55.55397], + [37.703188, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703188, 55.55406], + [37.703188, 55.55415], + [37.703278, 55.55415], + [37.703278, 55.55406], + [37.703188, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703188, 55.55415], + [37.703188, 55.554239], + [37.703278, 55.554239], + [37.703278, 55.55415], + [37.703188, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703188, 55.554239], + [37.703188, 55.554329], + [37.703278, 55.554329], + [37.703278, 55.554239], + [37.703188, 55.554239] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703188, 55.554329], + [37.703188, 55.554419], + [37.703278, 55.554419], + [37.703278, 55.554329], + [37.703188, 55.554329] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703188, 55.554419], + [37.703188, 55.554509], + [37.703278, 55.554509], + [37.703278, 55.554419], + [37.703188, 55.554419] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703188, 55.554509], + [37.703188, 55.554599], + [37.703278, 55.554599], + [37.703278, 55.554509], + [37.703188, 55.554509] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703188, 55.554599], + [37.703188, 55.554689], + [37.703278, 55.554689], + [37.703278, 55.554599], + [37.703188, 55.554599] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703278, 55.552263], + [37.703278, 55.552353], + [37.703368, 55.552353], + [37.703368, 55.552263], + [37.703278, 55.552263] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703278, 55.552353], + [37.703278, 55.552443], + [37.703368, 55.552443], + [37.703368, 55.552353], + [37.703278, 55.552353] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703278, 55.552443], + [37.703278, 55.552533], + [37.703368, 55.552533], + [37.703368, 55.552443], + [37.703278, 55.552443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703278, 55.552533], + [37.703278, 55.552623], + [37.703368, 55.552623], + [37.703368, 55.552533], + [37.703278, 55.552533] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703278, 55.552623], + [37.703278, 55.552712], + [37.703368, 55.552712], + [37.703368, 55.552623], + [37.703278, 55.552623] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703278, 55.552712], + [37.703278, 55.552802], + [37.703368, 55.552802], + [37.703368, 55.552712], + [37.703278, 55.552712] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703278, 55.552802], + [37.703278, 55.552892], + [37.703368, 55.552892], + [37.703368, 55.552802], + [37.703278, 55.552802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703278, 55.552892], + [37.703278, 55.552982], + [37.703368, 55.552982], + [37.703368, 55.552892], + [37.703278, 55.552892] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703278, 55.552982], + [37.703278, 55.553072], + [37.703368, 55.553072], + [37.703368, 55.552982], + [37.703278, 55.552982] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703278, 55.553072], + [37.703278, 55.553162], + [37.703368, 55.553162], + [37.703368, 55.553072], + [37.703278, 55.553072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703278, 55.553162], + [37.703278, 55.553251], + [37.703368, 55.553251], + [37.703368, 55.553162], + [37.703278, 55.553162] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703278, 55.553251], + [37.703278, 55.553341], + [37.703368, 55.553341], + [37.703368, 55.553251], + [37.703278, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703278, 55.553341], + [37.703278, 55.553431], + [37.703368, 55.553431], + [37.703368, 55.553341], + [37.703278, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703278, 55.553431], + [37.703278, 55.553521], + [37.703368, 55.553521], + [37.703368, 55.553431], + [37.703278, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703278, 55.553521], + [37.703278, 55.553611], + [37.703368, 55.553611], + [37.703368, 55.553521], + [37.703278, 55.553521] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703278, 55.553611], + [37.703278, 55.5537], + [37.703368, 55.5537], + [37.703368, 55.553611], + [37.703278, 55.553611] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703278, 55.5537], + [37.703278, 55.55379], + [37.703368, 55.55379], + [37.703368, 55.5537], + [37.703278, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703278, 55.55379], + [37.703278, 55.55388], + [37.703368, 55.55388], + [37.703368, 55.55379], + [37.703278, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703278, 55.55388], + [37.703278, 55.55397], + [37.703368, 55.55397], + [37.703368, 55.55388], + [37.703278, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703278, 55.55397], + [37.703278, 55.55406], + [37.703368, 55.55406], + [37.703368, 55.55397], + [37.703278, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703278, 55.55406], + [37.703278, 55.55415], + [37.703368, 55.55415], + [37.703368, 55.55406], + [37.703278, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703278, 55.55415], + [37.703278, 55.554239], + [37.703368, 55.554239], + [37.703368, 55.55415], + [37.703278, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703278, 55.554239], + [37.703278, 55.554329], + [37.703368, 55.554329], + [37.703368, 55.554239], + [37.703278, 55.554239] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703278, 55.554329], + [37.703278, 55.554419], + [37.703368, 55.554419], + [37.703368, 55.554329], + [37.703278, 55.554329] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703278, 55.554419], + [37.703278, 55.554509], + [37.703368, 55.554509], + [37.703368, 55.554419], + [37.703278, 55.554419] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703278, 55.554509], + [37.703278, 55.554599], + [37.703368, 55.554599], + [37.703368, 55.554509], + [37.703278, 55.554509] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703278, 55.554599], + [37.703278, 55.554689], + [37.703368, 55.554689], + [37.703368, 55.554599], + [37.703278, 55.554599] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703368, 55.552263], + [37.703368, 55.552353], + [37.703458, 55.552353], + [37.703458, 55.552263], + [37.703368, 55.552263] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703368, 55.552353], + [37.703368, 55.552443], + [37.703458, 55.552443], + [37.703458, 55.552353], + [37.703368, 55.552353] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703368, 55.552443], + [37.703368, 55.552533], + [37.703458, 55.552533], + [37.703458, 55.552443], + [37.703368, 55.552443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703368, 55.552533], + [37.703368, 55.552623], + [37.703458, 55.552623], + [37.703458, 55.552533], + [37.703368, 55.552533] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703368, 55.552623], + [37.703368, 55.552712], + [37.703458, 55.552712], + [37.703458, 55.552623], + [37.703368, 55.552623] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703368, 55.552712], + [37.703368, 55.552802], + [37.703458, 55.552802], + [37.703458, 55.552712], + [37.703368, 55.552712] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703368, 55.552802], + [37.703368, 55.552892], + [37.703458, 55.552892], + [37.703458, 55.552802], + [37.703368, 55.552802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703368, 55.552892], + [37.703368, 55.552982], + [37.703458, 55.552982], + [37.703458, 55.552892], + [37.703368, 55.552892] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703368, 55.552982], + [37.703368, 55.553072], + [37.703458, 55.553072], + [37.703458, 55.552982], + [37.703368, 55.552982] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703368, 55.553072], + [37.703368, 55.553162], + [37.703458, 55.553162], + [37.703458, 55.553072], + [37.703368, 55.553072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703368, 55.553162], + [37.703368, 55.553251], + [37.703458, 55.553251], + [37.703458, 55.553162], + [37.703368, 55.553162] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703368, 55.553251], + [37.703368, 55.553341], + [37.703458, 55.553341], + [37.703458, 55.553251], + [37.703368, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703368, 55.553341], + [37.703368, 55.553431], + [37.703458, 55.553431], + [37.703458, 55.553341], + [37.703368, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703368, 55.553431], + [37.703368, 55.553521], + [37.703458, 55.553521], + [37.703458, 55.553431], + [37.703368, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703368, 55.553521], + [37.703368, 55.553611], + [37.703458, 55.553611], + [37.703458, 55.553521], + [37.703368, 55.553521] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703368, 55.553611], + [37.703368, 55.5537], + [37.703458, 55.5537], + [37.703458, 55.553611], + [37.703368, 55.553611] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703368, 55.5537], + [37.703368, 55.55379], + [37.703458, 55.55379], + [37.703458, 55.5537], + [37.703368, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703368, 55.55379], + [37.703368, 55.55388], + [37.703458, 55.55388], + [37.703458, 55.55379], + [37.703368, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703368, 55.55388], + [37.703368, 55.55397], + [37.703458, 55.55397], + [37.703458, 55.55388], + [37.703368, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703368, 55.55397], + [37.703368, 55.55406], + [37.703458, 55.55406], + [37.703458, 55.55397], + [37.703368, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703368, 55.55406], + [37.703368, 55.55415], + [37.703458, 55.55415], + [37.703458, 55.55406], + [37.703368, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703368, 55.55415], + [37.703368, 55.554239], + [37.703458, 55.554239], + [37.703458, 55.55415], + [37.703368, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703368, 55.554239], + [37.703368, 55.554329], + [37.703458, 55.554329], + [37.703458, 55.554239], + [37.703368, 55.554239] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703368, 55.554329], + [37.703368, 55.554419], + [37.703458, 55.554419], + [37.703458, 55.554329], + [37.703368, 55.554329] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703368, 55.554419], + [37.703368, 55.554509], + [37.703458, 55.554509], + [37.703458, 55.554419], + [37.703368, 55.554419] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703368, 55.554509], + [37.703368, 55.554599], + [37.703458, 55.554599], + [37.703458, 55.554509], + [37.703368, 55.554509] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703368, 55.554599], + [37.703368, 55.554689], + [37.703458, 55.554689], + [37.703458, 55.554599], + [37.703368, 55.554599] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703458, 55.552263], + [37.703458, 55.552353], + [37.703548, 55.552353], + [37.703548, 55.552263], + [37.703458, 55.552263] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703458, 55.552353], + [37.703458, 55.552443], + [37.703548, 55.552443], + [37.703548, 55.552353], + [37.703458, 55.552353] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703458, 55.552443], + [37.703458, 55.552533], + [37.703548, 55.552533], + [37.703548, 55.552443], + [37.703458, 55.552443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703458, 55.552533], + [37.703458, 55.552623], + [37.703548, 55.552623], + [37.703548, 55.552533], + [37.703458, 55.552533] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703458, 55.552623], + [37.703458, 55.552712], + [37.703548, 55.552712], + [37.703548, 55.552623], + [37.703458, 55.552623] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703458, 55.552712], + [37.703458, 55.552802], + [37.703548, 55.552802], + [37.703548, 55.552712], + [37.703458, 55.552712] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703458, 55.552802], + [37.703458, 55.552892], + [37.703548, 55.552892], + [37.703548, 55.552802], + [37.703458, 55.552802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703458, 55.552892], + [37.703458, 55.552982], + [37.703548, 55.552982], + [37.703548, 55.552892], + [37.703458, 55.552892] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703458, 55.552982], + [37.703458, 55.553072], + [37.703548, 55.553072], + [37.703548, 55.552982], + [37.703458, 55.552982] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703458, 55.553072], + [37.703458, 55.553162], + [37.703548, 55.553162], + [37.703548, 55.553072], + [37.703458, 55.553072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703458, 55.553162], + [37.703458, 55.553251], + [37.703548, 55.553251], + [37.703548, 55.553162], + [37.703458, 55.553162] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703458, 55.553251], + [37.703458, 55.553341], + [37.703548, 55.553341], + [37.703548, 55.553251], + [37.703458, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703458, 55.553341], + [37.703458, 55.553431], + [37.703548, 55.553431], + [37.703548, 55.553341], + [37.703458, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703458, 55.553431], + [37.703458, 55.553521], + [37.703548, 55.553521], + [37.703548, 55.553431], + [37.703458, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703458, 55.553521], + [37.703458, 55.553611], + [37.703548, 55.553611], + [37.703548, 55.553521], + [37.703458, 55.553521] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703458, 55.553611], + [37.703458, 55.5537], + [37.703548, 55.5537], + [37.703548, 55.553611], + [37.703458, 55.553611] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703458, 55.5537], + [37.703458, 55.55379], + [37.703548, 55.55379], + [37.703548, 55.5537], + [37.703458, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703458, 55.55379], + [37.703458, 55.55388], + [37.703548, 55.55388], + [37.703548, 55.55379], + [37.703458, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703458, 55.55388], + [37.703458, 55.55397], + [37.703548, 55.55397], + [37.703548, 55.55388], + [37.703458, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703458, 55.55397], + [37.703458, 55.55406], + [37.703548, 55.55406], + [37.703548, 55.55397], + [37.703458, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703458, 55.55406], + [37.703458, 55.55415], + [37.703548, 55.55415], + [37.703548, 55.55406], + [37.703458, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703458, 55.55415], + [37.703458, 55.554239], + [37.703548, 55.554239], + [37.703548, 55.55415], + [37.703458, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703458, 55.554239], + [37.703458, 55.554329], + [37.703548, 55.554329], + [37.703548, 55.554239], + [37.703458, 55.554239] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703458, 55.554329], + [37.703458, 55.554419], + [37.703548, 55.554419], + [37.703548, 55.554329], + [37.703458, 55.554329] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703458, 55.554419], + [37.703458, 55.554509], + [37.703548, 55.554509], + [37.703548, 55.554419], + [37.703458, 55.554419] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703458, 55.554509], + [37.703458, 55.554599], + [37.703548, 55.554599], + [37.703548, 55.554509], + [37.703458, 55.554509] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703458, 55.554599], + [37.703458, 55.554689], + [37.703548, 55.554689], + [37.703548, 55.554599], + [37.703458, 55.554599] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703458, 55.554689], + [37.703458, 55.554778], + [37.703548, 55.554778], + [37.703548, 55.554689], + [37.703458, 55.554689] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703548, 55.552263], + [37.703548, 55.552353], + [37.703637, 55.552353], + [37.703637, 55.552263], + [37.703548, 55.552263] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703548, 55.552353], + [37.703548, 55.552443], + [37.703637, 55.552443], + [37.703637, 55.552353], + [37.703548, 55.552353] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703548, 55.552443], + [37.703548, 55.552533], + [37.703637, 55.552533], + [37.703637, 55.552443], + [37.703548, 55.552443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703548, 55.552533], + [37.703548, 55.552623], + [37.703637, 55.552623], + [37.703637, 55.552533], + [37.703548, 55.552533] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703548, 55.552623], + [37.703548, 55.552712], + [37.703637, 55.552712], + [37.703637, 55.552623], + [37.703548, 55.552623] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703548, 55.552712], + [37.703548, 55.552802], + [37.703637, 55.552802], + [37.703637, 55.552712], + [37.703548, 55.552712] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703548, 55.552802], + [37.703548, 55.552892], + [37.703637, 55.552892], + [37.703637, 55.552802], + [37.703548, 55.552802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703548, 55.552892], + [37.703548, 55.552982], + [37.703637, 55.552982], + [37.703637, 55.552892], + [37.703548, 55.552892] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703548, 55.552982], + [37.703548, 55.553072], + [37.703637, 55.553072], + [37.703637, 55.552982], + [37.703548, 55.552982] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703548, 55.553072], + [37.703548, 55.553162], + [37.703637, 55.553162], + [37.703637, 55.553072], + [37.703548, 55.553072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703548, 55.553162], + [37.703548, 55.553251], + [37.703637, 55.553251], + [37.703637, 55.553162], + [37.703548, 55.553162] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703548, 55.553251], + [37.703548, 55.553341], + [37.703637, 55.553341], + [37.703637, 55.553251], + [37.703548, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703548, 55.553341], + [37.703548, 55.553431], + [37.703637, 55.553431], + [37.703637, 55.553341], + [37.703548, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703548, 55.553431], + [37.703548, 55.553521], + [37.703637, 55.553521], + [37.703637, 55.553431], + [37.703548, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703548, 55.553521], + [37.703548, 55.553611], + [37.703637, 55.553611], + [37.703637, 55.553521], + [37.703548, 55.553521] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703548, 55.553611], + [37.703548, 55.5537], + [37.703637, 55.5537], + [37.703637, 55.553611], + [37.703548, 55.553611] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703548, 55.5537], + [37.703548, 55.55379], + [37.703637, 55.55379], + [37.703637, 55.5537], + [37.703548, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703548, 55.55379], + [37.703548, 55.55388], + [37.703637, 55.55388], + [37.703637, 55.55379], + [37.703548, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703548, 55.55388], + [37.703548, 55.55397], + [37.703637, 55.55397], + [37.703637, 55.55388], + [37.703548, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703548, 55.55397], + [37.703548, 55.55406], + [37.703637, 55.55406], + [37.703637, 55.55397], + [37.703548, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703548, 55.55406], + [37.703548, 55.55415], + [37.703637, 55.55415], + [37.703637, 55.55406], + [37.703548, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703548, 55.55415], + [37.703548, 55.554239], + [37.703637, 55.554239], + [37.703637, 55.55415], + [37.703548, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703548, 55.554239], + [37.703548, 55.554329], + [37.703637, 55.554329], + [37.703637, 55.554239], + [37.703548, 55.554239] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703548, 55.554329], + [37.703548, 55.554419], + [37.703637, 55.554419], + [37.703637, 55.554329], + [37.703548, 55.554329] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703548, 55.554419], + [37.703548, 55.554509], + [37.703637, 55.554509], + [37.703637, 55.554419], + [37.703548, 55.554419] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703548, 55.554509], + [37.703548, 55.554599], + [37.703637, 55.554599], + [37.703637, 55.554509], + [37.703548, 55.554509] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703548, 55.554599], + [37.703548, 55.554689], + [37.703637, 55.554689], + [37.703637, 55.554599], + [37.703548, 55.554599] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703548, 55.554689], + [37.703548, 55.554778], + [37.703637, 55.554778], + [37.703637, 55.554689], + [37.703548, 55.554689] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.552173], + [37.703637, 55.552263], + [37.703727, 55.552263], + [37.703727, 55.552173], + [37.703637, 55.552173] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.552263], + [37.703637, 55.552353], + [37.703727, 55.552353], + [37.703727, 55.552263], + [37.703637, 55.552263] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.552353], + [37.703637, 55.552443], + [37.703727, 55.552443], + [37.703727, 55.552353], + [37.703637, 55.552353] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.552443], + [37.703637, 55.552533], + [37.703727, 55.552533], + [37.703727, 55.552443], + [37.703637, 55.552443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.552533], + [37.703637, 55.552623], + [37.703727, 55.552623], + [37.703727, 55.552533], + [37.703637, 55.552533] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.552623], + [37.703637, 55.552712], + [37.703727, 55.552712], + [37.703727, 55.552623], + [37.703637, 55.552623] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.552712], + [37.703637, 55.552802], + [37.703727, 55.552802], + [37.703727, 55.552712], + [37.703637, 55.552712] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.552802], + [37.703637, 55.552892], + [37.703727, 55.552892], + [37.703727, 55.552802], + [37.703637, 55.552802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.552892], + [37.703637, 55.552982], + [37.703727, 55.552982], + [37.703727, 55.552892], + [37.703637, 55.552892] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.552982], + [37.703637, 55.553072], + [37.703727, 55.553072], + [37.703727, 55.552982], + [37.703637, 55.552982] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.553072], + [37.703637, 55.553162], + [37.703727, 55.553162], + [37.703727, 55.553072], + [37.703637, 55.553072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.553162], + [37.703637, 55.553251], + [37.703727, 55.553251], + [37.703727, 55.553162], + [37.703637, 55.553162] ] ] } @@ -6376,11 +11800,14091 @@ "type": "Polygon", "coordinates": [ [ - [37.703478, 55.553161], - [37.703478, 55.553251], [37.703637, 55.553251], - [37.703637, 55.553161], - [37.703478, 55.553161] + [37.703637, 55.553341], + [37.703727, 55.553341], + [37.703727, 55.553251], + [37.703637, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.553341], + [37.703637, 55.553431], + [37.703727, 55.553431], + [37.703727, 55.553341], + [37.703637, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.553431], + [37.703637, 55.553521], + [37.703727, 55.553521], + [37.703727, 55.553431], + [37.703637, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.553521], + [37.703637, 55.553611], + [37.703727, 55.553611], + [37.703727, 55.553521], + [37.703637, 55.553521] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.553611], + [37.703637, 55.5537], + [37.703727, 55.5537], + [37.703727, 55.553611], + [37.703637, 55.553611] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.5537], + [37.703637, 55.55379], + [37.703727, 55.55379], + [37.703727, 55.5537], + [37.703637, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.55379], + [37.703637, 55.55388], + [37.703727, 55.55388], + [37.703727, 55.55379], + [37.703637, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.55388], + [37.703637, 55.55397], + [37.703727, 55.55397], + [37.703727, 55.55388], + [37.703637, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.55397], + [37.703637, 55.55406], + [37.703727, 55.55406], + [37.703727, 55.55397], + [37.703637, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.55406], + [37.703637, 55.55415], + [37.703727, 55.55415], + [37.703727, 55.55406], + [37.703637, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.55415], + [37.703637, 55.554239], + [37.703727, 55.554239], + [37.703727, 55.55415], + [37.703637, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.554239], + [37.703637, 55.554329], + [37.703727, 55.554329], + [37.703727, 55.554239], + [37.703637, 55.554239] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.554329], + [37.703637, 55.554419], + [37.703727, 55.554419], + [37.703727, 55.554329], + [37.703637, 55.554329] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.554419], + [37.703637, 55.554509], + [37.703727, 55.554509], + [37.703727, 55.554419], + [37.703637, 55.554419] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.554509], + [37.703637, 55.554599], + [37.703727, 55.554599], + [37.703727, 55.554509], + [37.703637, 55.554509] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.554599], + [37.703637, 55.554689], + [37.703727, 55.554689], + [37.703727, 55.554599], + [37.703637, 55.554599] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703637, 55.554689], + [37.703637, 55.554778], + [37.703727, 55.554778], + [37.703727, 55.554689], + [37.703637, 55.554689] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703727, 55.552173], + [37.703727, 55.552263], + [37.703817, 55.552263], + [37.703817, 55.552173], + [37.703727, 55.552173] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703727, 55.552263], + [37.703727, 55.552353], + [37.703817, 55.552353], + [37.703817, 55.552263], + [37.703727, 55.552263] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703727, 55.552353], + [37.703727, 55.552443], + [37.703817, 55.552443], + [37.703817, 55.552353], + [37.703727, 55.552353] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703727, 55.552443], + [37.703727, 55.552533], + [37.703817, 55.552533], + [37.703817, 55.552443], + [37.703727, 55.552443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703727, 55.552533], + [37.703727, 55.552623], + [37.703817, 55.552623], + [37.703817, 55.552533], + [37.703727, 55.552533] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703727, 55.552623], + [37.703727, 55.552712], + [37.703817, 55.552712], + [37.703817, 55.552623], + [37.703727, 55.552623] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703727, 55.552712], + [37.703727, 55.552802], + [37.703817, 55.552802], + [37.703817, 55.552712], + [37.703727, 55.552712] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703727, 55.552802], + [37.703727, 55.552892], + [37.703817, 55.552892], + [37.703817, 55.552802], + [37.703727, 55.552802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703727, 55.552892], + [37.703727, 55.552982], + [37.703817, 55.552982], + [37.703817, 55.552892], + [37.703727, 55.552892] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703727, 55.552982], + [37.703727, 55.553072], + [37.703817, 55.553072], + [37.703817, 55.552982], + [37.703727, 55.552982] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703727, 55.553072], + [37.703727, 55.553162], + [37.703817, 55.553162], + [37.703817, 55.553072], + [37.703727, 55.553072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703727, 55.553162], + [37.703727, 55.553251], + [37.703817, 55.553251], + [37.703817, 55.553162], + [37.703727, 55.553162] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703727, 55.553251], + [37.703727, 55.553341], + [37.703817, 55.553341], + [37.703817, 55.553251], + [37.703727, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703727, 55.553341], + [37.703727, 55.553431], + [37.703817, 55.553431], + [37.703817, 55.553341], + [37.703727, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703727, 55.553431], + [37.703727, 55.553521], + [37.703817, 55.553521], + [37.703817, 55.553431], + [37.703727, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703727, 55.553521], + [37.703727, 55.553611], + [37.703817, 55.553611], + [37.703817, 55.553521], + [37.703727, 55.553521] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703727, 55.553611], + [37.703727, 55.5537], + [37.703817, 55.5537], + [37.703817, 55.553611], + [37.703727, 55.553611] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703727, 55.5537], + [37.703727, 55.55379], + [37.703817, 55.55379], + [37.703817, 55.5537], + [37.703727, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703727, 55.55379], + [37.703727, 55.55388], + [37.703817, 55.55388], + [37.703817, 55.55379], + [37.703727, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703727, 55.55388], + [37.703727, 55.55397], + [37.703817, 55.55397], + [37.703817, 55.55388], + [37.703727, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703727, 55.55397], + [37.703727, 55.55406], + [37.703817, 55.55406], + [37.703817, 55.55397], + [37.703727, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703727, 55.55406], + [37.703727, 55.55415], + [37.703817, 55.55415], + [37.703817, 55.55406], + [37.703727, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703727, 55.55415], + [37.703727, 55.554239], + [37.703817, 55.554239], + [37.703817, 55.55415], + [37.703727, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703727, 55.554239], + [37.703727, 55.554329], + [37.703817, 55.554329], + [37.703817, 55.554239], + [37.703727, 55.554239] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703727, 55.554329], + [37.703727, 55.554419], + [37.703817, 55.554419], + [37.703817, 55.554329], + [37.703727, 55.554329] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703727, 55.554419], + [37.703727, 55.554509], + [37.703817, 55.554509], + [37.703817, 55.554419], + [37.703727, 55.554419] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703727, 55.554509], + [37.703727, 55.554599], + [37.703817, 55.554599], + [37.703817, 55.554509], + [37.703727, 55.554509] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703727, 55.554599], + [37.703727, 55.554689], + [37.703817, 55.554689], + [37.703817, 55.554599], + [37.703727, 55.554599] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703727, 55.554689], + [37.703727, 55.554778], + [37.703817, 55.554778], + [37.703817, 55.554689], + [37.703727, 55.554689] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703817, 55.552173], + [37.703817, 55.552263], + [37.703907, 55.552263], + [37.703907, 55.552173], + [37.703817, 55.552173] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703817, 55.552263], + [37.703817, 55.552353], + [37.703907, 55.552353], + [37.703907, 55.552263], + [37.703817, 55.552263] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703817, 55.552353], + [37.703817, 55.552443], + [37.703907, 55.552443], + [37.703907, 55.552353], + [37.703817, 55.552353] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703817, 55.552443], + [37.703817, 55.552533], + [37.703907, 55.552533], + [37.703907, 55.552443], + [37.703817, 55.552443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703817, 55.552533], + [37.703817, 55.552623], + [37.703907, 55.552623], + [37.703907, 55.552533], + [37.703817, 55.552533] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703817, 55.552623], + [37.703817, 55.552712], + [37.703907, 55.552712], + [37.703907, 55.552623], + [37.703817, 55.552623] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703817, 55.552712], + [37.703817, 55.552802], + [37.703907, 55.552802], + [37.703907, 55.552712], + [37.703817, 55.552712] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703817, 55.552802], + [37.703817, 55.552892], + [37.703907, 55.552892], + [37.703907, 55.552802], + [37.703817, 55.552802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703817, 55.552892], + [37.703817, 55.552982], + [37.703907, 55.552982], + [37.703907, 55.552892], + [37.703817, 55.552892] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703817, 55.552982], + [37.703817, 55.553072], + [37.703907, 55.553072], + [37.703907, 55.552982], + [37.703817, 55.552982] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703817, 55.553072], + [37.703817, 55.553162], + [37.703907, 55.553162], + [37.703907, 55.553072], + [37.703817, 55.553072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703817, 55.553162], + [37.703817, 55.553251], + [37.703907, 55.553251], + [37.703907, 55.553162], + [37.703817, 55.553162] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703817, 55.553251], + [37.703817, 55.553341], + [37.703907, 55.553341], + [37.703907, 55.553251], + [37.703817, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703817, 55.553341], + [37.703817, 55.553431], + [37.703907, 55.553431], + [37.703907, 55.553341], + [37.703817, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703817, 55.553431], + [37.703817, 55.553521], + [37.703907, 55.553521], + [37.703907, 55.553431], + [37.703817, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703817, 55.553521], + [37.703817, 55.553611], + [37.703907, 55.553611], + [37.703907, 55.553521], + [37.703817, 55.553521] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703817, 55.553611], + [37.703817, 55.5537], + [37.703907, 55.5537], + [37.703907, 55.553611], + [37.703817, 55.553611] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703817, 55.5537], + [37.703817, 55.55379], + [37.703907, 55.55379], + [37.703907, 55.5537], + [37.703817, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703817, 55.55379], + [37.703817, 55.55388], + [37.703907, 55.55388], + [37.703907, 55.55379], + [37.703817, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703817, 55.55388], + [37.703817, 55.55397], + [37.703907, 55.55397], + [37.703907, 55.55388], + [37.703817, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703817, 55.55397], + [37.703817, 55.55406], + [37.703907, 55.55406], + [37.703907, 55.55397], + [37.703817, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703817, 55.55406], + [37.703817, 55.55415], + [37.703907, 55.55415], + [37.703907, 55.55406], + [37.703817, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703817, 55.55415], + [37.703817, 55.554239], + [37.703907, 55.554239], + [37.703907, 55.55415], + [37.703817, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703817, 55.554239], + [37.703817, 55.554329], + [37.703907, 55.554329], + [37.703907, 55.554239], + [37.703817, 55.554239] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703817, 55.554329], + [37.703817, 55.554419], + [37.703907, 55.554419], + [37.703907, 55.554329], + [37.703817, 55.554329] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703817, 55.554419], + [37.703817, 55.554509], + [37.703907, 55.554509], + [37.703907, 55.554419], + [37.703817, 55.554419] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703817, 55.554509], + [37.703817, 55.554599], + [37.703907, 55.554599], + [37.703907, 55.554509], + [37.703817, 55.554509] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703817, 55.554599], + [37.703817, 55.554689], + [37.703907, 55.554689], + [37.703907, 55.554599], + [37.703817, 55.554599] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703817, 55.554689], + [37.703817, 55.554778], + [37.703907, 55.554778], + [37.703907, 55.554689], + [37.703817, 55.554689] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703817, 55.554778], + [37.703817, 55.554868], + [37.703907, 55.554868], + [37.703907, 55.554778], + [37.703817, 55.554778] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703907, 55.552173], + [37.703907, 55.552263], + [37.703997, 55.552263], + [37.703997, 55.552173], + [37.703907, 55.552173] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703907, 55.552263], + [37.703907, 55.552353], + [37.703997, 55.552353], + [37.703997, 55.552263], + [37.703907, 55.552263] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703907, 55.552353], + [37.703907, 55.552443], + [37.703997, 55.552443], + [37.703997, 55.552353], + [37.703907, 55.552353] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703907, 55.552443], + [37.703907, 55.552533], + [37.703997, 55.552533], + [37.703997, 55.552443], + [37.703907, 55.552443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703907, 55.552533], + [37.703907, 55.552623], + [37.703997, 55.552623], + [37.703997, 55.552533], + [37.703907, 55.552533] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703907, 55.552623], + [37.703907, 55.552712], + [37.703997, 55.552712], + [37.703997, 55.552623], + [37.703907, 55.552623] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703907, 55.552712], + [37.703907, 55.552802], + [37.703997, 55.552802], + [37.703997, 55.552712], + [37.703907, 55.552712] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703907, 55.552802], + [37.703907, 55.552892], + [37.703997, 55.552892], + [37.703997, 55.552802], + [37.703907, 55.552802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703907, 55.552892], + [37.703907, 55.552982], + [37.703997, 55.552982], + [37.703997, 55.552892], + [37.703907, 55.552892] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703907, 55.552982], + [37.703907, 55.553072], + [37.703997, 55.553072], + [37.703997, 55.552982], + [37.703907, 55.552982] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703907, 55.553072], + [37.703907, 55.553162], + [37.703997, 55.553162], + [37.703997, 55.553072], + [37.703907, 55.553072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703907, 55.553162], + [37.703907, 55.553251], + [37.703997, 55.553251], + [37.703997, 55.553162], + [37.703907, 55.553162] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703907, 55.553251], + [37.703907, 55.553341], + [37.703997, 55.553341], + [37.703997, 55.553251], + [37.703907, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703907, 55.553341], + [37.703907, 55.553431], + [37.703997, 55.553431], + [37.703997, 55.553341], + [37.703907, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703907, 55.553431], + [37.703907, 55.553521], + [37.703997, 55.553521], + [37.703997, 55.553431], + [37.703907, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703907, 55.553521], + [37.703907, 55.553611], + [37.703997, 55.553611], + [37.703997, 55.553521], + [37.703907, 55.553521] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703907, 55.553611], + [37.703907, 55.5537], + [37.703997, 55.5537], + [37.703997, 55.553611], + [37.703907, 55.553611] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703907, 55.5537], + [37.703907, 55.55379], + [37.703997, 55.55379], + [37.703997, 55.5537], + [37.703907, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703907, 55.55379], + [37.703907, 55.55388], + [37.703997, 55.55388], + [37.703997, 55.55379], + [37.703907, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703907, 55.55388], + [37.703907, 55.55397], + [37.703997, 55.55397], + [37.703997, 55.55388], + [37.703907, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703907, 55.55397], + [37.703907, 55.55406], + [37.703997, 55.55406], + [37.703997, 55.55397], + [37.703907, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703907, 55.55406], + [37.703907, 55.55415], + [37.703997, 55.55415], + [37.703997, 55.55406], + [37.703907, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703907, 55.55415], + [37.703907, 55.554239], + [37.703997, 55.554239], + [37.703997, 55.55415], + [37.703907, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703907, 55.554239], + [37.703907, 55.554329], + [37.703997, 55.554329], + [37.703997, 55.554239], + [37.703907, 55.554239] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703907, 55.554329], + [37.703907, 55.554419], + [37.703997, 55.554419], + [37.703997, 55.554329], + [37.703907, 55.554329] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703907, 55.554419], + [37.703907, 55.554509], + [37.703997, 55.554509], + [37.703997, 55.554419], + [37.703907, 55.554419] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703907, 55.554509], + [37.703907, 55.554599], + [37.703997, 55.554599], + [37.703997, 55.554509], + [37.703907, 55.554509] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703907, 55.554599], + [37.703907, 55.554689], + [37.703997, 55.554689], + [37.703997, 55.554599], + [37.703907, 55.554599] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703907, 55.554689], + [37.703907, 55.554778], + [37.703997, 55.554778], + [37.703997, 55.554689], + [37.703907, 55.554689] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703907, 55.554778], + [37.703907, 55.554868], + [37.703997, 55.554868], + [37.703997, 55.554778], + [37.703907, 55.554778] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703997, 55.552084], + [37.703997, 55.552173], + [37.704087, 55.552173], + [37.704087, 55.552084], + [37.703997, 55.552084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703997, 55.552173], + [37.703997, 55.552263], + [37.704087, 55.552263], + [37.704087, 55.552173], + [37.703997, 55.552173] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703997, 55.552263], + [37.703997, 55.552353], + [37.704087, 55.552353], + [37.704087, 55.552263], + [37.703997, 55.552263] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703997, 55.552353], + [37.703997, 55.552443], + [37.704087, 55.552443], + [37.704087, 55.552353], + [37.703997, 55.552353] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703997, 55.552443], + [37.703997, 55.552533], + [37.704087, 55.552533], + [37.704087, 55.552443], + [37.703997, 55.552443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703997, 55.552533], + [37.703997, 55.552623], + [37.704087, 55.552623], + [37.704087, 55.552533], + [37.703997, 55.552533] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703997, 55.552623], + [37.703997, 55.552712], + [37.704087, 55.552712], + [37.704087, 55.552623], + [37.703997, 55.552623] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703997, 55.552712], + [37.703997, 55.552802], + [37.704087, 55.552802], + [37.704087, 55.552712], + [37.703997, 55.552712] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703997, 55.552802], + [37.703997, 55.552892], + [37.704087, 55.552892], + [37.704087, 55.552802], + [37.703997, 55.552802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703997, 55.552892], + [37.703997, 55.552982], + [37.704087, 55.552982], + [37.704087, 55.552892], + [37.703997, 55.552892] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703997, 55.552982], + [37.703997, 55.553072], + [37.704087, 55.553072], + [37.704087, 55.552982], + [37.703997, 55.552982] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703997, 55.553072], + [37.703997, 55.553162], + [37.704087, 55.553162], + [37.704087, 55.553072], + [37.703997, 55.553072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703997, 55.553162], + [37.703997, 55.553251], + [37.704087, 55.553251], + [37.704087, 55.553162], + [37.703997, 55.553162] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703997, 55.553251], + [37.703997, 55.553341], + [37.704087, 55.553341], + [37.704087, 55.553251], + [37.703997, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703997, 55.553341], + [37.703997, 55.553431], + [37.704087, 55.553431], + [37.704087, 55.553341], + [37.703997, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703997, 55.553431], + [37.703997, 55.553521], + [37.704087, 55.553521], + [37.704087, 55.553431], + [37.703997, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703997, 55.553521], + [37.703997, 55.553611], + [37.704087, 55.553611], + [37.704087, 55.553521], + [37.703997, 55.553521] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703997, 55.553611], + [37.703997, 55.5537], + [37.704087, 55.5537], + [37.704087, 55.553611], + [37.703997, 55.553611] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703997, 55.5537], + [37.703997, 55.55379], + [37.704087, 55.55379], + [37.704087, 55.5537], + [37.703997, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703997, 55.55379], + [37.703997, 55.55388], + [37.704087, 55.55388], + [37.704087, 55.55379], + [37.703997, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703997, 55.55388], + [37.703997, 55.55397], + [37.704087, 55.55397], + [37.704087, 55.55388], + [37.703997, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703997, 55.55397], + [37.703997, 55.55406], + [37.704087, 55.55406], + [37.704087, 55.55397], + [37.703997, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703997, 55.55406], + [37.703997, 55.55415], + [37.704087, 55.55415], + [37.704087, 55.55406], + [37.703997, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703997, 55.55415], + [37.703997, 55.554239], + [37.704087, 55.554239], + [37.704087, 55.55415], + [37.703997, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703997, 55.554239], + [37.703997, 55.554329], + [37.704087, 55.554329], + [37.704087, 55.554239], + [37.703997, 55.554239] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703997, 55.554329], + [37.703997, 55.554419], + [37.704087, 55.554419], + [37.704087, 55.554329], + [37.703997, 55.554329] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703997, 55.554419], + [37.703997, 55.554509], + [37.704087, 55.554509], + [37.704087, 55.554419], + [37.703997, 55.554419] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703997, 55.554509], + [37.703997, 55.554599], + [37.704087, 55.554599], + [37.704087, 55.554509], + [37.703997, 55.554509] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703997, 55.554599], + [37.703997, 55.554689], + [37.704087, 55.554689], + [37.704087, 55.554599], + [37.703997, 55.554599] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703997, 55.554689], + [37.703997, 55.554778], + [37.704087, 55.554778], + [37.704087, 55.554689], + [37.703997, 55.554689] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.703997, 55.554778], + [37.703997, 55.554868], + [37.704087, 55.554868], + [37.704087, 55.554778], + [37.703997, 55.554778] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704087, 55.552084], + [37.704087, 55.552173], + [37.704176, 55.552173], + [37.704176, 55.552084], + [37.704087, 55.552084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704087, 55.552173], + [37.704087, 55.552263], + [37.704176, 55.552263], + [37.704176, 55.552173], + [37.704087, 55.552173] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704087, 55.552263], + [37.704087, 55.552353], + [37.704176, 55.552353], + [37.704176, 55.552263], + [37.704087, 55.552263] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704087, 55.552353], + [37.704087, 55.552443], + [37.704176, 55.552443], + [37.704176, 55.552353], + [37.704087, 55.552353] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704087, 55.552443], + [37.704087, 55.552533], + [37.704176, 55.552533], + [37.704176, 55.552443], + [37.704087, 55.552443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704087, 55.552533], + [37.704087, 55.552623], + [37.704176, 55.552623], + [37.704176, 55.552533], + [37.704087, 55.552533] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704087, 55.552623], + [37.704087, 55.552712], + [37.704176, 55.552712], + [37.704176, 55.552623], + [37.704087, 55.552623] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704087, 55.552712], + [37.704087, 55.552802], + [37.704176, 55.552802], + [37.704176, 55.552712], + [37.704087, 55.552712] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704087, 55.552802], + [37.704087, 55.552892], + [37.704176, 55.552892], + [37.704176, 55.552802], + [37.704087, 55.552802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704087, 55.552892], + [37.704087, 55.552982], + [37.704176, 55.552982], + [37.704176, 55.552892], + [37.704087, 55.552892] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704087, 55.552982], + [37.704087, 55.553072], + [37.704176, 55.553072], + [37.704176, 55.552982], + [37.704087, 55.552982] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704087, 55.553072], + [37.704087, 55.553162], + [37.704176, 55.553162], + [37.704176, 55.553072], + [37.704087, 55.553072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704087, 55.553162], + [37.704087, 55.553251], + [37.704176, 55.553251], + [37.704176, 55.553162], + [37.704087, 55.553162] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704087, 55.553251], + [37.704087, 55.553341], + [37.704176, 55.553341], + [37.704176, 55.553251], + [37.704087, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704087, 55.553341], + [37.704087, 55.553431], + [37.704176, 55.553431], + [37.704176, 55.553341], + [37.704087, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704087, 55.553431], + [37.704087, 55.553521], + [37.704176, 55.553521], + [37.704176, 55.553431], + [37.704087, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704087, 55.553521], + [37.704087, 55.553611], + [37.704176, 55.553611], + [37.704176, 55.553521], + [37.704087, 55.553521] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704087, 55.553611], + [37.704087, 55.5537], + [37.704176, 55.5537], + [37.704176, 55.553611], + [37.704087, 55.553611] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704087, 55.5537], + [37.704087, 55.55379], + [37.704176, 55.55379], + [37.704176, 55.5537], + [37.704087, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704087, 55.55379], + [37.704087, 55.55388], + [37.704176, 55.55388], + [37.704176, 55.55379], + [37.704087, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704087, 55.55388], + [37.704087, 55.55397], + [37.704176, 55.55397], + [37.704176, 55.55388], + [37.704087, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704087, 55.55397], + [37.704087, 55.55406], + [37.704176, 55.55406], + [37.704176, 55.55397], + [37.704087, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704087, 55.55406], + [37.704087, 55.55415], + [37.704176, 55.55415], + [37.704176, 55.55406], + [37.704087, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704087, 55.55415], + [37.704087, 55.554239], + [37.704176, 55.554239], + [37.704176, 55.55415], + [37.704087, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704087, 55.554239], + [37.704087, 55.554329], + [37.704176, 55.554329], + [37.704176, 55.554239], + [37.704087, 55.554239] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704087, 55.554329], + [37.704087, 55.554419], + [37.704176, 55.554419], + [37.704176, 55.554329], + [37.704087, 55.554329] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704087, 55.554419], + [37.704087, 55.554509], + [37.704176, 55.554509], + [37.704176, 55.554419], + [37.704087, 55.554419] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704087, 55.554509], + [37.704087, 55.554599], + [37.704176, 55.554599], + [37.704176, 55.554509], + [37.704087, 55.554509] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704087, 55.554599], + [37.704087, 55.554689], + [37.704176, 55.554689], + [37.704176, 55.554599], + [37.704087, 55.554599] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704087, 55.554689], + [37.704087, 55.554778], + [37.704176, 55.554778], + [37.704176, 55.554689], + [37.704087, 55.554689] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704087, 55.554778], + [37.704087, 55.554868], + [37.704176, 55.554868], + [37.704176, 55.554778], + [37.704087, 55.554778] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704087, 55.554868], + [37.704087, 55.554958], + [37.704176, 55.554958], + [37.704176, 55.554868], + [37.704087, 55.554868] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704176, 55.552084], + [37.704176, 55.552173], + [37.704266, 55.552173], + [37.704266, 55.552084], + [37.704176, 55.552084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704176, 55.552173], + [37.704176, 55.552263], + [37.704266, 55.552263], + [37.704266, 55.552173], + [37.704176, 55.552173] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704176, 55.552263], + [37.704176, 55.552353], + [37.704266, 55.552353], + [37.704266, 55.552263], + [37.704176, 55.552263] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704176, 55.552353], + [37.704176, 55.552443], + [37.704266, 55.552443], + [37.704266, 55.552353], + [37.704176, 55.552353] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704176, 55.552443], + [37.704176, 55.552533], + [37.704266, 55.552533], + [37.704266, 55.552443], + [37.704176, 55.552443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704176, 55.552533], + [37.704176, 55.552623], + [37.704266, 55.552623], + [37.704266, 55.552533], + [37.704176, 55.552533] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704176, 55.552623], + [37.704176, 55.552712], + [37.704266, 55.552712], + [37.704266, 55.552623], + [37.704176, 55.552623] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704176, 55.552712], + [37.704176, 55.552802], + [37.704266, 55.552802], + [37.704266, 55.552712], + [37.704176, 55.552712] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704176, 55.552802], + [37.704176, 55.552892], + [37.704266, 55.552892], + [37.704266, 55.552802], + [37.704176, 55.552802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704176, 55.552892], + [37.704176, 55.552982], + [37.704266, 55.552982], + [37.704266, 55.552892], + [37.704176, 55.552892] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704176, 55.552982], + [37.704176, 55.553072], + [37.704266, 55.553072], + [37.704266, 55.552982], + [37.704176, 55.552982] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704176, 55.553072], + [37.704176, 55.553162], + [37.704266, 55.553162], + [37.704266, 55.553072], + [37.704176, 55.553072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704176, 55.553162], + [37.704176, 55.553251], + [37.704266, 55.553251], + [37.704266, 55.553162], + [37.704176, 55.553162] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704176, 55.553251], + [37.704176, 55.553341], + [37.704266, 55.553341], + [37.704266, 55.553251], + [37.704176, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704176, 55.553341], + [37.704176, 55.553431], + [37.704266, 55.553431], + [37.704266, 55.553341], + [37.704176, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704176, 55.553431], + [37.704176, 55.553521], + [37.704266, 55.553521], + [37.704266, 55.553431], + [37.704176, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704176, 55.553521], + [37.704176, 55.553611], + [37.704266, 55.553611], + [37.704266, 55.553521], + [37.704176, 55.553521] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704176, 55.553611], + [37.704176, 55.5537], + [37.704266, 55.5537], + [37.704266, 55.553611], + [37.704176, 55.553611] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704176, 55.5537], + [37.704176, 55.55379], + [37.704266, 55.55379], + [37.704266, 55.5537], + [37.704176, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704176, 55.55379], + [37.704176, 55.55388], + [37.704266, 55.55388], + [37.704266, 55.55379], + [37.704176, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704176, 55.55388], + [37.704176, 55.55397], + [37.704266, 55.55397], + [37.704266, 55.55388], + [37.704176, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704176, 55.55397], + [37.704176, 55.55406], + [37.704266, 55.55406], + [37.704266, 55.55397], + [37.704176, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704176, 55.55406], + [37.704176, 55.55415], + [37.704266, 55.55415], + [37.704266, 55.55406], + [37.704176, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704176, 55.55415], + [37.704176, 55.554239], + [37.704266, 55.554239], + [37.704266, 55.55415], + [37.704176, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704176, 55.554239], + [37.704176, 55.554329], + [37.704266, 55.554329], + [37.704266, 55.554239], + [37.704176, 55.554239] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704176, 55.554329], + [37.704176, 55.554419], + [37.704266, 55.554419], + [37.704266, 55.554329], + [37.704176, 55.554329] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704176, 55.554419], + [37.704176, 55.554509], + [37.704266, 55.554509], + [37.704266, 55.554419], + [37.704176, 55.554419] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704176, 55.554509], + [37.704176, 55.554599], + [37.704266, 55.554599], + [37.704266, 55.554509], + [37.704176, 55.554509] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704176, 55.554599], + [37.704176, 55.554689], + [37.704266, 55.554689], + [37.704266, 55.554599], + [37.704176, 55.554599] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704176, 55.554689], + [37.704176, 55.554778], + [37.704266, 55.554778], + [37.704266, 55.554689], + [37.704176, 55.554689] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704176, 55.554778], + [37.704176, 55.554868], + [37.704266, 55.554868], + [37.704266, 55.554778], + [37.704176, 55.554778] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704176, 55.554868], + [37.704176, 55.554958], + [37.704266, 55.554958], + [37.704266, 55.554868], + [37.704176, 55.554868] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704266, 55.551994], + [37.704266, 55.552084], + [37.704356, 55.552084], + [37.704356, 55.551994], + [37.704266, 55.551994] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704266, 55.552084], + [37.704266, 55.552173], + [37.704356, 55.552173], + [37.704356, 55.552084], + [37.704266, 55.552084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704266, 55.552173], + [37.704266, 55.552263], + [37.704356, 55.552263], + [37.704356, 55.552173], + [37.704266, 55.552173] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704266, 55.552263], + [37.704266, 55.552353], + [37.704356, 55.552353], + [37.704356, 55.552263], + [37.704266, 55.552263] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704266, 55.552353], + [37.704266, 55.552443], + [37.704356, 55.552443], + [37.704356, 55.552353], + [37.704266, 55.552353] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704266, 55.552443], + [37.704266, 55.552533], + [37.704356, 55.552533], + [37.704356, 55.552443], + [37.704266, 55.552443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704266, 55.552533], + [37.704266, 55.552623], + [37.704356, 55.552623], + [37.704356, 55.552533], + [37.704266, 55.552533] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704266, 55.552623], + [37.704266, 55.552712], + [37.704356, 55.552712], + [37.704356, 55.552623], + [37.704266, 55.552623] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704266, 55.552712], + [37.704266, 55.552802], + [37.704356, 55.552802], + [37.704356, 55.552712], + [37.704266, 55.552712] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704266, 55.552802], + [37.704266, 55.552892], + [37.704356, 55.552892], + [37.704356, 55.552802], + [37.704266, 55.552802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704266, 55.552892], + [37.704266, 55.552982], + [37.704356, 55.552982], + [37.704356, 55.552892], + [37.704266, 55.552892] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704266, 55.552982], + [37.704266, 55.553072], + [37.704356, 55.553072], + [37.704356, 55.552982], + [37.704266, 55.552982] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704266, 55.553072], + [37.704266, 55.553162], + [37.704356, 55.553162], + [37.704356, 55.553072], + [37.704266, 55.553072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704266, 55.553162], + [37.704266, 55.553251], + [37.704356, 55.553251], + [37.704356, 55.553162], + [37.704266, 55.553162] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704266, 55.553251], + [37.704266, 55.553341], + [37.704356, 55.553341], + [37.704356, 55.553251], + [37.704266, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704266, 55.553341], + [37.704266, 55.553431], + [37.704356, 55.553431], + [37.704356, 55.553341], + [37.704266, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704266, 55.553431], + [37.704266, 55.553521], + [37.704356, 55.553521], + [37.704356, 55.553431], + [37.704266, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704266, 55.553521], + [37.704266, 55.553611], + [37.704356, 55.553611], + [37.704356, 55.553521], + [37.704266, 55.553521] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704266, 55.553611], + [37.704266, 55.5537], + [37.704356, 55.5537], + [37.704356, 55.553611], + [37.704266, 55.553611] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704266, 55.5537], + [37.704266, 55.55379], + [37.704356, 55.55379], + [37.704356, 55.5537], + [37.704266, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704266, 55.55379], + [37.704266, 55.55388], + [37.704356, 55.55388], + [37.704356, 55.55379], + [37.704266, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704266, 55.55388], + [37.704266, 55.55397], + [37.704356, 55.55397], + [37.704356, 55.55388], + [37.704266, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704266, 55.55397], + [37.704266, 55.55406], + [37.704356, 55.55406], + [37.704356, 55.55397], + [37.704266, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704266, 55.55406], + [37.704266, 55.55415], + [37.704356, 55.55415], + [37.704356, 55.55406], + [37.704266, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704266, 55.55415], + [37.704266, 55.554239], + [37.704356, 55.554239], + [37.704356, 55.55415], + [37.704266, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704266, 55.554239], + [37.704266, 55.554329], + [37.704356, 55.554329], + [37.704356, 55.554239], + [37.704266, 55.554239] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704266, 55.554329], + [37.704266, 55.554419], + [37.704356, 55.554419], + [37.704356, 55.554329], + [37.704266, 55.554329] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704266, 55.554419], + [37.704266, 55.554509], + [37.704356, 55.554509], + [37.704356, 55.554419], + [37.704266, 55.554419] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704266, 55.554509], + [37.704266, 55.554599], + [37.704356, 55.554599], + [37.704356, 55.554509], + [37.704266, 55.554509] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704266, 55.554599], + [37.704266, 55.554689], + [37.704356, 55.554689], + [37.704356, 55.554599], + [37.704266, 55.554599] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704266, 55.554689], + [37.704266, 55.554778], + [37.704356, 55.554778], + [37.704356, 55.554689], + [37.704266, 55.554689] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704266, 55.554778], + [37.704266, 55.554868], + [37.704356, 55.554868], + [37.704356, 55.554778], + [37.704266, 55.554778] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704266, 55.554868], + [37.704266, 55.554958], + [37.704356, 55.554958], + [37.704356, 55.554868], + [37.704266, 55.554868] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704356, 55.551994], + [37.704356, 55.552084], + [37.704446, 55.552084], + [37.704446, 55.551994], + [37.704356, 55.551994] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704356, 55.552084], + [37.704356, 55.552173], + [37.704446, 55.552173], + [37.704446, 55.552084], + [37.704356, 55.552084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704356, 55.552173], + [37.704356, 55.552263], + [37.704446, 55.552263], + [37.704446, 55.552173], + [37.704356, 55.552173] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704356, 55.552263], + [37.704356, 55.552353], + [37.704446, 55.552353], + [37.704446, 55.552263], + [37.704356, 55.552263] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704356, 55.552353], + [37.704356, 55.552443], + [37.704446, 55.552443], + [37.704446, 55.552353], + [37.704356, 55.552353] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704356, 55.552443], + [37.704356, 55.552533], + [37.704446, 55.552533], + [37.704446, 55.552443], + [37.704356, 55.552443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704356, 55.552533], + [37.704356, 55.552623], + [37.704446, 55.552623], + [37.704446, 55.552533], + [37.704356, 55.552533] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704356, 55.552623], + [37.704356, 55.552712], + [37.704446, 55.552712], + [37.704446, 55.552623], + [37.704356, 55.552623] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704356, 55.552712], + [37.704356, 55.552802], + [37.704446, 55.552802], + [37.704446, 55.552712], + [37.704356, 55.552712] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704356, 55.552802], + [37.704356, 55.552892], + [37.704446, 55.552892], + [37.704446, 55.552802], + [37.704356, 55.552802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704356, 55.552892], + [37.704356, 55.552982], + [37.704446, 55.552982], + [37.704446, 55.552892], + [37.704356, 55.552892] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704356, 55.552982], + [37.704356, 55.553072], + [37.704446, 55.553072], + [37.704446, 55.552982], + [37.704356, 55.552982] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704356, 55.553072], + [37.704356, 55.553162], + [37.704446, 55.553162], + [37.704446, 55.553072], + [37.704356, 55.553072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704356, 55.553162], + [37.704356, 55.553251], + [37.704446, 55.553251], + [37.704446, 55.553162], + [37.704356, 55.553162] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704356, 55.553251], + [37.704356, 55.553341], + [37.704446, 55.553341], + [37.704446, 55.553251], + [37.704356, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704356, 55.553341], + [37.704356, 55.553431], + [37.704446, 55.553431], + [37.704446, 55.553341], + [37.704356, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704356, 55.553431], + [37.704356, 55.553521], + [37.704446, 55.553521], + [37.704446, 55.553431], + [37.704356, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704356, 55.553521], + [37.704356, 55.553611], + [37.704446, 55.553611], + [37.704446, 55.553521], + [37.704356, 55.553521] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704356, 55.553611], + [37.704356, 55.5537], + [37.704446, 55.5537], + [37.704446, 55.553611], + [37.704356, 55.553611] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704356, 55.5537], + [37.704356, 55.55379], + [37.704446, 55.55379], + [37.704446, 55.5537], + [37.704356, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704356, 55.55379], + [37.704356, 55.55388], + [37.704446, 55.55388], + [37.704446, 55.55379], + [37.704356, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704356, 55.55388], + [37.704356, 55.55397], + [37.704446, 55.55397], + [37.704446, 55.55388], + [37.704356, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704356, 55.55397], + [37.704356, 55.55406], + [37.704446, 55.55406], + [37.704446, 55.55397], + [37.704356, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704356, 55.55406], + [37.704356, 55.55415], + [37.704446, 55.55415], + [37.704446, 55.55406], + [37.704356, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704356, 55.55415], + [37.704356, 55.554239], + [37.704446, 55.554239], + [37.704446, 55.55415], + [37.704356, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704356, 55.554239], + [37.704356, 55.554329], + [37.704446, 55.554329], + [37.704446, 55.554239], + [37.704356, 55.554239] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704356, 55.554329], + [37.704356, 55.554419], + [37.704446, 55.554419], + [37.704446, 55.554329], + [37.704356, 55.554329] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704356, 55.554419], + [37.704356, 55.554509], + [37.704446, 55.554509], + [37.704446, 55.554419], + [37.704356, 55.554419] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704356, 55.554509], + [37.704356, 55.554599], + [37.704446, 55.554599], + [37.704446, 55.554509], + [37.704356, 55.554509] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704356, 55.554599], + [37.704356, 55.554689], + [37.704446, 55.554689], + [37.704446, 55.554599], + [37.704356, 55.554599] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704356, 55.554689], + [37.704356, 55.554778], + [37.704446, 55.554778], + [37.704446, 55.554689], + [37.704356, 55.554689] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704356, 55.554778], + [37.704356, 55.554868], + [37.704446, 55.554868], + [37.704446, 55.554778], + [37.704356, 55.554778] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704356, 55.554868], + [37.704356, 55.554958], + [37.704446, 55.554958], + [37.704446, 55.554868], + [37.704356, 55.554868] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704446, 55.551994], + [37.704446, 55.552084], + [37.704536, 55.552084], + [37.704536, 55.551994], + [37.704446, 55.551994] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704446, 55.552084], + [37.704446, 55.552173], + [37.704536, 55.552173], + [37.704536, 55.552084], + [37.704446, 55.552084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704446, 55.552173], + [37.704446, 55.552263], + [37.704536, 55.552263], + [37.704536, 55.552173], + [37.704446, 55.552173] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704446, 55.552263], + [37.704446, 55.552353], + [37.704536, 55.552353], + [37.704536, 55.552263], + [37.704446, 55.552263] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704446, 55.552353], + [37.704446, 55.552443], + [37.704536, 55.552443], + [37.704536, 55.552353], + [37.704446, 55.552353] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704446, 55.552443], + [37.704446, 55.552533], + [37.704536, 55.552533], + [37.704536, 55.552443], + [37.704446, 55.552443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704446, 55.552533], + [37.704446, 55.552623], + [37.704536, 55.552623], + [37.704536, 55.552533], + [37.704446, 55.552533] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704446, 55.552623], + [37.704446, 55.552712], + [37.704536, 55.552712], + [37.704536, 55.552623], + [37.704446, 55.552623] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704446, 55.552712], + [37.704446, 55.552802], + [37.704536, 55.552802], + [37.704536, 55.552712], + [37.704446, 55.552712] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704446, 55.552802], + [37.704446, 55.552892], + [37.704536, 55.552892], + [37.704536, 55.552802], + [37.704446, 55.552802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704446, 55.552892], + [37.704446, 55.552982], + [37.704536, 55.552982], + [37.704536, 55.552892], + [37.704446, 55.552892] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704446, 55.552982], + [37.704446, 55.553072], + [37.704536, 55.553072], + [37.704536, 55.552982], + [37.704446, 55.552982] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704446, 55.553072], + [37.704446, 55.553162], + [37.704536, 55.553162], + [37.704536, 55.553072], + [37.704446, 55.553072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704446, 55.553162], + [37.704446, 55.553251], + [37.704536, 55.553251], + [37.704536, 55.553162], + [37.704446, 55.553162] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704446, 55.553251], + [37.704446, 55.553341], + [37.704536, 55.553341], + [37.704536, 55.553251], + [37.704446, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704446, 55.553341], + [37.704446, 55.553431], + [37.704536, 55.553431], + [37.704536, 55.553341], + [37.704446, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704446, 55.553431], + [37.704446, 55.553521], + [37.704536, 55.553521], + [37.704536, 55.553431], + [37.704446, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704446, 55.553521], + [37.704446, 55.553611], + [37.704536, 55.553611], + [37.704536, 55.553521], + [37.704446, 55.553521] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704446, 55.553611], + [37.704446, 55.5537], + [37.704536, 55.5537], + [37.704536, 55.553611], + [37.704446, 55.553611] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704446, 55.5537], + [37.704446, 55.55379], + [37.704536, 55.55379], + [37.704536, 55.5537], + [37.704446, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704446, 55.55379], + [37.704446, 55.55388], + [37.704536, 55.55388], + [37.704536, 55.55379], + [37.704446, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704446, 55.55388], + [37.704446, 55.55397], + [37.704536, 55.55397], + [37.704536, 55.55388], + [37.704446, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704446, 55.55397], + [37.704446, 55.55406], + [37.704536, 55.55406], + [37.704536, 55.55397], + [37.704446, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704446, 55.55406], + [37.704446, 55.55415], + [37.704536, 55.55415], + [37.704536, 55.55406], + [37.704446, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704446, 55.55415], + [37.704446, 55.554239], + [37.704536, 55.554239], + [37.704536, 55.55415], + [37.704446, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704446, 55.554239], + [37.704446, 55.554329], + [37.704536, 55.554329], + [37.704536, 55.554239], + [37.704446, 55.554239] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704446, 55.554329], + [37.704446, 55.554419], + [37.704536, 55.554419], + [37.704536, 55.554329], + [37.704446, 55.554329] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704446, 55.554419], + [37.704446, 55.554509], + [37.704536, 55.554509], + [37.704536, 55.554419], + [37.704446, 55.554419] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704446, 55.554509], + [37.704446, 55.554599], + [37.704536, 55.554599], + [37.704536, 55.554509], + [37.704446, 55.554509] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704446, 55.554599], + [37.704446, 55.554689], + [37.704536, 55.554689], + [37.704536, 55.554599], + [37.704446, 55.554599] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704446, 55.554689], + [37.704446, 55.554778], + [37.704536, 55.554778], + [37.704536, 55.554689], + [37.704446, 55.554689] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704446, 55.554778], + [37.704446, 55.554868], + [37.704536, 55.554868], + [37.704536, 55.554778], + [37.704446, 55.554778] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704446, 55.554868], + [37.704446, 55.554958], + [37.704536, 55.554958], + [37.704536, 55.554868], + [37.704446, 55.554868] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704446, 55.554958], + [37.704446, 55.555048], + [37.704536, 55.555048], + [37.704536, 55.554958], + [37.704446, 55.554958] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704536, 55.551994], + [37.704536, 55.552084], + [37.704626, 55.552084], + [37.704626, 55.551994], + [37.704536, 55.551994] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704536, 55.552084], + [37.704536, 55.552173], + [37.704626, 55.552173], + [37.704626, 55.552084], + [37.704536, 55.552084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704536, 55.552173], + [37.704536, 55.552263], + [37.704626, 55.552263], + [37.704626, 55.552173], + [37.704536, 55.552173] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704536, 55.552263], + [37.704536, 55.552353], + [37.704626, 55.552353], + [37.704626, 55.552263], + [37.704536, 55.552263] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704536, 55.552353], + [37.704536, 55.552443], + [37.704626, 55.552443], + [37.704626, 55.552353], + [37.704536, 55.552353] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704536, 55.552443], + [37.704536, 55.552533], + [37.704626, 55.552533], + [37.704626, 55.552443], + [37.704536, 55.552443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704536, 55.552533], + [37.704536, 55.552623], + [37.704626, 55.552623], + [37.704626, 55.552533], + [37.704536, 55.552533] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704536, 55.552623], + [37.704536, 55.552712], + [37.704626, 55.552712], + [37.704626, 55.552623], + [37.704536, 55.552623] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704536, 55.552712], + [37.704536, 55.552802], + [37.704626, 55.552802], + [37.704626, 55.552712], + [37.704536, 55.552712] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704536, 55.552802], + [37.704536, 55.552892], + [37.704626, 55.552892], + [37.704626, 55.552802], + [37.704536, 55.552802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704536, 55.552892], + [37.704536, 55.552982], + [37.704626, 55.552982], + [37.704626, 55.552892], + [37.704536, 55.552892] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704536, 55.552982], + [37.704536, 55.553072], + [37.704626, 55.553072], + [37.704626, 55.552982], + [37.704536, 55.552982] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704536, 55.553072], + [37.704536, 55.553162], + [37.704626, 55.553162], + [37.704626, 55.553072], + [37.704536, 55.553072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704536, 55.553162], + [37.704536, 55.553251], + [37.704626, 55.553251], + [37.704626, 55.553162], + [37.704536, 55.553162] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704536, 55.553251], + [37.704536, 55.553341], + [37.704626, 55.553341], + [37.704626, 55.553251], + [37.704536, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704536, 55.553341], + [37.704536, 55.553431], + [37.704626, 55.553431], + [37.704626, 55.553341], + [37.704536, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704536, 55.553431], + [37.704536, 55.553521], + [37.704626, 55.553521], + [37.704626, 55.553431], + [37.704536, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704536, 55.553521], + [37.704536, 55.553611], + [37.704626, 55.553611], + [37.704626, 55.553521], + [37.704536, 55.553521] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704536, 55.553611], + [37.704536, 55.5537], + [37.704626, 55.5537], + [37.704626, 55.553611], + [37.704536, 55.553611] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704536, 55.5537], + [37.704536, 55.55379], + [37.704626, 55.55379], + [37.704626, 55.5537], + [37.704536, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704536, 55.55379], + [37.704536, 55.55388], + [37.704626, 55.55388], + [37.704626, 55.55379], + [37.704536, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704536, 55.55388], + [37.704536, 55.55397], + [37.704626, 55.55397], + [37.704626, 55.55388], + [37.704536, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704536, 55.55397], + [37.704536, 55.55406], + [37.704626, 55.55406], + [37.704626, 55.55397], + [37.704536, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704536, 55.55406], + [37.704536, 55.55415], + [37.704626, 55.55415], + [37.704626, 55.55406], + [37.704536, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704536, 55.55415], + [37.704536, 55.554239], + [37.704626, 55.554239], + [37.704626, 55.55415], + [37.704536, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704536, 55.554239], + [37.704536, 55.554329], + [37.704626, 55.554329], + [37.704626, 55.554239], + [37.704536, 55.554239] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704536, 55.554329], + [37.704536, 55.554419], + [37.704626, 55.554419], + [37.704626, 55.554329], + [37.704536, 55.554329] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704536, 55.554419], + [37.704536, 55.554509], + [37.704626, 55.554509], + [37.704626, 55.554419], + [37.704536, 55.554419] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704536, 55.554509], + [37.704536, 55.554599], + [37.704626, 55.554599], + [37.704626, 55.554509], + [37.704536, 55.554509] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704536, 55.554599], + [37.704536, 55.554689], + [37.704626, 55.554689], + [37.704626, 55.554599], + [37.704536, 55.554599] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704536, 55.554689], + [37.704536, 55.554778], + [37.704626, 55.554778], + [37.704626, 55.554689], + [37.704536, 55.554689] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704536, 55.554778], + [37.704536, 55.554868], + [37.704626, 55.554868], + [37.704626, 55.554778], + [37.704536, 55.554778] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704536, 55.554868], + [37.704536, 55.554958], + [37.704626, 55.554958], + [37.704626, 55.554868], + [37.704536, 55.554868] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704536, 55.554958], + [37.704536, 55.555048], + [37.704626, 55.555048], + [37.704626, 55.554958], + [37.704536, 55.554958] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704626, 55.551904], + [37.704626, 55.551994], + [37.704715, 55.551994], + [37.704715, 55.551904], + [37.704626, 55.551904] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704626, 55.551994], + [37.704626, 55.552084], + [37.704715, 55.552084], + [37.704715, 55.551994], + [37.704626, 55.551994] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704626, 55.552084], + [37.704626, 55.552173], + [37.704715, 55.552173], + [37.704715, 55.552084], + [37.704626, 55.552084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704626, 55.552173], + [37.704626, 55.552263], + [37.704715, 55.552263], + [37.704715, 55.552173], + [37.704626, 55.552173] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704626, 55.552263], + [37.704626, 55.552353], + [37.704715, 55.552353], + [37.704715, 55.552263], + [37.704626, 55.552263] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704626, 55.552353], + [37.704626, 55.552443], + [37.704715, 55.552443], + [37.704715, 55.552353], + [37.704626, 55.552353] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704626, 55.552443], + [37.704626, 55.552533], + [37.704715, 55.552533], + [37.704715, 55.552443], + [37.704626, 55.552443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704626, 55.552533], + [37.704626, 55.552623], + [37.704715, 55.552623], + [37.704715, 55.552533], + [37.704626, 55.552533] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704626, 55.552623], + [37.704626, 55.552712], + [37.704715, 55.552712], + [37.704715, 55.552623], + [37.704626, 55.552623] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704626, 55.552712], + [37.704626, 55.552802], + [37.704715, 55.552802], + [37.704715, 55.552712], + [37.704626, 55.552712] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704626, 55.552802], + [37.704626, 55.552892], + [37.704715, 55.552892], + [37.704715, 55.552802], + [37.704626, 55.552802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704626, 55.552892], + [37.704626, 55.552982], + [37.704715, 55.552982], + [37.704715, 55.552892], + [37.704626, 55.552892] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704626, 55.552982], + [37.704626, 55.553072], + [37.704715, 55.553072], + [37.704715, 55.552982], + [37.704626, 55.552982] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704626, 55.553072], + [37.704626, 55.553162], + [37.704715, 55.553162], + [37.704715, 55.553072], + [37.704626, 55.553072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704626, 55.553162], + [37.704626, 55.553251], + [37.704715, 55.553251], + [37.704715, 55.553162], + [37.704626, 55.553162] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704626, 55.553251], + [37.704626, 55.553341], + [37.704715, 55.553341], + [37.704715, 55.553251], + [37.704626, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704626, 55.553341], + [37.704626, 55.553431], + [37.704715, 55.553431], + [37.704715, 55.553341], + [37.704626, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704626, 55.553431], + [37.704626, 55.553521], + [37.704715, 55.553521], + [37.704715, 55.553431], + [37.704626, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704626, 55.553521], + [37.704626, 55.553611], + [37.704715, 55.553611], + [37.704715, 55.553521], + [37.704626, 55.553521] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704626, 55.553611], + [37.704626, 55.5537], + [37.704715, 55.5537], + [37.704715, 55.553611], + [37.704626, 55.553611] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704626, 55.5537], + [37.704626, 55.55379], + [37.704715, 55.55379], + [37.704715, 55.5537], + [37.704626, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704626, 55.55379], + [37.704626, 55.55388], + [37.704715, 55.55388], + [37.704715, 55.55379], + [37.704626, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704626, 55.55388], + [37.704626, 55.55397], + [37.704715, 55.55397], + [37.704715, 55.55388], + [37.704626, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704626, 55.55397], + [37.704626, 55.55406], + [37.704715, 55.55406], + [37.704715, 55.55397], + [37.704626, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704626, 55.55406], + [37.704626, 55.55415], + [37.704715, 55.55415], + [37.704715, 55.55406], + [37.704626, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704626, 55.55415], + [37.704626, 55.554239], + [37.704715, 55.554239], + [37.704715, 55.55415], + [37.704626, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704626, 55.554239], + [37.704626, 55.554329], + [37.704715, 55.554329], + [37.704715, 55.554239], + [37.704626, 55.554239] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704626, 55.554329], + [37.704626, 55.554419], + [37.704715, 55.554419], + [37.704715, 55.554329], + [37.704626, 55.554329] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704626, 55.554419], + [37.704626, 55.554509], + [37.704715, 55.554509], + [37.704715, 55.554419], + [37.704626, 55.554419] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704626, 55.554509], + [37.704626, 55.554599], + [37.704715, 55.554599], + [37.704715, 55.554509], + [37.704626, 55.554509] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704626, 55.554599], + [37.704626, 55.554689], + [37.704715, 55.554689], + [37.704715, 55.554599], + [37.704626, 55.554599] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704626, 55.554689], + [37.704626, 55.554778], + [37.704715, 55.554778], + [37.704715, 55.554689], + [37.704626, 55.554689] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704626, 55.554778], + [37.704626, 55.554868], + [37.704715, 55.554868], + [37.704715, 55.554778], + [37.704626, 55.554778] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704626, 55.554868], + [37.704626, 55.554958], + [37.704715, 55.554958], + [37.704715, 55.554868], + [37.704626, 55.554868] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704626, 55.554958], + [37.704626, 55.555048], + [37.704715, 55.555048], + [37.704715, 55.554958], + [37.704626, 55.554958] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704715, 55.551904], + [37.704715, 55.551994], + [37.704805, 55.551994], + [37.704805, 55.551904], + [37.704715, 55.551904] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704715, 55.551994], + [37.704715, 55.552084], + [37.704805, 55.552084], + [37.704805, 55.551994], + [37.704715, 55.551994] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704715, 55.552084], + [37.704715, 55.552173], + [37.704805, 55.552173], + [37.704805, 55.552084], + [37.704715, 55.552084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704715, 55.552173], + [37.704715, 55.552263], + [37.704805, 55.552263], + [37.704805, 55.552173], + [37.704715, 55.552173] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704715, 55.552263], + [37.704715, 55.552353], + [37.704805, 55.552353], + [37.704805, 55.552263], + [37.704715, 55.552263] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704715, 55.552353], + [37.704715, 55.552443], + [37.704805, 55.552443], + [37.704805, 55.552353], + [37.704715, 55.552353] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704715, 55.552443], + [37.704715, 55.552533], + [37.704805, 55.552533], + [37.704805, 55.552443], + [37.704715, 55.552443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704715, 55.552533], + [37.704715, 55.552623], + [37.704805, 55.552623], + [37.704805, 55.552533], + [37.704715, 55.552533] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704715, 55.552623], + [37.704715, 55.552712], + [37.704805, 55.552712], + [37.704805, 55.552623], + [37.704715, 55.552623] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704715, 55.552712], + [37.704715, 55.552802], + [37.704805, 55.552802], + [37.704805, 55.552712], + [37.704715, 55.552712] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704715, 55.552802], + [37.704715, 55.552892], + [37.704805, 55.552892], + [37.704805, 55.552802], + [37.704715, 55.552802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704715, 55.552892], + [37.704715, 55.552982], + [37.704805, 55.552982], + [37.704805, 55.552892], + [37.704715, 55.552892] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704715, 55.552982], + [37.704715, 55.553072], + [37.704805, 55.553072], + [37.704805, 55.552982], + [37.704715, 55.552982] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704715, 55.553072], + [37.704715, 55.553162], + [37.704805, 55.553162], + [37.704805, 55.553072], + [37.704715, 55.553072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704715, 55.553162], + [37.704715, 55.553251], + [37.704805, 55.553251], + [37.704805, 55.553162], + [37.704715, 55.553162] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704715, 55.553251], + [37.704715, 55.553341], + [37.704805, 55.553341], + [37.704805, 55.553251], + [37.704715, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704715, 55.553341], + [37.704715, 55.553431], + [37.704805, 55.553431], + [37.704805, 55.553341], + [37.704715, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704715, 55.553431], + [37.704715, 55.553521], + [37.704805, 55.553521], + [37.704805, 55.553431], + [37.704715, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704715, 55.553521], + [37.704715, 55.553611], + [37.704805, 55.553611], + [37.704805, 55.553521], + [37.704715, 55.553521] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704715, 55.553611], + [37.704715, 55.5537], + [37.704805, 55.5537], + [37.704805, 55.553611], + [37.704715, 55.553611] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704715, 55.5537], + [37.704715, 55.55379], + [37.704805, 55.55379], + [37.704805, 55.5537], + [37.704715, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704715, 55.55379], + [37.704715, 55.55388], + [37.704805, 55.55388], + [37.704805, 55.55379], + [37.704715, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704715, 55.55388], + [37.704715, 55.55397], + [37.704805, 55.55397], + [37.704805, 55.55388], + [37.704715, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704715, 55.55397], + [37.704715, 55.55406], + [37.704805, 55.55406], + [37.704805, 55.55397], + [37.704715, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704715, 55.55406], + [37.704715, 55.55415], + [37.704805, 55.55415], + [37.704805, 55.55406], + [37.704715, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704715, 55.55415], + [37.704715, 55.554239], + [37.704805, 55.554239], + [37.704805, 55.55415], + [37.704715, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704715, 55.554239], + [37.704715, 55.554329], + [37.704805, 55.554329], + [37.704805, 55.554239], + [37.704715, 55.554239] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704715, 55.554329], + [37.704715, 55.554419], + [37.704805, 55.554419], + [37.704805, 55.554329], + [37.704715, 55.554329] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704715, 55.554419], + [37.704715, 55.554509], + [37.704805, 55.554509], + [37.704805, 55.554419], + [37.704715, 55.554419] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704715, 55.554509], + [37.704715, 55.554599], + [37.704805, 55.554599], + [37.704805, 55.554509], + [37.704715, 55.554509] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704715, 55.554599], + [37.704715, 55.554689], + [37.704805, 55.554689], + [37.704805, 55.554599], + [37.704715, 55.554599] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704715, 55.554689], + [37.704715, 55.554778], + [37.704805, 55.554778], + [37.704805, 55.554689], + [37.704715, 55.554689] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704715, 55.554778], + [37.704715, 55.554868], + [37.704805, 55.554868], + [37.704805, 55.554778], + [37.704715, 55.554778] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704715, 55.554868], + [37.704715, 55.554958], + [37.704805, 55.554958], + [37.704805, 55.554868], + [37.704715, 55.554868] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704715, 55.554958], + [37.704715, 55.555048], + [37.704805, 55.555048], + [37.704805, 55.554958], + [37.704715, 55.554958] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704805, 55.551904], + [37.704805, 55.551994], + [37.704895, 55.551994], + [37.704895, 55.551904], + [37.704805, 55.551904] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704805, 55.551994], + [37.704805, 55.552084], + [37.704895, 55.552084], + [37.704895, 55.551994], + [37.704805, 55.551994] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704805, 55.552084], + [37.704805, 55.552173], + [37.704895, 55.552173], + [37.704895, 55.552084], + [37.704805, 55.552084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704805, 55.552173], + [37.704805, 55.552263], + [37.704895, 55.552263], + [37.704895, 55.552173], + [37.704805, 55.552173] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704805, 55.552263], + [37.704805, 55.552353], + [37.704895, 55.552353], + [37.704895, 55.552263], + [37.704805, 55.552263] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704805, 55.552353], + [37.704805, 55.552443], + [37.704895, 55.552443], + [37.704895, 55.552353], + [37.704805, 55.552353] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704805, 55.552443], + [37.704805, 55.552533], + [37.704895, 55.552533], + [37.704895, 55.552443], + [37.704805, 55.552443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704805, 55.552533], + [37.704805, 55.552623], + [37.704895, 55.552623], + [37.704895, 55.552533], + [37.704805, 55.552533] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704805, 55.552623], + [37.704805, 55.552712], + [37.704895, 55.552712], + [37.704895, 55.552623], + [37.704805, 55.552623] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704805, 55.552712], + [37.704805, 55.552802], + [37.704895, 55.552802], + [37.704895, 55.552712], + [37.704805, 55.552712] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704805, 55.552802], + [37.704805, 55.552892], + [37.704895, 55.552892], + [37.704895, 55.552802], + [37.704805, 55.552802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704805, 55.552892], + [37.704805, 55.552982], + [37.704895, 55.552982], + [37.704895, 55.552892], + [37.704805, 55.552892] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704805, 55.552982], + [37.704805, 55.553072], + [37.704895, 55.553072], + [37.704895, 55.552982], + [37.704805, 55.552982] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704805, 55.553072], + [37.704805, 55.553162], + [37.704895, 55.553162], + [37.704895, 55.553072], + [37.704805, 55.553072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704805, 55.553162], + [37.704805, 55.553251], + [37.704895, 55.553251], + [37.704895, 55.553162], + [37.704805, 55.553162] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704805, 55.553251], + [37.704805, 55.553341], + [37.704895, 55.553341], + [37.704895, 55.553251], + [37.704805, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704805, 55.553341], + [37.704805, 55.553431], + [37.704895, 55.553431], + [37.704895, 55.553341], + [37.704805, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704805, 55.553431], + [37.704805, 55.553521], + [37.704895, 55.553521], + [37.704895, 55.553431], + [37.704805, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704805, 55.553521], + [37.704805, 55.553611], + [37.704895, 55.553611], + [37.704895, 55.553521], + [37.704805, 55.553521] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704805, 55.553611], + [37.704805, 55.5537], + [37.704895, 55.5537], + [37.704895, 55.553611], + [37.704805, 55.553611] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704805, 55.5537], + [37.704805, 55.55379], + [37.704895, 55.55379], + [37.704895, 55.5537], + [37.704805, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704805, 55.55379], + [37.704805, 55.55388], + [37.704895, 55.55388], + [37.704895, 55.55379], + [37.704805, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704805, 55.55388], + [37.704805, 55.55397], + [37.704895, 55.55397], + [37.704895, 55.55388], + [37.704805, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704805, 55.55397], + [37.704805, 55.55406], + [37.704895, 55.55406], + [37.704895, 55.55397], + [37.704805, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704805, 55.55406], + [37.704805, 55.55415], + [37.704895, 55.55415], + [37.704895, 55.55406], + [37.704805, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704805, 55.55415], + [37.704805, 55.554239], + [37.704895, 55.554239], + [37.704895, 55.55415], + [37.704805, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704805, 55.554239], + [37.704805, 55.554329], + [37.704895, 55.554329], + [37.704895, 55.554239], + [37.704805, 55.554239] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704805, 55.554329], + [37.704805, 55.554419], + [37.704895, 55.554419], + [37.704895, 55.554329], + [37.704805, 55.554329] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704805, 55.554419], + [37.704805, 55.554509], + [37.704895, 55.554509], + [37.704895, 55.554419], + [37.704805, 55.554419] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704805, 55.554509], + [37.704805, 55.554599], + [37.704895, 55.554599], + [37.704895, 55.554509], + [37.704805, 55.554509] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704805, 55.554599], + [37.704805, 55.554689], + [37.704895, 55.554689], + [37.704895, 55.554599], + [37.704805, 55.554599] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704805, 55.554689], + [37.704805, 55.554778], + [37.704895, 55.554778], + [37.704895, 55.554689], + [37.704805, 55.554689] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704805, 55.554778], + [37.704805, 55.554868], + [37.704895, 55.554868], + [37.704895, 55.554778], + [37.704805, 55.554778] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704805, 55.554868], + [37.704805, 55.554958], + [37.704895, 55.554958], + [37.704895, 55.554868], + [37.704805, 55.554868] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704805, 55.554958], + [37.704805, 55.555048], + [37.704895, 55.555048], + [37.704895, 55.554958], + [37.704805, 55.554958] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704805, 55.555048], + [37.704805, 55.555138], + [37.704895, 55.555138], + [37.704895, 55.555048], + [37.704805, 55.555048] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704895, 55.551904], + [37.704895, 55.551994], + [37.704985, 55.551994], + [37.704985, 55.551904], + [37.704895, 55.551904] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704895, 55.551994], + [37.704895, 55.552084], + [37.704985, 55.552084], + [37.704985, 55.551994], + [37.704895, 55.551994] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704895, 55.552084], + [37.704895, 55.552173], + [37.704985, 55.552173], + [37.704985, 55.552084], + [37.704895, 55.552084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704895, 55.552173], + [37.704895, 55.552263], + [37.704985, 55.552263], + [37.704985, 55.552173], + [37.704895, 55.552173] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704895, 55.552263], + [37.704895, 55.552353], + [37.704985, 55.552353], + [37.704985, 55.552263], + [37.704895, 55.552263] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704895, 55.552353], + [37.704895, 55.552443], + [37.704985, 55.552443], + [37.704985, 55.552353], + [37.704895, 55.552353] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704895, 55.552443], + [37.704895, 55.552533], + [37.704985, 55.552533], + [37.704985, 55.552443], + [37.704895, 55.552443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704895, 55.552533], + [37.704895, 55.552623], + [37.704985, 55.552623], + [37.704985, 55.552533], + [37.704895, 55.552533] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704895, 55.552623], + [37.704895, 55.552712], + [37.704985, 55.552712], + [37.704985, 55.552623], + [37.704895, 55.552623] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704895, 55.552712], + [37.704895, 55.552802], + [37.704985, 55.552802], + [37.704985, 55.552712], + [37.704895, 55.552712] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704895, 55.552802], + [37.704895, 55.552892], + [37.704985, 55.552892], + [37.704985, 55.552802], + [37.704895, 55.552802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704895, 55.552892], + [37.704895, 55.552982], + [37.704985, 55.552982], + [37.704985, 55.552892], + [37.704895, 55.552892] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704895, 55.552982], + [37.704895, 55.553072], + [37.704985, 55.553072], + [37.704985, 55.552982], + [37.704895, 55.552982] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704895, 55.553072], + [37.704895, 55.553162], + [37.704985, 55.553162], + [37.704985, 55.553072], + [37.704895, 55.553072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704895, 55.553162], + [37.704895, 55.553251], + [37.704985, 55.553251], + [37.704985, 55.553162], + [37.704895, 55.553162] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704895, 55.553251], + [37.704895, 55.553341], + [37.704985, 55.553341], + [37.704985, 55.553251], + [37.704895, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704895, 55.553341], + [37.704895, 55.553431], + [37.704985, 55.553431], + [37.704985, 55.553341], + [37.704895, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704895, 55.553431], + [37.704895, 55.553521], + [37.704985, 55.553521], + [37.704985, 55.553431], + [37.704895, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704895, 55.553521], + [37.704895, 55.553611], + [37.704985, 55.553611], + [37.704985, 55.553521], + [37.704895, 55.553521] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704895, 55.553611], + [37.704895, 55.5537], + [37.704985, 55.5537], + [37.704985, 55.553611], + [37.704895, 55.553611] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704895, 55.5537], + [37.704895, 55.55379], + [37.704985, 55.55379], + [37.704985, 55.5537], + [37.704895, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704895, 55.55379], + [37.704895, 55.55388], + [37.704985, 55.55388], + [37.704985, 55.55379], + [37.704895, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704895, 55.55388], + [37.704895, 55.55397], + [37.704985, 55.55397], + [37.704985, 55.55388], + [37.704895, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704895, 55.55397], + [37.704895, 55.55406], + [37.704985, 55.55406], + [37.704985, 55.55397], + [37.704895, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704895, 55.55406], + [37.704895, 55.55415], + [37.704985, 55.55415], + [37.704985, 55.55406], + [37.704895, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704895, 55.55415], + [37.704895, 55.554239], + [37.704985, 55.554239], + [37.704985, 55.55415], + [37.704895, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704895, 55.554239], + [37.704895, 55.554329], + [37.704985, 55.554329], + [37.704985, 55.554239], + [37.704895, 55.554239] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704895, 55.554329], + [37.704895, 55.554419], + [37.704985, 55.554419], + [37.704985, 55.554329], + [37.704895, 55.554329] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704895, 55.554419], + [37.704895, 55.554509], + [37.704985, 55.554509], + [37.704985, 55.554419], + [37.704895, 55.554419] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704895, 55.554509], + [37.704895, 55.554599], + [37.704985, 55.554599], + [37.704985, 55.554509], + [37.704895, 55.554509] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704895, 55.554599], + [37.704895, 55.554689], + [37.704985, 55.554689], + [37.704985, 55.554599], + [37.704895, 55.554599] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704895, 55.554689], + [37.704895, 55.554778], + [37.704985, 55.554778], + [37.704985, 55.554689], + [37.704895, 55.554689] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704895, 55.554778], + [37.704895, 55.554868], + [37.704985, 55.554868], + [37.704985, 55.554778], + [37.704895, 55.554778] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704895, 55.554868], + [37.704895, 55.554958], + [37.704985, 55.554958], + [37.704985, 55.554868], + [37.704895, 55.554868] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704895, 55.554958], + [37.704895, 55.555048], + [37.704985, 55.555048], + [37.704985, 55.554958], + [37.704895, 55.554958] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704895, 55.555048], + [37.704895, 55.555138], + [37.704985, 55.555138], + [37.704985, 55.555048], + [37.704895, 55.555048] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704985, 55.551814], + [37.704985, 55.551904], + [37.705075, 55.551904], + [37.705075, 55.551814], + [37.704985, 55.551814] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704985, 55.551904], + [37.704985, 55.551994], + [37.705075, 55.551994], + [37.705075, 55.551904], + [37.704985, 55.551904] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704985, 55.551994], + [37.704985, 55.552084], + [37.705075, 55.552084], + [37.705075, 55.551994], + [37.704985, 55.551994] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704985, 55.552084], + [37.704985, 55.552173], + [37.705075, 55.552173], + [37.705075, 55.552084], + [37.704985, 55.552084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704985, 55.552173], + [37.704985, 55.552263], + [37.705075, 55.552263], + [37.705075, 55.552173], + [37.704985, 55.552173] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704985, 55.552263], + [37.704985, 55.552353], + [37.705075, 55.552353], + [37.705075, 55.552263], + [37.704985, 55.552263] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704985, 55.552353], + [37.704985, 55.552443], + [37.705075, 55.552443], + [37.705075, 55.552353], + [37.704985, 55.552353] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704985, 55.552443], + [37.704985, 55.552533], + [37.705075, 55.552533], + [37.705075, 55.552443], + [37.704985, 55.552443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704985, 55.552533], + [37.704985, 55.552623], + [37.705075, 55.552623], + [37.705075, 55.552533], + [37.704985, 55.552533] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704985, 55.552623], + [37.704985, 55.552712], + [37.705075, 55.552712], + [37.705075, 55.552623], + [37.704985, 55.552623] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704985, 55.552712], + [37.704985, 55.552802], + [37.705075, 55.552802], + [37.705075, 55.552712], + [37.704985, 55.552712] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704985, 55.552802], + [37.704985, 55.552892], + [37.705075, 55.552892], + [37.705075, 55.552802], + [37.704985, 55.552802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704985, 55.552892], + [37.704985, 55.552982], + [37.705075, 55.552982], + [37.705075, 55.552892], + [37.704985, 55.552892] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704985, 55.552982], + [37.704985, 55.553072], + [37.705075, 55.553072], + [37.705075, 55.552982], + [37.704985, 55.552982] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704985, 55.553072], + [37.704985, 55.553162], + [37.705075, 55.553162], + [37.705075, 55.553072], + [37.704985, 55.553072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704985, 55.553162], + [37.704985, 55.553251], + [37.705075, 55.553251], + [37.705075, 55.553162], + [37.704985, 55.553162] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704985, 55.553251], + [37.704985, 55.553341], + [37.705075, 55.553341], + [37.705075, 55.553251], + [37.704985, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704985, 55.553341], + [37.704985, 55.553431], + [37.705075, 55.553431], + [37.705075, 55.553341], + [37.704985, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704985, 55.553431], + [37.704985, 55.553521], + [37.705075, 55.553521], + [37.705075, 55.553431], + [37.704985, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704985, 55.553521], + [37.704985, 55.553611], + [37.705075, 55.553611], + [37.705075, 55.553521], + [37.704985, 55.553521] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704985, 55.553611], + [37.704985, 55.5537], + [37.705075, 55.5537], + [37.705075, 55.553611], + [37.704985, 55.553611] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704985, 55.5537], + [37.704985, 55.55379], + [37.705075, 55.55379], + [37.705075, 55.5537], + [37.704985, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704985, 55.55379], + [37.704985, 55.55388], + [37.705075, 55.55388], + [37.705075, 55.55379], + [37.704985, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704985, 55.55388], + [37.704985, 55.55397], + [37.705075, 55.55397], + [37.705075, 55.55388], + [37.704985, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704985, 55.55397], + [37.704985, 55.55406], + [37.705075, 55.55406], + [37.705075, 55.55397], + [37.704985, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704985, 55.55406], + [37.704985, 55.55415], + [37.705075, 55.55415], + [37.705075, 55.55406], + [37.704985, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704985, 55.55415], + [37.704985, 55.554239], + [37.705075, 55.554239], + [37.705075, 55.55415], + [37.704985, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704985, 55.554239], + [37.704985, 55.554329], + [37.705075, 55.554329], + [37.705075, 55.554239], + [37.704985, 55.554239] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704985, 55.554329], + [37.704985, 55.554419], + [37.705075, 55.554419], + [37.705075, 55.554329], + [37.704985, 55.554329] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704985, 55.554419], + [37.704985, 55.554509], + [37.705075, 55.554509], + [37.705075, 55.554419], + [37.704985, 55.554419] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704985, 55.554509], + [37.704985, 55.554599], + [37.705075, 55.554599], + [37.705075, 55.554509], + [37.704985, 55.554509] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704985, 55.554599], + [37.704985, 55.554689], + [37.705075, 55.554689], + [37.705075, 55.554599], + [37.704985, 55.554599] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704985, 55.554689], + [37.704985, 55.554778], + [37.705075, 55.554778], + [37.705075, 55.554689], + [37.704985, 55.554689] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704985, 55.554778], + [37.704985, 55.554868], + [37.705075, 55.554868], + [37.705075, 55.554778], + [37.704985, 55.554778] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704985, 55.554868], + [37.704985, 55.554958], + [37.705075, 55.554958], + [37.705075, 55.554868], + [37.704985, 55.554868] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704985, 55.554958], + [37.704985, 55.555048], + [37.705075, 55.555048], + [37.705075, 55.554958], + [37.704985, 55.554958] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.704985, 55.555048], + [37.704985, 55.555138], + [37.705075, 55.555138], + [37.705075, 55.555048], + [37.704985, 55.555048] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705075, 55.551814], + [37.705075, 55.551904], + [37.705164, 55.551904], + [37.705164, 55.551814], + [37.705075, 55.551814] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705075, 55.551904], + [37.705075, 55.551994], + [37.705164, 55.551994], + [37.705164, 55.551904], + [37.705075, 55.551904] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705075, 55.551994], + [37.705075, 55.552084], + [37.705164, 55.552084], + [37.705164, 55.551994], + [37.705075, 55.551994] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705075, 55.552084], + [37.705075, 55.552173], + [37.705164, 55.552173], + [37.705164, 55.552084], + [37.705075, 55.552084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705075, 55.552173], + [37.705075, 55.552263], + [37.705164, 55.552263], + [37.705164, 55.552173], + [37.705075, 55.552173] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705075, 55.552263], + [37.705075, 55.552353], + [37.705164, 55.552353], + [37.705164, 55.552263], + [37.705075, 55.552263] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705075, 55.552353], + [37.705075, 55.552443], + [37.705164, 55.552443], + [37.705164, 55.552353], + [37.705075, 55.552353] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705075, 55.552443], + [37.705075, 55.552533], + [37.705164, 55.552533], + [37.705164, 55.552443], + [37.705075, 55.552443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705075, 55.552533], + [37.705075, 55.552623], + [37.705164, 55.552623], + [37.705164, 55.552533], + [37.705075, 55.552533] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705075, 55.552623], + [37.705075, 55.552712], + [37.705164, 55.552712], + [37.705164, 55.552623], + [37.705075, 55.552623] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705075, 55.552712], + [37.705075, 55.552802], + [37.705164, 55.552802], + [37.705164, 55.552712], + [37.705075, 55.552712] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705075, 55.552802], + [37.705075, 55.552892], + [37.705164, 55.552892], + [37.705164, 55.552802], + [37.705075, 55.552802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705075, 55.552892], + [37.705075, 55.552982], + [37.705164, 55.552982], + [37.705164, 55.552892], + [37.705075, 55.552892] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705075, 55.552982], + [37.705075, 55.553072], + [37.705164, 55.553072], + [37.705164, 55.552982], + [37.705075, 55.552982] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705075, 55.553072], + [37.705075, 55.553162], + [37.705164, 55.553162], + [37.705164, 55.553072], + [37.705075, 55.553072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705075, 55.553162], + [37.705075, 55.553251], + [37.705164, 55.553251], + [37.705164, 55.553162], + [37.705075, 55.553162] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705075, 55.553251], + [37.705075, 55.553341], + [37.705164, 55.553341], + [37.705164, 55.553251], + [37.705075, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705075, 55.553341], + [37.705075, 55.553431], + [37.705164, 55.553431], + [37.705164, 55.553341], + [37.705075, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705075, 55.553431], + [37.705075, 55.553521], + [37.705164, 55.553521], + [37.705164, 55.553431], + [37.705075, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705075, 55.553521], + [37.705075, 55.553611], + [37.705164, 55.553611], + [37.705164, 55.553521], + [37.705075, 55.553521] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705075, 55.553611], + [37.705075, 55.5537], + [37.705164, 55.5537], + [37.705164, 55.553611], + [37.705075, 55.553611] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705075, 55.5537], + [37.705075, 55.55379], + [37.705164, 55.55379], + [37.705164, 55.5537], + [37.705075, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705075, 55.55379], + [37.705075, 55.55388], + [37.705164, 55.55388], + [37.705164, 55.55379], + [37.705075, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705075, 55.55388], + [37.705075, 55.55397], + [37.705164, 55.55397], + [37.705164, 55.55388], + [37.705075, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705075, 55.55397], + [37.705075, 55.55406], + [37.705164, 55.55406], + [37.705164, 55.55397], + [37.705075, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705075, 55.55406], + [37.705075, 55.55415], + [37.705164, 55.55415], + [37.705164, 55.55406], + [37.705075, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705075, 55.55415], + [37.705075, 55.554239], + [37.705164, 55.554239], + [37.705164, 55.55415], + [37.705075, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705075, 55.554239], + [37.705075, 55.554329], + [37.705164, 55.554329], + [37.705164, 55.554239], + [37.705075, 55.554239] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705075, 55.554329], + [37.705075, 55.554419], + [37.705164, 55.554419], + [37.705164, 55.554329], + [37.705075, 55.554329] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705075, 55.554419], + [37.705075, 55.554509], + [37.705164, 55.554509], + [37.705164, 55.554419], + [37.705075, 55.554419] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705075, 55.554509], + [37.705075, 55.554599], + [37.705164, 55.554599], + [37.705164, 55.554509], + [37.705075, 55.554509] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705075, 55.554599], + [37.705075, 55.554689], + [37.705164, 55.554689], + [37.705164, 55.554599], + [37.705075, 55.554599] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705075, 55.554689], + [37.705075, 55.554778], + [37.705164, 55.554778], + [37.705164, 55.554689], + [37.705075, 55.554689] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705075, 55.554778], + [37.705075, 55.554868], + [37.705164, 55.554868], + [37.705164, 55.554778], + [37.705075, 55.554778] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705075, 55.554868], + [37.705075, 55.554958], + [37.705164, 55.554958], + [37.705164, 55.554868], + [37.705075, 55.554868] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705075, 55.554958], + [37.705075, 55.555048], + [37.705164, 55.555048], + [37.705164, 55.554958], + [37.705075, 55.554958] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705075, 55.555048], + [37.705075, 55.555138], + [37.705164, 55.555138], + [37.705164, 55.555048], + [37.705075, 55.555048] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705075, 55.555138], + [37.705075, 55.555228], + [37.705164, 55.555228], + [37.705164, 55.555138], + [37.705075, 55.555138] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705164, 55.551814], + [37.705164, 55.551904], + [37.705254, 55.551904], + [37.705254, 55.551814], + [37.705164, 55.551814] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705164, 55.551904], + [37.705164, 55.551994], + [37.705254, 55.551994], + [37.705254, 55.551904], + [37.705164, 55.551904] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705164, 55.551994], + [37.705164, 55.552084], + [37.705254, 55.552084], + [37.705254, 55.551994], + [37.705164, 55.551994] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705164, 55.552084], + [37.705164, 55.552173], + [37.705254, 55.552173], + [37.705254, 55.552084], + [37.705164, 55.552084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705164, 55.552173], + [37.705164, 55.552263], + [37.705254, 55.552263], + [37.705254, 55.552173], + [37.705164, 55.552173] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705164, 55.552263], + [37.705164, 55.552353], + [37.705254, 55.552353], + [37.705254, 55.552263], + [37.705164, 55.552263] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705164, 55.552353], + [37.705164, 55.552443], + [37.705254, 55.552443], + [37.705254, 55.552353], + [37.705164, 55.552353] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705164, 55.552443], + [37.705164, 55.552533], + [37.705254, 55.552533], + [37.705254, 55.552443], + [37.705164, 55.552443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705164, 55.552533], + [37.705164, 55.552623], + [37.705254, 55.552623], + [37.705254, 55.552533], + [37.705164, 55.552533] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705164, 55.552623], + [37.705164, 55.552712], + [37.705254, 55.552712], + [37.705254, 55.552623], + [37.705164, 55.552623] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705164, 55.552712], + [37.705164, 55.552802], + [37.705254, 55.552802], + [37.705254, 55.552712], + [37.705164, 55.552712] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705164, 55.552802], + [37.705164, 55.552892], + [37.705254, 55.552892], + [37.705254, 55.552802], + [37.705164, 55.552802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705164, 55.552892], + [37.705164, 55.552982], + [37.705254, 55.552982], + [37.705254, 55.552892], + [37.705164, 55.552892] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705164, 55.552982], + [37.705164, 55.553072], + [37.705254, 55.553072], + [37.705254, 55.552982], + [37.705164, 55.552982] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705164, 55.553072], + [37.705164, 55.553162], + [37.705254, 55.553162], + [37.705254, 55.553072], + [37.705164, 55.553072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705164, 55.553162], + [37.705164, 55.553251], + [37.705254, 55.553251], + [37.705254, 55.553162], + [37.705164, 55.553162] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705164, 55.553251], + [37.705164, 55.553341], + [37.705254, 55.553341], + [37.705254, 55.553251], + [37.705164, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705164, 55.553341], + [37.705164, 55.553431], + [37.705254, 55.553431], + [37.705254, 55.553341], + [37.705164, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705164, 55.553431], + [37.705164, 55.553521], + [37.705254, 55.553521], + [37.705254, 55.553431], + [37.705164, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705164, 55.553521], + [37.705164, 55.553611], + [37.705254, 55.553611], + [37.705254, 55.553521], + [37.705164, 55.553521] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705164, 55.553611], + [37.705164, 55.5537], + [37.705254, 55.5537], + [37.705254, 55.553611], + [37.705164, 55.553611] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705164, 55.5537], + [37.705164, 55.55379], + [37.705254, 55.55379], + [37.705254, 55.5537], + [37.705164, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705164, 55.55379], + [37.705164, 55.55388], + [37.705254, 55.55388], + [37.705254, 55.55379], + [37.705164, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705164, 55.55388], + [37.705164, 55.55397], + [37.705254, 55.55397], + [37.705254, 55.55388], + [37.705164, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705164, 55.55397], + [37.705164, 55.55406], + [37.705254, 55.55406], + [37.705254, 55.55397], + [37.705164, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705164, 55.55406], + [37.705164, 55.55415], + [37.705254, 55.55415], + [37.705254, 55.55406], + [37.705164, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705164, 55.55415], + [37.705164, 55.554239], + [37.705254, 55.554239], + [37.705254, 55.55415], + [37.705164, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705164, 55.554239], + [37.705164, 55.554329], + [37.705254, 55.554329], + [37.705254, 55.554239], + [37.705164, 55.554239] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705164, 55.554329], + [37.705164, 55.554419], + [37.705254, 55.554419], + [37.705254, 55.554329], + [37.705164, 55.554329] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705164, 55.554419], + [37.705164, 55.554509], + [37.705254, 55.554509], + [37.705254, 55.554419], + [37.705164, 55.554419] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705164, 55.554509], + [37.705164, 55.554599], + [37.705254, 55.554599], + [37.705254, 55.554509], + [37.705164, 55.554509] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705164, 55.554599], + [37.705164, 55.554689], + [37.705254, 55.554689], + [37.705254, 55.554599], + [37.705164, 55.554599] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705164, 55.554689], + [37.705164, 55.554778], + [37.705254, 55.554778], + [37.705254, 55.554689], + [37.705164, 55.554689] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705164, 55.554778], + [37.705164, 55.554868], + [37.705254, 55.554868], + [37.705254, 55.554778], + [37.705164, 55.554778] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705164, 55.554868], + [37.705164, 55.554958], + [37.705254, 55.554958], + [37.705254, 55.554868], + [37.705164, 55.554868] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705164, 55.554958], + [37.705164, 55.555048], + [37.705254, 55.555048], + [37.705254, 55.554958], + [37.705164, 55.554958] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705164, 55.555048], + [37.705164, 55.555138], + [37.705254, 55.555138], + [37.705254, 55.555048], + [37.705164, 55.555048] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705164, 55.555138], + [37.705164, 55.555228], + [37.705254, 55.555228], + [37.705254, 55.555138], + [37.705164, 55.555138] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705254, 55.551814], + [37.705254, 55.551904], + [37.705344, 55.551904], + [37.705344, 55.551814], + [37.705254, 55.551814] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705254, 55.551904], + [37.705254, 55.551994], + [37.705344, 55.551994], + [37.705344, 55.551904], + [37.705254, 55.551904] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705254, 55.551994], + [37.705254, 55.552084], + [37.705344, 55.552084], + [37.705344, 55.551994], + [37.705254, 55.551994] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705254, 55.552084], + [37.705254, 55.552173], + [37.705344, 55.552173], + [37.705344, 55.552084], + [37.705254, 55.552084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705254, 55.552173], + [37.705254, 55.552263], + [37.705344, 55.552263], + [37.705344, 55.552173], + [37.705254, 55.552173] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705254, 55.552263], + [37.705254, 55.552353], + [37.705344, 55.552353], + [37.705344, 55.552263], + [37.705254, 55.552263] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705254, 55.552353], + [37.705254, 55.552443], + [37.705344, 55.552443], + [37.705344, 55.552353], + [37.705254, 55.552353] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705254, 55.552443], + [37.705254, 55.552533], + [37.705344, 55.552533], + [37.705344, 55.552443], + [37.705254, 55.552443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705254, 55.552533], + [37.705254, 55.552623], + [37.705344, 55.552623], + [37.705344, 55.552533], + [37.705254, 55.552533] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705254, 55.552623], + [37.705254, 55.552712], + [37.705344, 55.552712], + [37.705344, 55.552623], + [37.705254, 55.552623] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705254, 55.552712], + [37.705254, 55.552802], + [37.705344, 55.552802], + [37.705344, 55.552712], + [37.705254, 55.552712] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705254, 55.552802], + [37.705254, 55.552892], + [37.705344, 55.552892], + [37.705344, 55.552802], + [37.705254, 55.552802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705254, 55.552892], + [37.705254, 55.552982], + [37.705344, 55.552982], + [37.705344, 55.552892], + [37.705254, 55.552892] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705254, 55.552982], + [37.705254, 55.553072], + [37.705344, 55.553072], + [37.705344, 55.552982], + [37.705254, 55.552982] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705254, 55.553072], + [37.705254, 55.553162], + [37.705344, 55.553162], + [37.705344, 55.553072], + [37.705254, 55.553072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705254, 55.553162], + [37.705254, 55.553251], + [37.705344, 55.553251], + [37.705344, 55.553162], + [37.705254, 55.553162] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705254, 55.553251], + [37.705254, 55.553341], + [37.705344, 55.553341], + [37.705344, 55.553251], + [37.705254, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705254, 55.553341], + [37.705254, 55.553431], + [37.705344, 55.553431], + [37.705344, 55.553341], + [37.705254, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705254, 55.553431], + [37.705254, 55.553521], + [37.705344, 55.553521], + [37.705344, 55.553431], + [37.705254, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705254, 55.553521], + [37.705254, 55.553611], + [37.705344, 55.553611], + [37.705344, 55.553521], + [37.705254, 55.553521] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705254, 55.553611], + [37.705254, 55.5537], + [37.705344, 55.5537], + [37.705344, 55.553611], + [37.705254, 55.553611] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705254, 55.5537], + [37.705254, 55.55379], + [37.705344, 55.55379], + [37.705344, 55.5537], + [37.705254, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705254, 55.55379], + [37.705254, 55.55388], + [37.705344, 55.55388], + [37.705344, 55.55379], + [37.705254, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705254, 55.55388], + [37.705254, 55.55397], + [37.705344, 55.55397], + [37.705344, 55.55388], + [37.705254, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705254, 55.55397], + [37.705254, 55.55406], + [37.705344, 55.55406], + [37.705344, 55.55397], + [37.705254, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705254, 55.55406], + [37.705254, 55.55415], + [37.705344, 55.55415], + [37.705344, 55.55406], + [37.705254, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705254, 55.55415], + [37.705254, 55.554239], + [37.705344, 55.554239], + [37.705344, 55.55415], + [37.705254, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705254, 55.554239], + [37.705254, 55.554329], + [37.705344, 55.554329], + [37.705344, 55.554239], + [37.705254, 55.554239] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705254, 55.554329], + [37.705254, 55.554419], + [37.705344, 55.554419], + [37.705344, 55.554329], + [37.705254, 55.554329] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705254, 55.554419], + [37.705254, 55.554509], + [37.705344, 55.554509], + [37.705344, 55.554419], + [37.705254, 55.554419] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705254, 55.554509], + [37.705254, 55.554599], + [37.705344, 55.554599], + [37.705344, 55.554509], + [37.705254, 55.554509] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705254, 55.554599], + [37.705254, 55.554689], + [37.705344, 55.554689], + [37.705344, 55.554599], + [37.705254, 55.554599] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705254, 55.554689], + [37.705254, 55.554778], + [37.705344, 55.554778], + [37.705344, 55.554689], + [37.705254, 55.554689] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705254, 55.554778], + [37.705254, 55.554868], + [37.705344, 55.554868], + [37.705344, 55.554778], + [37.705254, 55.554778] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705254, 55.554868], + [37.705254, 55.554958], + [37.705344, 55.554958], + [37.705344, 55.554868], + [37.705254, 55.554868] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705254, 55.554958], + [37.705254, 55.555048], + [37.705344, 55.555048], + [37.705344, 55.554958], + [37.705254, 55.554958] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705254, 55.555048], + [37.705254, 55.555138], + [37.705344, 55.555138], + [37.705344, 55.555048], + [37.705254, 55.555048] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705254, 55.555138], + [37.705254, 55.555228], + [37.705344, 55.555228], + [37.705344, 55.555138], + [37.705254, 55.555138] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705344, 55.551724], + [37.705344, 55.551814], + [37.705434, 55.551814], + [37.705434, 55.551724], + [37.705344, 55.551724] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705344, 55.551814], + [37.705344, 55.551904], + [37.705434, 55.551904], + [37.705434, 55.551814], + [37.705344, 55.551814] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705344, 55.551904], + [37.705344, 55.551994], + [37.705434, 55.551994], + [37.705434, 55.551904], + [37.705344, 55.551904] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705344, 55.551994], + [37.705344, 55.552084], + [37.705434, 55.552084], + [37.705434, 55.551994], + [37.705344, 55.551994] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705344, 55.552084], + [37.705344, 55.552173], + [37.705434, 55.552173], + [37.705434, 55.552084], + [37.705344, 55.552084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705344, 55.552173], + [37.705344, 55.552263], + [37.705434, 55.552263], + [37.705434, 55.552173], + [37.705344, 55.552173] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705344, 55.552263], + [37.705344, 55.552353], + [37.705434, 55.552353], + [37.705434, 55.552263], + [37.705344, 55.552263] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705344, 55.552353], + [37.705344, 55.552443], + [37.705434, 55.552443], + [37.705434, 55.552353], + [37.705344, 55.552353] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705344, 55.552443], + [37.705344, 55.552533], + [37.705434, 55.552533], + [37.705434, 55.552443], + [37.705344, 55.552443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705344, 55.552533], + [37.705344, 55.552623], + [37.705434, 55.552623], + [37.705434, 55.552533], + [37.705344, 55.552533] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705344, 55.552623], + [37.705344, 55.552712], + [37.705434, 55.552712], + [37.705434, 55.552623], + [37.705344, 55.552623] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705344, 55.552712], + [37.705344, 55.552802], + [37.705434, 55.552802], + [37.705434, 55.552712], + [37.705344, 55.552712] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705344, 55.552802], + [37.705344, 55.552892], + [37.705434, 55.552892], + [37.705434, 55.552802], + [37.705344, 55.552802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705344, 55.552892], + [37.705344, 55.552982], + [37.705434, 55.552982], + [37.705434, 55.552892], + [37.705344, 55.552892] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705344, 55.552982], + [37.705344, 55.553072], + [37.705434, 55.553072], + [37.705434, 55.552982], + [37.705344, 55.552982] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705344, 55.553072], + [37.705344, 55.553162], + [37.705434, 55.553162], + [37.705434, 55.553072], + [37.705344, 55.553072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705344, 55.553162], + [37.705344, 55.553251], + [37.705434, 55.553251], + [37.705434, 55.553162], + [37.705344, 55.553162] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705344, 55.553251], + [37.705344, 55.553341], + [37.705434, 55.553341], + [37.705434, 55.553251], + [37.705344, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705344, 55.553341], + [37.705344, 55.553431], + [37.705434, 55.553431], + [37.705434, 55.553341], + [37.705344, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705344, 55.553431], + [37.705344, 55.553521], + [37.705434, 55.553521], + [37.705434, 55.553431], + [37.705344, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705344, 55.553521], + [37.705344, 55.553611], + [37.705434, 55.553611], + [37.705434, 55.553521], + [37.705344, 55.553521] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705344, 55.553611], + [37.705344, 55.5537], + [37.705434, 55.5537], + [37.705434, 55.553611], + [37.705344, 55.553611] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705344, 55.5537], + [37.705344, 55.55379], + [37.705434, 55.55379], + [37.705434, 55.5537], + [37.705344, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705344, 55.55379], + [37.705344, 55.55388], + [37.705434, 55.55388], + [37.705434, 55.55379], + [37.705344, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705344, 55.55388], + [37.705344, 55.55397], + [37.705434, 55.55397], + [37.705434, 55.55388], + [37.705344, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705344, 55.55397], + [37.705344, 55.55406], + [37.705434, 55.55406], + [37.705434, 55.55397], + [37.705344, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705344, 55.55406], + [37.705344, 55.55415], + [37.705434, 55.55415], + [37.705434, 55.55406], + [37.705344, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705344, 55.55415], + [37.705344, 55.554239], + [37.705434, 55.554239], + [37.705434, 55.55415], + [37.705344, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705344, 55.554239], + [37.705344, 55.554329], + [37.705434, 55.554329], + [37.705434, 55.554239], + [37.705344, 55.554239] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705344, 55.554329], + [37.705344, 55.554419], + [37.705434, 55.554419], + [37.705434, 55.554329], + [37.705344, 55.554329] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705344, 55.554419], + [37.705344, 55.554509], + [37.705434, 55.554509], + [37.705434, 55.554419], + [37.705344, 55.554419] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705344, 55.554509], + [37.705344, 55.554599], + [37.705434, 55.554599], + [37.705434, 55.554509], + [37.705344, 55.554509] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705344, 55.554599], + [37.705344, 55.554689], + [37.705434, 55.554689], + [37.705434, 55.554599], + [37.705344, 55.554599] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705344, 55.554689], + [37.705344, 55.554778], + [37.705434, 55.554778], + [37.705434, 55.554689], + [37.705344, 55.554689] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705344, 55.554778], + [37.705344, 55.554868], + [37.705434, 55.554868], + [37.705434, 55.554778], + [37.705344, 55.554778] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705344, 55.554868], + [37.705344, 55.554958], + [37.705434, 55.554958], + [37.705434, 55.554868], + [37.705344, 55.554868] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705344, 55.554958], + [37.705344, 55.555048], + [37.705434, 55.555048], + [37.705434, 55.554958], + [37.705344, 55.554958] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705344, 55.555048], + [37.705344, 55.555138], + [37.705434, 55.555138], + [37.705434, 55.555048], + [37.705344, 55.555048] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705344, 55.555138], + [37.705344, 55.555228], + [37.705434, 55.555228], + [37.705434, 55.555138], + [37.705344, 55.555138] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705434, 55.551724], + [37.705434, 55.551814], + [37.705524, 55.551814], + [37.705524, 55.551724], + [37.705434, 55.551724] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705434, 55.551814], + [37.705434, 55.551904], + [37.705524, 55.551904], + [37.705524, 55.551814], + [37.705434, 55.551814] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705434, 55.551904], + [37.705434, 55.551994], + [37.705524, 55.551994], + [37.705524, 55.551904], + [37.705434, 55.551904] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705434, 55.551994], + [37.705434, 55.552084], + [37.705524, 55.552084], + [37.705524, 55.551994], + [37.705434, 55.551994] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705434, 55.552084], + [37.705434, 55.552173], + [37.705524, 55.552173], + [37.705524, 55.552084], + [37.705434, 55.552084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705434, 55.552173], + [37.705434, 55.552263], + [37.705524, 55.552263], + [37.705524, 55.552173], + [37.705434, 55.552173] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705434, 55.552263], + [37.705434, 55.552353], + [37.705524, 55.552353], + [37.705524, 55.552263], + [37.705434, 55.552263] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705434, 55.552353], + [37.705434, 55.552443], + [37.705524, 55.552443], + [37.705524, 55.552353], + [37.705434, 55.552353] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705434, 55.552443], + [37.705434, 55.552533], + [37.705524, 55.552533], + [37.705524, 55.552443], + [37.705434, 55.552443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705434, 55.552533], + [37.705434, 55.552623], + [37.705524, 55.552623], + [37.705524, 55.552533], + [37.705434, 55.552533] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705434, 55.552623], + [37.705434, 55.552712], + [37.705524, 55.552712], + [37.705524, 55.552623], + [37.705434, 55.552623] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705434, 55.552712], + [37.705434, 55.552802], + [37.705524, 55.552802], + [37.705524, 55.552712], + [37.705434, 55.552712] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705434, 55.552802], + [37.705434, 55.552892], + [37.705524, 55.552892], + [37.705524, 55.552802], + [37.705434, 55.552802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705434, 55.552892], + [37.705434, 55.552982], + [37.705524, 55.552982], + [37.705524, 55.552892], + [37.705434, 55.552892] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705434, 55.552982], + [37.705434, 55.553072], + [37.705524, 55.553072], + [37.705524, 55.552982], + [37.705434, 55.552982] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705434, 55.553072], + [37.705434, 55.553162], + [37.705524, 55.553162], + [37.705524, 55.553072], + [37.705434, 55.553072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705434, 55.553162], + [37.705434, 55.553251], + [37.705524, 55.553251], + [37.705524, 55.553162], + [37.705434, 55.553162] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705434, 55.553251], + [37.705434, 55.553341], + [37.705524, 55.553341], + [37.705524, 55.553251], + [37.705434, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705434, 55.553341], + [37.705434, 55.553431], + [37.705524, 55.553431], + [37.705524, 55.553341], + [37.705434, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705434, 55.553431], + [37.705434, 55.553521], + [37.705524, 55.553521], + [37.705524, 55.553431], + [37.705434, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705434, 55.553521], + [37.705434, 55.553611], + [37.705524, 55.553611], + [37.705524, 55.553521], + [37.705434, 55.553521] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705434, 55.553611], + [37.705434, 55.5537], + [37.705524, 55.5537], + [37.705524, 55.553611], + [37.705434, 55.553611] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705434, 55.5537], + [37.705434, 55.55379], + [37.705524, 55.55379], + [37.705524, 55.5537], + [37.705434, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705434, 55.55379], + [37.705434, 55.55388], + [37.705524, 55.55388], + [37.705524, 55.55379], + [37.705434, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705434, 55.55388], + [37.705434, 55.55397], + [37.705524, 55.55397], + [37.705524, 55.55388], + [37.705434, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705434, 55.55397], + [37.705434, 55.55406], + [37.705524, 55.55406], + [37.705524, 55.55397], + [37.705434, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705434, 55.55406], + [37.705434, 55.55415], + [37.705524, 55.55415], + [37.705524, 55.55406], + [37.705434, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705434, 55.55415], + [37.705434, 55.554239], + [37.705524, 55.554239], + [37.705524, 55.55415], + [37.705434, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705434, 55.554239], + [37.705434, 55.554329], + [37.705524, 55.554329], + [37.705524, 55.554239], + [37.705434, 55.554239] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705434, 55.554329], + [37.705434, 55.554419], + [37.705524, 55.554419], + [37.705524, 55.554329], + [37.705434, 55.554329] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705434, 55.554419], + [37.705434, 55.554509], + [37.705524, 55.554509], + [37.705524, 55.554419], + [37.705434, 55.554419] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705434, 55.554509], + [37.705434, 55.554599], + [37.705524, 55.554599], + [37.705524, 55.554509], + [37.705434, 55.554509] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705434, 55.554599], + [37.705434, 55.554689], + [37.705524, 55.554689], + [37.705524, 55.554599], + [37.705434, 55.554599] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705434, 55.554689], + [37.705434, 55.554778], + [37.705524, 55.554778], + [37.705524, 55.554689], + [37.705434, 55.554689] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705434, 55.554778], + [37.705434, 55.554868], + [37.705524, 55.554868], + [37.705524, 55.554778], + [37.705434, 55.554778] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705434, 55.554868], + [37.705434, 55.554958], + [37.705524, 55.554958], + [37.705524, 55.554868], + [37.705434, 55.554868] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705434, 55.554958], + [37.705434, 55.555048], + [37.705524, 55.555048], + [37.705524, 55.554958], + [37.705434, 55.554958] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705434, 55.555048], + [37.705434, 55.555138], + [37.705524, 55.555138], + [37.705524, 55.555048], + [37.705434, 55.555048] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705434, 55.555138], + [37.705434, 55.555228], + [37.705524, 55.555228], + [37.705524, 55.555138], + [37.705434, 55.555138] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705434, 55.555228], + [37.705434, 55.555317], + [37.705524, 55.555317], + [37.705524, 55.555228], + [37.705434, 55.555228] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705524, 55.551724], + [37.705524, 55.551814], + [37.705614, 55.551814], + [37.705614, 55.551724], + [37.705524, 55.551724] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705524, 55.551814], + [37.705524, 55.551904], + [37.705614, 55.551904], + [37.705614, 55.551814], + [37.705524, 55.551814] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705524, 55.551904], + [37.705524, 55.551994], + [37.705614, 55.551994], + [37.705614, 55.551904], + [37.705524, 55.551904] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705524, 55.551994], + [37.705524, 55.552084], + [37.705614, 55.552084], + [37.705614, 55.551994], + [37.705524, 55.551994] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705524, 55.552084], + [37.705524, 55.552173], + [37.705614, 55.552173], + [37.705614, 55.552084], + [37.705524, 55.552084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705524, 55.552173], + [37.705524, 55.552263], + [37.705614, 55.552263], + [37.705614, 55.552173], + [37.705524, 55.552173] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705524, 55.552263], + [37.705524, 55.552353], + [37.705614, 55.552353], + [37.705614, 55.552263], + [37.705524, 55.552263] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705524, 55.552353], + [37.705524, 55.552443], + [37.705614, 55.552443], + [37.705614, 55.552353], + [37.705524, 55.552353] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705524, 55.552443], + [37.705524, 55.552533], + [37.705614, 55.552533], + [37.705614, 55.552443], + [37.705524, 55.552443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705524, 55.552533], + [37.705524, 55.552623], + [37.705614, 55.552623], + [37.705614, 55.552533], + [37.705524, 55.552533] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705524, 55.552623], + [37.705524, 55.552712], + [37.705614, 55.552712], + [37.705614, 55.552623], + [37.705524, 55.552623] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705524, 55.552712], + [37.705524, 55.552802], + [37.705614, 55.552802], + [37.705614, 55.552712], + [37.705524, 55.552712] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705524, 55.552802], + [37.705524, 55.552892], + [37.705614, 55.552892], + [37.705614, 55.552802], + [37.705524, 55.552802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705524, 55.552892], + [37.705524, 55.552982], + [37.705614, 55.552982], + [37.705614, 55.552892], + [37.705524, 55.552892] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705524, 55.552982], + [37.705524, 55.553072], + [37.705614, 55.553072], + [37.705614, 55.552982], + [37.705524, 55.552982] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705524, 55.553072], + [37.705524, 55.553162], + [37.705614, 55.553162], + [37.705614, 55.553072], + [37.705524, 55.553072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705524, 55.553162], + [37.705524, 55.553251], + [37.705614, 55.553251], + [37.705614, 55.553162], + [37.705524, 55.553162] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705524, 55.553251], + [37.705524, 55.553341], + [37.705614, 55.553341], + [37.705614, 55.553251], + [37.705524, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705524, 55.553341], + [37.705524, 55.553431], + [37.705614, 55.553431], + [37.705614, 55.553341], + [37.705524, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705524, 55.553431], + [37.705524, 55.553521], + [37.705614, 55.553521], + [37.705614, 55.553431], + [37.705524, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705524, 55.553521], + [37.705524, 55.553611], + [37.705614, 55.553611], + [37.705614, 55.553521], + [37.705524, 55.553521] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705524, 55.553611], + [37.705524, 55.5537], + [37.705614, 55.5537], + [37.705614, 55.553611], + [37.705524, 55.553611] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705524, 55.5537], + [37.705524, 55.55379], + [37.705614, 55.55379], + [37.705614, 55.5537], + [37.705524, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705524, 55.55379], + [37.705524, 55.55388], + [37.705614, 55.55388], + [37.705614, 55.55379], + [37.705524, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705524, 55.55388], + [37.705524, 55.55397], + [37.705614, 55.55397], + [37.705614, 55.55388], + [37.705524, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705524, 55.55397], + [37.705524, 55.55406], + [37.705614, 55.55406], + [37.705614, 55.55397], + [37.705524, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705524, 55.55406], + [37.705524, 55.55415], + [37.705614, 55.55415], + [37.705614, 55.55406], + [37.705524, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705524, 55.55415], + [37.705524, 55.554239], + [37.705614, 55.554239], + [37.705614, 55.55415], + [37.705524, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705524, 55.554239], + [37.705524, 55.554329], + [37.705614, 55.554329], + [37.705614, 55.554239], + [37.705524, 55.554239] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705524, 55.554329], + [37.705524, 55.554419], + [37.705614, 55.554419], + [37.705614, 55.554329], + [37.705524, 55.554329] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705524, 55.554419], + [37.705524, 55.554509], + [37.705614, 55.554509], + [37.705614, 55.554419], + [37.705524, 55.554419] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705524, 55.554509], + [37.705524, 55.554599], + [37.705614, 55.554599], + [37.705614, 55.554509], + [37.705524, 55.554509] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705524, 55.554599], + [37.705524, 55.554689], + [37.705614, 55.554689], + [37.705614, 55.554599], + [37.705524, 55.554599] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705524, 55.554689], + [37.705524, 55.554778], + [37.705614, 55.554778], + [37.705614, 55.554689], + [37.705524, 55.554689] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705524, 55.554778], + [37.705524, 55.554868], + [37.705614, 55.554868], + [37.705614, 55.554778], + [37.705524, 55.554778] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705524, 55.554868], + [37.705524, 55.554958], + [37.705614, 55.554958], + [37.705614, 55.554868], + [37.705524, 55.554868] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705524, 55.554958], + [37.705524, 55.555048], + [37.705614, 55.555048], + [37.705614, 55.554958], + [37.705524, 55.554958] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705524, 55.555048], + [37.705524, 55.555138], + [37.705614, 55.555138], + [37.705614, 55.555048], + [37.705524, 55.555048] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705524, 55.555138], + [37.705524, 55.555228], + [37.705614, 55.555228], + [37.705614, 55.555138], + [37.705524, 55.555138] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705524, 55.555228], + [37.705524, 55.555317], + [37.705614, 55.555317], + [37.705614, 55.555228], + [37.705524, 55.555228] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705614, 55.551724], + [37.705614, 55.551814], + [37.705703, 55.551814], + [37.705703, 55.551724], + [37.705614, 55.551724] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705614, 55.551814], + [37.705614, 55.551904], + [37.705703, 55.551904], + [37.705703, 55.551814], + [37.705614, 55.551814] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705614, 55.551904], + [37.705614, 55.551994], + [37.705703, 55.551994], + [37.705703, 55.551904], + [37.705614, 55.551904] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705614, 55.551994], + [37.705614, 55.552084], + [37.705703, 55.552084], + [37.705703, 55.551994], + [37.705614, 55.551994] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705614, 55.552084], + [37.705614, 55.552173], + [37.705703, 55.552173], + [37.705703, 55.552084], + [37.705614, 55.552084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705614, 55.552173], + [37.705614, 55.552263], + [37.705703, 55.552263], + [37.705703, 55.552173], + [37.705614, 55.552173] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705614, 55.552263], + [37.705614, 55.552353], + [37.705703, 55.552353], + [37.705703, 55.552263], + [37.705614, 55.552263] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705614, 55.552353], + [37.705614, 55.552443], + [37.705703, 55.552443], + [37.705703, 55.552353], + [37.705614, 55.552353] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705614, 55.552443], + [37.705614, 55.552533], + [37.705703, 55.552533], + [37.705703, 55.552443], + [37.705614, 55.552443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705614, 55.552533], + [37.705614, 55.552623], + [37.705703, 55.552623], + [37.705703, 55.552533], + [37.705614, 55.552533] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705614, 55.552623], + [37.705614, 55.552712], + [37.705703, 55.552712], + [37.705703, 55.552623], + [37.705614, 55.552623] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705614, 55.552712], + [37.705614, 55.552802], + [37.705703, 55.552802], + [37.705703, 55.552712], + [37.705614, 55.552712] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705614, 55.552802], + [37.705614, 55.552892], + [37.705703, 55.552892], + [37.705703, 55.552802], + [37.705614, 55.552802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705614, 55.552892], + [37.705614, 55.552982], + [37.705703, 55.552982], + [37.705703, 55.552892], + [37.705614, 55.552892] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705614, 55.552982], + [37.705614, 55.553072], + [37.705703, 55.553072], + [37.705703, 55.552982], + [37.705614, 55.552982] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705614, 55.553072], + [37.705614, 55.553162], + [37.705703, 55.553162], + [37.705703, 55.553072], + [37.705614, 55.553072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705614, 55.553162], + [37.705614, 55.553251], + [37.705703, 55.553251], + [37.705703, 55.553162], + [37.705614, 55.553162] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705614, 55.553251], + [37.705614, 55.553341], + [37.705703, 55.553341], + [37.705703, 55.553251], + [37.705614, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705614, 55.553341], + [37.705614, 55.553431], + [37.705703, 55.553431], + [37.705703, 55.553341], + [37.705614, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705614, 55.553431], + [37.705614, 55.553521], + [37.705703, 55.553521], + [37.705703, 55.553431], + [37.705614, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705614, 55.553521], + [37.705614, 55.553611], + [37.705703, 55.553611], + [37.705703, 55.553521], + [37.705614, 55.553521] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705614, 55.553611], + [37.705614, 55.5537], + [37.705703, 55.5537], + [37.705703, 55.553611], + [37.705614, 55.553611] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705614, 55.5537], + [37.705614, 55.55379], + [37.705703, 55.55379], + [37.705703, 55.5537], + [37.705614, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705614, 55.55379], + [37.705614, 55.55388], + [37.705703, 55.55388], + [37.705703, 55.55379], + [37.705614, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705614, 55.55388], + [37.705614, 55.55397], + [37.705703, 55.55397], + [37.705703, 55.55388], + [37.705614, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705614, 55.55397], + [37.705614, 55.55406], + [37.705703, 55.55406], + [37.705703, 55.55397], + [37.705614, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705614, 55.55406], + [37.705614, 55.55415], + [37.705703, 55.55415], + [37.705703, 55.55406], + [37.705614, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705614, 55.55415], + [37.705614, 55.554239], + [37.705703, 55.554239], + [37.705703, 55.55415], + [37.705614, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705614, 55.554239], + [37.705614, 55.554329], + [37.705703, 55.554329], + [37.705703, 55.554239], + [37.705614, 55.554239] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705614, 55.554329], + [37.705614, 55.554419], + [37.705703, 55.554419], + [37.705703, 55.554329], + [37.705614, 55.554329] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705614, 55.554419], + [37.705614, 55.554509], + [37.705703, 55.554509], + [37.705703, 55.554419], + [37.705614, 55.554419] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705614, 55.554509], + [37.705614, 55.554599], + [37.705703, 55.554599], + [37.705703, 55.554509], + [37.705614, 55.554509] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705614, 55.554599], + [37.705614, 55.554689], + [37.705703, 55.554689], + [37.705703, 55.554599], + [37.705614, 55.554599] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705614, 55.554689], + [37.705614, 55.554778], + [37.705703, 55.554778], + [37.705703, 55.554689], + [37.705614, 55.554689] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705614, 55.554778], + [37.705614, 55.554868], + [37.705703, 55.554868], + [37.705703, 55.554778], + [37.705614, 55.554778] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705614, 55.554868], + [37.705614, 55.554958], + [37.705703, 55.554958], + [37.705703, 55.554868], + [37.705614, 55.554868] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705614, 55.554958], + [37.705614, 55.555048], + [37.705703, 55.555048], + [37.705703, 55.554958], + [37.705614, 55.554958] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705614, 55.555048], + [37.705614, 55.555138], + [37.705703, 55.555138], + [37.705703, 55.555048], + [37.705614, 55.555048] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705614, 55.555138], + [37.705614, 55.555228], + [37.705703, 55.555228], + [37.705703, 55.555138], + [37.705614, 55.555138] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705614, 55.555228], + [37.705614, 55.555317], + [37.705703, 55.555317], + [37.705703, 55.555228], + [37.705614, 55.555228] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705703, 55.551634], + [37.705703, 55.551724], + [37.705793, 55.551724], + [37.705793, 55.551634], + [37.705703, 55.551634] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705703, 55.551724], + [37.705703, 55.551814], + [37.705793, 55.551814], + [37.705793, 55.551724], + [37.705703, 55.551724] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705703, 55.551814], + [37.705703, 55.551904], + [37.705793, 55.551904], + [37.705793, 55.551814], + [37.705703, 55.551814] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705703, 55.551904], + [37.705703, 55.551994], + [37.705793, 55.551994], + [37.705793, 55.551904], + [37.705703, 55.551904] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705703, 55.551994], + [37.705703, 55.552084], + [37.705793, 55.552084], + [37.705793, 55.551994], + [37.705703, 55.551994] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705703, 55.552084], + [37.705703, 55.552173], + [37.705793, 55.552173], + [37.705793, 55.552084], + [37.705703, 55.552084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705703, 55.552173], + [37.705703, 55.552263], + [37.705793, 55.552263], + [37.705793, 55.552173], + [37.705703, 55.552173] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705703, 55.552263], + [37.705703, 55.552353], + [37.705793, 55.552353], + [37.705793, 55.552263], + [37.705703, 55.552263] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705703, 55.552353], + [37.705703, 55.552443], + [37.705793, 55.552443], + [37.705793, 55.552353], + [37.705703, 55.552353] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705703, 55.552443], + [37.705703, 55.552533], + [37.705793, 55.552533], + [37.705793, 55.552443], + [37.705703, 55.552443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705703, 55.552533], + [37.705703, 55.552623], + [37.705793, 55.552623], + [37.705793, 55.552533], + [37.705703, 55.552533] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705703, 55.552623], + [37.705703, 55.552712], + [37.705793, 55.552712], + [37.705793, 55.552623], + [37.705703, 55.552623] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705703, 55.552712], + [37.705703, 55.552802], + [37.705793, 55.552802], + [37.705793, 55.552712], + [37.705703, 55.552712] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705703, 55.552802], + [37.705703, 55.552892], + [37.705793, 55.552892], + [37.705793, 55.552802], + [37.705703, 55.552802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705703, 55.552892], + [37.705703, 55.552982], + [37.705793, 55.552982], + [37.705793, 55.552892], + [37.705703, 55.552892] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705703, 55.552982], + [37.705703, 55.553072], + [37.705793, 55.553072], + [37.705793, 55.552982], + [37.705703, 55.552982] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705703, 55.553072], + [37.705703, 55.553162], + [37.705793, 55.553162], + [37.705793, 55.553072], + [37.705703, 55.553072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705703, 55.553162], + [37.705703, 55.553251], + [37.705793, 55.553251], + [37.705793, 55.553162], + [37.705703, 55.553162] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705703, 55.553251], + [37.705703, 55.553341], + [37.705793, 55.553341], + [37.705793, 55.553251], + [37.705703, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705703, 55.553341], + [37.705703, 55.553431], + [37.705793, 55.553431], + [37.705793, 55.553341], + [37.705703, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705703, 55.553431], + [37.705703, 55.553521], + [37.705793, 55.553521], + [37.705793, 55.553431], + [37.705703, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705703, 55.553521], + [37.705703, 55.553611], + [37.705793, 55.553611], + [37.705793, 55.553521], + [37.705703, 55.553521] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705703, 55.553611], + [37.705703, 55.5537], + [37.705793, 55.5537], + [37.705793, 55.553611], + [37.705703, 55.553611] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705703, 55.5537], + [37.705703, 55.55379], + [37.705793, 55.55379], + [37.705793, 55.5537], + [37.705703, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705703, 55.55379], + [37.705703, 55.55388], + [37.705793, 55.55388], + [37.705793, 55.55379], + [37.705703, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705703, 55.55388], + [37.705703, 55.55397], + [37.705793, 55.55397], + [37.705793, 55.55388], + [37.705703, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705703, 55.55397], + [37.705703, 55.55406], + [37.705793, 55.55406], + [37.705793, 55.55397], + [37.705703, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705703, 55.55406], + [37.705703, 55.55415], + [37.705793, 55.55415], + [37.705793, 55.55406], + [37.705703, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705703, 55.55415], + [37.705703, 55.554239], + [37.705793, 55.554239], + [37.705793, 55.55415], + [37.705703, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705703, 55.554239], + [37.705703, 55.554329], + [37.705793, 55.554329], + [37.705793, 55.554239], + [37.705703, 55.554239] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705703, 55.554329], + [37.705703, 55.554419], + [37.705793, 55.554419], + [37.705793, 55.554329], + [37.705703, 55.554329] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705703, 55.554419], + [37.705703, 55.554509], + [37.705793, 55.554509], + [37.705793, 55.554419], + [37.705703, 55.554419] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705703, 55.554509], + [37.705703, 55.554599], + [37.705793, 55.554599], + [37.705793, 55.554509], + [37.705703, 55.554509] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705703, 55.554599], + [37.705703, 55.554689], + [37.705793, 55.554689], + [37.705793, 55.554599], + [37.705703, 55.554599] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705703, 55.554689], + [37.705703, 55.554778], + [37.705793, 55.554778], + [37.705793, 55.554689], + [37.705703, 55.554689] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705703, 55.554778], + [37.705703, 55.554868], + [37.705793, 55.554868], + [37.705793, 55.554778], + [37.705703, 55.554778] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705703, 55.554868], + [37.705703, 55.554958], + [37.705793, 55.554958], + [37.705793, 55.554868], + [37.705703, 55.554868] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705703, 55.554958], + [37.705703, 55.555048], + [37.705793, 55.555048], + [37.705793, 55.554958], + [37.705703, 55.554958] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705703, 55.555048], + [37.705703, 55.555138], + [37.705793, 55.555138], + [37.705793, 55.555048], + [37.705703, 55.555048] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705703, 55.555138], + [37.705703, 55.555228], + [37.705793, 55.555228], + [37.705793, 55.555138], + [37.705703, 55.555138] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705703, 55.555228], + [37.705703, 55.555317], + [37.705793, 55.555317], + [37.705793, 55.555228], + [37.705703, 55.555228] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705703, 55.555317], + [37.705703, 55.555407], + [37.705793, 55.555407], + [37.705793, 55.555317], + [37.705703, 55.555317] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705793, 55.551634], + [37.705793, 55.551724], + [37.705883, 55.551724], + [37.705883, 55.551634], + [37.705793, 55.551634] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705793, 55.551724], + [37.705793, 55.551814], + [37.705883, 55.551814], + [37.705883, 55.551724], + [37.705793, 55.551724] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705793, 55.551814], + [37.705793, 55.551904], + [37.705883, 55.551904], + [37.705883, 55.551814], + [37.705793, 55.551814] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705793, 55.551904], + [37.705793, 55.551994], + [37.705883, 55.551994], + [37.705883, 55.551904], + [37.705793, 55.551904] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705793, 55.551994], + [37.705793, 55.552084], + [37.705883, 55.552084], + [37.705883, 55.551994], + [37.705793, 55.551994] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705793, 55.552084], + [37.705793, 55.552173], + [37.705883, 55.552173], + [37.705883, 55.552084], + [37.705793, 55.552084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705793, 55.552173], + [37.705793, 55.552263], + [37.705883, 55.552263], + [37.705883, 55.552173], + [37.705793, 55.552173] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705793, 55.552263], + [37.705793, 55.552353], + [37.705883, 55.552353], + [37.705883, 55.552263], + [37.705793, 55.552263] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705793, 55.552353], + [37.705793, 55.552443], + [37.705883, 55.552443], + [37.705883, 55.552353], + [37.705793, 55.552353] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705793, 55.552443], + [37.705793, 55.552533], + [37.705883, 55.552533], + [37.705883, 55.552443], + [37.705793, 55.552443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705793, 55.552533], + [37.705793, 55.552623], + [37.705883, 55.552623], + [37.705883, 55.552533], + [37.705793, 55.552533] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705793, 55.552623], + [37.705793, 55.552712], + [37.705883, 55.552712], + [37.705883, 55.552623], + [37.705793, 55.552623] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705793, 55.552712], + [37.705793, 55.552802], + [37.705883, 55.552802], + [37.705883, 55.552712], + [37.705793, 55.552712] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705793, 55.552802], + [37.705793, 55.552892], + [37.705883, 55.552892], + [37.705883, 55.552802], + [37.705793, 55.552802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705793, 55.552892], + [37.705793, 55.552982], + [37.705883, 55.552982], + [37.705883, 55.552892], + [37.705793, 55.552892] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705793, 55.552982], + [37.705793, 55.553072], + [37.705883, 55.553072], + [37.705883, 55.552982], + [37.705793, 55.552982] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705793, 55.553072], + [37.705793, 55.553162], + [37.705883, 55.553162], + [37.705883, 55.553072], + [37.705793, 55.553072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705793, 55.553162], + [37.705793, 55.553251], + [37.705883, 55.553251], + [37.705883, 55.553162], + [37.705793, 55.553162] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705793, 55.553251], + [37.705793, 55.553341], + [37.705883, 55.553341], + [37.705883, 55.553251], + [37.705793, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705793, 55.553341], + [37.705793, 55.553431], + [37.705883, 55.553431], + [37.705883, 55.553341], + [37.705793, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705793, 55.553431], + [37.705793, 55.553521], + [37.705883, 55.553521], + [37.705883, 55.553431], + [37.705793, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705793, 55.553521], + [37.705793, 55.553611], + [37.705883, 55.553611], + [37.705883, 55.553521], + [37.705793, 55.553521] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705793, 55.553611], + [37.705793, 55.5537], + [37.705883, 55.5537], + [37.705883, 55.553611], + [37.705793, 55.553611] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705793, 55.5537], + [37.705793, 55.55379], + [37.705883, 55.55379], + [37.705883, 55.5537], + [37.705793, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705793, 55.55379], + [37.705793, 55.55388], + [37.705883, 55.55388], + [37.705883, 55.55379], + [37.705793, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705793, 55.55388], + [37.705793, 55.55397], + [37.705883, 55.55397], + [37.705883, 55.55388], + [37.705793, 55.55388] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705793, 55.55397], + [37.705793, 55.55406], + [37.705883, 55.55406], + [37.705883, 55.55397], + [37.705793, 55.55397] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705793, 55.55406], + [37.705793, 55.55415], + [37.705883, 55.55415], + [37.705883, 55.55406], + [37.705793, 55.55406] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705793, 55.55415], + [37.705793, 55.554239], + [37.705883, 55.554239], + [37.705883, 55.55415], + [37.705793, 55.55415] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705793, 55.554239], + [37.705793, 55.554329], + [37.705883, 55.554329], + [37.705883, 55.554239], + [37.705793, 55.554239] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705793, 55.554329], + [37.705793, 55.554419], + [37.705883, 55.554419], + [37.705883, 55.554329], + [37.705793, 55.554329] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705793, 55.554419], + [37.705793, 55.554509], + [37.705883, 55.554509], + [37.705883, 55.554419], + [37.705793, 55.554419] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705793, 55.554509], + [37.705793, 55.554599], + [37.705883, 55.554599], + [37.705883, 55.554509], + [37.705793, 55.554509] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705793, 55.554599], + [37.705793, 55.554689], + [37.705883, 55.554689], + [37.705883, 55.554599], + [37.705793, 55.554599] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705793, 55.554689], + [37.705793, 55.554778], + [37.705883, 55.554778], + [37.705883, 55.554689], + [37.705793, 55.554689] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705793, 55.554778], + [37.705793, 55.554868], + [37.705883, 55.554868], + [37.705883, 55.554778], + [37.705793, 55.554778] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705793, 55.554868], + [37.705793, 55.554958], + [37.705883, 55.554958], + [37.705883, 55.554868], + [37.705793, 55.554868] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705793, 55.554958], + [37.705793, 55.555048], + [37.705883, 55.555048], + [37.705883, 55.554958], + [37.705793, 55.554958] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705793, 55.555048], + [37.705793, 55.555138], + [37.705883, 55.555138], + [37.705883, 55.555048], + [37.705793, 55.555048] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705793, 55.555138], + [37.705793, 55.555228], + [37.705883, 55.555228], + [37.705883, 55.555138], + [37.705793, 55.555138] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705793, 55.555228], + [37.705793, 55.555317], + [37.705883, 55.555317], + [37.705883, 55.555228], + [37.705793, 55.555228] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705793, 55.555317], + [37.705793, 55.555407], + [37.705883, 55.555407], + [37.705883, 55.555317], + [37.705793, 55.555317] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705883, 55.551634], + [37.705883, 55.551724], + [37.705973, 55.551724], + [37.705973, 55.551634], + [37.705883, 55.551634] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705883, 55.551724], + [37.705883, 55.551814], + [37.705973, 55.551814], + [37.705973, 55.551724], + [37.705883, 55.551724] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705883, 55.551814], + [37.705883, 55.551904], + [37.705973, 55.551904], + [37.705973, 55.551814], + [37.705883, 55.551814] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705883, 55.551904], + [37.705883, 55.551994], + [37.705973, 55.551994], + [37.705973, 55.551904], + [37.705883, 55.551904] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705883, 55.551994], + [37.705883, 55.552084], + [37.705973, 55.552084], + [37.705973, 55.551994], + [37.705883, 55.551994] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705883, 55.552084], + [37.705883, 55.552173], + [37.705973, 55.552173], + [37.705973, 55.552084], + [37.705883, 55.552084] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705883, 55.552173], + [37.705883, 55.552263], + [37.705973, 55.552263], + [37.705973, 55.552173], + [37.705883, 55.552173] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705883, 55.552263], + [37.705883, 55.552353], + [37.705973, 55.552353], + [37.705973, 55.552263], + [37.705883, 55.552263] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705883, 55.552353], + [37.705883, 55.552443], + [37.705973, 55.552443], + [37.705973, 55.552353], + [37.705883, 55.552353] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705883, 55.552443], + [37.705883, 55.552533], + [37.705973, 55.552533], + [37.705973, 55.552443], + [37.705883, 55.552443] ] ] } @@ -6392,11 +25896,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703478, 55.553251], - [37.703478, 55.553341], - [37.703637, 55.553341], - [37.703637, 55.553251], - [37.703478, 55.553251] + [37.705883, 55.552533], + [37.705883, 55.552623], + [37.705973, 55.552623], + [37.705973, 55.552533], + [37.705883, 55.552533] ] ] } @@ -6408,11 +25912,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703478, 55.553341], - [37.703478, 55.553431], - [37.703637, 55.553431], - [37.703637, 55.553341], - [37.703478, 55.553341] + [37.705883, 55.552623], + [37.705883, 55.552712], + [37.705973, 55.552712], + [37.705973, 55.552623], + [37.705883, 55.552623] ] ] } @@ -6424,11 +25928,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703478, 55.553431], - [37.703478, 55.55352], - [37.703637, 55.55352], - [37.703637, 55.553431], - [37.703478, 55.553431] + [37.705883, 55.552712], + [37.705883, 55.552802], + [37.705973, 55.552802], + [37.705973, 55.552712], + [37.705883, 55.552712] ] ] } @@ -6440,11 +25944,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703478, 55.55352], - [37.703478, 55.55361], - [37.703637, 55.55361], - [37.703637, 55.55352], - [37.703478, 55.55352] + [37.705883, 55.552802], + [37.705883, 55.552892], + [37.705973, 55.552892], + [37.705973, 55.552802], + [37.705883, 55.552802] ] ] } @@ -6456,11 +25960,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703478, 55.55361], - [37.703478, 55.5537], - [37.703637, 55.5537], - [37.703637, 55.55361], - [37.703478, 55.55361] + [37.705883, 55.552892], + [37.705883, 55.552982], + [37.705973, 55.552982], + [37.705973, 55.552892], + [37.705883, 55.552892] ] ] } @@ -6472,11 +25976,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703478, 55.5537], - [37.703478, 55.55379], - [37.703637, 55.55379], - [37.703637, 55.5537], - [37.703478, 55.5537] + [37.705883, 55.552982], + [37.705883, 55.553072], + [37.705973, 55.553072], + [37.705973, 55.552982], + [37.705883, 55.552982] ] ] } @@ -6488,11 +25992,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703478, 55.55379], - [37.703478, 55.55388], - [37.703637, 55.55388], - [37.703637, 55.55379], - [37.703478, 55.55379] + [37.705883, 55.553072], + [37.705883, 55.553162], + [37.705973, 55.553162], + [37.705973, 55.553072], + [37.705883, 55.553072] ] ] } @@ -6504,11 +26008,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703478, 55.55388], - [37.703478, 55.55397], - [37.703637, 55.55397], - [37.703637, 55.55388], - [37.703478, 55.55388] + [37.705883, 55.553162], + [37.705883, 55.553251], + [37.705973, 55.553251], + [37.705973, 55.553162], + [37.705883, 55.553162] ] ] } @@ -6520,11 +26024,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703478, 55.55397], - [37.703478, 55.55406], - [37.703637, 55.55406], - [37.703637, 55.55397], - [37.703478, 55.55397] + [37.705883, 55.553251], + [37.705883, 55.553341], + [37.705973, 55.553341], + [37.705973, 55.553251], + [37.705883, 55.553251] ] ] } @@ -6536,11 +26040,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703478, 55.55406], - [37.703478, 55.55415], - [37.703637, 55.55415], - [37.703637, 55.55406], - [37.703478, 55.55406] + [37.705883, 55.553341], + [37.705883, 55.553431], + [37.705973, 55.553431], + [37.705973, 55.553341], + [37.705883, 55.553341] ] ] } @@ -6552,11 +26056,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703478, 55.55415], - [37.703478, 55.55424], - [37.703637, 55.55424], - [37.703637, 55.55415], - [37.703478, 55.55415] + [37.705883, 55.553431], + [37.705883, 55.553521], + [37.705973, 55.553521], + [37.705973, 55.553431], + [37.705883, 55.553431] ] ] } @@ -6568,11 +26072,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703478, 55.55424], - [37.703478, 55.55433], - [37.703637, 55.55433], - [37.703637, 55.55424], - [37.703478, 55.55424] + [37.705883, 55.553521], + [37.705883, 55.553611], + [37.705973, 55.553611], + [37.705973, 55.553521], + [37.705883, 55.553521] ] ] } @@ -6584,11 +26088,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703478, 55.55433], - [37.703478, 55.55442], - [37.703637, 55.55442], - [37.703637, 55.55433], - [37.703478, 55.55433] + [37.705883, 55.553611], + [37.705883, 55.5537], + [37.705973, 55.5537], + [37.705973, 55.553611], + [37.705883, 55.553611] ] ] } @@ -6600,11 +26104,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703478, 55.55442], - [37.703478, 55.55451], - [37.703637, 55.55451], - [37.703637, 55.55442], - [37.703478, 55.55442] + [37.705883, 55.5537], + [37.705883, 55.55379], + [37.705973, 55.55379], + [37.705973, 55.5537], + [37.705883, 55.5537] ] ] } @@ -6616,11 +26120,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703478, 55.55451], - [37.703478, 55.5546], - [37.703637, 55.5546], - [37.703637, 55.55451], - [37.703478, 55.55451] + [37.705883, 55.55379], + [37.705883, 55.55388], + [37.705973, 55.55388], + [37.705973, 55.55379], + [37.705883, 55.55379] ] ] } @@ -6632,11 +26136,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703478, 55.5546], - [37.703478, 55.55469], - [37.703637, 55.55469], - [37.703637, 55.5546], - [37.703478, 55.5546] + [37.705883, 55.55388], + [37.705883, 55.55397], + [37.705973, 55.55397], + [37.705973, 55.55388], + [37.705883, 55.55388] ] ] } @@ -6648,11 +26152,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703478, 55.55469], - [37.703478, 55.55478], - [37.703637, 55.55478], - [37.703637, 55.55469], - [37.703478, 55.55469] + [37.705883, 55.55397], + [37.705883, 55.55406], + [37.705973, 55.55406], + [37.705973, 55.55397], + [37.705883, 55.55397] ] ] } @@ -6664,11 +26168,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.552171], - [37.703637, 55.552261], - [37.703796, 55.552261], - [37.703796, 55.552171], - [37.703637, 55.552171] + [37.705883, 55.55406], + [37.705883, 55.55415], + [37.705973, 55.55415], + [37.705973, 55.55406], + [37.705883, 55.55406] ] ] } @@ -6680,11 +26184,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.552261], - [37.703637, 55.552351], - [37.703796, 55.552351], - [37.703796, 55.552261], - [37.703637, 55.552261] + [37.705883, 55.55415], + [37.705883, 55.554239], + [37.705973, 55.554239], + [37.705973, 55.55415], + [37.705883, 55.55415] ] ] } @@ -6696,11 +26200,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.552351], - [37.703637, 55.552441], - [37.703796, 55.552441], - [37.703796, 55.552351], - [37.703637, 55.552351] + [37.705883, 55.554239], + [37.705883, 55.554329], + [37.705973, 55.554329], + [37.705973, 55.554239], + [37.705883, 55.554239] ] ] } @@ -6712,11 +26216,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.552441], - [37.703637, 55.552531], - [37.703796, 55.552531], - [37.703796, 55.552441], - [37.703637, 55.552441] + [37.705883, 55.554329], + [37.705883, 55.554419], + [37.705973, 55.554419], + [37.705973, 55.554329], + [37.705883, 55.554329] ] ] } @@ -6728,11 +26232,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.552531], - [37.703637, 55.552621], - [37.703796, 55.552621], - [37.703796, 55.552531], - [37.703637, 55.552531] + [37.705883, 55.554419], + [37.705883, 55.554509], + [37.705973, 55.554509], + [37.705973, 55.554419], + [37.705883, 55.554419] ] ] } @@ -6744,11 +26248,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.552621], - [37.703637, 55.552711], - [37.703796, 55.552711], - [37.703796, 55.552621], - [37.703637, 55.552621] + [37.705883, 55.554509], + [37.705883, 55.554599], + [37.705973, 55.554599], + [37.705973, 55.554509], + [37.705883, 55.554509] ] ] } @@ -6760,11 +26264,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.552711], - [37.703637, 55.552801], - [37.703796, 55.552801], - [37.703796, 55.552711], - [37.703637, 55.552711] + [37.705883, 55.554599], + [37.705883, 55.554689], + [37.705973, 55.554689], + [37.705973, 55.554599], + [37.705883, 55.554599] ] ] } @@ -6776,11 +26280,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.552801], - [37.703637, 55.552891], - [37.703796, 55.552891], - [37.703796, 55.552801], - [37.703637, 55.552801] + [37.705883, 55.554689], + [37.705883, 55.554778], + [37.705973, 55.554778], + [37.705973, 55.554689], + [37.705883, 55.554689] ] ] } @@ -6792,11 +26296,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.552891], - [37.703637, 55.552981], - [37.703796, 55.552981], - [37.703796, 55.552891], - [37.703637, 55.552891] + [37.705883, 55.554778], + [37.705883, 55.554868], + [37.705973, 55.554868], + [37.705973, 55.554778], + [37.705883, 55.554778] ] ] } @@ -6808,11 +26312,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.552981], - [37.703637, 55.553071], - [37.703796, 55.553071], - [37.703796, 55.552981], - [37.703637, 55.552981] + [37.705883, 55.554868], + [37.705883, 55.554958], + [37.705973, 55.554958], + [37.705973, 55.554868], + [37.705883, 55.554868] ] ] } @@ -6824,11 +26328,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.553071], - [37.703637, 55.553161], - [37.703796, 55.553161], - [37.703796, 55.553071], - [37.703637, 55.553071] + [37.705883, 55.554958], + [37.705883, 55.555048], + [37.705973, 55.555048], + [37.705973, 55.554958], + [37.705883, 55.554958] ] ] } @@ -6840,11 +26344,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.553161], - [37.703637, 55.553251], - [37.703796, 55.553251], - [37.703796, 55.553161], - [37.703637, 55.553161] + [37.705883, 55.555048], + [37.705883, 55.555138], + [37.705973, 55.555138], + [37.705973, 55.555048], + [37.705883, 55.555048] ] ] } @@ -6856,11 +26360,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.553251], - [37.703637, 55.553341], - [37.703796, 55.553341], - [37.703796, 55.553251], - [37.703637, 55.553251] + [37.705883, 55.555138], + [37.705883, 55.555228], + [37.705973, 55.555228], + [37.705973, 55.555138], + [37.705883, 55.555138] ] ] } @@ -6872,11 +26376,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.553341], - [37.703637, 55.553431], - [37.703796, 55.553431], - [37.703796, 55.553341], - [37.703637, 55.553341] + [37.705883, 55.555228], + [37.705883, 55.555317], + [37.705973, 55.555317], + [37.705973, 55.555228], + [37.705883, 55.555228] ] ] } @@ -6888,11 +26392,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.553431], - [37.703637, 55.55352], - [37.703796, 55.55352], - [37.703796, 55.553431], - [37.703637, 55.553431] + [37.705883, 55.555317], + [37.705883, 55.555407], + [37.705973, 55.555407], + [37.705973, 55.555317], + [37.705883, 55.555317] ] ] } @@ -6904,11 +26408,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.55352], - [37.703637, 55.55361], - [37.703796, 55.55361], - [37.703796, 55.55352], - [37.703637, 55.55352] + [37.705973, 55.551545], + [37.705973, 55.551634], + [37.706063, 55.551634], + [37.706063, 55.551545], + [37.705973, 55.551545] ] ] } @@ -6920,11 +26424,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.55361], - [37.703637, 55.5537], - [37.703796, 55.5537], - [37.703796, 55.55361], - [37.703637, 55.55361] + [37.705973, 55.551634], + [37.705973, 55.551724], + [37.706063, 55.551724], + [37.706063, 55.551634], + [37.705973, 55.551634] ] ] } @@ -6936,11 +26440,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.5537], - [37.703637, 55.55379], - [37.703796, 55.55379], - [37.703796, 55.5537], - [37.703637, 55.5537] + [37.705973, 55.551724], + [37.705973, 55.551814], + [37.706063, 55.551814], + [37.706063, 55.551724], + [37.705973, 55.551724] ] ] } @@ -6952,11 +26456,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.55379], - [37.703637, 55.55388], - [37.703796, 55.55388], - [37.703796, 55.55379], - [37.703637, 55.55379] + [37.705973, 55.551814], + [37.705973, 55.551904], + [37.706063, 55.551904], + [37.706063, 55.551814], + [37.705973, 55.551814] ] ] } @@ -6968,11 +26472,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.55388], - [37.703637, 55.55397], - [37.703796, 55.55397], - [37.703796, 55.55388], - [37.703637, 55.55388] + [37.705973, 55.551904], + [37.705973, 55.551994], + [37.706063, 55.551994], + [37.706063, 55.551904], + [37.705973, 55.551904] ] ] } @@ -6984,11 +26488,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.55397], - [37.703637, 55.55406], - [37.703796, 55.55406], - [37.703796, 55.55397], - [37.703637, 55.55397] + [37.705973, 55.551994], + [37.705973, 55.552084], + [37.706063, 55.552084], + [37.706063, 55.551994], + [37.705973, 55.551994] ] ] } @@ -7000,11 +26504,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.55406], - [37.703637, 55.55415], - [37.703796, 55.55415], - [37.703796, 55.55406], - [37.703637, 55.55406] + [37.705973, 55.552084], + [37.705973, 55.552173], + [37.706063, 55.552173], + [37.706063, 55.552084], + [37.705973, 55.552084] ] ] } @@ -7016,11 +26520,315 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.55415], - [37.703637, 55.55424], - [37.703796, 55.55424], - [37.703796, 55.55415], - [37.703637, 55.55415] + [37.705973, 55.552173], + [37.705973, 55.552263], + [37.706063, 55.552263], + [37.706063, 55.552173], + [37.705973, 55.552173] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705973, 55.552263], + [37.705973, 55.552353], + [37.706063, 55.552353], + [37.706063, 55.552263], + [37.705973, 55.552263] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705973, 55.552353], + [37.705973, 55.552443], + [37.706063, 55.552443], + [37.706063, 55.552353], + [37.705973, 55.552353] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705973, 55.552443], + [37.705973, 55.552533], + [37.706063, 55.552533], + [37.706063, 55.552443], + [37.705973, 55.552443] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705973, 55.552533], + [37.705973, 55.552623], + [37.706063, 55.552623], + [37.706063, 55.552533], + [37.705973, 55.552533] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705973, 55.552623], + [37.705973, 55.552712], + [37.706063, 55.552712], + [37.706063, 55.552623], + [37.705973, 55.552623] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705973, 55.552712], + [37.705973, 55.552802], + [37.706063, 55.552802], + [37.706063, 55.552712], + [37.705973, 55.552712] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705973, 55.552802], + [37.705973, 55.552892], + [37.706063, 55.552892], + [37.706063, 55.552802], + [37.705973, 55.552802] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705973, 55.552892], + [37.705973, 55.552982], + [37.706063, 55.552982], + [37.706063, 55.552892], + [37.705973, 55.552892] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705973, 55.552982], + [37.705973, 55.553072], + [37.706063, 55.553072], + [37.706063, 55.552982], + [37.705973, 55.552982] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705973, 55.553072], + [37.705973, 55.553162], + [37.706063, 55.553162], + [37.706063, 55.553072], + [37.705973, 55.553072] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705973, 55.553162], + [37.705973, 55.553251], + [37.706063, 55.553251], + [37.706063, 55.553162], + [37.705973, 55.553162] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705973, 55.553251], + [37.705973, 55.553341], + [37.706063, 55.553341], + [37.706063, 55.553251], + [37.705973, 55.553251] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705973, 55.553341], + [37.705973, 55.553431], + [37.706063, 55.553431], + [37.706063, 55.553341], + [37.705973, 55.553341] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705973, 55.553431], + [37.705973, 55.553521], + [37.706063, 55.553521], + [37.706063, 55.553431], + [37.705973, 55.553431] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705973, 55.553521], + [37.705973, 55.553611], + [37.706063, 55.553611], + [37.706063, 55.553521], + [37.705973, 55.553521] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705973, 55.553611], + [37.705973, 55.5537], + [37.706063, 55.5537], + [37.706063, 55.553611], + [37.705973, 55.553611] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705973, 55.5537], + [37.705973, 55.55379], + [37.706063, 55.55379], + [37.706063, 55.5537], + [37.705973, 55.5537] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705973, 55.55379], + [37.705973, 55.55388], + [37.706063, 55.55388], + [37.706063, 55.55379], + [37.705973, 55.55379] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.705973, 55.55388], + [37.705973, 55.55397], + [37.706063, 55.55397], + [37.706063, 55.55388], + [37.705973, 55.55388] ] ] } @@ -7032,11 +26840,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.55424], - [37.703637, 55.55433], - [37.703796, 55.55433], - [37.703796, 55.55424], - [37.703637, 55.55424] + [37.705973, 55.55397], + [37.705973, 55.55406], + [37.706063, 55.55406], + [37.706063, 55.55397], + [37.705973, 55.55397] ] ] } @@ -7048,11 +26856,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.55433], - [37.703637, 55.55442], - [37.703796, 55.55442], - [37.703796, 55.55433], - [37.703637, 55.55433] + [37.705973, 55.55406], + [37.705973, 55.55415], + [37.706063, 55.55415], + [37.706063, 55.55406], + [37.705973, 55.55406] ] ] } @@ -7064,11 +26872,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.55442], - [37.703637, 55.55451], - [37.703796, 55.55451], - [37.703796, 55.55442], - [37.703637, 55.55442] + [37.705973, 55.55415], + [37.705973, 55.554239], + [37.706063, 55.554239], + [37.706063, 55.55415], + [37.705973, 55.55415] ] ] } @@ -7080,11 +26888,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.55451], - [37.703637, 55.5546], - [37.703796, 55.5546], - [37.703796, 55.55451], - [37.703637, 55.55451] + [37.705973, 55.554239], + [37.705973, 55.554329], + [37.706063, 55.554329], + [37.706063, 55.554239], + [37.705973, 55.554239] ] ] } @@ -7096,11 +26904,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.5546], - [37.703637, 55.55469], - [37.703796, 55.55469], - [37.703796, 55.5546], - [37.703637, 55.5546] + [37.705973, 55.554329], + [37.705973, 55.554419], + [37.706063, 55.554419], + [37.706063, 55.554329], + [37.705973, 55.554329] ] ] } @@ -7112,11 +26920,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.55469], - [37.703637, 55.55478], - [37.703796, 55.55478], - [37.703796, 55.55469], - [37.703637, 55.55469] + [37.705973, 55.554419], + [37.705973, 55.554509], + [37.706063, 55.554509], + [37.706063, 55.554419], + [37.705973, 55.554419] ] ] } @@ -7128,11 +26936,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703796, 55.552171], - [37.703796, 55.552261], - [37.703955, 55.552261], - [37.703955, 55.552171], - [37.703796, 55.552171] + [37.705973, 55.554509], + [37.705973, 55.554599], + [37.706063, 55.554599], + [37.706063, 55.554509], + [37.705973, 55.554509] ] ] } @@ -7144,11 +26952,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703796, 55.552261], - [37.703796, 55.552351], - [37.703955, 55.552351], - [37.703955, 55.552261], - [37.703796, 55.552261] + [37.705973, 55.554599], + [37.705973, 55.554689], + [37.706063, 55.554689], + [37.706063, 55.554599], + [37.705973, 55.554599] ] ] } @@ -7160,11 +26968,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703796, 55.552351], - [37.703796, 55.552441], - [37.703955, 55.552441], - [37.703955, 55.552351], - [37.703796, 55.552351] + [37.705973, 55.554689], + [37.705973, 55.554778], + [37.706063, 55.554778], + [37.706063, 55.554689], + [37.705973, 55.554689] ] ] } @@ -7176,11 +26984,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703796, 55.552441], - [37.703796, 55.552531], - [37.703955, 55.552531], - [37.703955, 55.552441], - [37.703796, 55.552441] + [37.705973, 55.554778], + [37.705973, 55.554868], + [37.706063, 55.554868], + [37.706063, 55.554778], + [37.705973, 55.554778] ] ] } @@ -7192,11 +27000,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703796, 55.552531], - [37.703796, 55.552621], - [37.703955, 55.552621], - [37.703955, 55.552531], - [37.703796, 55.552531] + [37.705973, 55.554868], + [37.705973, 55.554958], + [37.706063, 55.554958], + [37.706063, 55.554868], + [37.705973, 55.554868] ] ] } @@ -7208,11 +27016,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703796, 55.552621], - [37.703796, 55.552711], - [37.703955, 55.552711], - [37.703955, 55.552621], - [37.703796, 55.552621] + [37.705973, 55.554958], + [37.705973, 55.555048], + [37.706063, 55.555048], + [37.706063, 55.554958], + [37.705973, 55.554958] ] ] } @@ -7224,11 +27032,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703796, 55.552711], - [37.703796, 55.552801], - [37.703955, 55.552801], - [37.703955, 55.552711], - [37.703796, 55.552711] + [37.705973, 55.555048], + [37.705973, 55.555138], + [37.706063, 55.555138], + [37.706063, 55.555048], + [37.705973, 55.555048] ] ] } @@ -7240,11 +27048,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703796, 55.552801], - [37.703796, 55.552891], - [37.703955, 55.552891], - [37.703955, 55.552801], - [37.703796, 55.552801] + [37.705973, 55.555138], + [37.705973, 55.555228], + [37.706063, 55.555228], + [37.706063, 55.555138], + [37.705973, 55.555138] ] ] } @@ -7256,11 +27064,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703796, 55.552891], - [37.703796, 55.552981], - [37.703955, 55.552981], - [37.703955, 55.552891], - [37.703796, 55.552891] + [37.705973, 55.555228], + [37.705973, 55.555317], + [37.706063, 55.555317], + [37.706063, 55.555228], + [37.705973, 55.555228] ] ] } @@ -7272,11 +27080,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703796, 55.552981], - [37.703796, 55.553071], - [37.703955, 55.553071], - [37.703955, 55.552981], - [37.703796, 55.552981] + [37.705973, 55.555317], + [37.705973, 55.555407], + [37.706063, 55.555407], + [37.706063, 55.555317], + [37.705973, 55.555317] ] ] } @@ -7288,11 +27096,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703796, 55.553071], - [37.703796, 55.553161], - [37.703955, 55.553161], - [37.703955, 55.553071], - [37.703796, 55.553071] + [37.706063, 55.551545], + [37.706063, 55.551634], + [37.706153, 55.551634], + [37.706153, 55.551545], + [37.706063, 55.551545] ] ] } @@ -7304,11 +27112,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703796, 55.553161], - [37.703796, 55.553251], - [37.703955, 55.553251], - [37.703955, 55.553161], - [37.703796, 55.553161] + [37.706063, 55.551634], + [37.706063, 55.551724], + [37.706153, 55.551724], + [37.706153, 55.551634], + [37.706063, 55.551634] ] ] } @@ -7320,11 +27128,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703796, 55.553251], - [37.703796, 55.553341], - [37.703955, 55.553341], - [37.703955, 55.553251], - [37.703796, 55.553251] + [37.706063, 55.551724], + [37.706063, 55.551814], + [37.706153, 55.551814], + [37.706153, 55.551724], + [37.706063, 55.551724] ] ] } @@ -7336,11 +27144,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703796, 55.553341], - [37.703796, 55.553431], - [37.703955, 55.553431], - [37.703955, 55.553341], - [37.703796, 55.553341] + [37.706063, 55.551814], + [37.706063, 55.551904], + [37.706153, 55.551904], + [37.706153, 55.551814], + [37.706063, 55.551814] ] ] } @@ -7352,11 +27160,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703796, 55.553431], - [37.703796, 55.55352], - [37.703955, 55.55352], - [37.703955, 55.553431], - [37.703796, 55.553431] + [37.706063, 55.551904], + [37.706063, 55.551994], + [37.706153, 55.551994], + [37.706153, 55.551904], + [37.706063, 55.551904] ] ] } @@ -7368,11 +27176,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703796, 55.55352], - [37.703796, 55.55361], - [37.703955, 55.55361], - [37.703955, 55.55352], - [37.703796, 55.55352] + [37.706063, 55.551994], + [37.706063, 55.552084], + [37.706153, 55.552084], + [37.706153, 55.551994], + [37.706063, 55.551994] ] ] } @@ -7384,11 +27192,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703796, 55.55361], - [37.703796, 55.5537], - [37.703955, 55.5537], - [37.703955, 55.55361], - [37.703796, 55.55361] + [37.706063, 55.552084], + [37.706063, 55.552173], + [37.706153, 55.552173], + [37.706153, 55.552084], + [37.706063, 55.552084] ] ] } @@ -7400,11 +27208,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703796, 55.5537], - [37.703796, 55.55379], - [37.703955, 55.55379], - [37.703955, 55.5537], - [37.703796, 55.5537] + [37.706063, 55.552173], + [37.706063, 55.552263], + [37.706153, 55.552263], + [37.706153, 55.552173], + [37.706063, 55.552173] ] ] } @@ -7416,11 +27224,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703796, 55.55379], - [37.703796, 55.55388], - [37.703955, 55.55388], - [37.703955, 55.55379], - [37.703796, 55.55379] + [37.706063, 55.552263], + [37.706063, 55.552353], + [37.706153, 55.552353], + [37.706153, 55.552263], + [37.706063, 55.552263] ] ] } @@ -7432,11 +27240,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703796, 55.55388], - [37.703796, 55.55397], - [37.703955, 55.55397], - [37.703955, 55.55388], - [37.703796, 55.55388] + [37.706063, 55.552353], + [37.706063, 55.552443], + [37.706153, 55.552443], + [37.706153, 55.552353], + [37.706063, 55.552353] ] ] } @@ -7448,11 +27256,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703796, 55.55397], - [37.703796, 55.55406], - [37.703955, 55.55406], - [37.703955, 55.55397], - [37.703796, 55.55397] + [37.706063, 55.552443], + [37.706063, 55.552533], + [37.706153, 55.552533], + [37.706153, 55.552443], + [37.706063, 55.552443] ] ] } @@ -7464,11 +27272,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703796, 55.55406], - [37.703796, 55.55415], - [37.703955, 55.55415], - [37.703955, 55.55406], - [37.703796, 55.55406] + [37.706063, 55.552533], + [37.706063, 55.552623], + [37.706153, 55.552623], + [37.706153, 55.552533], + [37.706063, 55.552533] ] ] } @@ -7480,11 +27288,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703796, 55.55415], - [37.703796, 55.55424], - [37.703955, 55.55424], - [37.703955, 55.55415], - [37.703796, 55.55415] + [37.706063, 55.552623], + [37.706063, 55.552712], + [37.706153, 55.552712], + [37.706153, 55.552623], + [37.706063, 55.552623] ] ] } @@ -7496,11 +27304,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703796, 55.55424], - [37.703796, 55.55433], - [37.703955, 55.55433], - [37.703955, 55.55424], - [37.703796, 55.55424] + [37.706063, 55.552712], + [37.706063, 55.552802], + [37.706153, 55.552802], + [37.706153, 55.552712], + [37.706063, 55.552712] ] ] } @@ -7512,11 +27320,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703796, 55.55433], - [37.703796, 55.55442], - [37.703955, 55.55442], - [37.703955, 55.55433], - [37.703796, 55.55433] + [37.706063, 55.552802], + [37.706063, 55.552892], + [37.706153, 55.552892], + [37.706153, 55.552802], + [37.706063, 55.552802] ] ] } @@ -7528,11 +27336,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703796, 55.55442], - [37.703796, 55.55451], - [37.703955, 55.55451], - [37.703955, 55.55442], - [37.703796, 55.55442] + [37.706063, 55.552892], + [37.706063, 55.552982], + [37.706153, 55.552982], + [37.706153, 55.552892], + [37.706063, 55.552892] ] ] } @@ -7544,11 +27352,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703796, 55.55451], - [37.703796, 55.5546], - [37.703955, 55.5546], - [37.703955, 55.55451], - [37.703796, 55.55451] + [37.706063, 55.552982], + [37.706063, 55.553072], + [37.706153, 55.553072], + [37.706153, 55.552982], + [37.706063, 55.552982] ] ] } @@ -7560,11 +27368,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703796, 55.5546], - [37.703796, 55.55469], - [37.703955, 55.55469], - [37.703955, 55.5546], - [37.703796, 55.5546] + [37.706063, 55.553072], + [37.706063, 55.553162], + [37.706153, 55.553162], + [37.706153, 55.553072], + [37.706063, 55.553072] ] ] } @@ -7576,11 +27384,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703796, 55.55469], - [37.703796, 55.55478], - [37.703955, 55.55478], - [37.703955, 55.55469], - [37.703796, 55.55469] + [37.706063, 55.553162], + [37.706063, 55.553251], + [37.706153, 55.553251], + [37.706153, 55.553162], + [37.706063, 55.553162] ] ] } @@ -7592,11 +27400,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703796, 55.55478], - [37.703796, 55.554869], - [37.703955, 55.554869], - [37.703955, 55.55478], - [37.703796, 55.55478] + [37.706063, 55.553251], + [37.706063, 55.553341], + [37.706153, 55.553341], + [37.706153, 55.553251], + [37.706063, 55.553251] ] ] } @@ -7608,11 +27416,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703955, 55.552082], - [37.703955, 55.552171], - [37.704114, 55.552171], - [37.704114, 55.552082], - [37.703955, 55.552082] + [37.706063, 55.553341], + [37.706063, 55.553431], + [37.706153, 55.553431], + [37.706153, 55.553341], + [37.706063, 55.553341] ] ] } @@ -7624,11 +27432,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703955, 55.552171], - [37.703955, 55.552261], - [37.704114, 55.552261], - [37.704114, 55.552171], - [37.703955, 55.552171] + [37.706063, 55.553431], + [37.706063, 55.553521], + [37.706153, 55.553521], + [37.706153, 55.553431], + [37.706063, 55.553431] ] ] } @@ -7640,11 +27448,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703955, 55.552261], - [37.703955, 55.552351], - [37.704114, 55.552351], - [37.704114, 55.552261], - [37.703955, 55.552261] + [37.706063, 55.553521], + [37.706063, 55.553611], + [37.706153, 55.553611], + [37.706153, 55.553521], + [37.706063, 55.553521] ] ] } @@ -7656,11 +27464,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703955, 55.552351], - [37.703955, 55.552441], - [37.704114, 55.552441], - [37.704114, 55.552351], - [37.703955, 55.552351] + [37.706063, 55.553611], + [37.706063, 55.5537], + [37.706153, 55.5537], + [37.706153, 55.553611], + [37.706063, 55.553611] ] ] } @@ -7672,11 +27480,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703955, 55.552441], - [37.703955, 55.552531], - [37.704114, 55.552531], - [37.704114, 55.552441], - [37.703955, 55.552441] + [37.706063, 55.5537], + [37.706063, 55.55379], + [37.706153, 55.55379], + [37.706153, 55.5537], + [37.706063, 55.5537] ] ] } @@ -7688,11 +27496,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703955, 55.552531], - [37.703955, 55.552621], - [37.704114, 55.552621], - [37.704114, 55.552531], - [37.703955, 55.552531] + [37.706063, 55.55379], + [37.706063, 55.55388], + [37.706153, 55.55388], + [37.706153, 55.55379], + [37.706063, 55.55379] ] ] } @@ -7704,11 +27512,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703955, 55.552621], - [37.703955, 55.552711], - [37.704114, 55.552711], - [37.704114, 55.552621], - [37.703955, 55.552621] + [37.706063, 55.55388], + [37.706063, 55.55397], + [37.706153, 55.55397], + [37.706153, 55.55388], + [37.706063, 55.55388] ] ] } @@ -7720,11 +27528,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703955, 55.552711], - [37.703955, 55.552801], - [37.704114, 55.552801], - [37.704114, 55.552711], - [37.703955, 55.552711] + [37.706063, 55.55397], + [37.706063, 55.55406], + [37.706153, 55.55406], + [37.706153, 55.55397], + [37.706063, 55.55397] ] ] } @@ -7736,11 +27544,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703955, 55.552801], - [37.703955, 55.552891], - [37.704114, 55.552891], - [37.704114, 55.552801], - [37.703955, 55.552801] + [37.706063, 55.55406], + [37.706063, 55.55415], + [37.706153, 55.55415], + [37.706153, 55.55406], + [37.706063, 55.55406] ] ] } @@ -7752,11 +27560,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703955, 55.552891], - [37.703955, 55.552981], - [37.704114, 55.552981], - [37.704114, 55.552891], - [37.703955, 55.552891] + [37.706063, 55.55415], + [37.706063, 55.554239], + [37.706153, 55.554239], + [37.706153, 55.55415], + [37.706063, 55.55415] ] ] } @@ -7768,11 +27576,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703955, 55.552981], - [37.703955, 55.553071], - [37.704114, 55.553071], - [37.704114, 55.552981], - [37.703955, 55.552981] + [37.706063, 55.554239], + [37.706063, 55.554329], + [37.706153, 55.554329], + [37.706153, 55.554239], + [37.706063, 55.554239] ] ] } @@ -7784,11 +27592,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703955, 55.553071], - [37.703955, 55.553161], - [37.704114, 55.553161], - [37.704114, 55.553071], - [37.703955, 55.553071] + [37.706063, 55.554329], + [37.706063, 55.554419], + [37.706153, 55.554419], + [37.706153, 55.554329], + [37.706063, 55.554329] ] ] } @@ -7800,11 +27608,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703955, 55.553161], - [37.703955, 55.553251], - [37.704114, 55.553251], - [37.704114, 55.553161], - [37.703955, 55.553161] + [37.706063, 55.554419], + [37.706063, 55.554509], + [37.706153, 55.554509], + [37.706153, 55.554419], + [37.706063, 55.554419] ] ] } @@ -7816,11 +27624,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703955, 55.553251], - [37.703955, 55.553341], - [37.704114, 55.553341], - [37.704114, 55.553251], - [37.703955, 55.553251] + [37.706063, 55.554509], + [37.706063, 55.554599], + [37.706153, 55.554599], + [37.706153, 55.554509], + [37.706063, 55.554509] ] ] } @@ -7832,11 +27640,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703955, 55.553341], - [37.703955, 55.553431], - [37.704114, 55.553431], - [37.704114, 55.553341], - [37.703955, 55.553341] + [37.706063, 55.554599], + [37.706063, 55.554689], + [37.706153, 55.554689], + [37.706153, 55.554599], + [37.706063, 55.554599] ] ] } @@ -7848,11 +27656,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703955, 55.553431], - [37.703955, 55.55352], - [37.704114, 55.55352], - [37.704114, 55.553431], - [37.703955, 55.553431] + [37.706063, 55.554689], + [37.706063, 55.554778], + [37.706153, 55.554778], + [37.706153, 55.554689], + [37.706063, 55.554689] ] ] } @@ -7864,11 +27672,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703955, 55.55352], - [37.703955, 55.55361], - [37.704114, 55.55361], - [37.704114, 55.55352], - [37.703955, 55.55352] + [37.706063, 55.554778], + [37.706063, 55.554868], + [37.706153, 55.554868], + [37.706153, 55.554778], + [37.706063, 55.554778] ] ] } @@ -7880,11 +27688,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703955, 55.55361], - [37.703955, 55.5537], - [37.704114, 55.5537], - [37.704114, 55.55361], - [37.703955, 55.55361] + [37.706063, 55.554868], + [37.706063, 55.554958], + [37.706153, 55.554958], + [37.706153, 55.554868], + [37.706063, 55.554868] ] ] } @@ -7896,11 +27704,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703955, 55.5537], - [37.703955, 55.55379], - [37.704114, 55.55379], - [37.704114, 55.5537], - [37.703955, 55.5537] + [37.706063, 55.554958], + [37.706063, 55.555048], + [37.706153, 55.555048], + [37.706153, 55.554958], + [37.706063, 55.554958] ] ] } @@ -7912,11 +27720,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703955, 55.55379], - [37.703955, 55.55388], - [37.704114, 55.55388], - [37.704114, 55.55379], - [37.703955, 55.55379] + [37.706063, 55.555048], + [37.706063, 55.555138], + [37.706153, 55.555138], + [37.706153, 55.555048], + [37.706063, 55.555048] ] ] } @@ -7928,11 +27736,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703955, 55.55388], - [37.703955, 55.55397], - [37.704114, 55.55397], - [37.704114, 55.55388], - [37.703955, 55.55388] + [37.706063, 55.555138], + [37.706063, 55.555228], + [37.706153, 55.555228], + [37.706153, 55.555138], + [37.706063, 55.555138] ] ] } @@ -7944,11 +27752,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703955, 55.55397], - [37.703955, 55.55406], - [37.704114, 55.55406], - [37.704114, 55.55397], - [37.703955, 55.55397] + [37.706063, 55.555228], + [37.706063, 55.555317], + [37.706153, 55.555317], + [37.706153, 55.555228], + [37.706063, 55.555228] ] ] } @@ -7960,11 +27768,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703955, 55.55406], - [37.703955, 55.55415], - [37.704114, 55.55415], - [37.704114, 55.55406], - [37.703955, 55.55406] + [37.706063, 55.555317], + [37.706063, 55.555407], + [37.706153, 55.555407], + [37.706153, 55.555317], + [37.706063, 55.555317] ] ] } @@ -7976,11 +27784,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703955, 55.55415], - [37.703955, 55.55424], - [37.704114, 55.55424], - [37.704114, 55.55415], - [37.703955, 55.55415] + [37.706063, 55.555407], + [37.706063, 55.555497], + [37.706153, 55.555497], + [37.706153, 55.555407], + [37.706063, 55.555407] ] ] } @@ -7992,11 +27800,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703955, 55.55424], - [37.703955, 55.55433], - [37.704114, 55.55433], - [37.704114, 55.55424], - [37.703955, 55.55424] + [37.706153, 55.551545], + [37.706153, 55.551634], + [37.706242, 55.551634], + [37.706242, 55.551545], + [37.706153, 55.551545] ] ] } @@ -8008,11 +27816,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703955, 55.55433], - [37.703955, 55.55442], - [37.704114, 55.55442], - [37.704114, 55.55433], - [37.703955, 55.55433] + [37.706153, 55.551634], + [37.706153, 55.551724], + [37.706242, 55.551724], + [37.706242, 55.551634], + [37.706153, 55.551634] ] ] } @@ -8024,11 +27832,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703955, 55.55442], - [37.703955, 55.55451], - [37.704114, 55.55451], - [37.704114, 55.55442], - [37.703955, 55.55442] + [37.706153, 55.551724], + [37.706153, 55.551814], + [37.706242, 55.551814], + [37.706242, 55.551724], + [37.706153, 55.551724] ] ] } @@ -8040,11 +27848,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703955, 55.55451], - [37.703955, 55.5546], - [37.704114, 55.5546], - [37.704114, 55.55451], - [37.703955, 55.55451] + [37.706153, 55.551814], + [37.706153, 55.551904], + [37.706242, 55.551904], + [37.706242, 55.551814], + [37.706153, 55.551814] ] ] } @@ -8056,11 +27864,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703955, 55.5546], - [37.703955, 55.55469], - [37.704114, 55.55469], - [37.704114, 55.5546], - [37.703955, 55.5546] + [37.706153, 55.551904], + [37.706153, 55.551994], + [37.706242, 55.551994], + [37.706242, 55.551904], + [37.706153, 55.551904] ] ] } @@ -8072,11 +27880,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703955, 55.55469], - [37.703955, 55.55478], - [37.704114, 55.55478], - [37.704114, 55.55469], - [37.703955, 55.55469] + [37.706153, 55.551994], + [37.706153, 55.552084], + [37.706242, 55.552084], + [37.706242, 55.551994], + [37.706153, 55.551994] ] ] } @@ -8088,11 +27896,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703955, 55.55478], - [37.703955, 55.554869], - [37.704114, 55.554869], - [37.704114, 55.55478], - [37.703955, 55.55478] + [37.706153, 55.552084], + [37.706153, 55.552173], + [37.706242, 55.552173], + [37.706242, 55.552084], + [37.706153, 55.552084] ] ] } @@ -8104,11 +27912,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704114, 55.552082], - [37.704114, 55.552171], - [37.704273, 55.552171], - [37.704273, 55.552082], - [37.704114, 55.552082] + [37.706153, 55.552173], + [37.706153, 55.552263], + [37.706242, 55.552263], + [37.706242, 55.552173], + [37.706153, 55.552173] ] ] } @@ -8120,11 +27928,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704114, 55.552171], - [37.704114, 55.552261], - [37.704273, 55.552261], - [37.704273, 55.552171], - [37.704114, 55.552171] + [37.706153, 55.552263], + [37.706153, 55.552353], + [37.706242, 55.552353], + [37.706242, 55.552263], + [37.706153, 55.552263] ] ] } @@ -8136,11 +27944,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704114, 55.552261], - [37.704114, 55.552351], - [37.704273, 55.552351], - [37.704273, 55.552261], - [37.704114, 55.552261] + [37.706153, 55.552353], + [37.706153, 55.552443], + [37.706242, 55.552443], + [37.706242, 55.552353], + [37.706153, 55.552353] ] ] } @@ -8152,11 +27960,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704114, 55.552351], - [37.704114, 55.552441], - [37.704273, 55.552441], - [37.704273, 55.552351], - [37.704114, 55.552351] + [37.706153, 55.552443], + [37.706153, 55.552533], + [37.706242, 55.552533], + [37.706242, 55.552443], + [37.706153, 55.552443] ] ] } @@ -8168,11 +27976,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704114, 55.552441], - [37.704114, 55.552531], - [37.704273, 55.552531], - [37.704273, 55.552441], - [37.704114, 55.552441] + [37.706153, 55.552533], + [37.706153, 55.552623], + [37.706242, 55.552623], + [37.706242, 55.552533], + [37.706153, 55.552533] ] ] } @@ -8184,11 +27992,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704114, 55.552531], - [37.704114, 55.552621], - [37.704273, 55.552621], - [37.704273, 55.552531], - [37.704114, 55.552531] + [37.706153, 55.552623], + [37.706153, 55.552712], + [37.706242, 55.552712], + [37.706242, 55.552623], + [37.706153, 55.552623] ] ] } @@ -8200,11 +28008,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704114, 55.552621], - [37.704114, 55.552711], - [37.704273, 55.552711], - [37.704273, 55.552621], - [37.704114, 55.552621] + [37.706153, 55.552712], + [37.706153, 55.552802], + [37.706242, 55.552802], + [37.706242, 55.552712], + [37.706153, 55.552712] ] ] } @@ -8216,11 +28024,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704114, 55.552711], - [37.704114, 55.552801], - [37.704273, 55.552801], - [37.704273, 55.552711], - [37.704114, 55.552711] + [37.706153, 55.552802], + [37.706153, 55.552892], + [37.706242, 55.552892], + [37.706242, 55.552802], + [37.706153, 55.552802] ] ] } @@ -8232,11 +28040,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704114, 55.552801], - [37.704114, 55.552891], - [37.704273, 55.552891], - [37.704273, 55.552801], - [37.704114, 55.552801] + [37.706153, 55.552892], + [37.706153, 55.552982], + [37.706242, 55.552982], + [37.706242, 55.552892], + [37.706153, 55.552892] ] ] } @@ -8248,11 +28056,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704114, 55.552891], - [37.704114, 55.552981], - [37.704273, 55.552981], - [37.704273, 55.552891], - [37.704114, 55.552891] + [37.706153, 55.552982], + [37.706153, 55.553072], + [37.706242, 55.553072], + [37.706242, 55.552982], + [37.706153, 55.552982] ] ] } @@ -8264,11 +28072,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704114, 55.552981], - [37.704114, 55.553071], - [37.704273, 55.553071], - [37.704273, 55.552981], - [37.704114, 55.552981] + [37.706153, 55.553072], + [37.706153, 55.553162], + [37.706242, 55.553162], + [37.706242, 55.553072], + [37.706153, 55.553072] ] ] } @@ -8280,11 +28088,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704114, 55.553071], - [37.704114, 55.553161], - [37.704273, 55.553161], - [37.704273, 55.553071], - [37.704114, 55.553071] + [37.706153, 55.553162], + [37.706153, 55.553251], + [37.706242, 55.553251], + [37.706242, 55.553162], + [37.706153, 55.553162] ] ] } @@ -8296,11 +28104,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704114, 55.553161], - [37.704114, 55.553251], - [37.704273, 55.553251], - [37.704273, 55.553161], - [37.704114, 55.553161] + [37.706153, 55.553251], + [37.706153, 55.553341], + [37.706242, 55.553341], + [37.706242, 55.553251], + [37.706153, 55.553251] ] ] } @@ -8312,11 +28120,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704114, 55.553251], - [37.704114, 55.553341], - [37.704273, 55.553341], - [37.704273, 55.553251], - [37.704114, 55.553251] + [37.706153, 55.553341], + [37.706153, 55.553431], + [37.706242, 55.553431], + [37.706242, 55.553341], + [37.706153, 55.553341] ] ] } @@ -8328,11 +28136,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704114, 55.553341], - [37.704114, 55.553431], - [37.704273, 55.553431], - [37.704273, 55.553341], - [37.704114, 55.553341] + [37.706153, 55.553431], + [37.706153, 55.553521], + [37.706242, 55.553521], + [37.706242, 55.553431], + [37.706153, 55.553431] ] ] } @@ -8344,11 +28152,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704114, 55.553431], - [37.704114, 55.55352], - [37.704273, 55.55352], - [37.704273, 55.553431], - [37.704114, 55.553431] + [37.706153, 55.553521], + [37.706153, 55.553611], + [37.706242, 55.553611], + [37.706242, 55.553521], + [37.706153, 55.553521] ] ] } @@ -8360,11 +28168,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704114, 55.55352], - [37.704114, 55.55361], - [37.704273, 55.55361], - [37.704273, 55.55352], - [37.704114, 55.55352] + [37.706153, 55.553611], + [37.706153, 55.5537], + [37.706242, 55.5537], + [37.706242, 55.553611], + [37.706153, 55.553611] ] ] } @@ -8376,11 +28184,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704114, 55.55361], - [37.704114, 55.5537], - [37.704273, 55.5537], - [37.704273, 55.55361], - [37.704114, 55.55361] + [37.706153, 55.5537], + [37.706153, 55.55379], + [37.706242, 55.55379], + [37.706242, 55.5537], + [37.706153, 55.5537] ] ] } @@ -8392,11 +28200,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704114, 55.5537], - [37.704114, 55.55379], - [37.704273, 55.55379], - [37.704273, 55.5537], - [37.704114, 55.5537] + [37.706153, 55.55379], + [37.706153, 55.55388], + [37.706242, 55.55388], + [37.706242, 55.55379], + [37.706153, 55.55379] ] ] } @@ -8408,11 +28216,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704114, 55.55379], - [37.704114, 55.55388], - [37.704273, 55.55388], - [37.704273, 55.55379], - [37.704114, 55.55379] + [37.706153, 55.55388], + [37.706153, 55.55397], + [37.706242, 55.55397], + [37.706242, 55.55388], + [37.706153, 55.55388] ] ] } @@ -8424,11 +28232,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704114, 55.55388], - [37.704114, 55.55397], - [37.704273, 55.55397], - [37.704273, 55.55388], - [37.704114, 55.55388] + [37.706153, 55.55397], + [37.706153, 55.55406], + [37.706242, 55.55406], + [37.706242, 55.55397], + [37.706153, 55.55397] ] ] } @@ -8440,11 +28248,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704114, 55.55397], - [37.704114, 55.55406], - [37.704273, 55.55406], - [37.704273, 55.55397], - [37.704114, 55.55397] + [37.706153, 55.55406], + [37.706153, 55.55415], + [37.706242, 55.55415], + [37.706242, 55.55406], + [37.706153, 55.55406] ] ] } @@ -8456,11 +28264,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704114, 55.55406], - [37.704114, 55.55415], - [37.704273, 55.55415], - [37.704273, 55.55406], - [37.704114, 55.55406] + [37.706153, 55.55415], + [37.706153, 55.554239], + [37.706242, 55.554239], + [37.706242, 55.55415], + [37.706153, 55.55415] ] ] } @@ -8472,11 +28280,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704114, 55.55415], - [37.704114, 55.55424], - [37.704273, 55.55424], - [37.704273, 55.55415], - [37.704114, 55.55415] + [37.706153, 55.554239], + [37.706153, 55.554329], + [37.706242, 55.554329], + [37.706242, 55.554239], + [37.706153, 55.554239] ] ] } @@ -8488,11 +28296,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704114, 55.55424], - [37.704114, 55.55433], - [37.704273, 55.55433], - [37.704273, 55.55424], - [37.704114, 55.55424] + [37.706153, 55.554329], + [37.706153, 55.554419], + [37.706242, 55.554419], + [37.706242, 55.554329], + [37.706153, 55.554329] ] ] } @@ -8504,11 +28312,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704114, 55.55433], - [37.704114, 55.55442], - [37.704273, 55.55442], - [37.704273, 55.55433], - [37.704114, 55.55433] + [37.706153, 55.554419], + [37.706153, 55.554509], + [37.706242, 55.554509], + [37.706242, 55.554419], + [37.706153, 55.554419] ] ] } @@ -8520,11 +28328,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704114, 55.55442], - [37.704114, 55.55451], - [37.704273, 55.55451], - [37.704273, 55.55442], - [37.704114, 55.55442] + [37.706153, 55.554509], + [37.706153, 55.554599], + [37.706242, 55.554599], + [37.706242, 55.554509], + [37.706153, 55.554509] ] ] } @@ -8536,11 +28344,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704114, 55.55451], - [37.704114, 55.5546], - [37.704273, 55.5546], - [37.704273, 55.55451], - [37.704114, 55.55451] + [37.706153, 55.554599], + [37.706153, 55.554689], + [37.706242, 55.554689], + [37.706242, 55.554599], + [37.706153, 55.554599] ] ] } @@ -8552,11 +28360,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704114, 55.5546], - [37.704114, 55.55469], - [37.704273, 55.55469], - [37.704273, 55.5546], - [37.704114, 55.5546] + [37.706153, 55.554689], + [37.706153, 55.554778], + [37.706242, 55.554778], + [37.706242, 55.554689], + [37.706153, 55.554689] ] ] } @@ -8568,11 +28376,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704114, 55.55469], - [37.704114, 55.55478], - [37.704273, 55.55478], - [37.704273, 55.55469], - [37.704114, 55.55469] + [37.706153, 55.554778], + [37.706153, 55.554868], + [37.706242, 55.554868], + [37.706242, 55.554778], + [37.706153, 55.554778] ] ] } @@ -8584,11 +28392,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704114, 55.55478], - [37.704114, 55.554869], - [37.704273, 55.554869], - [37.704273, 55.55478], - [37.704114, 55.55478] + [37.706153, 55.554868], + [37.706153, 55.554958], + [37.706242, 55.554958], + [37.706242, 55.554868], + [37.706153, 55.554868] ] ] } @@ -8600,11 +28408,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704114, 55.554869], - [37.704114, 55.554959], - [37.704273, 55.554959], - [37.704273, 55.554869], - [37.704114, 55.554869] + [37.706153, 55.554958], + [37.706153, 55.555048], + [37.706242, 55.555048], + [37.706242, 55.554958], + [37.706153, 55.554958] ] ] } @@ -8616,11 +28424,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704273, 55.551992], - [37.704273, 55.552082], - [37.704432, 55.552082], - [37.704432, 55.551992], - [37.704273, 55.551992] + [37.706153, 55.555048], + [37.706153, 55.555138], + [37.706242, 55.555138], + [37.706242, 55.555048], + [37.706153, 55.555048] ] ] } @@ -8632,11 +28440,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704273, 55.552082], - [37.704273, 55.552171], - [37.704432, 55.552171], - [37.704432, 55.552082], - [37.704273, 55.552082] + [37.706153, 55.555138], + [37.706153, 55.555228], + [37.706242, 55.555228], + [37.706242, 55.555138], + [37.706153, 55.555138] ] ] } @@ -8648,11 +28456,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704273, 55.552171], - [37.704273, 55.552261], - [37.704432, 55.552261], - [37.704432, 55.552171], - [37.704273, 55.552171] + [37.706153, 55.555228], + [37.706153, 55.555317], + [37.706242, 55.555317], + [37.706242, 55.555228], + [37.706153, 55.555228] ] ] } @@ -8664,11 +28472,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704273, 55.552261], - [37.704273, 55.552351], - [37.704432, 55.552351], - [37.704432, 55.552261], - [37.704273, 55.552261] + [37.706153, 55.555317], + [37.706153, 55.555407], + [37.706242, 55.555407], + [37.706242, 55.555317], + [37.706153, 55.555317] ] ] } @@ -8680,11 +28488,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704273, 55.552351], - [37.704273, 55.552441], - [37.704432, 55.552441], - [37.704432, 55.552351], - [37.704273, 55.552351] + [37.706153, 55.555407], + [37.706153, 55.555497], + [37.706242, 55.555497], + [37.706242, 55.555407], + [37.706153, 55.555407] ] ] } @@ -8696,11 +28504,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704273, 55.552441], - [37.704273, 55.552531], - [37.704432, 55.552531], - [37.704432, 55.552441], - [37.704273, 55.552441] + [37.706242, 55.551545], + [37.706242, 55.551634], + [37.706332, 55.551634], + [37.706332, 55.551545], + [37.706242, 55.551545] ] ] } @@ -8712,11 +28520,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704273, 55.552531], - [37.704273, 55.552621], - [37.704432, 55.552621], - [37.704432, 55.552531], - [37.704273, 55.552531] + [37.706242, 55.551634], + [37.706242, 55.551724], + [37.706332, 55.551724], + [37.706332, 55.551634], + [37.706242, 55.551634] ] ] } @@ -8728,11 +28536,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704273, 55.552621], - [37.704273, 55.552711], - [37.704432, 55.552711], - [37.704432, 55.552621], - [37.704273, 55.552621] + [37.706242, 55.551724], + [37.706242, 55.551814], + [37.706332, 55.551814], + [37.706332, 55.551724], + [37.706242, 55.551724] ] ] } @@ -8744,11 +28552,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704273, 55.552711], - [37.704273, 55.552801], - [37.704432, 55.552801], - [37.704432, 55.552711], - [37.704273, 55.552711] + [37.706242, 55.551814], + [37.706242, 55.551904], + [37.706332, 55.551904], + [37.706332, 55.551814], + [37.706242, 55.551814] ] ] } @@ -8760,11 +28568,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704273, 55.552801], - [37.704273, 55.552891], - [37.704432, 55.552891], - [37.704432, 55.552801], - [37.704273, 55.552801] + [37.706242, 55.551904], + [37.706242, 55.551994], + [37.706332, 55.551994], + [37.706332, 55.551904], + [37.706242, 55.551904] ] ] } @@ -8776,11 +28584,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704273, 55.552891], - [37.704273, 55.552981], - [37.704432, 55.552981], - [37.704432, 55.552891], - [37.704273, 55.552891] + [37.706242, 55.551994], + [37.706242, 55.552084], + [37.706332, 55.552084], + [37.706332, 55.551994], + [37.706242, 55.551994] ] ] } @@ -8792,11 +28600,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704273, 55.552981], - [37.704273, 55.553071], - [37.704432, 55.553071], - [37.704432, 55.552981], - [37.704273, 55.552981] + [37.706242, 55.552084], + [37.706242, 55.552173], + [37.706332, 55.552173], + [37.706332, 55.552084], + [37.706242, 55.552084] ] ] } @@ -8808,11 +28616,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704273, 55.553071], - [37.704273, 55.553161], - [37.704432, 55.553161], - [37.704432, 55.553071], - [37.704273, 55.553071] + [37.706242, 55.552173], + [37.706242, 55.552263], + [37.706332, 55.552263], + [37.706332, 55.552173], + [37.706242, 55.552173] ] ] } @@ -8824,11 +28632,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704273, 55.553161], - [37.704273, 55.553251], - [37.704432, 55.553251], - [37.704432, 55.553161], - [37.704273, 55.553161] + [37.706242, 55.552263], + [37.706242, 55.552353], + [37.706332, 55.552353], + [37.706332, 55.552263], + [37.706242, 55.552263] ] ] } @@ -8840,11 +28648,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704273, 55.553251], - [37.704273, 55.553341], - [37.704432, 55.553341], - [37.704432, 55.553251], - [37.704273, 55.553251] + [37.706242, 55.552353], + [37.706242, 55.552443], + [37.706332, 55.552443], + [37.706332, 55.552353], + [37.706242, 55.552353] ] ] } @@ -8856,11 +28664,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704273, 55.553341], - [37.704273, 55.553431], - [37.704432, 55.553431], - [37.704432, 55.553341], - [37.704273, 55.553341] + [37.706242, 55.552443], + [37.706242, 55.552533], + [37.706332, 55.552533], + [37.706332, 55.552443], + [37.706242, 55.552443] ] ] } @@ -8872,11 +28680,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704273, 55.553431], - [37.704273, 55.55352], - [37.704432, 55.55352], - [37.704432, 55.553431], - [37.704273, 55.553431] + [37.706242, 55.552533], + [37.706242, 55.552623], + [37.706332, 55.552623], + [37.706332, 55.552533], + [37.706242, 55.552533] ] ] } @@ -8888,11 +28696,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704273, 55.55352], - [37.704273, 55.55361], - [37.704432, 55.55361], - [37.704432, 55.55352], - [37.704273, 55.55352] + [37.706242, 55.552623], + [37.706242, 55.552712], + [37.706332, 55.552712], + [37.706332, 55.552623], + [37.706242, 55.552623] ] ] } @@ -8904,11 +28712,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704273, 55.55361], - [37.704273, 55.5537], - [37.704432, 55.5537], - [37.704432, 55.55361], - [37.704273, 55.55361] + [37.706242, 55.552712], + [37.706242, 55.552802], + [37.706332, 55.552802], + [37.706332, 55.552712], + [37.706242, 55.552712] ] ] } @@ -8920,11 +28728,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704273, 55.5537], - [37.704273, 55.55379], - [37.704432, 55.55379], - [37.704432, 55.5537], - [37.704273, 55.5537] + [37.706242, 55.552802], + [37.706242, 55.552892], + [37.706332, 55.552892], + [37.706332, 55.552802], + [37.706242, 55.552802] ] ] } @@ -8936,11 +28744,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704273, 55.55379], - [37.704273, 55.55388], - [37.704432, 55.55388], - [37.704432, 55.55379], - [37.704273, 55.55379] + [37.706242, 55.552892], + [37.706242, 55.552982], + [37.706332, 55.552982], + [37.706332, 55.552892], + [37.706242, 55.552892] ] ] } @@ -8952,11 +28760,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704273, 55.55388], - [37.704273, 55.55397], - [37.704432, 55.55397], - [37.704432, 55.55388], - [37.704273, 55.55388] + [37.706242, 55.552982], + [37.706242, 55.553072], + [37.706332, 55.553072], + [37.706332, 55.552982], + [37.706242, 55.552982] ] ] } @@ -8968,11 +28776,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704273, 55.55397], - [37.704273, 55.55406], - [37.704432, 55.55406], - [37.704432, 55.55397], - [37.704273, 55.55397] + [37.706242, 55.553072], + [37.706242, 55.553162], + [37.706332, 55.553162], + [37.706332, 55.553072], + [37.706242, 55.553072] ] ] } @@ -8984,11 +28792,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704273, 55.55406], - [37.704273, 55.55415], - [37.704432, 55.55415], - [37.704432, 55.55406], - [37.704273, 55.55406] + [37.706242, 55.553162], + [37.706242, 55.553251], + [37.706332, 55.553251], + [37.706332, 55.553162], + [37.706242, 55.553162] ] ] } @@ -9000,11 +28808,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704273, 55.55415], - [37.704273, 55.55424], - [37.704432, 55.55424], - [37.704432, 55.55415], - [37.704273, 55.55415] + [37.706242, 55.553251], + [37.706242, 55.553341], + [37.706332, 55.553341], + [37.706332, 55.553251], + [37.706242, 55.553251] ] ] } @@ -9016,11 +28824,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704273, 55.55424], - [37.704273, 55.55433], - [37.704432, 55.55433], - [37.704432, 55.55424], - [37.704273, 55.55424] + [37.706242, 55.553341], + [37.706242, 55.553431], + [37.706332, 55.553431], + [37.706332, 55.553341], + [37.706242, 55.553341] ] ] } @@ -9032,11 +28840,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704273, 55.55433], - [37.704273, 55.55442], - [37.704432, 55.55442], - [37.704432, 55.55433], - [37.704273, 55.55433] + [37.706242, 55.553431], + [37.706242, 55.553521], + [37.706332, 55.553521], + [37.706332, 55.553431], + [37.706242, 55.553431] ] ] } @@ -9048,11 +28856,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704273, 55.55442], - [37.704273, 55.55451], - [37.704432, 55.55451], - [37.704432, 55.55442], - [37.704273, 55.55442] + [37.706242, 55.553521], + [37.706242, 55.553611], + [37.706332, 55.553611], + [37.706332, 55.553521], + [37.706242, 55.553521] ] ] } @@ -9064,11 +28872,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704273, 55.55451], - [37.704273, 55.5546], - [37.704432, 55.5546], - [37.704432, 55.55451], - [37.704273, 55.55451] + [37.706242, 55.553611], + [37.706242, 55.5537], + [37.706332, 55.5537], + [37.706332, 55.553611], + [37.706242, 55.553611] ] ] } @@ -9080,11 +28888,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704273, 55.5546], - [37.704273, 55.55469], - [37.704432, 55.55469], - [37.704432, 55.5546], - [37.704273, 55.5546] + [37.706242, 55.5537], + [37.706242, 55.55379], + [37.706332, 55.55379], + [37.706332, 55.5537], + [37.706242, 55.5537] ] ] } @@ -9096,11 +28904,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704273, 55.55469], - [37.704273, 55.55478], - [37.704432, 55.55478], - [37.704432, 55.55469], - [37.704273, 55.55469] + [37.706242, 55.55379], + [37.706242, 55.55388], + [37.706332, 55.55388], + [37.706332, 55.55379], + [37.706242, 55.55379] ] ] } @@ -9112,11 +28920,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704273, 55.55478], - [37.704273, 55.554869], - [37.704432, 55.554869], - [37.704432, 55.55478], - [37.704273, 55.55478] + [37.706242, 55.55388], + [37.706242, 55.55397], + [37.706332, 55.55397], + [37.706332, 55.55388], + [37.706242, 55.55388] ] ] } @@ -9128,11 +28936,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704273, 55.554869], - [37.704273, 55.554959], - [37.704432, 55.554959], - [37.704432, 55.554869], - [37.704273, 55.554869] + [37.706242, 55.55397], + [37.706242, 55.55406], + [37.706332, 55.55406], + [37.706332, 55.55397], + [37.706242, 55.55397] ] ] } @@ -9144,11 +28952,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704432, 55.551992], - [37.704432, 55.552082], - [37.704591, 55.552082], - [37.704591, 55.551992], - [37.704432, 55.551992] + [37.706242, 55.55406], + [37.706242, 55.55415], + [37.706332, 55.55415], + [37.706332, 55.55406], + [37.706242, 55.55406] ] ] } @@ -9160,11 +28968,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704432, 55.552082], - [37.704432, 55.552171], - [37.704591, 55.552171], - [37.704591, 55.552082], - [37.704432, 55.552082] + [37.706242, 55.55415], + [37.706242, 55.554239], + [37.706332, 55.554239], + [37.706332, 55.55415], + [37.706242, 55.55415] ] ] } @@ -9176,11 +28984,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704432, 55.552171], - [37.704432, 55.552261], - [37.704591, 55.552261], - [37.704591, 55.552171], - [37.704432, 55.552171] + [37.706242, 55.554239], + [37.706242, 55.554329], + [37.706332, 55.554329], + [37.706332, 55.554239], + [37.706242, 55.554239] ] ] } @@ -9192,11 +29000,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704432, 55.552261], - [37.704432, 55.552351], - [37.704591, 55.552351], - [37.704591, 55.552261], - [37.704432, 55.552261] + [37.706242, 55.554329], + [37.706242, 55.554419], + [37.706332, 55.554419], + [37.706332, 55.554329], + [37.706242, 55.554329] ] ] } @@ -9208,11 +29016,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704432, 55.552351], - [37.704432, 55.552441], - [37.704591, 55.552441], - [37.704591, 55.552351], - [37.704432, 55.552351] + [37.706242, 55.554419], + [37.706242, 55.554509], + [37.706332, 55.554509], + [37.706332, 55.554419], + [37.706242, 55.554419] ] ] } @@ -9224,11 +29032,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704432, 55.552441], - [37.704432, 55.552531], - [37.704591, 55.552531], - [37.704591, 55.552441], - [37.704432, 55.552441] + [37.706242, 55.554509], + [37.706242, 55.554599], + [37.706332, 55.554599], + [37.706332, 55.554509], + [37.706242, 55.554509] ] ] } @@ -9240,11 +29048,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704432, 55.552531], - [37.704432, 55.552621], - [37.704591, 55.552621], - [37.704591, 55.552531], - [37.704432, 55.552531] + [37.706242, 55.554599], + [37.706242, 55.554689], + [37.706332, 55.554689], + [37.706332, 55.554599], + [37.706242, 55.554599] ] ] } @@ -9256,11 +29064,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704432, 55.552621], - [37.704432, 55.552711], - [37.704591, 55.552711], - [37.704591, 55.552621], - [37.704432, 55.552621] + [37.706242, 55.554689], + [37.706242, 55.554778], + [37.706332, 55.554778], + [37.706332, 55.554689], + [37.706242, 55.554689] ] ] } @@ -9272,11 +29080,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704432, 55.552711], - [37.704432, 55.552801], - [37.704591, 55.552801], - [37.704591, 55.552711], - [37.704432, 55.552711] + [37.706242, 55.554778], + [37.706242, 55.554868], + [37.706332, 55.554868], + [37.706332, 55.554778], + [37.706242, 55.554778] ] ] } @@ -9288,11 +29096,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704432, 55.552801], - [37.704432, 55.552891], - [37.704591, 55.552891], - [37.704591, 55.552801], - [37.704432, 55.552801] + [37.706242, 55.554868], + [37.706242, 55.554958], + [37.706332, 55.554958], + [37.706332, 55.554868], + [37.706242, 55.554868] ] ] } @@ -9304,11 +29112,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704432, 55.552891], - [37.704432, 55.552981], - [37.704591, 55.552981], - [37.704591, 55.552891], - [37.704432, 55.552891] + [37.706242, 55.554958], + [37.706242, 55.555048], + [37.706332, 55.555048], + [37.706332, 55.554958], + [37.706242, 55.554958] ] ] } @@ -9320,11 +29128,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704432, 55.552981], - [37.704432, 55.553071], - [37.704591, 55.553071], - [37.704591, 55.552981], - [37.704432, 55.552981] + [37.706242, 55.555048], + [37.706242, 55.555138], + [37.706332, 55.555138], + [37.706332, 55.555048], + [37.706242, 55.555048] ] ] } @@ -9336,11 +29144,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704432, 55.553071], - [37.704432, 55.553161], - [37.704591, 55.553161], - [37.704591, 55.553071], - [37.704432, 55.553071] + [37.706242, 55.555138], + [37.706242, 55.555228], + [37.706332, 55.555228], + [37.706332, 55.555138], + [37.706242, 55.555138] ] ] } @@ -9352,11 +29160,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704432, 55.553161], - [37.704432, 55.553251], - [37.704591, 55.553251], - [37.704591, 55.553161], - [37.704432, 55.553161] + [37.706242, 55.555228], + [37.706242, 55.555317], + [37.706332, 55.555317], + [37.706332, 55.555228], + [37.706242, 55.555228] ] ] } @@ -9368,11 +29176,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704432, 55.553251], - [37.704432, 55.553341], - [37.704591, 55.553341], - [37.704591, 55.553251], - [37.704432, 55.553251] + [37.706242, 55.555317], + [37.706242, 55.555407], + [37.706332, 55.555407], + [37.706332, 55.555317], + [37.706242, 55.555317] ] ] } @@ -9384,11 +29192,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704432, 55.553341], - [37.704432, 55.553431], - [37.704591, 55.553431], - [37.704591, 55.553341], - [37.704432, 55.553341] + [37.706242, 55.555407], + [37.706242, 55.555497], + [37.706332, 55.555497], + [37.706332, 55.555407], + [37.706242, 55.555407] ] ] } @@ -9400,11 +29208,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704432, 55.553431], - [37.704432, 55.55352], - [37.704591, 55.55352], - [37.704591, 55.553431], - [37.704432, 55.553431] + [37.706332, 55.551545], + [37.706332, 55.551634], + [37.706422, 55.551634], + [37.706422, 55.551545], + [37.706332, 55.551545] ] ] } @@ -9416,11 +29224,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704432, 55.55352], - [37.704432, 55.55361], - [37.704591, 55.55361], - [37.704591, 55.55352], - [37.704432, 55.55352] + [37.706332, 55.551634], + [37.706332, 55.551724], + [37.706422, 55.551724], + [37.706422, 55.551634], + [37.706332, 55.551634] ] ] } @@ -9432,11 +29240,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704432, 55.55361], - [37.704432, 55.5537], - [37.704591, 55.5537], - [37.704591, 55.55361], - [37.704432, 55.55361] + [37.706332, 55.551724], + [37.706332, 55.551814], + [37.706422, 55.551814], + [37.706422, 55.551724], + [37.706332, 55.551724] ] ] } @@ -9448,11 +29256,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704432, 55.5537], - [37.704432, 55.55379], - [37.704591, 55.55379], - [37.704591, 55.5537], - [37.704432, 55.5537] + [37.706332, 55.551814], + [37.706332, 55.551904], + [37.706422, 55.551904], + [37.706422, 55.551814], + [37.706332, 55.551814] ] ] } @@ -9464,11 +29272,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704432, 55.55379], - [37.704432, 55.55388], - [37.704591, 55.55388], - [37.704591, 55.55379], - [37.704432, 55.55379] + [37.706332, 55.551904], + [37.706332, 55.551994], + [37.706422, 55.551994], + [37.706422, 55.551904], + [37.706332, 55.551904] ] ] } @@ -9480,11 +29288,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704432, 55.55388], - [37.704432, 55.55397], - [37.704591, 55.55397], - [37.704591, 55.55388], - [37.704432, 55.55388] + [37.706332, 55.551994], + [37.706332, 55.552084], + [37.706422, 55.552084], + [37.706422, 55.551994], + [37.706332, 55.551994] ] ] } @@ -9496,11 +29304,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704432, 55.55397], - [37.704432, 55.55406], - [37.704591, 55.55406], - [37.704591, 55.55397], - [37.704432, 55.55397] + [37.706332, 55.552084], + [37.706332, 55.552173], + [37.706422, 55.552173], + [37.706422, 55.552084], + [37.706332, 55.552084] ] ] } @@ -9512,11 +29320,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704432, 55.55406], - [37.704432, 55.55415], - [37.704591, 55.55415], - [37.704591, 55.55406], - [37.704432, 55.55406] + [37.706332, 55.552173], + [37.706332, 55.552263], + [37.706422, 55.552263], + [37.706422, 55.552173], + [37.706332, 55.552173] ] ] } @@ -9528,11 +29336,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704432, 55.55415], - [37.704432, 55.55424], - [37.704591, 55.55424], - [37.704591, 55.55415], - [37.704432, 55.55415] + [37.706332, 55.552263], + [37.706332, 55.552353], + [37.706422, 55.552353], + [37.706422, 55.552263], + [37.706332, 55.552263] ] ] } @@ -9544,11 +29352,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704432, 55.55424], - [37.704432, 55.55433], - [37.704591, 55.55433], - [37.704591, 55.55424], - [37.704432, 55.55424] + [37.706332, 55.552353], + [37.706332, 55.552443], + [37.706422, 55.552443], + [37.706422, 55.552353], + [37.706332, 55.552353] ] ] } @@ -9560,11 +29368,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704432, 55.55433], - [37.704432, 55.55442], - [37.704591, 55.55442], - [37.704591, 55.55433], - [37.704432, 55.55433] + [37.706332, 55.552443], + [37.706332, 55.552533], + [37.706422, 55.552533], + [37.706422, 55.552443], + [37.706332, 55.552443] ] ] } @@ -9576,11 +29384,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704432, 55.55442], - [37.704432, 55.55451], - [37.704591, 55.55451], - [37.704591, 55.55442], - [37.704432, 55.55442] + [37.706332, 55.552533], + [37.706332, 55.552623], + [37.706422, 55.552623], + [37.706422, 55.552533], + [37.706332, 55.552533] ] ] } @@ -9592,11 +29400,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704432, 55.55451], - [37.704432, 55.5546], - [37.704591, 55.5546], - [37.704591, 55.55451], - [37.704432, 55.55451] + [37.706332, 55.552623], + [37.706332, 55.552712], + [37.706422, 55.552712], + [37.706422, 55.552623], + [37.706332, 55.552623] ] ] } @@ -9608,11 +29416,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704432, 55.5546], - [37.704432, 55.55469], - [37.704591, 55.55469], - [37.704591, 55.5546], - [37.704432, 55.5546] + [37.706332, 55.552712], + [37.706332, 55.552802], + [37.706422, 55.552802], + [37.706422, 55.552712], + [37.706332, 55.552712] ] ] } @@ -9624,11 +29432,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704432, 55.55469], - [37.704432, 55.55478], - [37.704591, 55.55478], - [37.704591, 55.55469], - [37.704432, 55.55469] + [37.706332, 55.552802], + [37.706332, 55.552892], + [37.706422, 55.552892], + [37.706422, 55.552802], + [37.706332, 55.552802] ] ] } @@ -9640,11 +29448,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704432, 55.55478], - [37.704432, 55.554869], - [37.704591, 55.554869], - [37.704591, 55.55478], - [37.704432, 55.55478] + [37.706332, 55.552892], + [37.706332, 55.552982], + [37.706422, 55.552982], + [37.706422, 55.552892], + [37.706332, 55.552892] ] ] } @@ -9656,11 +29464,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704432, 55.554869], - [37.704432, 55.554959], - [37.704591, 55.554959], - [37.704591, 55.554869], - [37.704432, 55.554869] + [37.706332, 55.552982], + [37.706332, 55.553072], + [37.706422, 55.553072], + [37.706422, 55.552982], + [37.706332, 55.552982] ] ] } @@ -9672,11 +29480,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704432, 55.554959], - [37.704432, 55.555049], - [37.704591, 55.555049], - [37.704591, 55.554959], - [37.704432, 55.554959] + [37.706332, 55.553072], + [37.706332, 55.553162], + [37.706422, 55.553162], + [37.706422, 55.553072], + [37.706332, 55.553072] ] ] } @@ -9688,11 +29496,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704591, 55.551902], - [37.704591, 55.551992], - [37.70475, 55.551992], - [37.70475, 55.551902], - [37.704591, 55.551902] + [37.706332, 55.553162], + [37.706332, 55.553251], + [37.706422, 55.553251], + [37.706422, 55.553162], + [37.706332, 55.553162] ] ] } @@ -9704,11 +29512,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704591, 55.551992], - [37.704591, 55.552082], - [37.70475, 55.552082], - [37.70475, 55.551992], - [37.704591, 55.551992] + [37.706332, 55.553251], + [37.706332, 55.553341], + [37.706422, 55.553341], + [37.706422, 55.553251], + [37.706332, 55.553251] ] ] } @@ -9720,11 +29528,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704591, 55.552082], - [37.704591, 55.552171], - [37.70475, 55.552171], - [37.70475, 55.552082], - [37.704591, 55.552082] + [37.706332, 55.553341], + [37.706332, 55.553431], + [37.706422, 55.553431], + [37.706422, 55.553341], + [37.706332, 55.553341] ] ] } @@ -9736,11 +29544,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704591, 55.552171], - [37.704591, 55.552261], - [37.70475, 55.552261], - [37.70475, 55.552171], - [37.704591, 55.552171] + [37.706332, 55.553431], + [37.706332, 55.553521], + [37.706422, 55.553521], + [37.706422, 55.553431], + [37.706332, 55.553431] ] ] } @@ -9752,11 +29560,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704591, 55.552261], - [37.704591, 55.552351], - [37.70475, 55.552351], - [37.70475, 55.552261], - [37.704591, 55.552261] + [37.706332, 55.553521], + [37.706332, 55.553611], + [37.706422, 55.553611], + [37.706422, 55.553521], + [37.706332, 55.553521] ] ] } @@ -9768,11 +29576,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704591, 55.552351], - [37.704591, 55.552441], - [37.70475, 55.552441], - [37.70475, 55.552351], - [37.704591, 55.552351] + [37.706332, 55.553611], + [37.706332, 55.5537], + [37.706422, 55.5537], + [37.706422, 55.553611], + [37.706332, 55.553611] ] ] } @@ -9784,11 +29592,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704591, 55.552441], - [37.704591, 55.552531], - [37.70475, 55.552531], - [37.70475, 55.552441], - [37.704591, 55.552441] + [37.706332, 55.5537], + [37.706332, 55.55379], + [37.706422, 55.55379], + [37.706422, 55.5537], + [37.706332, 55.5537] ] ] } @@ -9800,11 +29608,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704591, 55.552531], - [37.704591, 55.552621], - [37.70475, 55.552621], - [37.70475, 55.552531], - [37.704591, 55.552531] + [37.706332, 55.55379], + [37.706332, 55.55388], + [37.706422, 55.55388], + [37.706422, 55.55379], + [37.706332, 55.55379] ] ] } @@ -9816,11 +29624,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704591, 55.552621], - [37.704591, 55.552711], - [37.70475, 55.552711], - [37.70475, 55.552621], - [37.704591, 55.552621] + [37.706332, 55.55388], + [37.706332, 55.55397], + [37.706422, 55.55397], + [37.706422, 55.55388], + [37.706332, 55.55388] ] ] } @@ -9832,11 +29640,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704591, 55.552711], - [37.704591, 55.552801], - [37.70475, 55.552801], - [37.70475, 55.552711], - [37.704591, 55.552711] + [37.706332, 55.55397], + [37.706332, 55.55406], + [37.706422, 55.55406], + [37.706422, 55.55397], + [37.706332, 55.55397] ] ] } @@ -9848,11 +29656,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704591, 55.552801], - [37.704591, 55.552891], - [37.70475, 55.552891], - [37.70475, 55.552801], - [37.704591, 55.552801] + [37.706332, 55.55406], + [37.706332, 55.55415], + [37.706422, 55.55415], + [37.706422, 55.55406], + [37.706332, 55.55406] ] ] } @@ -9864,11 +29672,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704591, 55.552891], - [37.704591, 55.552981], - [37.70475, 55.552981], - [37.70475, 55.552891], - [37.704591, 55.552891] + [37.706332, 55.55415], + [37.706332, 55.554239], + [37.706422, 55.554239], + [37.706422, 55.55415], + [37.706332, 55.55415] ] ] } @@ -9880,11 +29688,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704591, 55.552981], - [37.704591, 55.553071], - [37.70475, 55.553071], - [37.70475, 55.552981], - [37.704591, 55.552981] + [37.706332, 55.554239], + [37.706332, 55.554329], + [37.706422, 55.554329], + [37.706422, 55.554239], + [37.706332, 55.554239] ] ] } @@ -9896,11 +29704,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704591, 55.553071], - [37.704591, 55.553161], - [37.70475, 55.553161], - [37.70475, 55.553071], - [37.704591, 55.553071] + [37.706332, 55.554329], + [37.706332, 55.554419], + [37.706422, 55.554419], + [37.706422, 55.554329], + [37.706332, 55.554329] ] ] } @@ -9912,11 +29720,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704591, 55.553161], - [37.704591, 55.553251], - [37.70475, 55.553251], - [37.70475, 55.553161], - [37.704591, 55.553161] + [37.706332, 55.554419], + [37.706332, 55.554509], + [37.706422, 55.554509], + [37.706422, 55.554419], + [37.706332, 55.554419] ] ] } @@ -9928,11 +29736,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704591, 55.553251], - [37.704591, 55.553341], - [37.70475, 55.553341], - [37.70475, 55.553251], - [37.704591, 55.553251] + [37.706332, 55.554509], + [37.706332, 55.554599], + [37.706422, 55.554599], + [37.706422, 55.554509], + [37.706332, 55.554509] ] ] } @@ -9944,11 +29752,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704591, 55.553341], - [37.704591, 55.553431], - [37.70475, 55.553431], - [37.70475, 55.553341], - [37.704591, 55.553341] + [37.706332, 55.554599], + [37.706332, 55.554689], + [37.706422, 55.554689], + [37.706422, 55.554599], + [37.706332, 55.554599] ] ] } @@ -9960,11 +29768,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704591, 55.553431], - [37.704591, 55.55352], - [37.70475, 55.55352], - [37.70475, 55.553431], - [37.704591, 55.553431] + [37.706332, 55.554689], + [37.706332, 55.554778], + [37.706422, 55.554778], + [37.706422, 55.554689], + [37.706332, 55.554689] ] ] } @@ -9976,11 +29784,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704591, 55.55352], - [37.704591, 55.55361], - [37.70475, 55.55361], - [37.70475, 55.55352], - [37.704591, 55.55352] + [37.706332, 55.554778], + [37.706332, 55.554868], + [37.706422, 55.554868], + [37.706422, 55.554778], + [37.706332, 55.554778] ] ] } @@ -9992,11 +29800,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704591, 55.55361], - [37.704591, 55.5537], - [37.70475, 55.5537], - [37.70475, 55.55361], - [37.704591, 55.55361] + [37.706332, 55.554868], + [37.706332, 55.554958], + [37.706422, 55.554958], + [37.706422, 55.554868], + [37.706332, 55.554868] ] ] } @@ -10008,11 +29816,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704591, 55.5537], - [37.704591, 55.55379], - [37.70475, 55.55379], - [37.70475, 55.5537], - [37.704591, 55.5537] + [37.706332, 55.554958], + [37.706332, 55.555048], + [37.706422, 55.555048], + [37.706422, 55.554958], + [37.706332, 55.554958] ] ] } @@ -10024,11 +29832,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704591, 55.55379], - [37.704591, 55.55388], - [37.70475, 55.55388], - [37.70475, 55.55379], - [37.704591, 55.55379] + [37.706332, 55.555048], + [37.706332, 55.555138], + [37.706422, 55.555138], + [37.706422, 55.555048], + [37.706332, 55.555048] ] ] } @@ -10040,11 +29848,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704591, 55.55388], - [37.704591, 55.55397], - [37.70475, 55.55397], - [37.70475, 55.55388], - [37.704591, 55.55388] + [37.706332, 55.555138], + [37.706332, 55.555228], + [37.706422, 55.555228], + [37.706422, 55.555138], + [37.706332, 55.555138] ] ] } @@ -10056,11 +29864,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704591, 55.55397], - [37.704591, 55.55406], - [37.70475, 55.55406], - [37.70475, 55.55397], - [37.704591, 55.55397] + [37.706332, 55.555228], + [37.706332, 55.555317], + [37.706422, 55.555317], + [37.706422, 55.555228], + [37.706332, 55.555228] ] ] } @@ -10072,11 +29880,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704591, 55.55406], - [37.704591, 55.55415], - [37.70475, 55.55415], - [37.70475, 55.55406], - [37.704591, 55.55406] + [37.706332, 55.555317], + [37.706332, 55.555407], + [37.706422, 55.555407], + [37.706422, 55.555317], + [37.706332, 55.555317] ] ] } @@ -10088,11 +29896,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704591, 55.55415], - [37.704591, 55.55424], - [37.70475, 55.55424], - [37.70475, 55.55415], - [37.704591, 55.55415] + [37.706332, 55.555407], + [37.706332, 55.555497], + [37.706422, 55.555497], + [37.706422, 55.555407], + [37.706332, 55.555407] ] ] } @@ -10104,11 +29912,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704591, 55.55424], - [37.704591, 55.55433], - [37.70475, 55.55433], - [37.70475, 55.55424], - [37.704591, 55.55424] + [37.706422, 55.551545], + [37.706422, 55.551634], + [37.706512, 55.551634], + [37.706512, 55.551545], + [37.706422, 55.551545] ] ] } @@ -10120,11 +29928,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704591, 55.55433], - [37.704591, 55.55442], - [37.70475, 55.55442], - [37.70475, 55.55433], - [37.704591, 55.55433] + [37.706422, 55.551634], + [37.706422, 55.551724], + [37.706512, 55.551724], + [37.706512, 55.551634], + [37.706422, 55.551634] ] ] } @@ -10136,11 +29944,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704591, 55.55442], - [37.704591, 55.55451], - [37.70475, 55.55451], - [37.70475, 55.55442], - [37.704591, 55.55442] + [37.706422, 55.551724], + [37.706422, 55.551814], + [37.706512, 55.551814], + [37.706512, 55.551724], + [37.706422, 55.551724] ] ] } @@ -10152,11 +29960,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704591, 55.55451], - [37.704591, 55.5546], - [37.70475, 55.5546], - [37.70475, 55.55451], - [37.704591, 55.55451] + [37.706422, 55.551814], + [37.706422, 55.551904], + [37.706512, 55.551904], + [37.706512, 55.551814], + [37.706422, 55.551814] ] ] } @@ -10168,11 +29976,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704591, 55.5546], - [37.704591, 55.55469], - [37.70475, 55.55469], - [37.70475, 55.5546], - [37.704591, 55.5546] + [37.706422, 55.551904], + [37.706422, 55.551994], + [37.706512, 55.551994], + [37.706512, 55.551904], + [37.706422, 55.551904] ] ] } @@ -10184,11 +29992,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704591, 55.55469], - [37.704591, 55.55478], - [37.70475, 55.55478], - [37.70475, 55.55469], - [37.704591, 55.55469] + [37.706422, 55.551994], + [37.706422, 55.552084], + [37.706512, 55.552084], + [37.706512, 55.551994], + [37.706422, 55.551994] ] ] } @@ -10200,11 +30008,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704591, 55.55478], - [37.704591, 55.554869], - [37.70475, 55.554869], - [37.70475, 55.55478], - [37.704591, 55.55478] + [37.706422, 55.552084], + [37.706422, 55.552173], + [37.706512, 55.552173], + [37.706512, 55.552084], + [37.706422, 55.552084] ] ] } @@ -10216,11 +30024,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704591, 55.554869], - [37.704591, 55.554959], - [37.70475, 55.554959], - [37.70475, 55.554869], - [37.704591, 55.554869] + [37.706422, 55.552173], + [37.706422, 55.552263], + [37.706512, 55.552263], + [37.706512, 55.552173], + [37.706422, 55.552173] ] ] } @@ -10232,11 +30040,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704591, 55.554959], - [37.704591, 55.555049], - [37.70475, 55.555049], - [37.70475, 55.554959], - [37.704591, 55.554959] + [37.706422, 55.552263], + [37.706422, 55.552353], + [37.706512, 55.552353], + [37.706512, 55.552263], + [37.706422, 55.552263] ] ] } @@ -10248,11 +30056,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70475, 55.551902], - [37.70475, 55.551992], - [37.704909, 55.551992], - [37.704909, 55.551902], - [37.70475, 55.551902] + [37.706422, 55.552353], + [37.706422, 55.552443], + [37.706512, 55.552443], + [37.706512, 55.552353], + [37.706422, 55.552353] ] ] } @@ -10264,11 +30072,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70475, 55.551992], - [37.70475, 55.552082], - [37.704909, 55.552082], - [37.704909, 55.551992], - [37.70475, 55.551992] + [37.706422, 55.552443], + [37.706422, 55.552533], + [37.706512, 55.552533], + [37.706512, 55.552443], + [37.706422, 55.552443] ] ] } @@ -10280,11 +30088,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70475, 55.552082], - [37.70475, 55.552171], - [37.704909, 55.552171], - [37.704909, 55.552082], - [37.70475, 55.552082] + [37.706422, 55.552533], + [37.706422, 55.552623], + [37.706512, 55.552623], + [37.706512, 55.552533], + [37.706422, 55.552533] ] ] } @@ -10296,11 +30104,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70475, 55.552171], - [37.70475, 55.552261], - [37.704909, 55.552261], - [37.704909, 55.552171], - [37.70475, 55.552171] + [37.706422, 55.552623], + [37.706422, 55.552712], + [37.706512, 55.552712], + [37.706512, 55.552623], + [37.706422, 55.552623] ] ] } @@ -10312,11 +30120,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70475, 55.552261], - [37.70475, 55.552351], - [37.704909, 55.552351], - [37.704909, 55.552261], - [37.70475, 55.552261] + [37.706422, 55.552712], + [37.706422, 55.552802], + [37.706512, 55.552802], + [37.706512, 55.552712], + [37.706422, 55.552712] ] ] } @@ -10328,11 +30136,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70475, 55.552351], - [37.70475, 55.552441], - [37.704909, 55.552441], - [37.704909, 55.552351], - [37.70475, 55.552351] + [37.706422, 55.552802], + [37.706422, 55.552892], + [37.706512, 55.552892], + [37.706512, 55.552802], + [37.706422, 55.552802] ] ] } @@ -10344,11 +30152,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70475, 55.552441], - [37.70475, 55.552531], - [37.704909, 55.552531], - [37.704909, 55.552441], - [37.70475, 55.552441] + [37.706422, 55.552892], + [37.706422, 55.552982], + [37.706512, 55.552982], + [37.706512, 55.552892], + [37.706422, 55.552892] ] ] } @@ -10360,11 +30168,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70475, 55.552531], - [37.70475, 55.552621], - [37.704909, 55.552621], - [37.704909, 55.552531], - [37.70475, 55.552531] + [37.706422, 55.552982], + [37.706422, 55.553072], + [37.706512, 55.553072], + [37.706512, 55.552982], + [37.706422, 55.552982] ] ] } @@ -10376,11 +30184,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70475, 55.552621], - [37.70475, 55.552711], - [37.704909, 55.552711], - [37.704909, 55.552621], - [37.70475, 55.552621] + [37.706422, 55.553072], + [37.706422, 55.553162], + [37.706512, 55.553162], + [37.706512, 55.553072], + [37.706422, 55.553072] ] ] } @@ -10392,11 +30200,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70475, 55.552711], - [37.70475, 55.552801], - [37.704909, 55.552801], - [37.704909, 55.552711], - [37.70475, 55.552711] + [37.706422, 55.553162], + [37.706422, 55.553251], + [37.706512, 55.553251], + [37.706512, 55.553162], + [37.706422, 55.553162] ] ] } @@ -10408,11 +30216,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70475, 55.552801], - [37.70475, 55.552891], - [37.704909, 55.552891], - [37.704909, 55.552801], - [37.70475, 55.552801] + [37.706422, 55.553251], + [37.706422, 55.553341], + [37.706512, 55.553341], + [37.706512, 55.553251], + [37.706422, 55.553251] ] ] } @@ -10424,11 +30232,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70475, 55.552891], - [37.70475, 55.552981], - [37.704909, 55.552981], - [37.704909, 55.552891], - [37.70475, 55.552891] + [37.706422, 55.553341], + [37.706422, 55.553431], + [37.706512, 55.553431], + [37.706512, 55.553341], + [37.706422, 55.553341] ] ] } @@ -10440,11 +30248,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70475, 55.552981], - [37.70475, 55.553071], - [37.704909, 55.553071], - [37.704909, 55.552981], - [37.70475, 55.552981] + [37.706422, 55.553431], + [37.706422, 55.553521], + [37.706512, 55.553521], + [37.706512, 55.553431], + [37.706422, 55.553431] ] ] } @@ -10456,11 +30264,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70475, 55.553071], - [37.70475, 55.553161], - [37.704909, 55.553161], - [37.704909, 55.553071], - [37.70475, 55.553071] + [37.706422, 55.553521], + [37.706422, 55.553611], + [37.706512, 55.553611], + [37.706512, 55.553521], + [37.706422, 55.553521] ] ] } @@ -10472,11 +30280,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70475, 55.553161], - [37.70475, 55.553251], - [37.704909, 55.553251], - [37.704909, 55.553161], - [37.70475, 55.553161] + [37.706422, 55.553611], + [37.706422, 55.5537], + [37.706512, 55.5537], + [37.706512, 55.553611], + [37.706422, 55.553611] ] ] } @@ -10488,11 +30296,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70475, 55.553251], - [37.70475, 55.553341], - [37.704909, 55.553341], - [37.704909, 55.553251], - [37.70475, 55.553251] + [37.706422, 55.5537], + [37.706422, 55.55379], + [37.706512, 55.55379], + [37.706512, 55.5537], + [37.706422, 55.5537] ] ] } @@ -10504,11 +30312,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70475, 55.553341], - [37.70475, 55.553431], - [37.704909, 55.553431], - [37.704909, 55.553341], - [37.70475, 55.553341] + [37.706422, 55.55379], + [37.706422, 55.55388], + [37.706512, 55.55388], + [37.706512, 55.55379], + [37.706422, 55.55379] ] ] } @@ -10520,11 +30328,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70475, 55.553431], - [37.70475, 55.55352], - [37.704909, 55.55352], - [37.704909, 55.553431], - [37.70475, 55.553431] + [37.706422, 55.55388], + [37.706422, 55.55397], + [37.706512, 55.55397], + [37.706512, 55.55388], + [37.706422, 55.55388] ] ] } @@ -10536,11 +30344,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70475, 55.55352], - [37.70475, 55.55361], - [37.704909, 55.55361], - [37.704909, 55.55352], - [37.70475, 55.55352] + [37.706422, 55.55397], + [37.706422, 55.55406], + [37.706512, 55.55406], + [37.706512, 55.55397], + [37.706422, 55.55397] ] ] } @@ -10552,11 +30360,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70475, 55.55361], - [37.70475, 55.5537], - [37.704909, 55.5537], - [37.704909, 55.55361], - [37.70475, 55.55361] + [37.706422, 55.55406], + [37.706422, 55.55415], + [37.706512, 55.55415], + [37.706512, 55.55406], + [37.706422, 55.55406] ] ] } @@ -10568,11 +30376,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70475, 55.5537], - [37.70475, 55.55379], - [37.704909, 55.55379], - [37.704909, 55.5537], - [37.70475, 55.5537] + [37.706422, 55.55415], + [37.706422, 55.554239], + [37.706512, 55.554239], + [37.706512, 55.55415], + [37.706422, 55.55415] ] ] } @@ -10584,11 +30392,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70475, 55.55379], - [37.70475, 55.55388], - [37.704909, 55.55388], - [37.704909, 55.55379], - [37.70475, 55.55379] + [37.706422, 55.554239], + [37.706422, 55.554329], + [37.706512, 55.554329], + [37.706512, 55.554239], + [37.706422, 55.554239] ] ] } @@ -10600,11 +30408,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70475, 55.55388], - [37.70475, 55.55397], - [37.704909, 55.55397], - [37.704909, 55.55388], - [37.70475, 55.55388] + [37.706422, 55.554329], + [37.706422, 55.554419], + [37.706512, 55.554419], + [37.706512, 55.554329], + [37.706422, 55.554329] ] ] } @@ -10616,11 +30424,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70475, 55.55397], - [37.70475, 55.55406], - [37.704909, 55.55406], - [37.704909, 55.55397], - [37.70475, 55.55397] + [37.706422, 55.554419], + [37.706422, 55.554509], + [37.706512, 55.554509], + [37.706512, 55.554419], + [37.706422, 55.554419] ] ] } @@ -10632,11 +30440,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70475, 55.55406], - [37.70475, 55.55415], - [37.704909, 55.55415], - [37.704909, 55.55406], - [37.70475, 55.55406] + [37.706422, 55.554509], + [37.706422, 55.554599], + [37.706512, 55.554599], + [37.706512, 55.554509], + [37.706422, 55.554509] ] ] } @@ -10648,11 +30456,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70475, 55.55415], - [37.70475, 55.55424], - [37.704909, 55.55424], - [37.704909, 55.55415], - [37.70475, 55.55415] + [37.706422, 55.554599], + [37.706422, 55.554689], + [37.706512, 55.554689], + [37.706512, 55.554599], + [37.706422, 55.554599] ] ] } @@ -10664,11 +30472,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70475, 55.55424], - [37.70475, 55.55433], - [37.704909, 55.55433], - [37.704909, 55.55424], - [37.70475, 55.55424] + [37.706422, 55.554689], + [37.706422, 55.554778], + [37.706512, 55.554778], + [37.706512, 55.554689], + [37.706422, 55.554689] ] ] } @@ -10680,11 +30488,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70475, 55.55433], - [37.70475, 55.55442], - [37.704909, 55.55442], - [37.704909, 55.55433], - [37.70475, 55.55433] + [37.706422, 55.554778], + [37.706422, 55.554868], + [37.706512, 55.554868], + [37.706512, 55.554778], + [37.706422, 55.554778] ] ] } @@ -10696,11 +30504,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70475, 55.55442], - [37.70475, 55.55451], - [37.704909, 55.55451], - [37.704909, 55.55442], - [37.70475, 55.55442] + [37.706422, 55.554868], + [37.706422, 55.554958], + [37.706512, 55.554958], + [37.706512, 55.554868], + [37.706422, 55.554868] ] ] } @@ -10712,11 +30520,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70475, 55.55451], - [37.70475, 55.5546], - [37.704909, 55.5546], - [37.704909, 55.55451], - [37.70475, 55.55451] + [37.706422, 55.554958], + [37.706422, 55.555048], + [37.706512, 55.555048], + [37.706512, 55.554958], + [37.706422, 55.554958] ] ] } @@ -10728,11 +30536,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70475, 55.5546], - [37.70475, 55.55469], - [37.704909, 55.55469], - [37.704909, 55.5546], - [37.70475, 55.5546] + [37.706422, 55.555048], + [37.706422, 55.555138], + [37.706512, 55.555138], + [37.706512, 55.555048], + [37.706422, 55.555048] ] ] } @@ -10744,11 +30552,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70475, 55.55469], - [37.70475, 55.55478], - [37.704909, 55.55478], - [37.704909, 55.55469], - [37.70475, 55.55469] + [37.706422, 55.555138], + [37.706422, 55.555228], + [37.706512, 55.555228], + [37.706512, 55.555138], + [37.706422, 55.555138] ] ] } @@ -10760,11 +30568,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70475, 55.55478], - [37.70475, 55.554869], - [37.704909, 55.554869], - [37.704909, 55.55478], - [37.70475, 55.55478] + [37.706422, 55.555228], + [37.706422, 55.555317], + [37.706512, 55.555317], + [37.706512, 55.555228], + [37.706422, 55.555228] ] ] } @@ -10776,11 +30584,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70475, 55.554869], - [37.70475, 55.554959], - [37.704909, 55.554959], - [37.704909, 55.554869], - [37.70475, 55.554869] + [37.706422, 55.555317], + [37.706422, 55.555407], + [37.706512, 55.555407], + [37.706512, 55.555317], + [37.706422, 55.555317] ] ] } @@ -10792,11 +30600,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70475, 55.554959], - [37.70475, 55.555049], - [37.704909, 55.555049], - [37.704909, 55.554959], - [37.70475, 55.554959] + [37.706422, 55.555407], + [37.706422, 55.555497], + [37.706512, 55.555497], + [37.706512, 55.555407], + [37.706422, 55.555407] ] ] } @@ -10808,11 +30616,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70475, 55.555049], - [37.70475, 55.555139], - [37.704909, 55.555139], - [37.704909, 55.555049], - [37.70475, 55.555049] + [37.706422, 55.555497], + [37.706422, 55.555587], + [37.706512, 55.555587], + [37.706512, 55.555497], + [37.706422, 55.555497] ] ] } @@ -10824,11 +30632,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704909, 55.551812], - [37.704909, 55.551902], - [37.705068, 55.551902], - [37.705068, 55.551812], - [37.704909, 55.551812] + [37.706512, 55.551545], + [37.706512, 55.551634], + [37.706602, 55.551634], + [37.706602, 55.551545], + [37.706512, 55.551545] ] ] } @@ -10840,11 +30648,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704909, 55.551902], - [37.704909, 55.551992], - [37.705068, 55.551992], - [37.705068, 55.551902], - [37.704909, 55.551902] + [37.706512, 55.551634], + [37.706512, 55.551724], + [37.706602, 55.551724], + [37.706602, 55.551634], + [37.706512, 55.551634] ] ] } @@ -10856,11 +30664,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704909, 55.551992], - [37.704909, 55.552082], - [37.705068, 55.552082], - [37.705068, 55.551992], - [37.704909, 55.551992] + [37.706512, 55.551724], + [37.706512, 55.551814], + [37.706602, 55.551814], + [37.706602, 55.551724], + [37.706512, 55.551724] ] ] } @@ -10872,11 +30680,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704909, 55.552082], - [37.704909, 55.552171], - [37.705068, 55.552171], - [37.705068, 55.552082], - [37.704909, 55.552082] + [37.706512, 55.551814], + [37.706512, 55.551904], + [37.706602, 55.551904], + [37.706602, 55.551814], + [37.706512, 55.551814] ] ] } @@ -10888,11 +30696,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704909, 55.552171], - [37.704909, 55.552261], - [37.705068, 55.552261], - [37.705068, 55.552171], - [37.704909, 55.552171] + [37.706512, 55.551904], + [37.706512, 55.551994], + [37.706602, 55.551994], + [37.706602, 55.551904], + [37.706512, 55.551904] ] ] } @@ -10904,11 +30712,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704909, 55.552261], - [37.704909, 55.552351], - [37.705068, 55.552351], - [37.705068, 55.552261], - [37.704909, 55.552261] + [37.706512, 55.551994], + [37.706512, 55.552084], + [37.706602, 55.552084], + [37.706602, 55.551994], + [37.706512, 55.551994] ] ] } @@ -10920,11 +30728,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704909, 55.552351], - [37.704909, 55.552441], - [37.705068, 55.552441], - [37.705068, 55.552351], - [37.704909, 55.552351] + [37.706512, 55.552084], + [37.706512, 55.552173], + [37.706602, 55.552173], + [37.706602, 55.552084], + [37.706512, 55.552084] ] ] } @@ -10936,11 +30744,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704909, 55.552441], - [37.704909, 55.552531], - [37.705068, 55.552531], - [37.705068, 55.552441], - [37.704909, 55.552441] + [37.706512, 55.552173], + [37.706512, 55.552263], + [37.706602, 55.552263], + [37.706602, 55.552173], + [37.706512, 55.552173] ] ] } @@ -10952,11 +30760,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704909, 55.552531], - [37.704909, 55.552621], - [37.705068, 55.552621], - [37.705068, 55.552531], - [37.704909, 55.552531] + [37.706512, 55.552263], + [37.706512, 55.552353], + [37.706602, 55.552353], + [37.706602, 55.552263], + [37.706512, 55.552263] ] ] } @@ -10968,11 +30776,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704909, 55.552621], - [37.704909, 55.552711], - [37.705068, 55.552711], - [37.705068, 55.552621], - [37.704909, 55.552621] + [37.706512, 55.552353], + [37.706512, 55.552443], + [37.706602, 55.552443], + [37.706602, 55.552353], + [37.706512, 55.552353] ] ] } @@ -10984,11 +30792,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704909, 55.552711], - [37.704909, 55.552801], - [37.705068, 55.552801], - [37.705068, 55.552711], - [37.704909, 55.552711] + [37.706512, 55.552443], + [37.706512, 55.552533], + [37.706602, 55.552533], + [37.706602, 55.552443], + [37.706512, 55.552443] ] ] } @@ -11000,11 +30808,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704909, 55.552801], - [37.704909, 55.552891], - [37.705068, 55.552891], - [37.705068, 55.552801], - [37.704909, 55.552801] + [37.706512, 55.552533], + [37.706512, 55.552623], + [37.706602, 55.552623], + [37.706602, 55.552533], + [37.706512, 55.552533] ] ] } @@ -11016,11 +30824,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704909, 55.552891], - [37.704909, 55.552981], - [37.705068, 55.552981], - [37.705068, 55.552891], - [37.704909, 55.552891] + [37.706512, 55.552623], + [37.706512, 55.552712], + [37.706602, 55.552712], + [37.706602, 55.552623], + [37.706512, 55.552623] ] ] } @@ -11032,11 +30840,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704909, 55.552981], - [37.704909, 55.553071], - [37.705068, 55.553071], - [37.705068, 55.552981], - [37.704909, 55.552981] + [37.706512, 55.552712], + [37.706512, 55.552802], + [37.706602, 55.552802], + [37.706602, 55.552712], + [37.706512, 55.552712] ] ] } @@ -11048,11 +30856,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704909, 55.553071], - [37.704909, 55.553161], - [37.705068, 55.553161], - [37.705068, 55.553071], - [37.704909, 55.553071] + [37.706512, 55.552802], + [37.706512, 55.552892], + [37.706602, 55.552892], + [37.706602, 55.552802], + [37.706512, 55.552802] ] ] } @@ -11064,11 +30872,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704909, 55.553161], - [37.704909, 55.553251], - [37.705068, 55.553251], - [37.705068, 55.553161], - [37.704909, 55.553161] + [37.706512, 55.552892], + [37.706512, 55.552982], + [37.706602, 55.552982], + [37.706602, 55.552892], + [37.706512, 55.552892] ] ] } @@ -11080,11 +30888,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704909, 55.553251], - [37.704909, 55.553341], - [37.705068, 55.553341], - [37.705068, 55.553251], - [37.704909, 55.553251] + [37.706512, 55.552982], + [37.706512, 55.553072], + [37.706602, 55.553072], + [37.706602, 55.552982], + [37.706512, 55.552982] ] ] } @@ -11096,11 +30904,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704909, 55.553341], - [37.704909, 55.553431], - [37.705068, 55.553431], - [37.705068, 55.553341], - [37.704909, 55.553341] + [37.706512, 55.553072], + [37.706512, 55.553162], + [37.706602, 55.553162], + [37.706602, 55.553072], + [37.706512, 55.553072] ] ] } @@ -11112,11 +30920,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704909, 55.553431], - [37.704909, 55.55352], - [37.705068, 55.55352], - [37.705068, 55.553431], - [37.704909, 55.553431] + [37.706512, 55.553162], + [37.706512, 55.553251], + [37.706602, 55.553251], + [37.706602, 55.553162], + [37.706512, 55.553162] ] ] } @@ -11128,11 +30936,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704909, 55.55352], - [37.704909, 55.55361], - [37.705068, 55.55361], - [37.705068, 55.55352], - [37.704909, 55.55352] + [37.706512, 55.553251], + [37.706512, 55.553341], + [37.706602, 55.553341], + [37.706602, 55.553251], + [37.706512, 55.553251] ] ] } @@ -11144,11 +30952,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704909, 55.55361], - [37.704909, 55.5537], - [37.705068, 55.5537], - [37.705068, 55.55361], - [37.704909, 55.55361] + [37.706512, 55.553341], + [37.706512, 55.553431], + [37.706602, 55.553431], + [37.706602, 55.553341], + [37.706512, 55.553341] ] ] } @@ -11160,11 +30968,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704909, 55.5537], - [37.704909, 55.55379], - [37.705068, 55.55379], - [37.705068, 55.5537], - [37.704909, 55.5537] + [37.706512, 55.553431], + [37.706512, 55.553521], + [37.706602, 55.553521], + [37.706602, 55.553431], + [37.706512, 55.553431] ] ] } @@ -11176,11 +30984,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704909, 55.55379], - [37.704909, 55.55388], - [37.705068, 55.55388], - [37.705068, 55.55379], - [37.704909, 55.55379] + [37.706512, 55.553521], + [37.706512, 55.553611], + [37.706602, 55.553611], + [37.706602, 55.553521], + [37.706512, 55.553521] ] ] } @@ -11192,11 +31000,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704909, 55.55388], - [37.704909, 55.55397], - [37.705068, 55.55397], - [37.705068, 55.55388], - [37.704909, 55.55388] + [37.706512, 55.553611], + [37.706512, 55.5537], + [37.706602, 55.5537], + [37.706602, 55.553611], + [37.706512, 55.553611] ] ] } @@ -11208,11 +31016,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704909, 55.55397], - [37.704909, 55.55406], - [37.705068, 55.55406], - [37.705068, 55.55397], - [37.704909, 55.55397] + [37.706512, 55.5537], + [37.706512, 55.55379], + [37.706602, 55.55379], + [37.706602, 55.5537], + [37.706512, 55.5537] ] ] } @@ -11224,11 +31032,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704909, 55.55406], - [37.704909, 55.55415], - [37.705068, 55.55415], - [37.705068, 55.55406], - [37.704909, 55.55406] + [37.706512, 55.55379], + [37.706512, 55.55388], + [37.706602, 55.55388], + [37.706602, 55.55379], + [37.706512, 55.55379] ] ] } @@ -11240,11 +31048,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704909, 55.55415], - [37.704909, 55.55424], - [37.705068, 55.55424], - [37.705068, 55.55415], - [37.704909, 55.55415] + [37.706512, 55.55388], + [37.706512, 55.55397], + [37.706602, 55.55397], + [37.706602, 55.55388], + [37.706512, 55.55388] ] ] } @@ -11256,11 +31064,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704909, 55.55424], - [37.704909, 55.55433], - [37.705068, 55.55433], - [37.705068, 55.55424], - [37.704909, 55.55424] + [37.706512, 55.55397], + [37.706512, 55.55406], + [37.706602, 55.55406], + [37.706602, 55.55397], + [37.706512, 55.55397] ] ] } @@ -11272,11 +31080,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704909, 55.55433], - [37.704909, 55.55442], - [37.705068, 55.55442], - [37.705068, 55.55433], - [37.704909, 55.55433] + [37.706512, 55.55406], + [37.706512, 55.55415], + [37.706602, 55.55415], + [37.706602, 55.55406], + [37.706512, 55.55406] ] ] } @@ -11288,11 +31096,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704909, 55.55442], - [37.704909, 55.55451], - [37.705068, 55.55451], - [37.705068, 55.55442], - [37.704909, 55.55442] + [37.706512, 55.55415], + [37.706512, 55.554239], + [37.706602, 55.554239], + [37.706602, 55.55415], + [37.706512, 55.55415] ] ] } @@ -11304,11 +31112,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704909, 55.55451], - [37.704909, 55.5546], - [37.705068, 55.5546], - [37.705068, 55.55451], - [37.704909, 55.55451] + [37.706512, 55.554239], + [37.706512, 55.554329], + [37.706602, 55.554329], + [37.706602, 55.554239], + [37.706512, 55.554239] ] ] } @@ -11320,11 +31128,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704909, 55.5546], - [37.704909, 55.55469], - [37.705068, 55.55469], - [37.705068, 55.5546], - [37.704909, 55.5546] + [37.706512, 55.554329], + [37.706512, 55.554419], + [37.706602, 55.554419], + [37.706602, 55.554329], + [37.706512, 55.554329] ] ] } @@ -11336,11 +31144,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704909, 55.55469], - [37.704909, 55.55478], - [37.705068, 55.55478], - [37.705068, 55.55469], - [37.704909, 55.55469] + [37.706512, 55.554419], + [37.706512, 55.554509], + [37.706602, 55.554509], + [37.706602, 55.554419], + [37.706512, 55.554419] ] ] } @@ -11352,11 +31160,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704909, 55.55478], - [37.704909, 55.554869], - [37.705068, 55.554869], - [37.705068, 55.55478], - [37.704909, 55.55478] + [37.706512, 55.554509], + [37.706512, 55.554599], + [37.706602, 55.554599], + [37.706602, 55.554509], + [37.706512, 55.554509] ] ] } @@ -11368,11 +31176,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704909, 55.554869], - [37.704909, 55.554959], - [37.705068, 55.554959], - [37.705068, 55.554869], - [37.704909, 55.554869] + [37.706512, 55.554599], + [37.706512, 55.554689], + [37.706602, 55.554689], + [37.706602, 55.554599], + [37.706512, 55.554599] ] ] } @@ -11384,11 +31192,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704909, 55.554959], - [37.704909, 55.555049], - [37.705068, 55.555049], - [37.705068, 55.554959], - [37.704909, 55.554959] + [37.706512, 55.554689], + [37.706512, 55.554778], + [37.706602, 55.554778], + [37.706602, 55.554689], + [37.706512, 55.554689] ] ] } @@ -11400,11 +31208,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704909, 55.555049], - [37.704909, 55.555139], - [37.705068, 55.555139], - [37.705068, 55.555049], - [37.704909, 55.555049] + [37.706512, 55.554778], + [37.706512, 55.554868], + [37.706602, 55.554868], + [37.706602, 55.554778], + [37.706512, 55.554778] ] ] } @@ -11416,11 +31224,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705068, 55.551812], - [37.705068, 55.551902], - [37.705227, 55.551902], - [37.705227, 55.551812], - [37.705068, 55.551812] + [37.706512, 55.554868], + [37.706512, 55.554958], + [37.706602, 55.554958], + [37.706602, 55.554868], + [37.706512, 55.554868] ] ] } @@ -11432,11 +31240,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705068, 55.551902], - [37.705068, 55.551992], - [37.705227, 55.551992], - [37.705227, 55.551902], - [37.705068, 55.551902] + [37.706512, 55.554958], + [37.706512, 55.555048], + [37.706602, 55.555048], + [37.706602, 55.554958], + [37.706512, 55.554958] ] ] } @@ -11448,11 +31256,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705068, 55.551992], - [37.705068, 55.552082], - [37.705227, 55.552082], - [37.705227, 55.551992], - [37.705068, 55.551992] + [37.706512, 55.555048], + [37.706512, 55.555138], + [37.706602, 55.555138], + [37.706602, 55.555048], + [37.706512, 55.555048] ] ] } @@ -11464,11 +31272,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705068, 55.552082], - [37.705068, 55.552171], - [37.705227, 55.552171], - [37.705227, 55.552082], - [37.705068, 55.552082] + [37.706512, 55.555138], + [37.706512, 55.555228], + [37.706602, 55.555228], + [37.706602, 55.555138], + [37.706512, 55.555138] ] ] } @@ -11480,11 +31288,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705068, 55.552171], - [37.705068, 55.552261], - [37.705227, 55.552261], - [37.705227, 55.552171], - [37.705068, 55.552171] + [37.706512, 55.555228], + [37.706512, 55.555317], + [37.706602, 55.555317], + [37.706602, 55.555228], + [37.706512, 55.555228] ] ] } @@ -11496,11 +31304,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705068, 55.552261], - [37.705068, 55.552351], - [37.705227, 55.552351], - [37.705227, 55.552261], - [37.705068, 55.552261] + [37.706512, 55.555317], + [37.706512, 55.555407], + [37.706602, 55.555407], + [37.706602, 55.555317], + [37.706512, 55.555317] ] ] } @@ -11512,11 +31320,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705068, 55.552351], - [37.705068, 55.552441], - [37.705227, 55.552441], - [37.705227, 55.552351], - [37.705068, 55.552351] + [37.706512, 55.555407], + [37.706512, 55.555497], + [37.706602, 55.555497], + [37.706602, 55.555407], + [37.706512, 55.555407] ] ] } @@ -11528,11 +31336,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705068, 55.552441], - [37.705068, 55.552531], - [37.705227, 55.552531], - [37.705227, 55.552441], - [37.705068, 55.552441] + [37.706512, 55.555497], + [37.706512, 55.555587], + [37.706602, 55.555587], + [37.706602, 55.555497], + [37.706512, 55.555497] ] ] } @@ -11544,11 +31352,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705068, 55.552531], - [37.705068, 55.552621], - [37.705227, 55.552621], - [37.705227, 55.552531], - [37.705068, 55.552531] + [37.706602, 55.551545], + [37.706602, 55.551634], + [37.706692, 55.551634], + [37.706692, 55.551545], + [37.706602, 55.551545] ] ] } @@ -11560,11 +31368,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705068, 55.552621], - [37.705068, 55.552711], - [37.705227, 55.552711], - [37.705227, 55.552621], - [37.705068, 55.552621] + [37.706602, 55.551634], + [37.706602, 55.551724], + [37.706692, 55.551724], + [37.706692, 55.551634], + [37.706602, 55.551634] ] ] } @@ -11576,11 +31384,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705068, 55.552711], - [37.705068, 55.552801], - [37.705227, 55.552801], - [37.705227, 55.552711], - [37.705068, 55.552711] + [37.706602, 55.551724], + [37.706602, 55.551814], + [37.706692, 55.551814], + [37.706692, 55.551724], + [37.706602, 55.551724] ] ] } @@ -11592,11 +31400,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705068, 55.552801], - [37.705068, 55.552891], - [37.705227, 55.552891], - [37.705227, 55.552801], - [37.705068, 55.552801] + [37.706602, 55.551814], + [37.706602, 55.551904], + [37.706692, 55.551904], + [37.706692, 55.551814], + [37.706602, 55.551814] ] ] } @@ -11608,11 +31416,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705068, 55.552891], - [37.705068, 55.552981], - [37.705227, 55.552981], - [37.705227, 55.552891], - [37.705068, 55.552891] + [37.706602, 55.551904], + [37.706602, 55.551994], + [37.706692, 55.551994], + [37.706692, 55.551904], + [37.706602, 55.551904] ] ] } @@ -11624,11 +31432,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705068, 55.552981], - [37.705068, 55.553071], - [37.705227, 55.553071], - [37.705227, 55.552981], - [37.705068, 55.552981] + [37.706602, 55.551994], + [37.706602, 55.552084], + [37.706692, 55.552084], + [37.706692, 55.551994], + [37.706602, 55.551994] ] ] } @@ -11640,11 +31448,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705068, 55.553071], - [37.705068, 55.553161], - [37.705227, 55.553161], - [37.705227, 55.553071], - [37.705068, 55.553071] + [37.706602, 55.552084], + [37.706602, 55.552173], + [37.706692, 55.552173], + [37.706692, 55.552084], + [37.706602, 55.552084] ] ] } @@ -11656,11 +31464,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705068, 55.553161], - [37.705068, 55.553251], - [37.705227, 55.553251], - [37.705227, 55.553161], - [37.705068, 55.553161] + [37.706602, 55.552173], + [37.706602, 55.552263], + [37.706692, 55.552263], + [37.706692, 55.552173], + [37.706602, 55.552173] ] ] } @@ -11672,11 +31480,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705068, 55.553251], - [37.705068, 55.553341], - [37.705227, 55.553341], - [37.705227, 55.553251], - [37.705068, 55.553251] + [37.706602, 55.552263], + [37.706602, 55.552353], + [37.706692, 55.552353], + [37.706692, 55.552263], + [37.706602, 55.552263] ] ] } @@ -11688,11 +31496,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705068, 55.553341], - [37.705068, 55.553431], - [37.705227, 55.553431], - [37.705227, 55.553341], - [37.705068, 55.553341] + [37.706602, 55.552353], + [37.706602, 55.552443], + [37.706692, 55.552443], + [37.706692, 55.552353], + [37.706602, 55.552353] ] ] } @@ -11704,11 +31512,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705068, 55.553431], - [37.705068, 55.55352], - [37.705227, 55.55352], - [37.705227, 55.553431], - [37.705068, 55.553431] + [37.706602, 55.552443], + [37.706602, 55.552533], + [37.706692, 55.552533], + [37.706692, 55.552443], + [37.706602, 55.552443] ] ] } @@ -11720,11 +31528,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705068, 55.55352], - [37.705068, 55.55361], - [37.705227, 55.55361], - [37.705227, 55.55352], - [37.705068, 55.55352] + [37.706602, 55.552533], + [37.706602, 55.552623], + [37.706692, 55.552623], + [37.706692, 55.552533], + [37.706602, 55.552533] ] ] } @@ -11736,11 +31544,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705068, 55.55361], - [37.705068, 55.5537], - [37.705227, 55.5537], - [37.705227, 55.55361], - [37.705068, 55.55361] + [37.706602, 55.552623], + [37.706602, 55.552712], + [37.706692, 55.552712], + [37.706692, 55.552623], + [37.706602, 55.552623] ] ] } @@ -11752,11 +31560,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705068, 55.5537], - [37.705068, 55.55379], - [37.705227, 55.55379], - [37.705227, 55.5537], - [37.705068, 55.5537] + [37.706602, 55.552712], + [37.706602, 55.552802], + [37.706692, 55.552802], + [37.706692, 55.552712], + [37.706602, 55.552712] ] ] } @@ -11768,11 +31576,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705068, 55.55379], - [37.705068, 55.55388], - [37.705227, 55.55388], - [37.705227, 55.55379], - [37.705068, 55.55379] + [37.706602, 55.552802], + [37.706602, 55.552892], + [37.706692, 55.552892], + [37.706692, 55.552802], + [37.706602, 55.552802] ] ] } @@ -11784,11 +31592,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705068, 55.55388], - [37.705068, 55.55397], - [37.705227, 55.55397], - [37.705227, 55.55388], - [37.705068, 55.55388] + [37.706602, 55.552892], + [37.706602, 55.552982], + [37.706692, 55.552982], + [37.706692, 55.552892], + [37.706602, 55.552892] ] ] } @@ -11800,11 +31608,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705068, 55.55397], - [37.705068, 55.55406], - [37.705227, 55.55406], - [37.705227, 55.55397], - [37.705068, 55.55397] + [37.706602, 55.552982], + [37.706602, 55.553072], + [37.706692, 55.553072], + [37.706692, 55.552982], + [37.706602, 55.552982] ] ] } @@ -11816,11 +31624,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705068, 55.55406], - [37.705068, 55.55415], - [37.705227, 55.55415], - [37.705227, 55.55406], - [37.705068, 55.55406] + [37.706602, 55.553072], + [37.706602, 55.553162], + [37.706692, 55.553162], + [37.706692, 55.553072], + [37.706602, 55.553072] ] ] } @@ -11832,11 +31640,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705068, 55.55415], - [37.705068, 55.55424], - [37.705227, 55.55424], - [37.705227, 55.55415], - [37.705068, 55.55415] + [37.706602, 55.553162], + [37.706602, 55.553251], + [37.706692, 55.553251], + [37.706692, 55.553162], + [37.706602, 55.553162] ] ] } @@ -11848,11 +31656,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705068, 55.55424], - [37.705068, 55.55433], - [37.705227, 55.55433], - [37.705227, 55.55424], - [37.705068, 55.55424] + [37.706602, 55.553251], + [37.706602, 55.553341], + [37.706692, 55.553341], + [37.706692, 55.553251], + [37.706602, 55.553251] ] ] } @@ -11864,11 +31672,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705068, 55.55433], - [37.705068, 55.55442], - [37.705227, 55.55442], - [37.705227, 55.55433], - [37.705068, 55.55433] + [37.706602, 55.553341], + [37.706602, 55.553431], + [37.706692, 55.553431], + [37.706692, 55.553341], + [37.706602, 55.553341] ] ] } @@ -11880,11 +31688,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705068, 55.55442], - [37.705068, 55.55451], - [37.705227, 55.55451], - [37.705227, 55.55442], - [37.705068, 55.55442] + [37.706602, 55.553431], + [37.706602, 55.553521], + [37.706692, 55.553521], + [37.706692, 55.553431], + [37.706602, 55.553431] ] ] } @@ -11896,11 +31704,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705068, 55.55451], - [37.705068, 55.5546], - [37.705227, 55.5546], - [37.705227, 55.55451], - [37.705068, 55.55451] + [37.706602, 55.553521], + [37.706602, 55.553611], + [37.706692, 55.553611], + [37.706692, 55.553521], + [37.706602, 55.553521] ] ] } @@ -11912,11 +31720,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705068, 55.5546], - [37.705068, 55.55469], - [37.705227, 55.55469], - [37.705227, 55.5546], - [37.705068, 55.5546] + [37.706602, 55.553611], + [37.706602, 55.5537], + [37.706692, 55.5537], + [37.706692, 55.553611], + [37.706602, 55.553611] ] ] } @@ -11928,11 +31736,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705068, 55.55469], - [37.705068, 55.55478], - [37.705227, 55.55478], - [37.705227, 55.55469], - [37.705068, 55.55469] + [37.706602, 55.5537], + [37.706602, 55.55379], + [37.706692, 55.55379], + [37.706692, 55.5537], + [37.706602, 55.5537] ] ] } @@ -11944,11 +31752,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705068, 55.55478], - [37.705068, 55.554869], - [37.705227, 55.554869], - [37.705227, 55.55478], - [37.705068, 55.55478] + [37.706602, 55.55379], + [37.706602, 55.55388], + [37.706692, 55.55388], + [37.706692, 55.55379], + [37.706602, 55.55379] ] ] } @@ -11960,11 +31768,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705068, 55.554869], - [37.705068, 55.554959], - [37.705227, 55.554959], - [37.705227, 55.554869], - [37.705068, 55.554869] + [37.706602, 55.55388], + [37.706602, 55.55397], + [37.706692, 55.55397], + [37.706692, 55.55388], + [37.706602, 55.55388] ] ] } @@ -11976,11 +31784,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705068, 55.554959], - [37.705068, 55.555049], - [37.705227, 55.555049], - [37.705227, 55.554959], - [37.705068, 55.554959] + [37.706602, 55.55397], + [37.706602, 55.55406], + [37.706692, 55.55406], + [37.706692, 55.55397], + [37.706602, 55.55397] ] ] } @@ -11992,11 +31800,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705068, 55.555049], - [37.705068, 55.555139], - [37.705227, 55.555139], - [37.705227, 55.555049], - [37.705068, 55.555049] + [37.706602, 55.55406], + [37.706602, 55.55415], + [37.706692, 55.55415], + [37.706692, 55.55406], + [37.706602, 55.55406] ] ] } @@ -12008,11 +31816,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705068, 55.555139], - [37.705068, 55.555229], - [37.705227, 55.555229], - [37.705227, 55.555139], - [37.705068, 55.555139] + [37.706602, 55.55415], + [37.706602, 55.554239], + [37.706692, 55.554239], + [37.706692, 55.55415], + [37.706602, 55.55415] ] ] } @@ -12024,11 +31832,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705227, 55.551722], - [37.705227, 55.551812], - [37.705386, 55.551812], - [37.705386, 55.551722], - [37.705227, 55.551722] + [37.706602, 55.554239], + [37.706602, 55.554329], + [37.706692, 55.554329], + [37.706692, 55.554239], + [37.706602, 55.554239] ] ] } @@ -12040,11 +31848,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705227, 55.551812], - [37.705227, 55.551902], - [37.705386, 55.551902], - [37.705386, 55.551812], - [37.705227, 55.551812] + [37.706602, 55.554329], + [37.706602, 55.554419], + [37.706692, 55.554419], + [37.706692, 55.554329], + [37.706602, 55.554329] ] ] } @@ -12056,11 +31864,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705227, 55.551902], - [37.705227, 55.551992], - [37.705386, 55.551992], - [37.705386, 55.551902], - [37.705227, 55.551902] + [37.706602, 55.554419], + [37.706602, 55.554509], + [37.706692, 55.554509], + [37.706692, 55.554419], + [37.706602, 55.554419] ] ] } @@ -12072,11 +31880,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705227, 55.551992], - [37.705227, 55.552082], - [37.705386, 55.552082], - [37.705386, 55.551992], - [37.705227, 55.551992] + [37.706602, 55.554509], + [37.706602, 55.554599], + [37.706692, 55.554599], + [37.706692, 55.554509], + [37.706602, 55.554509] ] ] } @@ -12088,11 +31896,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705227, 55.552082], - [37.705227, 55.552171], - [37.705386, 55.552171], - [37.705386, 55.552082], - [37.705227, 55.552082] + [37.706602, 55.554599], + [37.706602, 55.554689], + [37.706692, 55.554689], + [37.706692, 55.554599], + [37.706602, 55.554599] ] ] } @@ -12104,11 +31912,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705227, 55.552171], - [37.705227, 55.552261], - [37.705386, 55.552261], - [37.705386, 55.552171], - [37.705227, 55.552171] + [37.706602, 55.554689], + [37.706602, 55.554778], + [37.706692, 55.554778], + [37.706692, 55.554689], + [37.706602, 55.554689] ] ] } @@ -12120,11 +31928,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705227, 55.552261], - [37.705227, 55.552351], - [37.705386, 55.552351], - [37.705386, 55.552261], - [37.705227, 55.552261] + [37.706602, 55.554778], + [37.706602, 55.554868], + [37.706692, 55.554868], + [37.706692, 55.554778], + [37.706602, 55.554778] ] ] } @@ -12136,11 +31944,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705227, 55.552351], - [37.705227, 55.552441], - [37.705386, 55.552441], - [37.705386, 55.552351], - [37.705227, 55.552351] + [37.706602, 55.554868], + [37.706602, 55.554958], + [37.706692, 55.554958], + [37.706692, 55.554868], + [37.706602, 55.554868] ] ] } @@ -12152,11 +31960,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705227, 55.552441], - [37.705227, 55.552531], - [37.705386, 55.552531], - [37.705386, 55.552441], - [37.705227, 55.552441] + [37.706602, 55.554958], + [37.706602, 55.555048], + [37.706692, 55.555048], + [37.706692, 55.554958], + [37.706602, 55.554958] ] ] } @@ -12168,11 +31976,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705227, 55.552531], - [37.705227, 55.552621], - [37.705386, 55.552621], - [37.705386, 55.552531], - [37.705227, 55.552531] + [37.706602, 55.555048], + [37.706602, 55.555138], + [37.706692, 55.555138], + [37.706692, 55.555048], + [37.706602, 55.555048] ] ] } @@ -12184,11 +31992,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705227, 55.552621], - [37.705227, 55.552711], - [37.705386, 55.552711], - [37.705386, 55.552621], - [37.705227, 55.552621] + [37.706602, 55.555138], + [37.706602, 55.555228], + [37.706692, 55.555228], + [37.706692, 55.555138], + [37.706602, 55.555138] ] ] } @@ -12200,11 +32008,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705227, 55.552711], - [37.705227, 55.552801], - [37.705386, 55.552801], - [37.705386, 55.552711], - [37.705227, 55.552711] + [37.706602, 55.555228], + [37.706602, 55.555317], + [37.706692, 55.555317], + [37.706692, 55.555228], + [37.706602, 55.555228] ] ] } @@ -12216,11 +32024,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705227, 55.552801], - [37.705227, 55.552891], - [37.705386, 55.552891], - [37.705386, 55.552801], - [37.705227, 55.552801] + [37.706602, 55.555317], + [37.706602, 55.555407], + [37.706692, 55.555407], + [37.706692, 55.555317], + [37.706602, 55.555317] ] ] } @@ -12232,11 +32040,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705227, 55.552891], - [37.705227, 55.552981], - [37.705386, 55.552981], - [37.705386, 55.552891], - [37.705227, 55.552891] + [37.706602, 55.555407], + [37.706602, 55.555497], + [37.706692, 55.555497], + [37.706692, 55.555407], + [37.706602, 55.555407] ] ] } @@ -12248,11 +32056,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705227, 55.552981], - [37.705227, 55.553071], - [37.705386, 55.553071], - [37.705386, 55.552981], - [37.705227, 55.552981] + [37.706602, 55.555497], + [37.706602, 55.555587], + [37.706692, 55.555587], + [37.706692, 55.555497], + [37.706602, 55.555497] ] ] } @@ -12264,11 +32072,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705227, 55.553071], - [37.705227, 55.553161], - [37.705386, 55.553161], - [37.705386, 55.553071], - [37.705227, 55.553071] + [37.706692, 55.551724], + [37.706692, 55.551814], + [37.706781, 55.551814], + [37.706781, 55.551724], + [37.706692, 55.551724] ] ] } @@ -12280,11 +32088,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705227, 55.553161], - [37.705227, 55.553251], - [37.705386, 55.553251], - [37.705386, 55.553161], - [37.705227, 55.553161] + [37.706692, 55.551814], + [37.706692, 55.551904], + [37.706781, 55.551904], + [37.706781, 55.551814], + [37.706692, 55.551814] ] ] } @@ -12296,11 +32104,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705227, 55.553251], - [37.705227, 55.553341], - [37.705386, 55.553341], - [37.705386, 55.553251], - [37.705227, 55.553251] + [37.706692, 55.551904], + [37.706692, 55.551994], + [37.706781, 55.551994], + [37.706781, 55.551904], + [37.706692, 55.551904] ] ] } @@ -12312,11 +32120,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705227, 55.553341], - [37.705227, 55.553431], - [37.705386, 55.553431], - [37.705386, 55.553341], - [37.705227, 55.553341] + [37.706692, 55.551994], + [37.706692, 55.552084], + [37.706781, 55.552084], + [37.706781, 55.551994], + [37.706692, 55.551994] ] ] } @@ -12328,11 +32136,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705227, 55.553431], - [37.705227, 55.55352], - [37.705386, 55.55352], - [37.705386, 55.553431], - [37.705227, 55.553431] + [37.706692, 55.552084], + [37.706692, 55.552173], + [37.706781, 55.552173], + [37.706781, 55.552084], + [37.706692, 55.552084] ] ] } @@ -12344,11 +32152,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705227, 55.55352], - [37.705227, 55.55361], - [37.705386, 55.55361], - [37.705386, 55.55352], - [37.705227, 55.55352] + [37.706692, 55.552173], + [37.706692, 55.552263], + [37.706781, 55.552263], + [37.706781, 55.552173], + [37.706692, 55.552173] ] ] } @@ -12360,11 +32168,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705227, 55.55361], - [37.705227, 55.5537], - [37.705386, 55.5537], - [37.705386, 55.55361], - [37.705227, 55.55361] + [37.706692, 55.552263], + [37.706692, 55.552353], + [37.706781, 55.552353], + [37.706781, 55.552263], + [37.706692, 55.552263] ] ] } @@ -12376,11 +32184,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705227, 55.5537], - [37.705227, 55.55379], - [37.705386, 55.55379], - [37.705386, 55.5537], - [37.705227, 55.5537] + [37.706692, 55.552353], + [37.706692, 55.552443], + [37.706781, 55.552443], + [37.706781, 55.552353], + [37.706692, 55.552353] ] ] } @@ -12392,11 +32200,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705227, 55.55379], - [37.705227, 55.55388], - [37.705386, 55.55388], - [37.705386, 55.55379], - [37.705227, 55.55379] + [37.706692, 55.552443], + [37.706692, 55.552533], + [37.706781, 55.552533], + [37.706781, 55.552443], + [37.706692, 55.552443] ] ] } @@ -12408,11 +32216,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705227, 55.55388], - [37.705227, 55.55397], - [37.705386, 55.55397], - [37.705386, 55.55388], - [37.705227, 55.55388] + [37.706692, 55.552533], + [37.706692, 55.552623], + [37.706781, 55.552623], + [37.706781, 55.552533], + [37.706692, 55.552533] ] ] } @@ -12424,11 +32232,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705227, 55.55397], - [37.705227, 55.55406], - [37.705386, 55.55406], - [37.705386, 55.55397], - [37.705227, 55.55397] + [37.706692, 55.552623], + [37.706692, 55.552712], + [37.706781, 55.552712], + [37.706781, 55.552623], + [37.706692, 55.552623] ] ] } @@ -12440,11 +32248,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705227, 55.55406], - [37.705227, 55.55415], - [37.705386, 55.55415], - [37.705386, 55.55406], - [37.705227, 55.55406] + [37.706692, 55.552712], + [37.706692, 55.552802], + [37.706781, 55.552802], + [37.706781, 55.552712], + [37.706692, 55.552712] ] ] } @@ -12456,11 +32264,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705227, 55.55415], - [37.705227, 55.55424], - [37.705386, 55.55424], - [37.705386, 55.55415], - [37.705227, 55.55415] + [37.706692, 55.552802], + [37.706692, 55.552892], + [37.706781, 55.552892], + [37.706781, 55.552802], + [37.706692, 55.552802] ] ] } @@ -12472,11 +32280,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705227, 55.55424], - [37.705227, 55.55433], - [37.705386, 55.55433], - [37.705386, 55.55424], - [37.705227, 55.55424] + [37.706692, 55.552892], + [37.706692, 55.552982], + [37.706781, 55.552982], + [37.706781, 55.552892], + [37.706692, 55.552892] ] ] } @@ -12488,11 +32296,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705227, 55.55433], - [37.705227, 55.55442], - [37.705386, 55.55442], - [37.705386, 55.55433], - [37.705227, 55.55433] + [37.706692, 55.552982], + [37.706692, 55.553072], + [37.706781, 55.553072], + [37.706781, 55.552982], + [37.706692, 55.552982] ] ] } @@ -12504,11 +32312,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705227, 55.55442], - [37.705227, 55.55451], - [37.705386, 55.55451], - [37.705386, 55.55442], - [37.705227, 55.55442] + [37.706692, 55.553072], + [37.706692, 55.553162], + [37.706781, 55.553162], + [37.706781, 55.553072], + [37.706692, 55.553072] ] ] } @@ -12520,11 +32328,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705227, 55.55451], - [37.705227, 55.5546], - [37.705386, 55.5546], - [37.705386, 55.55451], - [37.705227, 55.55451] + [37.706692, 55.553162], + [37.706692, 55.553251], + [37.706781, 55.553251], + [37.706781, 55.553162], + [37.706692, 55.553162] ] ] } @@ -12536,11 +32344,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705227, 55.5546], - [37.705227, 55.55469], - [37.705386, 55.55469], - [37.705386, 55.5546], - [37.705227, 55.5546] + [37.706692, 55.553251], + [37.706692, 55.553341], + [37.706781, 55.553341], + [37.706781, 55.553251], + [37.706692, 55.553251] ] ] } @@ -12552,11 +32360,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705227, 55.55469], - [37.705227, 55.55478], - [37.705386, 55.55478], - [37.705386, 55.55469], - [37.705227, 55.55469] + [37.706692, 55.553341], + [37.706692, 55.553431], + [37.706781, 55.553431], + [37.706781, 55.553341], + [37.706692, 55.553341] ] ] } @@ -12568,11 +32376,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705227, 55.55478], - [37.705227, 55.554869], - [37.705386, 55.554869], - [37.705386, 55.55478], - [37.705227, 55.55478] + [37.706692, 55.553431], + [37.706692, 55.553521], + [37.706781, 55.553521], + [37.706781, 55.553431], + [37.706692, 55.553431] ] ] } @@ -12584,11 +32392,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705227, 55.554869], - [37.705227, 55.554959], - [37.705386, 55.554959], - [37.705386, 55.554869], - [37.705227, 55.554869] + [37.706692, 55.553521], + [37.706692, 55.553611], + [37.706781, 55.553611], + [37.706781, 55.553521], + [37.706692, 55.553521] ] ] } @@ -12600,11 +32408,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705227, 55.554959], - [37.705227, 55.555049], - [37.705386, 55.555049], - [37.705386, 55.554959], - [37.705227, 55.554959] + [37.706692, 55.553611], + [37.706692, 55.5537], + [37.706781, 55.5537], + [37.706781, 55.553611], + [37.706692, 55.553611] ] ] } @@ -12616,11 +32424,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705227, 55.555049], - [37.705227, 55.555139], - [37.705386, 55.555139], - [37.705386, 55.555049], - [37.705227, 55.555049] + [37.706692, 55.5537], + [37.706692, 55.55379], + [37.706781, 55.55379], + [37.706781, 55.5537], + [37.706692, 55.5537] ] ] } @@ -12632,11 +32440,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705227, 55.555139], - [37.705227, 55.555229], - [37.705386, 55.555229], - [37.705386, 55.555139], - [37.705227, 55.555139] + [37.706692, 55.55379], + [37.706692, 55.55388], + [37.706781, 55.55388], + [37.706781, 55.55379], + [37.706692, 55.55379] ] ] } @@ -12648,11 +32456,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705386, 55.551722], - [37.705386, 55.551812], - [37.705545, 55.551812], - [37.705545, 55.551722], - [37.705386, 55.551722] + [37.706692, 55.55388], + [37.706692, 55.55397], + [37.706781, 55.55397], + [37.706781, 55.55388], + [37.706692, 55.55388] ] ] } @@ -12664,11 +32472,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705386, 55.551812], - [37.705386, 55.551902], - [37.705545, 55.551902], - [37.705545, 55.551812], - [37.705386, 55.551812] + [37.706692, 55.55397], + [37.706692, 55.55406], + [37.706781, 55.55406], + [37.706781, 55.55397], + [37.706692, 55.55397] ] ] } @@ -12680,11 +32488,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705386, 55.551902], - [37.705386, 55.551992], - [37.705545, 55.551992], - [37.705545, 55.551902], - [37.705386, 55.551902] + [37.706692, 55.55406], + [37.706692, 55.55415], + [37.706781, 55.55415], + [37.706781, 55.55406], + [37.706692, 55.55406] ] ] } @@ -12696,11 +32504,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705386, 55.551992], - [37.705386, 55.552082], - [37.705545, 55.552082], - [37.705545, 55.551992], - [37.705386, 55.551992] + [37.706692, 55.55415], + [37.706692, 55.554239], + [37.706781, 55.554239], + [37.706781, 55.55415], + [37.706692, 55.55415] ] ] } @@ -12712,11 +32520,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705386, 55.552082], - [37.705386, 55.552171], - [37.705545, 55.552171], - [37.705545, 55.552082], - [37.705386, 55.552082] + [37.706692, 55.554239], + [37.706692, 55.554329], + [37.706781, 55.554329], + [37.706781, 55.554239], + [37.706692, 55.554239] ] ] } @@ -12728,11 +32536,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705386, 55.552171], - [37.705386, 55.552261], - [37.705545, 55.552261], - [37.705545, 55.552171], - [37.705386, 55.552171] + [37.706692, 55.554329], + [37.706692, 55.554419], + [37.706781, 55.554419], + [37.706781, 55.554329], + [37.706692, 55.554329] ] ] } @@ -12744,11 +32552,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705386, 55.552261], - [37.705386, 55.552351], - [37.705545, 55.552351], - [37.705545, 55.552261], - [37.705386, 55.552261] + [37.706692, 55.554419], + [37.706692, 55.554509], + [37.706781, 55.554509], + [37.706781, 55.554419], + [37.706692, 55.554419] ] ] } @@ -12760,11 +32568,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705386, 55.552351], - [37.705386, 55.552441], - [37.705545, 55.552441], - [37.705545, 55.552351], - [37.705386, 55.552351] + [37.706692, 55.554509], + [37.706692, 55.554599], + [37.706781, 55.554599], + [37.706781, 55.554509], + [37.706692, 55.554509] ] ] } @@ -12776,11 +32584,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705386, 55.552441], - [37.705386, 55.552531], - [37.705545, 55.552531], - [37.705545, 55.552441], - [37.705386, 55.552441] + [37.706692, 55.554599], + [37.706692, 55.554689], + [37.706781, 55.554689], + [37.706781, 55.554599], + [37.706692, 55.554599] ] ] } @@ -12792,11 +32600,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705386, 55.552531], - [37.705386, 55.552621], - [37.705545, 55.552621], - [37.705545, 55.552531], - [37.705386, 55.552531] + [37.706692, 55.554689], + [37.706692, 55.554778], + [37.706781, 55.554778], + [37.706781, 55.554689], + [37.706692, 55.554689] ] ] } @@ -12808,11 +32616,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705386, 55.552621], - [37.705386, 55.552711], - [37.705545, 55.552711], - [37.705545, 55.552621], - [37.705386, 55.552621] + [37.706692, 55.554778], + [37.706692, 55.554868], + [37.706781, 55.554868], + [37.706781, 55.554778], + [37.706692, 55.554778] ] ] } @@ -12824,11 +32632,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705386, 55.552711], - [37.705386, 55.552801], - [37.705545, 55.552801], - [37.705545, 55.552711], - [37.705386, 55.552711] + [37.706692, 55.554868], + [37.706692, 55.554958], + [37.706781, 55.554958], + [37.706781, 55.554868], + [37.706692, 55.554868] ] ] } @@ -12840,11 +32648,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705386, 55.552801], - [37.705386, 55.552891], - [37.705545, 55.552891], - [37.705545, 55.552801], - [37.705386, 55.552801] + [37.706692, 55.554958], + [37.706692, 55.555048], + [37.706781, 55.555048], + [37.706781, 55.554958], + [37.706692, 55.554958] ] ] } @@ -12856,11 +32664,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705386, 55.552891], - [37.705386, 55.552981], - [37.705545, 55.552981], - [37.705545, 55.552891], - [37.705386, 55.552891] + [37.706692, 55.555048], + [37.706692, 55.555138], + [37.706781, 55.555138], + [37.706781, 55.555048], + [37.706692, 55.555048] ] ] } @@ -12872,11 +32680,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705386, 55.552981], - [37.705386, 55.553071], - [37.705545, 55.553071], - [37.705545, 55.552981], - [37.705386, 55.552981] + [37.706692, 55.555138], + [37.706692, 55.555228], + [37.706781, 55.555228], + [37.706781, 55.555138], + [37.706692, 55.555138] ] ] } @@ -12888,11 +32696,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705386, 55.553071], - [37.705386, 55.553161], - [37.705545, 55.553161], - [37.705545, 55.553071], - [37.705386, 55.553071] + [37.706692, 55.555228], + [37.706692, 55.555317], + [37.706781, 55.555317], + [37.706781, 55.555228], + [37.706692, 55.555228] ] ] } @@ -12904,11 +32712,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705386, 55.553161], - [37.705386, 55.553251], - [37.705545, 55.553251], - [37.705545, 55.553161], - [37.705386, 55.553161] + [37.706692, 55.555317], + [37.706692, 55.555407], + [37.706781, 55.555407], + [37.706781, 55.555317], + [37.706692, 55.555317] ] ] } @@ -12920,11 +32728,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705386, 55.553251], - [37.705386, 55.553341], - [37.705545, 55.553341], - [37.705545, 55.553251], - [37.705386, 55.553251] + [37.706692, 55.555407], + [37.706692, 55.555497], + [37.706781, 55.555497], + [37.706781, 55.555407], + [37.706692, 55.555407] ] ] } @@ -12936,11 +32744,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705386, 55.553341], - [37.705386, 55.553431], - [37.705545, 55.553431], - [37.705545, 55.553341], - [37.705386, 55.553341] + [37.706692, 55.555497], + [37.706692, 55.555587], + [37.706781, 55.555587], + [37.706781, 55.555497], + [37.706692, 55.555497] ] ] } @@ -12952,11 +32760,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705386, 55.553431], - [37.705386, 55.55352], - [37.705545, 55.55352], - [37.705545, 55.553431], - [37.705386, 55.553431] + [37.706692, 55.555587], + [37.706692, 55.555677], + [37.706781, 55.555677], + [37.706781, 55.555587], + [37.706692, 55.555587] ] ] } @@ -12968,11 +32776,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705386, 55.55352], - [37.705386, 55.55361], - [37.705545, 55.55361], - [37.705545, 55.55352], - [37.705386, 55.55352] + [37.706781, 55.551814], + [37.706781, 55.551904], + [37.706871, 55.551904], + [37.706871, 55.551814], + [37.706781, 55.551814] ] ] } @@ -12984,11 +32792,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705386, 55.55361], - [37.705386, 55.5537], - [37.705545, 55.5537], - [37.705545, 55.55361], - [37.705386, 55.55361] + [37.706781, 55.551904], + [37.706781, 55.551994], + [37.706871, 55.551994], + [37.706871, 55.551904], + [37.706781, 55.551904] ] ] } @@ -13000,11 +32808,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705386, 55.5537], - [37.705386, 55.55379], - [37.705545, 55.55379], - [37.705545, 55.5537], - [37.705386, 55.5537] + [37.706781, 55.551994], + [37.706781, 55.552084], + [37.706871, 55.552084], + [37.706871, 55.551994], + [37.706781, 55.551994] ] ] } @@ -13016,11 +32824,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705386, 55.55379], - [37.705386, 55.55388], - [37.705545, 55.55388], - [37.705545, 55.55379], - [37.705386, 55.55379] + [37.706781, 55.552084], + [37.706781, 55.552173], + [37.706871, 55.552173], + [37.706871, 55.552084], + [37.706781, 55.552084] ] ] } @@ -13032,11 +32840,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705386, 55.55388], - [37.705386, 55.55397], - [37.705545, 55.55397], - [37.705545, 55.55388], - [37.705386, 55.55388] + [37.706781, 55.552173], + [37.706781, 55.552263], + [37.706871, 55.552263], + [37.706871, 55.552173], + [37.706781, 55.552173] ] ] } @@ -13048,11 +32856,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705386, 55.55397], - [37.705386, 55.55406], - [37.705545, 55.55406], - [37.705545, 55.55397], - [37.705386, 55.55397] + [37.706781, 55.552263], + [37.706781, 55.552353], + [37.706871, 55.552353], + [37.706871, 55.552263], + [37.706781, 55.552263] ] ] } @@ -13064,11 +32872,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705386, 55.55406], - [37.705386, 55.55415], - [37.705545, 55.55415], - [37.705545, 55.55406], - [37.705386, 55.55406] + [37.706781, 55.552353], + [37.706781, 55.552443], + [37.706871, 55.552443], + [37.706871, 55.552353], + [37.706781, 55.552353] ] ] } @@ -13080,11 +32888,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705386, 55.55415], - [37.705386, 55.55424], - [37.705545, 55.55424], - [37.705545, 55.55415], - [37.705386, 55.55415] + [37.706781, 55.552443], + [37.706781, 55.552533], + [37.706871, 55.552533], + [37.706871, 55.552443], + [37.706781, 55.552443] ] ] } @@ -13096,11 +32904,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705386, 55.55424], - [37.705386, 55.55433], - [37.705545, 55.55433], - [37.705545, 55.55424], - [37.705386, 55.55424] + [37.706781, 55.552533], + [37.706781, 55.552623], + [37.706871, 55.552623], + [37.706871, 55.552533], + [37.706781, 55.552533] ] ] } @@ -13112,11 +32920,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705386, 55.55433], - [37.705386, 55.55442], - [37.705545, 55.55442], - [37.705545, 55.55433], - [37.705386, 55.55433] + [37.706781, 55.552623], + [37.706781, 55.552712], + [37.706871, 55.552712], + [37.706871, 55.552623], + [37.706781, 55.552623] ] ] } @@ -13128,11 +32936,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705386, 55.55442], - [37.705386, 55.55451], - [37.705545, 55.55451], - [37.705545, 55.55442], - [37.705386, 55.55442] + [37.706781, 55.552712], + [37.706781, 55.552802], + [37.706871, 55.552802], + [37.706871, 55.552712], + [37.706781, 55.552712] ] ] } @@ -13144,11 +32952,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705386, 55.55451], - [37.705386, 55.5546], - [37.705545, 55.5546], - [37.705545, 55.55451], - [37.705386, 55.55451] + [37.706781, 55.552802], + [37.706781, 55.552892], + [37.706871, 55.552892], + [37.706871, 55.552802], + [37.706781, 55.552802] ] ] } @@ -13160,11 +32968,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705386, 55.5546], - [37.705386, 55.55469], - [37.705545, 55.55469], - [37.705545, 55.5546], - [37.705386, 55.5546] + [37.706781, 55.552892], + [37.706781, 55.552982], + [37.706871, 55.552982], + [37.706871, 55.552892], + [37.706781, 55.552892] ] ] } @@ -13176,11 +32984,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705386, 55.55469], - [37.705386, 55.55478], - [37.705545, 55.55478], - [37.705545, 55.55469], - [37.705386, 55.55469] + [37.706781, 55.552982], + [37.706781, 55.553072], + [37.706871, 55.553072], + [37.706871, 55.552982], + [37.706781, 55.552982] ] ] } @@ -13192,11 +33000,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705386, 55.55478], - [37.705386, 55.554869], - [37.705545, 55.554869], - [37.705545, 55.55478], - [37.705386, 55.55478] + [37.706781, 55.553072], + [37.706781, 55.553162], + [37.706871, 55.553162], + [37.706871, 55.553072], + [37.706781, 55.553072] ] ] } @@ -13208,11 +33016,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705386, 55.554869], - [37.705386, 55.554959], - [37.705545, 55.554959], - [37.705545, 55.554869], - [37.705386, 55.554869] + [37.706781, 55.553162], + [37.706781, 55.553251], + [37.706871, 55.553251], + [37.706871, 55.553162], + [37.706781, 55.553162] ] ] } @@ -13224,11 +33032,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705386, 55.554959], - [37.705386, 55.555049], - [37.705545, 55.555049], - [37.705545, 55.554959], - [37.705386, 55.554959] + [37.706781, 55.553251], + [37.706781, 55.553341], + [37.706871, 55.553341], + [37.706871, 55.553251], + [37.706781, 55.553251] ] ] } @@ -13240,11 +33048,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705386, 55.555049], - [37.705386, 55.555139], - [37.705545, 55.555139], - [37.705545, 55.555049], - [37.705386, 55.555049] + [37.706781, 55.553341], + [37.706781, 55.553431], + [37.706871, 55.553431], + [37.706871, 55.553341], + [37.706781, 55.553341] ] ] } @@ -13256,11 +33064,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705386, 55.555139], - [37.705386, 55.555229], - [37.705545, 55.555229], - [37.705545, 55.555139], - [37.705386, 55.555139] + [37.706781, 55.553431], + [37.706781, 55.553521], + [37.706871, 55.553521], + [37.706871, 55.553431], + [37.706781, 55.553431] ] ] } @@ -13272,11 +33080,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705386, 55.555229], - [37.705386, 55.555319], - [37.705545, 55.555319], - [37.705545, 55.555229], - [37.705386, 55.555229] + [37.706781, 55.553521], + [37.706781, 55.553611], + [37.706871, 55.553611], + [37.706871, 55.553521], + [37.706781, 55.553521] ] ] } @@ -13288,11 +33096,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705545, 55.551722], - [37.705545, 55.551812], - [37.705704, 55.551812], - [37.705704, 55.551722], - [37.705545, 55.551722] + [37.706781, 55.553611], + [37.706781, 55.5537], + [37.706871, 55.5537], + [37.706871, 55.553611], + [37.706781, 55.553611] ] ] } @@ -13304,11 +33112,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705545, 55.551812], - [37.705545, 55.551902], - [37.705704, 55.551902], - [37.705704, 55.551812], - [37.705545, 55.551812] + [37.706781, 55.5537], + [37.706781, 55.55379], + [37.706871, 55.55379], + [37.706871, 55.5537], + [37.706781, 55.5537] ] ] } @@ -13320,11 +33128,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705545, 55.551902], - [37.705545, 55.551992], - [37.705704, 55.551992], - [37.705704, 55.551902], - [37.705545, 55.551902] + [37.706781, 55.55379], + [37.706781, 55.55388], + [37.706871, 55.55388], + [37.706871, 55.55379], + [37.706781, 55.55379] ] ] } @@ -13336,11 +33144,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705545, 55.551992], - [37.705545, 55.552082], - [37.705704, 55.552082], - [37.705704, 55.551992], - [37.705545, 55.551992] + [37.706781, 55.55388], + [37.706781, 55.55397], + [37.706871, 55.55397], + [37.706871, 55.55388], + [37.706781, 55.55388] ] ] } @@ -13352,11 +33160,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705545, 55.552082], - [37.705545, 55.552171], - [37.705704, 55.552171], - [37.705704, 55.552082], - [37.705545, 55.552082] + [37.706781, 55.55397], + [37.706781, 55.55406], + [37.706871, 55.55406], + [37.706871, 55.55397], + [37.706781, 55.55397] ] ] } @@ -13368,11 +33176,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705545, 55.552171], - [37.705545, 55.552261], - [37.705704, 55.552261], - [37.705704, 55.552171], - [37.705545, 55.552171] + [37.706781, 55.55406], + [37.706781, 55.55415], + [37.706871, 55.55415], + [37.706871, 55.55406], + [37.706781, 55.55406] ] ] } @@ -13384,11 +33192,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705545, 55.552261], - [37.705545, 55.552351], - [37.705704, 55.552351], - [37.705704, 55.552261], - [37.705545, 55.552261] + [37.706781, 55.55415], + [37.706781, 55.554239], + [37.706871, 55.554239], + [37.706871, 55.55415], + [37.706781, 55.55415] ] ] } @@ -13400,11 +33208,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705545, 55.552351], - [37.705545, 55.552441], - [37.705704, 55.552441], - [37.705704, 55.552351], - [37.705545, 55.552351] + [37.706781, 55.554239], + [37.706781, 55.554329], + [37.706871, 55.554329], + [37.706871, 55.554239], + [37.706781, 55.554239] ] ] } @@ -13416,11 +33224,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705545, 55.552441], - [37.705545, 55.552531], - [37.705704, 55.552531], - [37.705704, 55.552441], - [37.705545, 55.552441] + [37.706781, 55.554329], + [37.706781, 55.554419], + [37.706871, 55.554419], + [37.706871, 55.554329], + [37.706781, 55.554329] ] ] } @@ -13432,11 +33240,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705545, 55.552531], - [37.705545, 55.552621], - [37.705704, 55.552621], - [37.705704, 55.552531], - [37.705545, 55.552531] + [37.706781, 55.554419], + [37.706781, 55.554509], + [37.706871, 55.554509], + [37.706871, 55.554419], + [37.706781, 55.554419] ] ] } @@ -13448,11 +33256,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705545, 55.552621], - [37.705545, 55.552711], - [37.705704, 55.552711], - [37.705704, 55.552621], - [37.705545, 55.552621] + [37.706781, 55.554509], + [37.706781, 55.554599], + [37.706871, 55.554599], + [37.706871, 55.554509], + [37.706781, 55.554509] ] ] } @@ -13464,11 +33272,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705545, 55.552711], - [37.705545, 55.552801], - [37.705704, 55.552801], - [37.705704, 55.552711], - [37.705545, 55.552711] + [37.706781, 55.554599], + [37.706781, 55.554689], + [37.706871, 55.554689], + [37.706871, 55.554599], + [37.706781, 55.554599] ] ] } @@ -13480,11 +33288,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705545, 55.552801], - [37.705545, 55.552891], - [37.705704, 55.552891], - [37.705704, 55.552801], - [37.705545, 55.552801] + [37.706781, 55.554689], + [37.706781, 55.554778], + [37.706871, 55.554778], + [37.706871, 55.554689], + [37.706781, 55.554689] ] ] } @@ -13496,11 +33304,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705545, 55.552891], - [37.705545, 55.552981], - [37.705704, 55.552981], - [37.705704, 55.552891], - [37.705545, 55.552891] + [37.706781, 55.554778], + [37.706781, 55.554868], + [37.706871, 55.554868], + [37.706871, 55.554778], + [37.706781, 55.554778] ] ] } @@ -13512,11 +33320,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705545, 55.552981], - [37.705545, 55.553071], - [37.705704, 55.553071], - [37.705704, 55.552981], - [37.705545, 55.552981] + [37.706781, 55.554868], + [37.706781, 55.554958], + [37.706871, 55.554958], + [37.706871, 55.554868], + [37.706781, 55.554868] ] ] } @@ -13528,11 +33336,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705545, 55.553071], - [37.705545, 55.553161], - [37.705704, 55.553161], - [37.705704, 55.553071], - [37.705545, 55.553071] + [37.706781, 55.554958], + [37.706781, 55.555048], + [37.706871, 55.555048], + [37.706871, 55.554958], + [37.706781, 55.554958] ] ] } @@ -13544,11 +33352,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705545, 55.553161], - [37.705545, 55.553251], - [37.705704, 55.553251], - [37.705704, 55.553161], - [37.705545, 55.553161] + [37.706781, 55.555048], + [37.706781, 55.555138], + [37.706871, 55.555138], + [37.706871, 55.555048], + [37.706781, 55.555048] ] ] } @@ -13560,11 +33368,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705545, 55.553251], - [37.705545, 55.553341], - [37.705704, 55.553341], - [37.705704, 55.553251], - [37.705545, 55.553251] + [37.706781, 55.555138], + [37.706781, 55.555228], + [37.706871, 55.555228], + [37.706871, 55.555138], + [37.706781, 55.555138] ] ] } @@ -13576,11 +33384,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705545, 55.553341], - [37.705545, 55.553431], - [37.705704, 55.553431], - [37.705704, 55.553341], - [37.705545, 55.553341] + [37.706781, 55.555228], + [37.706781, 55.555317], + [37.706871, 55.555317], + [37.706871, 55.555228], + [37.706781, 55.555228] ] ] } @@ -13592,11 +33400,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705545, 55.553431], - [37.705545, 55.55352], - [37.705704, 55.55352], - [37.705704, 55.553431], - [37.705545, 55.553431] + [37.706781, 55.555317], + [37.706781, 55.555407], + [37.706871, 55.555407], + [37.706871, 55.555317], + [37.706781, 55.555317] ] ] } @@ -13608,11 +33416,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705545, 55.55352], - [37.705545, 55.55361], - [37.705704, 55.55361], - [37.705704, 55.55352], - [37.705545, 55.55352] + [37.706781, 55.555407], + [37.706781, 55.555497], + [37.706871, 55.555497], + [37.706871, 55.555407], + [37.706781, 55.555407] ] ] } @@ -13624,11 +33432,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705545, 55.55361], - [37.705545, 55.5537], - [37.705704, 55.5537], - [37.705704, 55.55361], - [37.705545, 55.55361] + [37.706781, 55.555497], + [37.706781, 55.555587], + [37.706871, 55.555587], + [37.706871, 55.555497], + [37.706781, 55.555497] ] ] } @@ -13640,11 +33448,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705545, 55.5537], - [37.705545, 55.55379], - [37.705704, 55.55379], - [37.705704, 55.5537], - [37.705545, 55.5537] + [37.706781, 55.555587], + [37.706781, 55.555677], + [37.706871, 55.555677], + [37.706871, 55.555587], + [37.706781, 55.555587] ] ] } @@ -13656,11 +33464,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705545, 55.55379], - [37.705545, 55.55388], - [37.705704, 55.55388], - [37.705704, 55.55379], - [37.705545, 55.55379] + [37.706871, 55.551904], + [37.706871, 55.551994], + [37.706961, 55.551994], + [37.706961, 55.551904], + [37.706871, 55.551904] ] ] } @@ -13672,11 +33480,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705545, 55.55388], - [37.705545, 55.55397], - [37.705704, 55.55397], - [37.705704, 55.55388], - [37.705545, 55.55388] + [37.706871, 55.551994], + [37.706871, 55.552084], + [37.706961, 55.552084], + [37.706961, 55.551994], + [37.706871, 55.551994] ] ] } @@ -13688,11 +33496,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705545, 55.55397], - [37.705545, 55.55406], - [37.705704, 55.55406], - [37.705704, 55.55397], - [37.705545, 55.55397] + [37.706871, 55.552084], + [37.706871, 55.552173], + [37.706961, 55.552173], + [37.706961, 55.552084], + [37.706871, 55.552084] ] ] } @@ -13704,11 +33512,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705545, 55.55406], - [37.705545, 55.55415], - [37.705704, 55.55415], - [37.705704, 55.55406], - [37.705545, 55.55406] + [37.706871, 55.552173], + [37.706871, 55.552263], + [37.706961, 55.552263], + [37.706961, 55.552173], + [37.706871, 55.552173] ] ] } @@ -13720,11 +33528,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705545, 55.55415], - [37.705545, 55.55424], - [37.705704, 55.55424], - [37.705704, 55.55415], - [37.705545, 55.55415] + [37.706871, 55.552263], + [37.706871, 55.552353], + [37.706961, 55.552353], + [37.706961, 55.552263], + [37.706871, 55.552263] ] ] } @@ -13736,11 +33544,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705545, 55.55424], - [37.705545, 55.55433], - [37.705704, 55.55433], - [37.705704, 55.55424], - [37.705545, 55.55424] + [37.706871, 55.552353], + [37.706871, 55.552443], + [37.706961, 55.552443], + [37.706961, 55.552353], + [37.706871, 55.552353] ] ] } @@ -13752,11 +33560,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705545, 55.55433], - [37.705545, 55.55442], - [37.705704, 55.55442], - [37.705704, 55.55433], - [37.705545, 55.55433] + [37.706871, 55.552443], + [37.706871, 55.552533], + [37.706961, 55.552533], + [37.706961, 55.552443], + [37.706871, 55.552443] ] ] } @@ -13768,11 +33576,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705545, 55.55442], - [37.705545, 55.55451], - [37.705704, 55.55451], - [37.705704, 55.55442], - [37.705545, 55.55442] + [37.706871, 55.552533], + [37.706871, 55.552623], + [37.706961, 55.552623], + [37.706961, 55.552533], + [37.706871, 55.552533] ] ] } @@ -13784,11 +33592,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705545, 55.55451], - [37.705545, 55.5546], - [37.705704, 55.5546], - [37.705704, 55.55451], - [37.705545, 55.55451] + [37.706871, 55.552623], + [37.706871, 55.552712], + [37.706961, 55.552712], + [37.706961, 55.552623], + [37.706871, 55.552623] ] ] } @@ -13800,11 +33608,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705545, 55.5546], - [37.705545, 55.55469], - [37.705704, 55.55469], - [37.705704, 55.5546], - [37.705545, 55.5546] + [37.706871, 55.552712], + [37.706871, 55.552802], + [37.706961, 55.552802], + [37.706961, 55.552712], + [37.706871, 55.552712] ] ] } @@ -13816,11 +33624,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705545, 55.55469], - [37.705545, 55.55478], - [37.705704, 55.55478], - [37.705704, 55.55469], - [37.705545, 55.55469] + [37.706871, 55.552802], + [37.706871, 55.552892], + [37.706961, 55.552892], + [37.706961, 55.552802], + [37.706871, 55.552802] ] ] } @@ -13832,11 +33640,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705545, 55.55478], - [37.705545, 55.554869], - [37.705704, 55.554869], - [37.705704, 55.55478], - [37.705545, 55.55478] + [37.706871, 55.552892], + [37.706871, 55.552982], + [37.706961, 55.552982], + [37.706961, 55.552892], + [37.706871, 55.552892] ] ] } @@ -13848,11 +33656,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705545, 55.554869], - [37.705545, 55.554959], - [37.705704, 55.554959], - [37.705704, 55.554869], - [37.705545, 55.554869] + [37.706871, 55.552982], + [37.706871, 55.553072], + [37.706961, 55.553072], + [37.706961, 55.552982], + [37.706871, 55.552982] ] ] } @@ -13864,11 +33672,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705545, 55.554959], - [37.705545, 55.555049], - [37.705704, 55.555049], - [37.705704, 55.554959], - [37.705545, 55.554959] + [37.706871, 55.553072], + [37.706871, 55.553162], + [37.706961, 55.553162], + [37.706961, 55.553072], + [37.706871, 55.553072] ] ] } @@ -13880,11 +33688,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705545, 55.555049], - [37.705545, 55.555139], - [37.705704, 55.555139], - [37.705704, 55.555049], - [37.705545, 55.555049] + [37.706871, 55.553162], + [37.706871, 55.553251], + [37.706961, 55.553251], + [37.706961, 55.553162], + [37.706871, 55.553162] ] ] } @@ -13896,11 +33704,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705545, 55.555139], - [37.705545, 55.555229], - [37.705704, 55.555229], - [37.705704, 55.555139], - [37.705545, 55.555139] + [37.706871, 55.553251], + [37.706871, 55.553341], + [37.706961, 55.553341], + [37.706961, 55.553251], + [37.706871, 55.553251] ] ] } @@ -13912,11 +33720,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705545, 55.555229], - [37.705545, 55.555319], - [37.705704, 55.555319], - [37.705704, 55.555229], - [37.705545, 55.555229] + [37.706871, 55.553341], + [37.706871, 55.553431], + [37.706961, 55.553431], + [37.706961, 55.553341], + [37.706871, 55.553341] ] ] } @@ -13928,11 +33736,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705704, 55.551632], - [37.705704, 55.551722], - [37.705863, 55.551722], - [37.705863, 55.551632], - [37.705704, 55.551632] + [37.706871, 55.553431], + [37.706871, 55.553521], + [37.706961, 55.553521], + [37.706961, 55.553431], + [37.706871, 55.553431] ] ] } @@ -13944,11 +33752,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705704, 55.551722], - [37.705704, 55.551812], - [37.705863, 55.551812], - [37.705863, 55.551722], - [37.705704, 55.551722] + [37.706871, 55.553521], + [37.706871, 55.553611], + [37.706961, 55.553611], + [37.706961, 55.553521], + [37.706871, 55.553521] ] ] } @@ -13960,11 +33768,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705704, 55.551812], - [37.705704, 55.551902], - [37.705863, 55.551902], - [37.705863, 55.551812], - [37.705704, 55.551812] + [37.706871, 55.553611], + [37.706871, 55.5537], + [37.706961, 55.5537], + [37.706961, 55.553611], + [37.706871, 55.553611] ] ] } @@ -13976,11 +33784,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705704, 55.551902], - [37.705704, 55.551992], - [37.705863, 55.551992], - [37.705863, 55.551902], - [37.705704, 55.551902] + [37.706871, 55.5537], + [37.706871, 55.55379], + [37.706961, 55.55379], + [37.706961, 55.5537], + [37.706871, 55.5537] ] ] } @@ -13992,11 +33800,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705704, 55.551992], - [37.705704, 55.552082], - [37.705863, 55.552082], - [37.705863, 55.551992], - [37.705704, 55.551992] + [37.706871, 55.55379], + [37.706871, 55.55388], + [37.706961, 55.55388], + [37.706961, 55.55379], + [37.706871, 55.55379] ] ] } @@ -14008,11 +33816,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705704, 55.552082], - [37.705704, 55.552171], - [37.705863, 55.552171], - [37.705863, 55.552082], - [37.705704, 55.552082] + [37.706871, 55.55388], + [37.706871, 55.55397], + [37.706961, 55.55397], + [37.706961, 55.55388], + [37.706871, 55.55388] ] ] } @@ -14024,11 +33832,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705704, 55.552171], - [37.705704, 55.552261], - [37.705863, 55.552261], - [37.705863, 55.552171], - [37.705704, 55.552171] + [37.706871, 55.55397], + [37.706871, 55.55406], + [37.706961, 55.55406], + [37.706961, 55.55397], + [37.706871, 55.55397] ] ] } @@ -14040,11 +33848,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705704, 55.552261], - [37.705704, 55.552351], - [37.705863, 55.552351], - [37.705863, 55.552261], - [37.705704, 55.552261] + [37.706871, 55.55406], + [37.706871, 55.55415], + [37.706961, 55.55415], + [37.706961, 55.55406], + [37.706871, 55.55406] ] ] } @@ -14056,11 +33864,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705704, 55.552351], - [37.705704, 55.552441], - [37.705863, 55.552441], - [37.705863, 55.552351], - [37.705704, 55.552351] + [37.706871, 55.55415], + [37.706871, 55.554239], + [37.706961, 55.554239], + [37.706961, 55.55415], + [37.706871, 55.55415] ] ] } @@ -14072,11 +33880,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705704, 55.552441], - [37.705704, 55.552531], - [37.705863, 55.552531], - [37.705863, 55.552441], - [37.705704, 55.552441] + [37.706871, 55.554239], + [37.706871, 55.554329], + [37.706961, 55.554329], + [37.706961, 55.554239], + [37.706871, 55.554239] ] ] } @@ -14088,11 +33896,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705704, 55.552531], - [37.705704, 55.552621], - [37.705863, 55.552621], - [37.705863, 55.552531], - [37.705704, 55.552531] + [37.706871, 55.554329], + [37.706871, 55.554419], + [37.706961, 55.554419], + [37.706961, 55.554329], + [37.706871, 55.554329] ] ] } @@ -14104,11 +33912,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705704, 55.552621], - [37.705704, 55.552711], - [37.705863, 55.552711], - [37.705863, 55.552621], - [37.705704, 55.552621] + [37.706871, 55.554419], + [37.706871, 55.554509], + [37.706961, 55.554509], + [37.706961, 55.554419], + [37.706871, 55.554419] ] ] } @@ -14120,11 +33928,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705704, 55.552711], - [37.705704, 55.552801], - [37.705863, 55.552801], - [37.705863, 55.552711], - [37.705704, 55.552711] + [37.706871, 55.554509], + [37.706871, 55.554599], + [37.706961, 55.554599], + [37.706961, 55.554509], + [37.706871, 55.554509] ] ] } @@ -14136,11 +33944,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705704, 55.552801], - [37.705704, 55.552891], - [37.705863, 55.552891], - [37.705863, 55.552801], - [37.705704, 55.552801] + [37.706871, 55.554599], + [37.706871, 55.554689], + [37.706961, 55.554689], + [37.706961, 55.554599], + [37.706871, 55.554599] ] ] } @@ -14152,11 +33960,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705704, 55.552891], - [37.705704, 55.552981], - [37.705863, 55.552981], - [37.705863, 55.552891], - [37.705704, 55.552891] + [37.706871, 55.554689], + [37.706871, 55.554778], + [37.706961, 55.554778], + [37.706961, 55.554689], + [37.706871, 55.554689] ] ] } @@ -14168,11 +33976,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705704, 55.552981], - [37.705704, 55.553071], - [37.705863, 55.553071], - [37.705863, 55.552981], - [37.705704, 55.552981] + [37.706871, 55.554778], + [37.706871, 55.554868], + [37.706961, 55.554868], + [37.706961, 55.554778], + [37.706871, 55.554778] ] ] } @@ -14184,11 +33992,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705704, 55.553071], - [37.705704, 55.553161], - [37.705863, 55.553161], - [37.705863, 55.553071], - [37.705704, 55.553071] + [37.706871, 55.554868], + [37.706871, 55.554958], + [37.706961, 55.554958], + [37.706961, 55.554868], + [37.706871, 55.554868] ] ] } @@ -14200,11 +34008,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705704, 55.553161], - [37.705704, 55.553251], - [37.705863, 55.553251], - [37.705863, 55.553161], - [37.705704, 55.553161] + [37.706871, 55.554958], + [37.706871, 55.555048], + [37.706961, 55.555048], + [37.706961, 55.554958], + [37.706871, 55.554958] ] ] } @@ -14216,11 +34024,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705704, 55.553251], - [37.705704, 55.553341], - [37.705863, 55.553341], - [37.705863, 55.553251], - [37.705704, 55.553251] + [37.706871, 55.555048], + [37.706871, 55.555138], + [37.706961, 55.555138], + [37.706961, 55.555048], + [37.706871, 55.555048] ] ] } @@ -14232,11 +34040,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705704, 55.553341], - [37.705704, 55.553431], - [37.705863, 55.553431], - [37.705863, 55.553341], - [37.705704, 55.553341] + [37.706871, 55.555138], + [37.706871, 55.555228], + [37.706961, 55.555228], + [37.706961, 55.555138], + [37.706871, 55.555138] ] ] } @@ -14248,11 +34056,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705704, 55.553431], - [37.705704, 55.55352], - [37.705863, 55.55352], - [37.705863, 55.553431], - [37.705704, 55.553431] + [37.706871, 55.555228], + [37.706871, 55.555317], + [37.706961, 55.555317], + [37.706961, 55.555228], + [37.706871, 55.555228] ] ] } @@ -14264,11 +34072,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705704, 55.55352], - [37.705704, 55.55361], - [37.705863, 55.55361], - [37.705863, 55.55352], - [37.705704, 55.55352] + [37.706871, 55.555317], + [37.706871, 55.555407], + [37.706961, 55.555407], + [37.706961, 55.555317], + [37.706871, 55.555317] ] ] } @@ -14280,11 +34088,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705704, 55.55361], - [37.705704, 55.5537], - [37.705863, 55.5537], - [37.705863, 55.55361], - [37.705704, 55.55361] + [37.706871, 55.555407], + [37.706871, 55.555497], + [37.706961, 55.555497], + [37.706961, 55.555407], + [37.706871, 55.555407] ] ] } @@ -14296,11 +34104,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705704, 55.5537], - [37.705704, 55.55379], - [37.705863, 55.55379], - [37.705863, 55.5537], - [37.705704, 55.5537] + [37.706871, 55.555497], + [37.706871, 55.555587], + [37.706961, 55.555587], + [37.706961, 55.555497], + [37.706871, 55.555497] ] ] } @@ -14312,11 +34120,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705704, 55.55379], - [37.705704, 55.55388], - [37.705863, 55.55388], - [37.705863, 55.55379], - [37.705704, 55.55379] + [37.706871, 55.555587], + [37.706871, 55.555677], + [37.706961, 55.555677], + [37.706961, 55.555587], + [37.706871, 55.555587] ] ] } @@ -14328,11 +34136,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705704, 55.55388], - [37.705704, 55.55397], - [37.705863, 55.55397], - [37.705863, 55.55388], - [37.705704, 55.55388] + [37.706961, 55.551994], + [37.706961, 55.552084], + [37.707051, 55.552084], + [37.707051, 55.551994], + [37.706961, 55.551994] ] ] } @@ -14344,11 +34152,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705704, 55.55397], - [37.705704, 55.55406], - [37.705863, 55.55406], - [37.705863, 55.55397], - [37.705704, 55.55397] + [37.706961, 55.552084], + [37.706961, 55.552173], + [37.707051, 55.552173], + [37.707051, 55.552084], + [37.706961, 55.552084] ] ] } @@ -14360,11 +34168,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705704, 55.55406], - [37.705704, 55.55415], - [37.705863, 55.55415], - [37.705863, 55.55406], - [37.705704, 55.55406] + [37.706961, 55.552173], + [37.706961, 55.552263], + [37.707051, 55.552263], + [37.707051, 55.552173], + [37.706961, 55.552173] ] ] } @@ -14376,11 +34184,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705704, 55.55415], - [37.705704, 55.55424], - [37.705863, 55.55424], - [37.705863, 55.55415], - [37.705704, 55.55415] + [37.706961, 55.552263], + [37.706961, 55.552353], + [37.707051, 55.552353], + [37.707051, 55.552263], + [37.706961, 55.552263] ] ] } @@ -14392,11 +34200,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705704, 55.55424], - [37.705704, 55.55433], - [37.705863, 55.55433], - [37.705863, 55.55424], - [37.705704, 55.55424] + [37.706961, 55.552353], + [37.706961, 55.552443], + [37.707051, 55.552443], + [37.707051, 55.552353], + [37.706961, 55.552353] ] ] } @@ -14408,11 +34216,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705704, 55.55433], - [37.705704, 55.55442], - [37.705863, 55.55442], - [37.705863, 55.55433], - [37.705704, 55.55433] + [37.706961, 55.552443], + [37.706961, 55.552533], + [37.707051, 55.552533], + [37.707051, 55.552443], + [37.706961, 55.552443] ] ] } @@ -14424,11 +34232,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705704, 55.55442], - [37.705704, 55.55451], - [37.705863, 55.55451], - [37.705863, 55.55442], - [37.705704, 55.55442] + [37.706961, 55.552533], + [37.706961, 55.552623], + [37.707051, 55.552623], + [37.707051, 55.552533], + [37.706961, 55.552533] ] ] } @@ -14440,11 +34248,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705704, 55.55451], - [37.705704, 55.5546], - [37.705863, 55.5546], - [37.705863, 55.55451], - [37.705704, 55.55451] + [37.706961, 55.552623], + [37.706961, 55.552712], + [37.707051, 55.552712], + [37.707051, 55.552623], + [37.706961, 55.552623] ] ] } @@ -14456,11 +34264,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705704, 55.5546], - [37.705704, 55.55469], - [37.705863, 55.55469], - [37.705863, 55.5546], - [37.705704, 55.5546] + [37.706961, 55.552712], + [37.706961, 55.552802], + [37.707051, 55.552802], + [37.707051, 55.552712], + [37.706961, 55.552712] ] ] } @@ -14472,11 +34280,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705704, 55.55469], - [37.705704, 55.55478], - [37.705863, 55.55478], - [37.705863, 55.55469], - [37.705704, 55.55469] + [37.706961, 55.552802], + [37.706961, 55.552892], + [37.707051, 55.552892], + [37.707051, 55.552802], + [37.706961, 55.552802] ] ] } @@ -14488,11 +34296,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705704, 55.55478], - [37.705704, 55.554869], - [37.705863, 55.554869], - [37.705863, 55.55478], - [37.705704, 55.55478] + [37.706961, 55.552892], + [37.706961, 55.552982], + [37.707051, 55.552982], + [37.707051, 55.552892], + [37.706961, 55.552892] ] ] } @@ -14504,11 +34312,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705704, 55.554869], - [37.705704, 55.554959], - [37.705863, 55.554959], - [37.705863, 55.554869], - [37.705704, 55.554869] + [37.706961, 55.552982], + [37.706961, 55.553072], + [37.707051, 55.553072], + [37.707051, 55.552982], + [37.706961, 55.552982] ] ] } @@ -14520,11 +34328,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705704, 55.554959], - [37.705704, 55.555049], - [37.705863, 55.555049], - [37.705863, 55.554959], - [37.705704, 55.554959] + [37.706961, 55.553072], + [37.706961, 55.553162], + [37.707051, 55.553162], + [37.707051, 55.553072], + [37.706961, 55.553072] ] ] } @@ -14536,11 +34344,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705704, 55.555049], - [37.705704, 55.555139], - [37.705863, 55.555139], - [37.705863, 55.555049], - [37.705704, 55.555049] + [37.706961, 55.553162], + [37.706961, 55.553251], + [37.707051, 55.553251], + [37.707051, 55.553162], + [37.706961, 55.553162] ] ] } @@ -14552,11 +34360,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705704, 55.555139], - [37.705704, 55.555229], - [37.705863, 55.555229], - [37.705863, 55.555139], - [37.705704, 55.555139] + [37.706961, 55.553251], + [37.706961, 55.553341], + [37.707051, 55.553341], + [37.707051, 55.553251], + [37.706961, 55.553251] ] ] } @@ -14568,11 +34376,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705704, 55.555229], - [37.705704, 55.555319], - [37.705863, 55.555319], - [37.705863, 55.555229], - [37.705704, 55.555229] + [37.706961, 55.553341], + [37.706961, 55.553431], + [37.707051, 55.553431], + [37.707051, 55.553341], + [37.706961, 55.553341] ] ] } @@ -14584,11 +34392,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705704, 55.555319], - [37.705704, 55.555409], - [37.705863, 55.555409], - [37.705863, 55.555319], - [37.705704, 55.555319] + [37.706961, 55.553431], + [37.706961, 55.553521], + [37.707051, 55.553521], + [37.707051, 55.553431], + [37.706961, 55.553431] ] ] } @@ -14600,11 +34408,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705863, 55.551632], - [37.705863, 55.551722], - [37.706022, 55.551722], - [37.706022, 55.551632], - [37.705863, 55.551632] + [37.706961, 55.553521], + [37.706961, 55.553611], + [37.707051, 55.553611], + [37.707051, 55.553521], + [37.706961, 55.553521] ] ] } @@ -14616,11 +34424,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705863, 55.551722], - [37.705863, 55.551812], - [37.706022, 55.551812], - [37.706022, 55.551722], - [37.705863, 55.551722] + [37.706961, 55.553611], + [37.706961, 55.5537], + [37.707051, 55.5537], + [37.707051, 55.553611], + [37.706961, 55.553611] ] ] } @@ -14632,11 +34440,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705863, 55.551812], - [37.705863, 55.551902], - [37.706022, 55.551902], - [37.706022, 55.551812], - [37.705863, 55.551812] + [37.706961, 55.5537], + [37.706961, 55.55379], + [37.707051, 55.55379], + [37.707051, 55.5537], + [37.706961, 55.5537] ] ] } @@ -14648,11 +34456,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705863, 55.551902], - [37.705863, 55.551992], - [37.706022, 55.551992], - [37.706022, 55.551902], - [37.705863, 55.551902] + [37.706961, 55.55379], + [37.706961, 55.55388], + [37.707051, 55.55388], + [37.707051, 55.55379], + [37.706961, 55.55379] ] ] } @@ -14664,11 +34472,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705863, 55.551992], - [37.705863, 55.552082], - [37.706022, 55.552082], - [37.706022, 55.551992], - [37.705863, 55.551992] + [37.706961, 55.55388], + [37.706961, 55.55397], + [37.707051, 55.55397], + [37.707051, 55.55388], + [37.706961, 55.55388] ] ] } @@ -14680,11 +34488,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705863, 55.552082], - [37.705863, 55.552171], - [37.706022, 55.552171], - [37.706022, 55.552082], - [37.705863, 55.552082] + [37.706961, 55.55397], + [37.706961, 55.55406], + [37.707051, 55.55406], + [37.707051, 55.55397], + [37.706961, 55.55397] ] ] } @@ -14696,11 +34504,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705863, 55.552171], - [37.705863, 55.552261], - [37.706022, 55.552261], - [37.706022, 55.552171], - [37.705863, 55.552171] + [37.706961, 55.55406], + [37.706961, 55.55415], + [37.707051, 55.55415], + [37.707051, 55.55406], + [37.706961, 55.55406] ] ] } @@ -14712,11 +34520,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705863, 55.552261], - [37.705863, 55.552351], - [37.706022, 55.552351], - [37.706022, 55.552261], - [37.705863, 55.552261] + [37.706961, 55.55415], + [37.706961, 55.554239], + [37.707051, 55.554239], + [37.707051, 55.55415], + [37.706961, 55.55415] ] ] } @@ -14728,11 +34536,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705863, 55.552351], - [37.705863, 55.552441], - [37.706022, 55.552441], - [37.706022, 55.552351], - [37.705863, 55.552351] + [37.706961, 55.554239], + [37.706961, 55.554329], + [37.707051, 55.554329], + [37.707051, 55.554239], + [37.706961, 55.554239] ] ] } @@ -14744,11 +34552,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705863, 55.552441], - [37.705863, 55.552531], - [37.706022, 55.552531], - [37.706022, 55.552441], - [37.705863, 55.552441] + [37.706961, 55.554329], + [37.706961, 55.554419], + [37.707051, 55.554419], + [37.707051, 55.554329], + [37.706961, 55.554329] ] ] } @@ -14760,11 +34568,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705863, 55.552531], - [37.705863, 55.552621], - [37.706022, 55.552621], - [37.706022, 55.552531], - [37.705863, 55.552531] + [37.706961, 55.554419], + [37.706961, 55.554509], + [37.707051, 55.554509], + [37.707051, 55.554419], + [37.706961, 55.554419] ] ] } @@ -14776,11 +34584,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705863, 55.552621], - [37.705863, 55.552711], - [37.706022, 55.552711], - [37.706022, 55.552621], - [37.705863, 55.552621] + [37.706961, 55.554509], + [37.706961, 55.554599], + [37.707051, 55.554599], + [37.707051, 55.554509], + [37.706961, 55.554509] ] ] } @@ -14792,11 +34600,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705863, 55.552711], - [37.705863, 55.552801], - [37.706022, 55.552801], - [37.706022, 55.552711], - [37.705863, 55.552711] + [37.706961, 55.554599], + [37.706961, 55.554689], + [37.707051, 55.554689], + [37.707051, 55.554599], + [37.706961, 55.554599] ] ] } @@ -14808,11 +34616,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705863, 55.552801], - [37.705863, 55.552891], - [37.706022, 55.552891], - [37.706022, 55.552801], - [37.705863, 55.552801] + [37.706961, 55.554689], + [37.706961, 55.554778], + [37.707051, 55.554778], + [37.707051, 55.554689], + [37.706961, 55.554689] ] ] } @@ -14824,11 +34632,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705863, 55.552891], - [37.705863, 55.552981], - [37.706022, 55.552981], - [37.706022, 55.552891], - [37.705863, 55.552891] + [37.706961, 55.554778], + [37.706961, 55.554868], + [37.707051, 55.554868], + [37.707051, 55.554778], + [37.706961, 55.554778] ] ] } @@ -14840,11 +34648,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705863, 55.552981], - [37.705863, 55.553071], - [37.706022, 55.553071], - [37.706022, 55.552981], - [37.705863, 55.552981] + [37.706961, 55.554868], + [37.706961, 55.554958], + [37.707051, 55.554958], + [37.707051, 55.554868], + [37.706961, 55.554868] ] ] } @@ -14856,11 +34664,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705863, 55.553071], - [37.705863, 55.553161], - [37.706022, 55.553161], - [37.706022, 55.553071], - [37.705863, 55.553071] + [37.706961, 55.554958], + [37.706961, 55.555048], + [37.707051, 55.555048], + [37.707051, 55.554958], + [37.706961, 55.554958] ] ] } @@ -14872,11 +34680,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705863, 55.553161], - [37.705863, 55.553251], - [37.706022, 55.553251], - [37.706022, 55.553161], - [37.705863, 55.553161] + [37.706961, 55.555048], + [37.706961, 55.555138], + [37.707051, 55.555138], + [37.707051, 55.555048], + [37.706961, 55.555048] ] ] } @@ -14888,11 +34696,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705863, 55.553251], - [37.705863, 55.553341], - [37.706022, 55.553341], - [37.706022, 55.553251], - [37.705863, 55.553251] + [37.706961, 55.555138], + [37.706961, 55.555228], + [37.707051, 55.555228], + [37.707051, 55.555138], + [37.706961, 55.555138] ] ] } @@ -14904,11 +34712,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705863, 55.553341], - [37.705863, 55.553431], - [37.706022, 55.553431], - [37.706022, 55.553341], - [37.705863, 55.553341] + [37.706961, 55.555228], + [37.706961, 55.555317], + [37.707051, 55.555317], + [37.707051, 55.555228], + [37.706961, 55.555228] ] ] } @@ -14920,11 +34728,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705863, 55.553431], - [37.705863, 55.55352], - [37.706022, 55.55352], - [37.706022, 55.553431], - [37.705863, 55.553431] + [37.706961, 55.555317], + [37.706961, 55.555407], + [37.707051, 55.555407], + [37.707051, 55.555317], + [37.706961, 55.555317] ] ] } @@ -14936,11 +34744,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705863, 55.55352], - [37.705863, 55.55361], - [37.706022, 55.55361], - [37.706022, 55.55352], - [37.705863, 55.55352] + [37.706961, 55.555407], + [37.706961, 55.555497], + [37.707051, 55.555497], + [37.707051, 55.555407], + [37.706961, 55.555407] ] ] } @@ -14952,11 +34760,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705863, 55.55361], - [37.705863, 55.5537], - [37.706022, 55.5537], - [37.706022, 55.55361], - [37.705863, 55.55361] + [37.706961, 55.555497], + [37.706961, 55.555587], + [37.707051, 55.555587], + [37.707051, 55.555497], + [37.706961, 55.555497] ] ] } @@ -14968,11 +34776,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705863, 55.5537], - [37.705863, 55.55379], - [37.706022, 55.55379], - [37.706022, 55.5537], - [37.705863, 55.5537] + [37.706961, 55.555587], + [37.706961, 55.555677], + [37.707051, 55.555677], + [37.707051, 55.555587], + [37.706961, 55.555587] ] ] } @@ -14984,11 +34792,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705863, 55.55379], - [37.705863, 55.55388], - [37.706022, 55.55388], - [37.706022, 55.55379], - [37.705863, 55.55379] + [37.707051, 55.552084], + [37.707051, 55.552173], + [37.707141, 55.552173], + [37.707141, 55.552084], + [37.707051, 55.552084] ] ] } @@ -15000,11 +34808,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705863, 55.55388], - [37.705863, 55.55397], - [37.706022, 55.55397], - [37.706022, 55.55388], - [37.705863, 55.55388] + [37.707051, 55.552173], + [37.707051, 55.552263], + [37.707141, 55.552263], + [37.707141, 55.552173], + [37.707051, 55.552173] ] ] } @@ -15016,11 +34824,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705863, 55.55397], - [37.705863, 55.55406], - [37.706022, 55.55406], - [37.706022, 55.55397], - [37.705863, 55.55397] + [37.707051, 55.552263], + [37.707051, 55.552353], + [37.707141, 55.552353], + [37.707141, 55.552263], + [37.707051, 55.552263] ] ] } @@ -15032,11 +34840,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705863, 55.55406], - [37.705863, 55.55415], - [37.706022, 55.55415], - [37.706022, 55.55406], - [37.705863, 55.55406] + [37.707051, 55.552353], + [37.707051, 55.552443], + [37.707141, 55.552443], + [37.707141, 55.552353], + [37.707051, 55.552353] ] ] } @@ -15048,11 +34856,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705863, 55.55415], - [37.705863, 55.55424], - [37.706022, 55.55424], - [37.706022, 55.55415], - [37.705863, 55.55415] + [37.707051, 55.552443], + [37.707051, 55.552533], + [37.707141, 55.552533], + [37.707141, 55.552443], + [37.707051, 55.552443] ] ] } @@ -15064,11 +34872,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705863, 55.55424], - [37.705863, 55.55433], - [37.706022, 55.55433], - [37.706022, 55.55424], - [37.705863, 55.55424] + [37.707051, 55.552533], + [37.707051, 55.552623], + [37.707141, 55.552623], + [37.707141, 55.552533], + [37.707051, 55.552533] ] ] } @@ -15080,11 +34888,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705863, 55.55433], - [37.705863, 55.55442], - [37.706022, 55.55442], - [37.706022, 55.55433], - [37.705863, 55.55433] + [37.707051, 55.552623], + [37.707051, 55.552712], + [37.707141, 55.552712], + [37.707141, 55.552623], + [37.707051, 55.552623] ] ] } @@ -15096,11 +34904,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705863, 55.55442], - [37.705863, 55.55451], - [37.706022, 55.55451], - [37.706022, 55.55442], - [37.705863, 55.55442] + [37.707051, 55.552712], + [37.707051, 55.552802], + [37.707141, 55.552802], + [37.707141, 55.552712], + [37.707051, 55.552712] ] ] } @@ -15112,11 +34920,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705863, 55.55451], - [37.705863, 55.5546], - [37.706022, 55.5546], - [37.706022, 55.55451], - [37.705863, 55.55451] + [37.707051, 55.552802], + [37.707051, 55.552892], + [37.707141, 55.552892], + [37.707141, 55.552802], + [37.707051, 55.552802] ] ] } @@ -15128,11 +34936,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705863, 55.5546], - [37.705863, 55.55469], - [37.706022, 55.55469], - [37.706022, 55.5546], - [37.705863, 55.5546] + [37.707051, 55.552892], + [37.707051, 55.552982], + [37.707141, 55.552982], + [37.707141, 55.552892], + [37.707051, 55.552892] ] ] } @@ -15144,11 +34952,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705863, 55.55469], - [37.705863, 55.55478], - [37.706022, 55.55478], - [37.706022, 55.55469], - [37.705863, 55.55469] + [37.707051, 55.552982], + [37.707051, 55.553072], + [37.707141, 55.553072], + [37.707141, 55.552982], + [37.707051, 55.552982] ] ] } @@ -15160,11 +34968,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705863, 55.55478], - [37.705863, 55.554869], - [37.706022, 55.554869], - [37.706022, 55.55478], - [37.705863, 55.55478] + [37.707051, 55.553072], + [37.707051, 55.553162], + [37.707141, 55.553162], + [37.707141, 55.553072], + [37.707051, 55.553072] ] ] } @@ -15176,11 +34984,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705863, 55.554869], - [37.705863, 55.554959], - [37.706022, 55.554959], - [37.706022, 55.554869], - [37.705863, 55.554869] + [37.707051, 55.553162], + [37.707051, 55.553251], + [37.707141, 55.553251], + [37.707141, 55.553162], + [37.707051, 55.553162] ] ] } @@ -15192,11 +35000,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705863, 55.554959], - [37.705863, 55.555049], - [37.706022, 55.555049], - [37.706022, 55.554959], - [37.705863, 55.554959] + [37.707051, 55.553251], + [37.707051, 55.553341], + [37.707141, 55.553341], + [37.707141, 55.553251], + [37.707051, 55.553251] ] ] } @@ -15208,11 +35016,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705863, 55.555049], - [37.705863, 55.555139], - [37.706022, 55.555139], - [37.706022, 55.555049], - [37.705863, 55.555049] + [37.707051, 55.553341], + [37.707051, 55.553431], + [37.707141, 55.553431], + [37.707141, 55.553341], + [37.707051, 55.553341] ] ] } @@ -15224,11 +35032,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705863, 55.555139], - [37.705863, 55.555229], - [37.706022, 55.555229], - [37.706022, 55.555139], - [37.705863, 55.555139] + [37.707051, 55.553431], + [37.707051, 55.553521], + [37.707141, 55.553521], + [37.707141, 55.553431], + [37.707051, 55.553431] ] ] } @@ -15240,11 +35048,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705863, 55.555229], - [37.705863, 55.555319], - [37.706022, 55.555319], - [37.706022, 55.555229], - [37.705863, 55.555229] + [37.707051, 55.553521], + [37.707051, 55.553611], + [37.707141, 55.553611], + [37.707141, 55.553521], + [37.707051, 55.553521] ] ] } @@ -15256,11 +35064,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705863, 55.555319], - [37.705863, 55.555409], - [37.706022, 55.555409], - [37.706022, 55.555319], - [37.705863, 55.555319] + [37.707051, 55.553611], + [37.707051, 55.5537], + [37.707141, 55.5537], + [37.707141, 55.553611], + [37.707051, 55.553611] ] ] } @@ -15272,11 +35080,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706022, 55.551542], - [37.706022, 55.551632], - [37.706181, 55.551632], - [37.706181, 55.551542], - [37.706022, 55.551542] + [37.707051, 55.5537], + [37.707051, 55.55379], + [37.707141, 55.55379], + [37.707141, 55.5537], + [37.707051, 55.5537] ] ] } @@ -15288,11 +35096,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706022, 55.551632], - [37.706022, 55.551722], - [37.706181, 55.551722], - [37.706181, 55.551632], - [37.706022, 55.551632] + [37.707051, 55.55379], + [37.707051, 55.55388], + [37.707141, 55.55388], + [37.707141, 55.55379], + [37.707051, 55.55379] ] ] } @@ -15304,11 +35112,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706022, 55.551722], - [37.706022, 55.551812], - [37.706181, 55.551812], - [37.706181, 55.551722], - [37.706022, 55.551722] + [37.707051, 55.55388], + [37.707051, 55.55397], + [37.707141, 55.55397], + [37.707141, 55.55388], + [37.707051, 55.55388] ] ] } @@ -15320,11 +35128,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706022, 55.551812], - [37.706022, 55.551902], - [37.706181, 55.551902], - [37.706181, 55.551812], - [37.706022, 55.551812] + [37.707051, 55.55397], + [37.707051, 55.55406], + [37.707141, 55.55406], + [37.707141, 55.55397], + [37.707051, 55.55397] ] ] } @@ -15336,11 +35144,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706022, 55.551902], - [37.706022, 55.551992], - [37.706181, 55.551992], - [37.706181, 55.551902], - [37.706022, 55.551902] + [37.707051, 55.55406], + [37.707051, 55.55415], + [37.707141, 55.55415], + [37.707141, 55.55406], + [37.707051, 55.55406] ] ] } @@ -15352,11 +35160,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706022, 55.551992], - [37.706022, 55.552082], - [37.706181, 55.552082], - [37.706181, 55.551992], - [37.706022, 55.551992] + [37.707051, 55.55415], + [37.707051, 55.554239], + [37.707141, 55.554239], + [37.707141, 55.55415], + [37.707051, 55.55415] ] ] } @@ -15368,11 +35176,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706022, 55.552082], - [37.706022, 55.552171], - [37.706181, 55.552171], - [37.706181, 55.552082], - [37.706022, 55.552082] + [37.707051, 55.554239], + [37.707051, 55.554329], + [37.707141, 55.554329], + [37.707141, 55.554239], + [37.707051, 55.554239] ] ] } @@ -15384,11 +35192,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706022, 55.552171], - [37.706022, 55.552261], - [37.706181, 55.552261], - [37.706181, 55.552171], - [37.706022, 55.552171] + [37.707051, 55.554329], + [37.707051, 55.554419], + [37.707141, 55.554419], + [37.707141, 55.554329], + [37.707051, 55.554329] ] ] } @@ -15400,11 +35208,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706022, 55.552261], - [37.706022, 55.552351], - [37.706181, 55.552351], - [37.706181, 55.552261], - [37.706022, 55.552261] + [37.707051, 55.554419], + [37.707051, 55.554509], + [37.707141, 55.554509], + [37.707141, 55.554419], + [37.707051, 55.554419] ] ] } @@ -15416,11 +35224,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706022, 55.552351], - [37.706022, 55.552441], - [37.706181, 55.552441], - [37.706181, 55.552351], - [37.706022, 55.552351] + [37.707051, 55.554509], + [37.707051, 55.554599], + [37.707141, 55.554599], + [37.707141, 55.554509], + [37.707051, 55.554509] ] ] } @@ -15432,11 +35240,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706022, 55.552441], - [37.706022, 55.552531], - [37.706181, 55.552531], - [37.706181, 55.552441], - [37.706022, 55.552441] + [37.707051, 55.554599], + [37.707051, 55.554689], + [37.707141, 55.554689], + [37.707141, 55.554599], + [37.707051, 55.554599] ] ] } @@ -15448,11 +35256,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706022, 55.552531], - [37.706022, 55.552621], - [37.706181, 55.552621], - [37.706181, 55.552531], - [37.706022, 55.552531] + [37.707051, 55.554689], + [37.707051, 55.554778], + [37.707141, 55.554778], + [37.707141, 55.554689], + [37.707051, 55.554689] ] ] } @@ -15464,11 +35272,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706022, 55.552621], - [37.706022, 55.552711], - [37.706181, 55.552711], - [37.706181, 55.552621], - [37.706022, 55.552621] + [37.707051, 55.554778], + [37.707051, 55.554868], + [37.707141, 55.554868], + [37.707141, 55.554778], + [37.707051, 55.554778] ] ] } @@ -15480,11 +35288,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706022, 55.552711], - [37.706022, 55.552801], - [37.706181, 55.552801], - [37.706181, 55.552711], - [37.706022, 55.552711] + [37.707051, 55.554868], + [37.707051, 55.554958], + [37.707141, 55.554958], + [37.707141, 55.554868], + [37.707051, 55.554868] ] ] } @@ -15496,11 +35304,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706022, 55.552801], - [37.706022, 55.552891], - [37.706181, 55.552891], - [37.706181, 55.552801], - [37.706022, 55.552801] + [37.707051, 55.554958], + [37.707051, 55.555048], + [37.707141, 55.555048], + [37.707141, 55.554958], + [37.707051, 55.554958] ] ] } @@ -15512,11 +35320,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706022, 55.552891], - [37.706022, 55.552981], - [37.706181, 55.552981], - [37.706181, 55.552891], - [37.706022, 55.552891] + [37.707051, 55.555048], + [37.707051, 55.555138], + [37.707141, 55.555138], + [37.707141, 55.555048], + [37.707051, 55.555048] ] ] } @@ -15528,11 +35336,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706022, 55.552981], - [37.706022, 55.553071], - [37.706181, 55.553071], - [37.706181, 55.552981], - [37.706022, 55.552981] + [37.707051, 55.555138], + [37.707051, 55.555228], + [37.707141, 55.555228], + [37.707141, 55.555138], + [37.707051, 55.555138] ] ] } @@ -15544,11 +35352,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706022, 55.553071], - [37.706022, 55.553161], - [37.706181, 55.553161], - [37.706181, 55.553071], - [37.706022, 55.553071] + [37.707051, 55.555228], + [37.707051, 55.555317], + [37.707141, 55.555317], + [37.707141, 55.555228], + [37.707051, 55.555228] ] ] } @@ -15560,11 +35368,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706022, 55.553161], - [37.706022, 55.553251], - [37.706181, 55.553251], - [37.706181, 55.553161], - [37.706022, 55.553161] + [37.707051, 55.555317], + [37.707051, 55.555407], + [37.707141, 55.555407], + [37.707141, 55.555317], + [37.707051, 55.555317] ] ] } @@ -15576,11 +35384,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706022, 55.553251], - [37.706022, 55.553341], - [37.706181, 55.553341], - [37.706181, 55.553251], - [37.706022, 55.553251] + [37.707051, 55.555407], + [37.707051, 55.555497], + [37.707141, 55.555497], + [37.707141, 55.555407], + [37.707051, 55.555407] ] ] } @@ -15592,11 +35400,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706022, 55.553341], - [37.706022, 55.553431], - [37.706181, 55.553431], - [37.706181, 55.553341], - [37.706022, 55.553341] + [37.707051, 55.555497], + [37.707051, 55.555587], + [37.707141, 55.555587], + [37.707141, 55.555497], + [37.707051, 55.555497] ] ] } @@ -15608,11 +35416,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706022, 55.553431], - [37.706022, 55.55352], - [37.706181, 55.55352], - [37.706181, 55.553431], - [37.706022, 55.553431] + [37.707051, 55.555587], + [37.707051, 55.555677], + [37.707141, 55.555677], + [37.707141, 55.555587], + [37.707051, 55.555587] ] ] } @@ -15624,11 +35432,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706022, 55.55352], - [37.706022, 55.55361], - [37.706181, 55.55361], - [37.706181, 55.55352], - [37.706022, 55.55352] + [37.707051, 55.555677], + [37.707051, 55.555767], + [37.707141, 55.555767], + [37.707141, 55.555677], + [37.707051, 55.555677] ] ] } @@ -15640,11 +35448,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706022, 55.55361], - [37.706022, 55.5537], - [37.706181, 55.5537], - [37.706181, 55.55361], - [37.706022, 55.55361] + [37.707141, 55.552263], + [37.707141, 55.552353], + [37.707231, 55.552353], + [37.707231, 55.552263], + [37.707141, 55.552263] ] ] } @@ -15656,11 +35464,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706022, 55.5537], - [37.706022, 55.55379], - [37.706181, 55.55379], - [37.706181, 55.5537], - [37.706022, 55.5537] + [37.707141, 55.552353], + [37.707141, 55.552443], + [37.707231, 55.552443], + [37.707231, 55.552353], + [37.707141, 55.552353] ] ] } @@ -15672,11 +35480,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706022, 55.55379], - [37.706022, 55.55388], - [37.706181, 55.55388], - [37.706181, 55.55379], - [37.706022, 55.55379] + [37.707141, 55.552443], + [37.707141, 55.552533], + [37.707231, 55.552533], + [37.707231, 55.552443], + [37.707141, 55.552443] ] ] } @@ -15688,11 +35496,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706022, 55.55388], - [37.706022, 55.55397], - [37.706181, 55.55397], - [37.706181, 55.55388], - [37.706022, 55.55388] + [37.707141, 55.552533], + [37.707141, 55.552623], + [37.707231, 55.552623], + [37.707231, 55.552533], + [37.707141, 55.552533] ] ] } @@ -15704,11 +35512,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706022, 55.55397], - [37.706022, 55.55406], - [37.706181, 55.55406], - [37.706181, 55.55397], - [37.706022, 55.55397] + [37.707141, 55.552623], + [37.707141, 55.552712], + [37.707231, 55.552712], + [37.707231, 55.552623], + [37.707141, 55.552623] ] ] } @@ -15720,11 +35528,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706022, 55.55406], - [37.706022, 55.55415], - [37.706181, 55.55415], - [37.706181, 55.55406], - [37.706022, 55.55406] + [37.707141, 55.552712], + [37.707141, 55.552802], + [37.707231, 55.552802], + [37.707231, 55.552712], + [37.707141, 55.552712] ] ] } @@ -15736,11 +35544,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706022, 55.55415], - [37.706022, 55.55424], - [37.706181, 55.55424], - [37.706181, 55.55415], - [37.706022, 55.55415] + [37.707141, 55.552802], + [37.707141, 55.552892], + [37.707231, 55.552892], + [37.707231, 55.552802], + [37.707141, 55.552802] ] ] } @@ -15752,11 +35560,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706022, 55.55424], - [37.706022, 55.55433], - [37.706181, 55.55433], - [37.706181, 55.55424], - [37.706022, 55.55424] + [37.707141, 55.552892], + [37.707141, 55.552982], + [37.707231, 55.552982], + [37.707231, 55.552892], + [37.707141, 55.552892] ] ] } @@ -15768,11 +35576,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706022, 55.55433], - [37.706022, 55.55442], - [37.706181, 55.55442], - [37.706181, 55.55433], - [37.706022, 55.55433] + [37.707141, 55.552982], + [37.707141, 55.553072], + [37.707231, 55.553072], + [37.707231, 55.552982], + [37.707141, 55.552982] ] ] } @@ -15784,11 +35592,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706022, 55.55442], - [37.706022, 55.55451], - [37.706181, 55.55451], - [37.706181, 55.55442], - [37.706022, 55.55442] + [37.707141, 55.553072], + [37.707141, 55.553162], + [37.707231, 55.553162], + [37.707231, 55.553072], + [37.707141, 55.553072] ] ] } @@ -15800,11 +35608,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706022, 55.55451], - [37.706022, 55.5546], - [37.706181, 55.5546], - [37.706181, 55.55451], - [37.706022, 55.55451] + [37.707141, 55.553162], + [37.707141, 55.553251], + [37.707231, 55.553251], + [37.707231, 55.553162], + [37.707141, 55.553162] ] ] } @@ -15816,11 +35624,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706022, 55.5546], - [37.706022, 55.55469], - [37.706181, 55.55469], - [37.706181, 55.5546], - [37.706022, 55.5546] + [37.707141, 55.553251], + [37.707141, 55.553341], + [37.707231, 55.553341], + [37.707231, 55.553251], + [37.707141, 55.553251] ] ] } @@ -15832,11 +35640,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706022, 55.55469], - [37.706022, 55.55478], - [37.706181, 55.55478], - [37.706181, 55.55469], - [37.706022, 55.55469] + [37.707141, 55.553341], + [37.707141, 55.553431], + [37.707231, 55.553431], + [37.707231, 55.553341], + [37.707141, 55.553341] ] ] } @@ -15848,11 +35656,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706022, 55.55478], - [37.706022, 55.554869], - [37.706181, 55.554869], - [37.706181, 55.55478], - [37.706022, 55.55478] + [37.707141, 55.553431], + [37.707141, 55.553521], + [37.707231, 55.553521], + [37.707231, 55.553431], + [37.707141, 55.553431] ] ] } @@ -15864,11 +35672,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706022, 55.554869], - [37.706022, 55.554959], - [37.706181, 55.554959], - [37.706181, 55.554869], - [37.706022, 55.554869] + [37.707141, 55.553521], + [37.707141, 55.553611], + [37.707231, 55.553611], + [37.707231, 55.553521], + [37.707141, 55.553521] ] ] } @@ -15880,11 +35688,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706022, 55.554959], - [37.706022, 55.555049], - [37.706181, 55.555049], - [37.706181, 55.554959], - [37.706022, 55.554959] + [37.707141, 55.553611], + [37.707141, 55.5537], + [37.707231, 55.5537], + [37.707231, 55.553611], + [37.707141, 55.553611] ] ] } @@ -15896,11 +35704,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706022, 55.555049], - [37.706022, 55.555139], - [37.706181, 55.555139], - [37.706181, 55.555049], - [37.706022, 55.555049] + [37.707141, 55.5537], + [37.707141, 55.55379], + [37.707231, 55.55379], + [37.707231, 55.5537], + [37.707141, 55.5537] ] ] } @@ -15912,11 +35720,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706022, 55.555139], - [37.706022, 55.555229], - [37.706181, 55.555229], - [37.706181, 55.555139], - [37.706022, 55.555139] + [37.707141, 55.55379], + [37.707141, 55.55388], + [37.707231, 55.55388], + [37.707231, 55.55379], + [37.707141, 55.55379] ] ] } @@ -15928,11 +35736,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706022, 55.555229], - [37.706022, 55.555319], - [37.706181, 55.555319], - [37.706181, 55.555229], - [37.706022, 55.555229] + [37.707141, 55.55388], + [37.707141, 55.55397], + [37.707231, 55.55397], + [37.707231, 55.55388], + [37.707141, 55.55388] ] ] } @@ -15944,11 +35752,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706022, 55.555319], - [37.706022, 55.555409], - [37.706181, 55.555409], - [37.706181, 55.555319], - [37.706022, 55.555319] + [37.707141, 55.55397], + [37.707141, 55.55406], + [37.707231, 55.55406], + [37.707231, 55.55397], + [37.707141, 55.55397] ] ] } @@ -15960,11 +35768,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706022, 55.555409], - [37.706022, 55.555499], - [37.706181, 55.555499], - [37.706181, 55.555409], - [37.706022, 55.555409] + [37.707141, 55.55406], + [37.707141, 55.55415], + [37.707231, 55.55415], + [37.707231, 55.55406], + [37.707141, 55.55406] ] ] } @@ -15976,11 +35784,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706181, 55.551542], - [37.706181, 55.551632], - [37.70634, 55.551632], - [37.70634, 55.551542], - [37.706181, 55.551542] + [37.707141, 55.55415], + [37.707141, 55.554239], + [37.707231, 55.554239], + [37.707231, 55.55415], + [37.707141, 55.55415] ] ] } @@ -15992,11 +35800,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706181, 55.551632], - [37.706181, 55.551722], - [37.70634, 55.551722], - [37.70634, 55.551632], - [37.706181, 55.551632] + [37.707141, 55.554239], + [37.707141, 55.554329], + [37.707231, 55.554329], + [37.707231, 55.554239], + [37.707141, 55.554239] ] ] } @@ -16008,11 +35816,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706181, 55.551722], - [37.706181, 55.551812], - [37.70634, 55.551812], - [37.70634, 55.551722], - [37.706181, 55.551722] + [37.707141, 55.554329], + [37.707141, 55.554419], + [37.707231, 55.554419], + [37.707231, 55.554329], + [37.707141, 55.554329] ] ] } @@ -16024,11 +35832,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706181, 55.551812], - [37.706181, 55.551902], - [37.70634, 55.551902], - [37.70634, 55.551812], - [37.706181, 55.551812] + [37.707141, 55.554419], + [37.707141, 55.554509], + [37.707231, 55.554509], + [37.707231, 55.554419], + [37.707141, 55.554419] ] ] } @@ -16040,11 +35848,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706181, 55.551902], - [37.706181, 55.551992], - [37.70634, 55.551992], - [37.70634, 55.551902], - [37.706181, 55.551902] + [37.707141, 55.554509], + [37.707141, 55.554599], + [37.707231, 55.554599], + [37.707231, 55.554509], + [37.707141, 55.554509] ] ] } @@ -16056,11 +35864,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706181, 55.551992], - [37.706181, 55.552082], - [37.70634, 55.552082], - [37.70634, 55.551992], - [37.706181, 55.551992] + [37.707141, 55.554599], + [37.707141, 55.554689], + [37.707231, 55.554689], + [37.707231, 55.554599], + [37.707141, 55.554599] ] ] } @@ -16072,11 +35880,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706181, 55.552082], - [37.706181, 55.552171], - [37.70634, 55.552171], - [37.70634, 55.552082], - [37.706181, 55.552082] + [37.707141, 55.554689], + [37.707141, 55.554778], + [37.707231, 55.554778], + [37.707231, 55.554689], + [37.707141, 55.554689] ] ] } @@ -16088,11 +35896,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706181, 55.552171], - [37.706181, 55.552261], - [37.70634, 55.552261], - [37.70634, 55.552171], - [37.706181, 55.552171] + [37.707141, 55.554778], + [37.707141, 55.554868], + [37.707231, 55.554868], + [37.707231, 55.554778], + [37.707141, 55.554778] ] ] } @@ -16104,11 +35912,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706181, 55.552261], - [37.706181, 55.552351], - [37.70634, 55.552351], - [37.70634, 55.552261], - [37.706181, 55.552261] + [37.707141, 55.554868], + [37.707141, 55.554958], + [37.707231, 55.554958], + [37.707231, 55.554868], + [37.707141, 55.554868] ] ] } @@ -16120,11 +35928,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706181, 55.552351], - [37.706181, 55.552441], - [37.70634, 55.552441], - [37.70634, 55.552351], - [37.706181, 55.552351] + [37.707141, 55.554958], + [37.707141, 55.555048], + [37.707231, 55.555048], + [37.707231, 55.554958], + [37.707141, 55.554958] ] ] } @@ -16136,11 +35944,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706181, 55.552441], - [37.706181, 55.552531], - [37.70634, 55.552531], - [37.70634, 55.552441], - [37.706181, 55.552441] + [37.707141, 55.555048], + [37.707141, 55.555138], + [37.707231, 55.555138], + [37.707231, 55.555048], + [37.707141, 55.555048] ] ] } @@ -16152,11 +35960,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706181, 55.552531], - [37.706181, 55.552621], - [37.70634, 55.552621], - [37.70634, 55.552531], - [37.706181, 55.552531] + [37.707141, 55.555138], + [37.707141, 55.555228], + [37.707231, 55.555228], + [37.707231, 55.555138], + [37.707141, 55.555138] ] ] } @@ -16168,11 +35976,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706181, 55.552621], - [37.706181, 55.552711], - [37.70634, 55.552711], - [37.70634, 55.552621], - [37.706181, 55.552621] + [37.707141, 55.555228], + [37.707141, 55.555317], + [37.707231, 55.555317], + [37.707231, 55.555228], + [37.707141, 55.555228] ] ] } @@ -16184,11 +35992,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706181, 55.552711], - [37.706181, 55.552801], - [37.70634, 55.552801], - [37.70634, 55.552711], - [37.706181, 55.552711] + [37.707141, 55.555317], + [37.707141, 55.555407], + [37.707231, 55.555407], + [37.707231, 55.555317], + [37.707141, 55.555317] ] ] } @@ -16200,11 +36008,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706181, 55.552801], - [37.706181, 55.552891], - [37.70634, 55.552891], - [37.70634, 55.552801], - [37.706181, 55.552801] + [37.707141, 55.555407], + [37.707141, 55.555497], + [37.707231, 55.555497], + [37.707231, 55.555407], + [37.707141, 55.555407] ] ] } @@ -16216,11 +36024,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706181, 55.552891], - [37.706181, 55.552981], - [37.70634, 55.552981], - [37.70634, 55.552891], - [37.706181, 55.552891] + [37.707141, 55.555497], + [37.707141, 55.555587], + [37.707231, 55.555587], + [37.707231, 55.555497], + [37.707141, 55.555497] ] ] } @@ -16232,11 +36040,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706181, 55.552981], - [37.706181, 55.553071], - [37.70634, 55.553071], - [37.70634, 55.552981], - [37.706181, 55.552981] + [37.707141, 55.555587], + [37.707141, 55.555677], + [37.707231, 55.555677], + [37.707231, 55.555587], + [37.707141, 55.555587] ] ] } @@ -16248,11 +36056,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706181, 55.553071], - [37.706181, 55.553161], - [37.70634, 55.553161], - [37.70634, 55.553071], - [37.706181, 55.553071] + [37.707141, 55.555677], + [37.707141, 55.555767], + [37.707231, 55.555767], + [37.707231, 55.555677], + [37.707141, 55.555677] ] ] } @@ -16264,11 +36072,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706181, 55.553161], - [37.706181, 55.553251], - [37.70634, 55.553251], - [37.70634, 55.553161], - [37.706181, 55.553161] + [37.707231, 55.552353], + [37.707231, 55.552443], + [37.70732, 55.552443], + [37.70732, 55.552353], + [37.707231, 55.552353] ] ] } @@ -16280,11 +36088,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706181, 55.553251], - [37.706181, 55.553341], - [37.70634, 55.553341], - [37.70634, 55.553251], - [37.706181, 55.553251] + [37.707231, 55.552443], + [37.707231, 55.552533], + [37.70732, 55.552533], + [37.70732, 55.552443], + [37.707231, 55.552443] ] ] } @@ -16296,11 +36104,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706181, 55.553341], - [37.706181, 55.553431], - [37.70634, 55.553431], - [37.70634, 55.553341], - [37.706181, 55.553341] + [37.707231, 55.552533], + [37.707231, 55.552623], + [37.70732, 55.552623], + [37.70732, 55.552533], + [37.707231, 55.552533] ] ] } @@ -16312,11 +36120,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706181, 55.553431], - [37.706181, 55.55352], - [37.70634, 55.55352], - [37.70634, 55.553431], - [37.706181, 55.553431] + [37.707231, 55.552623], + [37.707231, 55.552712], + [37.70732, 55.552712], + [37.70732, 55.552623], + [37.707231, 55.552623] ] ] } @@ -16328,11 +36136,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706181, 55.55352], - [37.706181, 55.55361], - [37.70634, 55.55361], - [37.70634, 55.55352], - [37.706181, 55.55352] + [37.707231, 55.552712], + [37.707231, 55.552802], + [37.70732, 55.552802], + [37.70732, 55.552712], + [37.707231, 55.552712] ] ] } @@ -16344,11 +36152,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706181, 55.55361], - [37.706181, 55.5537], - [37.70634, 55.5537], - [37.70634, 55.55361], - [37.706181, 55.55361] + [37.707231, 55.552802], + [37.707231, 55.552892], + [37.70732, 55.552892], + [37.70732, 55.552802], + [37.707231, 55.552802] ] ] } @@ -16360,11 +36168,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706181, 55.5537], - [37.706181, 55.55379], - [37.70634, 55.55379], - [37.70634, 55.5537], - [37.706181, 55.5537] + [37.707231, 55.552892], + [37.707231, 55.552982], + [37.70732, 55.552982], + [37.70732, 55.552892], + [37.707231, 55.552892] ] ] } @@ -16376,11 +36184,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706181, 55.55379], - [37.706181, 55.55388], - [37.70634, 55.55388], - [37.70634, 55.55379], - [37.706181, 55.55379] + [37.707231, 55.552982], + [37.707231, 55.553072], + [37.70732, 55.553072], + [37.70732, 55.552982], + [37.707231, 55.552982] ] ] } @@ -16392,11 +36200,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706181, 55.55388], - [37.706181, 55.55397], - [37.70634, 55.55397], - [37.70634, 55.55388], - [37.706181, 55.55388] + [37.707231, 55.553072], + [37.707231, 55.553162], + [37.70732, 55.553162], + [37.70732, 55.553072], + [37.707231, 55.553072] ] ] } @@ -16408,11 +36216,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706181, 55.55397], - [37.706181, 55.55406], - [37.70634, 55.55406], - [37.70634, 55.55397], - [37.706181, 55.55397] + [37.707231, 55.553162], + [37.707231, 55.553251], + [37.70732, 55.553251], + [37.70732, 55.553162], + [37.707231, 55.553162] ] ] } @@ -16424,11 +36232,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706181, 55.55406], - [37.706181, 55.55415], - [37.70634, 55.55415], - [37.70634, 55.55406], - [37.706181, 55.55406] + [37.707231, 55.553251], + [37.707231, 55.553341], + [37.70732, 55.553341], + [37.70732, 55.553251], + [37.707231, 55.553251] ] ] } @@ -16440,11 +36248,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706181, 55.55415], - [37.706181, 55.55424], - [37.70634, 55.55424], - [37.70634, 55.55415], - [37.706181, 55.55415] + [37.707231, 55.553341], + [37.707231, 55.553431], + [37.70732, 55.553431], + [37.70732, 55.553341], + [37.707231, 55.553341] ] ] } @@ -16456,11 +36264,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706181, 55.55424], - [37.706181, 55.55433], - [37.70634, 55.55433], - [37.70634, 55.55424], - [37.706181, 55.55424] + [37.707231, 55.553431], + [37.707231, 55.553521], + [37.70732, 55.553521], + [37.70732, 55.553431], + [37.707231, 55.553431] ] ] } @@ -16472,11 +36280,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706181, 55.55433], - [37.706181, 55.55442], - [37.70634, 55.55442], - [37.70634, 55.55433], - [37.706181, 55.55433] + [37.707231, 55.553521], + [37.707231, 55.553611], + [37.70732, 55.553611], + [37.70732, 55.553521], + [37.707231, 55.553521] ] ] } @@ -16488,11 +36296,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706181, 55.55442], - [37.706181, 55.55451], - [37.70634, 55.55451], - [37.70634, 55.55442], - [37.706181, 55.55442] + [37.707231, 55.553611], + [37.707231, 55.5537], + [37.70732, 55.5537], + [37.70732, 55.553611], + [37.707231, 55.553611] ] ] } @@ -16504,11 +36312,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706181, 55.55451], - [37.706181, 55.5546], - [37.70634, 55.5546], - [37.70634, 55.55451], - [37.706181, 55.55451] + [37.707231, 55.5537], + [37.707231, 55.55379], + [37.70732, 55.55379], + [37.70732, 55.5537], + [37.707231, 55.5537] ] ] } @@ -16520,11 +36328,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706181, 55.5546], - [37.706181, 55.55469], - [37.70634, 55.55469], - [37.70634, 55.5546], - [37.706181, 55.5546] + [37.707231, 55.55379], + [37.707231, 55.55388], + [37.70732, 55.55388], + [37.70732, 55.55379], + [37.707231, 55.55379] ] ] } @@ -16536,11 +36344,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706181, 55.55469], - [37.706181, 55.55478], - [37.70634, 55.55478], - [37.70634, 55.55469], - [37.706181, 55.55469] + [37.707231, 55.55388], + [37.707231, 55.55397], + [37.70732, 55.55397], + [37.70732, 55.55388], + [37.707231, 55.55388] ] ] } @@ -16552,11 +36360,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706181, 55.55478], - [37.706181, 55.554869], - [37.70634, 55.554869], - [37.70634, 55.55478], - [37.706181, 55.55478] + [37.707231, 55.55397], + [37.707231, 55.55406], + [37.70732, 55.55406], + [37.70732, 55.55397], + [37.707231, 55.55397] ] ] } @@ -16568,11 +36376,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706181, 55.554869], - [37.706181, 55.554959], - [37.70634, 55.554959], - [37.70634, 55.554869], - [37.706181, 55.554869] + [37.707231, 55.55406], + [37.707231, 55.55415], + [37.70732, 55.55415], + [37.70732, 55.55406], + [37.707231, 55.55406] ] ] } @@ -16584,11 +36392,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706181, 55.554959], - [37.706181, 55.555049], - [37.70634, 55.555049], - [37.70634, 55.554959], - [37.706181, 55.554959] + [37.707231, 55.55415], + [37.707231, 55.554239], + [37.70732, 55.554239], + [37.70732, 55.55415], + [37.707231, 55.55415] ] ] } @@ -16600,11 +36408,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706181, 55.555049], - [37.706181, 55.555139], - [37.70634, 55.555139], - [37.70634, 55.555049], - [37.706181, 55.555049] + [37.707231, 55.554239], + [37.707231, 55.554329], + [37.70732, 55.554329], + [37.70732, 55.554239], + [37.707231, 55.554239] ] ] } @@ -16616,11 +36424,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706181, 55.555139], - [37.706181, 55.555229], - [37.70634, 55.555229], - [37.70634, 55.555139], - [37.706181, 55.555139] + [37.707231, 55.554329], + [37.707231, 55.554419], + [37.70732, 55.554419], + [37.70732, 55.554329], + [37.707231, 55.554329] ] ] } @@ -16632,11 +36440,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706181, 55.555229], - [37.706181, 55.555319], - [37.70634, 55.555319], - [37.70634, 55.555229], - [37.706181, 55.555229] + [37.707231, 55.554419], + [37.707231, 55.554509], + [37.70732, 55.554509], + [37.70732, 55.554419], + [37.707231, 55.554419] ] ] } @@ -16648,11 +36456,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706181, 55.555319], - [37.706181, 55.555409], - [37.70634, 55.555409], - [37.70634, 55.555319], - [37.706181, 55.555319] + [37.707231, 55.554509], + [37.707231, 55.554599], + [37.70732, 55.554599], + [37.70732, 55.554509], + [37.707231, 55.554509] ] ] } @@ -16664,11 +36472,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706181, 55.555409], - [37.706181, 55.555499], - [37.70634, 55.555499], - [37.70634, 55.555409], - [37.706181, 55.555409] + [37.707231, 55.554599], + [37.707231, 55.554689], + [37.70732, 55.554689], + [37.70732, 55.554599], + [37.707231, 55.554599] ] ] } @@ -16680,11 +36488,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70634, 55.551542], - [37.70634, 55.551632], - [37.706499, 55.551632], - [37.706499, 55.551542], - [37.70634, 55.551542] + [37.707231, 55.554689], + [37.707231, 55.554778], + [37.70732, 55.554778], + [37.70732, 55.554689], + [37.707231, 55.554689] ] ] } @@ -16696,11 +36504,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70634, 55.551632], - [37.70634, 55.551722], - [37.706499, 55.551722], - [37.706499, 55.551632], - [37.70634, 55.551632] + [37.707231, 55.554778], + [37.707231, 55.554868], + [37.70732, 55.554868], + [37.70732, 55.554778], + [37.707231, 55.554778] ] ] } @@ -16712,11 +36520,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70634, 55.551722], - [37.70634, 55.551812], - [37.706499, 55.551812], - [37.706499, 55.551722], - [37.70634, 55.551722] + [37.707231, 55.554868], + [37.707231, 55.554958], + [37.70732, 55.554958], + [37.70732, 55.554868], + [37.707231, 55.554868] ] ] } @@ -16728,11 +36536,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70634, 55.551812], - [37.70634, 55.551902], - [37.706499, 55.551902], - [37.706499, 55.551812], - [37.70634, 55.551812] + [37.707231, 55.554958], + [37.707231, 55.555048], + [37.70732, 55.555048], + [37.70732, 55.554958], + [37.707231, 55.554958] ] ] } @@ -16744,11 +36552,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70634, 55.551902], - [37.70634, 55.551992], - [37.706499, 55.551992], - [37.706499, 55.551902], - [37.70634, 55.551902] + [37.707231, 55.555048], + [37.707231, 55.555138], + [37.70732, 55.555138], + [37.70732, 55.555048], + [37.707231, 55.555048] ] ] } @@ -16760,11 +36568,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70634, 55.551992], - [37.70634, 55.552082], - [37.706499, 55.552082], - [37.706499, 55.551992], - [37.70634, 55.551992] + [37.707231, 55.555138], + [37.707231, 55.555228], + [37.70732, 55.555228], + [37.70732, 55.555138], + [37.707231, 55.555138] ] ] } @@ -16776,11 +36584,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70634, 55.552082], - [37.70634, 55.552171], - [37.706499, 55.552171], - [37.706499, 55.552082], - [37.70634, 55.552082] + [37.707231, 55.555228], + [37.707231, 55.555317], + [37.70732, 55.555317], + [37.70732, 55.555228], + [37.707231, 55.555228] ] ] } @@ -16792,11 +36600,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70634, 55.552171], - [37.70634, 55.552261], - [37.706499, 55.552261], - [37.706499, 55.552171], - [37.70634, 55.552171] + [37.707231, 55.555317], + [37.707231, 55.555407], + [37.70732, 55.555407], + [37.70732, 55.555317], + [37.707231, 55.555317] ] ] } @@ -16808,11 +36616,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70634, 55.552261], - [37.70634, 55.552351], - [37.706499, 55.552351], - [37.706499, 55.552261], - [37.70634, 55.552261] + [37.707231, 55.555407], + [37.707231, 55.555497], + [37.70732, 55.555497], + [37.70732, 55.555407], + [37.707231, 55.555407] ] ] } @@ -16824,11 +36632,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70634, 55.552351], - [37.70634, 55.552441], - [37.706499, 55.552441], - [37.706499, 55.552351], - [37.70634, 55.552351] + [37.707231, 55.555497], + [37.707231, 55.555587], + [37.70732, 55.555587], + [37.70732, 55.555497], + [37.707231, 55.555497] ] ] } @@ -16840,11 +36648,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70634, 55.552441], - [37.70634, 55.552531], - [37.706499, 55.552531], - [37.706499, 55.552441], - [37.70634, 55.552441] + [37.707231, 55.555587], + [37.707231, 55.555677], + [37.70732, 55.555677], + [37.70732, 55.555587], + [37.707231, 55.555587] ] ] } @@ -16856,11 +36664,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70634, 55.552531], - [37.70634, 55.552621], - [37.706499, 55.552621], - [37.706499, 55.552531], - [37.70634, 55.552531] + [37.707231, 55.555677], + [37.707231, 55.555767], + [37.70732, 55.555767], + [37.70732, 55.555677], + [37.707231, 55.555677] ] ] } @@ -16872,11 +36680,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70634, 55.552621], - [37.70634, 55.552711], - [37.706499, 55.552711], - [37.706499, 55.552621], - [37.70634, 55.552621] + [37.70732, 55.552443], + [37.70732, 55.552533], + [37.70741, 55.552533], + [37.70741, 55.552443], + [37.70732, 55.552443] ] ] } @@ -16888,11 +36696,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70634, 55.552711], - [37.70634, 55.552801], - [37.706499, 55.552801], - [37.706499, 55.552711], - [37.70634, 55.552711] + [37.70732, 55.552533], + [37.70732, 55.552623], + [37.70741, 55.552623], + [37.70741, 55.552533], + [37.70732, 55.552533] ] ] } @@ -16904,11 +36712,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70634, 55.552801], - [37.70634, 55.552891], - [37.706499, 55.552891], - [37.706499, 55.552801], - [37.70634, 55.552801] + [37.70732, 55.552623], + [37.70732, 55.552712], + [37.70741, 55.552712], + [37.70741, 55.552623], + [37.70732, 55.552623] ] ] } @@ -16920,11 +36728,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70634, 55.552891], - [37.70634, 55.552981], - [37.706499, 55.552981], - [37.706499, 55.552891], - [37.70634, 55.552891] + [37.70732, 55.552712], + [37.70732, 55.552802], + [37.70741, 55.552802], + [37.70741, 55.552712], + [37.70732, 55.552712] ] ] } @@ -16936,11 +36744,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70634, 55.552981], - [37.70634, 55.553071], - [37.706499, 55.553071], - [37.706499, 55.552981], - [37.70634, 55.552981] + [37.70732, 55.552802], + [37.70732, 55.552892], + [37.70741, 55.552892], + [37.70741, 55.552802], + [37.70732, 55.552802] ] ] } @@ -16952,11 +36760,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70634, 55.553071], - [37.70634, 55.553161], - [37.706499, 55.553161], - [37.706499, 55.553071], - [37.70634, 55.553071] + [37.70732, 55.552892], + [37.70732, 55.552982], + [37.70741, 55.552982], + [37.70741, 55.552892], + [37.70732, 55.552892] ] ] } @@ -16968,11 +36776,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70634, 55.553161], - [37.70634, 55.553251], - [37.706499, 55.553251], - [37.706499, 55.553161], - [37.70634, 55.553161] + [37.70732, 55.552982], + [37.70732, 55.553072], + [37.70741, 55.553072], + [37.70741, 55.552982], + [37.70732, 55.552982] ] ] } @@ -16984,11 +36792,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70634, 55.553251], - [37.70634, 55.553341], - [37.706499, 55.553341], - [37.706499, 55.553251], - [37.70634, 55.553251] + [37.70732, 55.553072], + [37.70732, 55.553162], + [37.70741, 55.553162], + [37.70741, 55.553072], + [37.70732, 55.553072] ] ] } @@ -17000,11 +36808,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70634, 55.553341], - [37.70634, 55.553431], - [37.706499, 55.553431], - [37.706499, 55.553341], - [37.70634, 55.553341] + [37.70732, 55.553162], + [37.70732, 55.553251], + [37.70741, 55.553251], + [37.70741, 55.553162], + [37.70732, 55.553162] ] ] } @@ -17016,11 +36824,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70634, 55.553431], - [37.70634, 55.55352], - [37.706499, 55.55352], - [37.706499, 55.553431], - [37.70634, 55.553431] + [37.70732, 55.553251], + [37.70732, 55.553341], + [37.70741, 55.553341], + [37.70741, 55.553251], + [37.70732, 55.553251] ] ] } @@ -17032,11 +36840,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70634, 55.55352], - [37.70634, 55.55361], - [37.706499, 55.55361], - [37.706499, 55.55352], - [37.70634, 55.55352] + [37.70732, 55.553341], + [37.70732, 55.553431], + [37.70741, 55.553431], + [37.70741, 55.553341], + [37.70732, 55.553341] ] ] } @@ -17048,11 +36856,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70634, 55.55361], - [37.70634, 55.5537], - [37.706499, 55.5537], - [37.706499, 55.55361], - [37.70634, 55.55361] + [37.70732, 55.553431], + [37.70732, 55.553521], + [37.70741, 55.553521], + [37.70741, 55.553431], + [37.70732, 55.553431] ] ] } @@ -17064,11 +36872,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70634, 55.5537], - [37.70634, 55.55379], - [37.706499, 55.55379], - [37.706499, 55.5537], - [37.70634, 55.5537] + [37.70732, 55.553521], + [37.70732, 55.553611], + [37.70741, 55.553611], + [37.70741, 55.553521], + [37.70732, 55.553521] ] ] } @@ -17080,11 +36888,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70634, 55.55379], - [37.70634, 55.55388], - [37.706499, 55.55388], - [37.706499, 55.55379], - [37.70634, 55.55379] + [37.70732, 55.553611], + [37.70732, 55.5537], + [37.70741, 55.5537], + [37.70741, 55.553611], + [37.70732, 55.553611] ] ] } @@ -17096,11 +36904,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70634, 55.55388], - [37.70634, 55.55397], - [37.706499, 55.55397], - [37.706499, 55.55388], - [37.70634, 55.55388] + [37.70732, 55.5537], + [37.70732, 55.55379], + [37.70741, 55.55379], + [37.70741, 55.5537], + [37.70732, 55.5537] ] ] } @@ -17112,11 +36920,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70634, 55.55397], - [37.70634, 55.55406], - [37.706499, 55.55406], - [37.706499, 55.55397], - [37.70634, 55.55397] + [37.70732, 55.55379], + [37.70732, 55.55388], + [37.70741, 55.55388], + [37.70741, 55.55379], + [37.70732, 55.55379] ] ] } @@ -17128,11 +36936,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70634, 55.55406], - [37.70634, 55.55415], - [37.706499, 55.55415], - [37.706499, 55.55406], - [37.70634, 55.55406] + [37.70732, 55.55388], + [37.70732, 55.55397], + [37.70741, 55.55397], + [37.70741, 55.55388], + [37.70732, 55.55388] ] ] } @@ -17144,11 +36952,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70634, 55.55415], - [37.70634, 55.55424], - [37.706499, 55.55424], - [37.706499, 55.55415], - [37.70634, 55.55415] + [37.70732, 55.55397], + [37.70732, 55.55406], + [37.70741, 55.55406], + [37.70741, 55.55397], + [37.70732, 55.55397] ] ] } @@ -17160,11 +36968,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70634, 55.55424], - [37.70634, 55.55433], - [37.706499, 55.55433], - [37.706499, 55.55424], - [37.70634, 55.55424] + [37.70732, 55.55406], + [37.70732, 55.55415], + [37.70741, 55.55415], + [37.70741, 55.55406], + [37.70732, 55.55406] ] ] } @@ -17176,11 +36984,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70634, 55.55433], - [37.70634, 55.55442], - [37.706499, 55.55442], - [37.706499, 55.55433], - [37.70634, 55.55433] + [37.70732, 55.55415], + [37.70732, 55.554239], + [37.70741, 55.554239], + [37.70741, 55.55415], + [37.70732, 55.55415] ] ] } @@ -17192,11 +37000,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70634, 55.55442], - [37.70634, 55.55451], - [37.706499, 55.55451], - [37.706499, 55.55442], - [37.70634, 55.55442] + [37.70732, 55.554239], + [37.70732, 55.554329], + [37.70741, 55.554329], + [37.70741, 55.554239], + [37.70732, 55.554239] ] ] } @@ -17208,11 +37016,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70634, 55.55451], - [37.70634, 55.5546], - [37.706499, 55.5546], - [37.706499, 55.55451], - [37.70634, 55.55451] + [37.70732, 55.554329], + [37.70732, 55.554419], + [37.70741, 55.554419], + [37.70741, 55.554329], + [37.70732, 55.554329] ] ] } @@ -17224,11 +37032,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70634, 55.5546], - [37.70634, 55.55469], - [37.706499, 55.55469], - [37.706499, 55.5546], - [37.70634, 55.5546] + [37.70732, 55.554419], + [37.70732, 55.554509], + [37.70741, 55.554509], + [37.70741, 55.554419], + [37.70732, 55.554419] ] ] } @@ -17240,11 +37048,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70634, 55.55469], - [37.70634, 55.55478], - [37.706499, 55.55478], - [37.706499, 55.55469], - [37.70634, 55.55469] + [37.70732, 55.554509], + [37.70732, 55.554599], + [37.70741, 55.554599], + [37.70741, 55.554509], + [37.70732, 55.554509] ] ] } @@ -17256,11 +37064,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70634, 55.55478], - [37.70634, 55.554869], - [37.706499, 55.554869], - [37.706499, 55.55478], - [37.70634, 55.55478] + [37.70732, 55.554599], + [37.70732, 55.554689], + [37.70741, 55.554689], + [37.70741, 55.554599], + [37.70732, 55.554599] ] ] } @@ -17272,11 +37080,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70634, 55.554869], - [37.70634, 55.554959], - [37.706499, 55.554959], - [37.706499, 55.554869], - [37.70634, 55.554869] + [37.70732, 55.554689], + [37.70732, 55.554778], + [37.70741, 55.554778], + [37.70741, 55.554689], + [37.70732, 55.554689] ] ] } @@ -17288,11 +37096,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70634, 55.554959], - [37.70634, 55.555049], - [37.706499, 55.555049], - [37.706499, 55.554959], - [37.70634, 55.554959] + [37.70732, 55.554778], + [37.70732, 55.554868], + [37.70741, 55.554868], + [37.70741, 55.554778], + [37.70732, 55.554778] ] ] } @@ -17304,11 +37112,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70634, 55.555049], - [37.70634, 55.555139], - [37.706499, 55.555139], - [37.706499, 55.555049], - [37.70634, 55.555049] + [37.70732, 55.554868], + [37.70732, 55.554958], + [37.70741, 55.554958], + [37.70741, 55.554868], + [37.70732, 55.554868] ] ] } @@ -17320,11 +37128,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70634, 55.555139], - [37.70634, 55.555229], - [37.706499, 55.555229], - [37.706499, 55.555139], - [37.70634, 55.555139] + [37.70732, 55.554958], + [37.70732, 55.555048], + [37.70741, 55.555048], + [37.70741, 55.554958], + [37.70732, 55.554958] ] ] } @@ -17336,11 +37144,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70634, 55.555229], - [37.70634, 55.555319], - [37.706499, 55.555319], - [37.706499, 55.555229], - [37.70634, 55.555229] + [37.70732, 55.555048], + [37.70732, 55.555138], + [37.70741, 55.555138], + [37.70741, 55.555048], + [37.70732, 55.555048] ] ] } @@ -17352,11 +37160,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70634, 55.555319], - [37.70634, 55.555409], - [37.706499, 55.555409], - [37.706499, 55.555319], - [37.70634, 55.555319] + [37.70732, 55.555138], + [37.70732, 55.555228], + [37.70741, 55.555228], + [37.70741, 55.555138], + [37.70732, 55.555138] ] ] } @@ -17368,11 +37176,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70634, 55.555409], - [37.70634, 55.555499], - [37.706499, 55.555499], - [37.706499, 55.555409], - [37.70634, 55.555409] + [37.70732, 55.555228], + [37.70732, 55.555317], + [37.70741, 55.555317], + [37.70741, 55.555228], + [37.70732, 55.555228] ] ] } @@ -17384,11 +37192,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70634, 55.555499], - [37.70634, 55.555589], - [37.706499, 55.555589], - [37.706499, 55.555499], - [37.70634, 55.555499] + [37.70732, 55.555317], + [37.70732, 55.555407], + [37.70741, 55.555407], + [37.70741, 55.555317], + [37.70732, 55.555317] ] ] } @@ -17400,11 +37208,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706499, 55.551542], - [37.706499, 55.551632], - [37.706658, 55.551632], - [37.706658, 55.551542], - [37.706499, 55.551542] + [37.70732, 55.555407], + [37.70732, 55.555497], + [37.70741, 55.555497], + [37.70741, 55.555407], + [37.70732, 55.555407] ] ] } @@ -17416,11 +37224,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706499, 55.551632], - [37.706499, 55.551722], - [37.706658, 55.551722], - [37.706658, 55.551632], - [37.706499, 55.551632] + [37.70732, 55.555497], + [37.70732, 55.555587], + [37.70741, 55.555587], + [37.70741, 55.555497], + [37.70732, 55.555497] ] ] } @@ -17432,11 +37240,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706499, 55.551722], - [37.706499, 55.551812], - [37.706658, 55.551812], - [37.706658, 55.551722], - [37.706499, 55.551722] + [37.70732, 55.555587], + [37.70732, 55.555677], + [37.70741, 55.555677], + [37.70741, 55.555587], + [37.70732, 55.555587] ] ] } @@ -17448,11 +37256,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706499, 55.551812], - [37.706499, 55.551902], - [37.706658, 55.551902], - [37.706658, 55.551812], - [37.706499, 55.551812] + [37.70732, 55.555677], + [37.70732, 55.555767], + [37.70741, 55.555767], + [37.70741, 55.555677], + [37.70732, 55.555677] ] ] } @@ -17464,11 +37272,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706499, 55.551902], - [37.706499, 55.551992], - [37.706658, 55.551992], - [37.706658, 55.551902], - [37.706499, 55.551902] + [37.70741, 55.552533], + [37.70741, 55.552623], + [37.7075, 55.552623], + [37.7075, 55.552533], + [37.70741, 55.552533] ] ] } @@ -17480,11 +37288,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706499, 55.551992], - [37.706499, 55.552082], - [37.706658, 55.552082], - [37.706658, 55.551992], - [37.706499, 55.551992] + [37.70741, 55.552623], + [37.70741, 55.552712], + [37.7075, 55.552712], + [37.7075, 55.552623], + [37.70741, 55.552623] ] ] } @@ -17496,11 +37304,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706499, 55.552082], - [37.706499, 55.552171], - [37.706658, 55.552171], - [37.706658, 55.552082], - [37.706499, 55.552082] + [37.70741, 55.552712], + [37.70741, 55.552802], + [37.7075, 55.552802], + [37.7075, 55.552712], + [37.70741, 55.552712] ] ] } @@ -17512,11 +37320,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706499, 55.552171], - [37.706499, 55.552261], - [37.706658, 55.552261], - [37.706658, 55.552171], - [37.706499, 55.552171] + [37.70741, 55.552802], + [37.70741, 55.552892], + [37.7075, 55.552892], + [37.7075, 55.552802], + [37.70741, 55.552802] ] ] } @@ -17528,11 +37336,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706499, 55.552261], - [37.706499, 55.552351], - [37.706658, 55.552351], - [37.706658, 55.552261], - [37.706499, 55.552261] + [37.70741, 55.552892], + [37.70741, 55.552982], + [37.7075, 55.552982], + [37.7075, 55.552892], + [37.70741, 55.552892] ] ] } @@ -17544,11 +37352,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706499, 55.552351], - [37.706499, 55.552441], - [37.706658, 55.552441], - [37.706658, 55.552351], - [37.706499, 55.552351] + [37.70741, 55.552982], + [37.70741, 55.553072], + [37.7075, 55.553072], + [37.7075, 55.552982], + [37.70741, 55.552982] ] ] } @@ -17560,11 +37368,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706499, 55.552441], - [37.706499, 55.552531], - [37.706658, 55.552531], - [37.706658, 55.552441], - [37.706499, 55.552441] + [37.70741, 55.553072], + [37.70741, 55.553162], + [37.7075, 55.553162], + [37.7075, 55.553072], + [37.70741, 55.553072] ] ] } @@ -17576,11 +37384,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706499, 55.552531], - [37.706499, 55.552621], - [37.706658, 55.552621], - [37.706658, 55.552531], - [37.706499, 55.552531] + [37.70741, 55.553162], + [37.70741, 55.553251], + [37.7075, 55.553251], + [37.7075, 55.553162], + [37.70741, 55.553162] ] ] } @@ -17592,11 +37400,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706499, 55.552621], - [37.706499, 55.552711], - [37.706658, 55.552711], - [37.706658, 55.552621], - [37.706499, 55.552621] + [37.70741, 55.553251], + [37.70741, 55.553341], + [37.7075, 55.553341], + [37.7075, 55.553251], + [37.70741, 55.553251] ] ] } @@ -17608,11 +37416,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706499, 55.552711], - [37.706499, 55.552801], - [37.706658, 55.552801], - [37.706658, 55.552711], - [37.706499, 55.552711] + [37.70741, 55.553341], + [37.70741, 55.553431], + [37.7075, 55.553431], + [37.7075, 55.553341], + [37.70741, 55.553341] ] ] } @@ -17624,11 +37432,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706499, 55.552801], - [37.706499, 55.552891], - [37.706658, 55.552891], - [37.706658, 55.552801], - [37.706499, 55.552801] + [37.70741, 55.553431], + [37.70741, 55.553521], + [37.7075, 55.553521], + [37.7075, 55.553431], + [37.70741, 55.553431] ] ] } @@ -17640,11 +37448,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706499, 55.552891], - [37.706499, 55.552981], - [37.706658, 55.552981], - [37.706658, 55.552891], - [37.706499, 55.552891] + [37.70741, 55.553521], + [37.70741, 55.553611], + [37.7075, 55.553611], + [37.7075, 55.553521], + [37.70741, 55.553521] ] ] } @@ -17656,11 +37464,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706499, 55.552981], - [37.706499, 55.553071], - [37.706658, 55.553071], - [37.706658, 55.552981], - [37.706499, 55.552981] + [37.70741, 55.553611], + [37.70741, 55.5537], + [37.7075, 55.5537], + [37.7075, 55.553611], + [37.70741, 55.553611] ] ] } @@ -17672,11 +37480,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706499, 55.553071], - [37.706499, 55.553161], - [37.706658, 55.553161], - [37.706658, 55.553071], - [37.706499, 55.553071] + [37.70741, 55.5537], + [37.70741, 55.55379], + [37.7075, 55.55379], + [37.7075, 55.5537], + [37.70741, 55.5537] ] ] } @@ -17688,11 +37496,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706499, 55.553161], - [37.706499, 55.553251], - [37.706658, 55.553251], - [37.706658, 55.553161], - [37.706499, 55.553161] + [37.70741, 55.55379], + [37.70741, 55.55388], + [37.7075, 55.55388], + [37.7075, 55.55379], + [37.70741, 55.55379] ] ] } @@ -17704,11 +37512,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706499, 55.553251], - [37.706499, 55.553341], - [37.706658, 55.553341], - [37.706658, 55.553251], - [37.706499, 55.553251] + [37.70741, 55.55388], + [37.70741, 55.55397], + [37.7075, 55.55397], + [37.7075, 55.55388], + [37.70741, 55.55388] ] ] } @@ -17720,11 +37528,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706499, 55.553341], - [37.706499, 55.553431], - [37.706658, 55.553431], - [37.706658, 55.553341], - [37.706499, 55.553341] + [37.70741, 55.55397], + [37.70741, 55.55406], + [37.7075, 55.55406], + [37.7075, 55.55397], + [37.70741, 55.55397] ] ] } @@ -17736,11 +37544,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706499, 55.553431], - [37.706499, 55.55352], - [37.706658, 55.55352], - [37.706658, 55.553431], - [37.706499, 55.553431] + [37.70741, 55.55406], + [37.70741, 55.55415], + [37.7075, 55.55415], + [37.7075, 55.55406], + [37.70741, 55.55406] ] ] } @@ -17752,11 +37560,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706499, 55.55352], - [37.706499, 55.55361], - [37.706658, 55.55361], - [37.706658, 55.55352], - [37.706499, 55.55352] + [37.70741, 55.55415], + [37.70741, 55.554239], + [37.7075, 55.554239], + [37.7075, 55.55415], + [37.70741, 55.55415] ] ] } @@ -17768,11 +37576,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706499, 55.55361], - [37.706499, 55.5537], - [37.706658, 55.5537], - [37.706658, 55.55361], - [37.706499, 55.55361] + [37.70741, 55.554239], + [37.70741, 55.554329], + [37.7075, 55.554329], + [37.7075, 55.554239], + [37.70741, 55.554239] ] ] } @@ -17784,11 +37592,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706499, 55.5537], - [37.706499, 55.55379], - [37.706658, 55.55379], - [37.706658, 55.5537], - [37.706499, 55.5537] + [37.70741, 55.554329], + [37.70741, 55.554419], + [37.7075, 55.554419], + [37.7075, 55.554329], + [37.70741, 55.554329] ] ] } @@ -17800,11 +37608,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706499, 55.55379], - [37.706499, 55.55388], - [37.706658, 55.55388], - [37.706658, 55.55379], - [37.706499, 55.55379] + [37.70741, 55.554419], + [37.70741, 55.554509], + [37.7075, 55.554509], + [37.7075, 55.554419], + [37.70741, 55.554419] ] ] } @@ -17816,11 +37624,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706499, 55.55388], - [37.706499, 55.55397], - [37.706658, 55.55397], - [37.706658, 55.55388], - [37.706499, 55.55388] + [37.70741, 55.554509], + [37.70741, 55.554599], + [37.7075, 55.554599], + [37.7075, 55.554509], + [37.70741, 55.554509] ] ] } @@ -17832,11 +37640,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706499, 55.55397], - [37.706499, 55.55406], - [37.706658, 55.55406], - [37.706658, 55.55397], - [37.706499, 55.55397] + [37.70741, 55.554599], + [37.70741, 55.554689], + [37.7075, 55.554689], + [37.7075, 55.554599], + [37.70741, 55.554599] ] ] } @@ -17848,11 +37656,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706499, 55.55406], - [37.706499, 55.55415], - [37.706658, 55.55415], - [37.706658, 55.55406], - [37.706499, 55.55406] + [37.70741, 55.554689], + [37.70741, 55.554778], + [37.7075, 55.554778], + [37.7075, 55.554689], + [37.70741, 55.554689] ] ] } @@ -17864,11 +37672,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706499, 55.55415], - [37.706499, 55.55424], - [37.706658, 55.55424], - [37.706658, 55.55415], - [37.706499, 55.55415] + [37.70741, 55.554778], + [37.70741, 55.554868], + [37.7075, 55.554868], + [37.7075, 55.554778], + [37.70741, 55.554778] ] ] } @@ -17880,11 +37688,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706499, 55.55424], - [37.706499, 55.55433], - [37.706658, 55.55433], - [37.706658, 55.55424], - [37.706499, 55.55424] + [37.70741, 55.554868], + [37.70741, 55.554958], + [37.7075, 55.554958], + [37.7075, 55.554868], + [37.70741, 55.554868] ] ] } @@ -17896,11 +37704,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706499, 55.55433], - [37.706499, 55.55442], - [37.706658, 55.55442], - [37.706658, 55.55433], - [37.706499, 55.55433] + [37.70741, 55.554958], + [37.70741, 55.555048], + [37.7075, 55.555048], + [37.7075, 55.554958], + [37.70741, 55.554958] ] ] } @@ -17912,11 +37720,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706499, 55.55442], - [37.706499, 55.55451], - [37.706658, 55.55451], - [37.706658, 55.55442], - [37.706499, 55.55442] + [37.70741, 55.555048], + [37.70741, 55.555138], + [37.7075, 55.555138], + [37.7075, 55.555048], + [37.70741, 55.555048] ] ] } @@ -17928,11 +37736,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706499, 55.55451], - [37.706499, 55.5546], - [37.706658, 55.5546], - [37.706658, 55.55451], - [37.706499, 55.55451] + [37.70741, 55.555138], + [37.70741, 55.555228], + [37.7075, 55.555228], + [37.7075, 55.555138], + [37.70741, 55.555138] ] ] } @@ -17944,11 +37752,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706499, 55.5546], - [37.706499, 55.55469], - [37.706658, 55.55469], - [37.706658, 55.5546], - [37.706499, 55.5546] + [37.70741, 55.555228], + [37.70741, 55.555317], + [37.7075, 55.555317], + [37.7075, 55.555228], + [37.70741, 55.555228] ] ] } @@ -17960,11 +37768,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706499, 55.55469], - [37.706499, 55.55478], - [37.706658, 55.55478], - [37.706658, 55.55469], - [37.706499, 55.55469] + [37.70741, 55.555317], + [37.70741, 55.555407], + [37.7075, 55.555407], + [37.7075, 55.555317], + [37.70741, 55.555317] ] ] } @@ -17976,11 +37784,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706499, 55.55478], - [37.706499, 55.554869], - [37.706658, 55.554869], - [37.706658, 55.55478], - [37.706499, 55.55478] + [37.70741, 55.555407], + [37.70741, 55.555497], + [37.7075, 55.555497], + [37.7075, 55.555407], + [37.70741, 55.555407] ] ] } @@ -17992,11 +37800,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706499, 55.554869], - [37.706499, 55.554959], - [37.706658, 55.554959], - [37.706658, 55.554869], - [37.706499, 55.554869] + [37.70741, 55.555497], + [37.70741, 55.555587], + [37.7075, 55.555587], + [37.7075, 55.555497], + [37.70741, 55.555497] ] ] } @@ -18008,11 +37816,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706499, 55.554959], - [37.706499, 55.555049], - [37.706658, 55.555049], - [37.706658, 55.554959], - [37.706499, 55.554959] + [37.70741, 55.555587], + [37.70741, 55.555677], + [37.7075, 55.555677], + [37.7075, 55.555587], + [37.70741, 55.555587] ] ] } @@ -18024,11 +37832,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706499, 55.555049], - [37.706499, 55.555139], - [37.706658, 55.555139], - [37.706658, 55.555049], - [37.706499, 55.555049] + [37.70741, 55.555677], + [37.70741, 55.555767], + [37.7075, 55.555767], + [37.7075, 55.555677], + [37.70741, 55.555677] ] ] } @@ -18040,11 +37848,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706499, 55.555139], - [37.706499, 55.555229], - [37.706658, 55.555229], - [37.706658, 55.555139], - [37.706499, 55.555139] + [37.70741, 55.555767], + [37.70741, 55.555856], + [37.7075, 55.555856], + [37.7075, 55.555767], + [37.70741, 55.555767] ] ] } @@ -18056,11 +37864,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706499, 55.555229], - [37.706499, 55.555319], - [37.706658, 55.555319], - [37.706658, 55.555229], - [37.706499, 55.555229] + [37.7075, 55.552712], + [37.7075, 55.552802], + [37.70759, 55.552802], + [37.70759, 55.552712], + [37.7075, 55.552712] ] ] } @@ -18072,11 +37880,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706499, 55.555319], - [37.706499, 55.555409], - [37.706658, 55.555409], - [37.706658, 55.555319], - [37.706499, 55.555319] + [37.7075, 55.552802], + [37.7075, 55.552892], + [37.70759, 55.552892], + [37.70759, 55.552802], + [37.7075, 55.552802] ] ] } @@ -18088,11 +37896,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706499, 55.555409], - [37.706499, 55.555499], - [37.706658, 55.555499], - [37.706658, 55.555409], - [37.706499, 55.555409] + [37.7075, 55.552892], + [37.7075, 55.552982], + [37.70759, 55.552982], + [37.70759, 55.552892], + [37.7075, 55.552892] ] ] } @@ -18104,11 +37912,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706499, 55.555499], - [37.706499, 55.555589], - [37.706658, 55.555589], - [37.706658, 55.555499], - [37.706499, 55.555499] + [37.7075, 55.552982], + [37.7075, 55.553072], + [37.70759, 55.553072], + [37.70759, 55.552982], + [37.7075, 55.552982] ] ] } @@ -18120,11 +37928,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706658, 55.551632], - [37.706658, 55.551722], - [37.706817, 55.551722], - [37.706817, 55.551632], - [37.706658, 55.551632] + [37.7075, 55.553072], + [37.7075, 55.553162], + [37.70759, 55.553162], + [37.70759, 55.553072], + [37.7075, 55.553072] ] ] } @@ -18136,11 +37944,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706658, 55.551722], - [37.706658, 55.551812], - [37.706817, 55.551812], - [37.706817, 55.551722], - [37.706658, 55.551722] + [37.7075, 55.553162], + [37.7075, 55.553251], + [37.70759, 55.553251], + [37.70759, 55.553162], + [37.7075, 55.553162] ] ] } @@ -18152,11 +37960,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706658, 55.551812], - [37.706658, 55.551902], - [37.706817, 55.551902], - [37.706817, 55.551812], - [37.706658, 55.551812] + [37.7075, 55.553251], + [37.7075, 55.553341], + [37.70759, 55.553341], + [37.70759, 55.553251], + [37.7075, 55.553251] ] ] } @@ -18168,11 +37976,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706658, 55.551902], - [37.706658, 55.551992], - [37.706817, 55.551992], - [37.706817, 55.551902], - [37.706658, 55.551902] + [37.7075, 55.553341], + [37.7075, 55.553431], + [37.70759, 55.553431], + [37.70759, 55.553341], + [37.7075, 55.553341] ] ] } @@ -18184,11 +37992,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706658, 55.551992], - [37.706658, 55.552082], - [37.706817, 55.552082], - [37.706817, 55.551992], - [37.706658, 55.551992] + [37.7075, 55.553431], + [37.7075, 55.553521], + [37.70759, 55.553521], + [37.70759, 55.553431], + [37.7075, 55.553431] ] ] } @@ -18200,11 +38008,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706658, 55.552082], - [37.706658, 55.552171], - [37.706817, 55.552171], - [37.706817, 55.552082], - [37.706658, 55.552082] + [37.7075, 55.553521], + [37.7075, 55.553611], + [37.70759, 55.553611], + [37.70759, 55.553521], + [37.7075, 55.553521] ] ] } @@ -18216,11 +38024,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706658, 55.552171], - [37.706658, 55.552261], - [37.706817, 55.552261], - [37.706817, 55.552171], - [37.706658, 55.552171] + [37.7075, 55.553611], + [37.7075, 55.5537], + [37.70759, 55.5537], + [37.70759, 55.553611], + [37.7075, 55.553611] ] ] } @@ -18232,11 +38040,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706658, 55.552261], - [37.706658, 55.552351], - [37.706817, 55.552351], - [37.706817, 55.552261], - [37.706658, 55.552261] + [37.7075, 55.5537], + [37.7075, 55.55379], + [37.70759, 55.55379], + [37.70759, 55.5537], + [37.7075, 55.5537] ] ] } @@ -18248,11 +38056,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706658, 55.552351], - [37.706658, 55.552441], - [37.706817, 55.552441], - [37.706817, 55.552351], - [37.706658, 55.552351] + [37.7075, 55.55379], + [37.7075, 55.55388], + [37.70759, 55.55388], + [37.70759, 55.55379], + [37.7075, 55.55379] ] ] } @@ -18264,11 +38072,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706658, 55.552441], - [37.706658, 55.552531], - [37.706817, 55.552531], - [37.706817, 55.552441], - [37.706658, 55.552441] + [37.7075, 55.55388], + [37.7075, 55.55397], + [37.70759, 55.55397], + [37.70759, 55.55388], + [37.7075, 55.55388] ] ] } @@ -18280,11 +38088,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706658, 55.552531], - [37.706658, 55.552621], - [37.706817, 55.552621], - [37.706817, 55.552531], - [37.706658, 55.552531] + [37.7075, 55.55397], + [37.7075, 55.55406], + [37.70759, 55.55406], + [37.70759, 55.55397], + [37.7075, 55.55397] ] ] } @@ -18296,11 +38104,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706658, 55.552621], - [37.706658, 55.552711], - [37.706817, 55.552711], - [37.706817, 55.552621], - [37.706658, 55.552621] + [37.7075, 55.55406], + [37.7075, 55.55415], + [37.70759, 55.55415], + [37.70759, 55.55406], + [37.7075, 55.55406] ] ] } @@ -18312,11 +38120,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706658, 55.552711], - [37.706658, 55.552801], - [37.706817, 55.552801], - [37.706817, 55.552711], - [37.706658, 55.552711] + [37.7075, 55.55415], + [37.7075, 55.554239], + [37.70759, 55.554239], + [37.70759, 55.55415], + [37.7075, 55.55415] ] ] } @@ -18328,11 +38136,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706658, 55.552801], - [37.706658, 55.552891], - [37.706817, 55.552891], - [37.706817, 55.552801], - [37.706658, 55.552801] + [37.7075, 55.554239], + [37.7075, 55.554329], + [37.70759, 55.554329], + [37.70759, 55.554239], + [37.7075, 55.554239] ] ] } @@ -18344,11 +38152,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706658, 55.552891], - [37.706658, 55.552981], - [37.706817, 55.552981], - [37.706817, 55.552891], - [37.706658, 55.552891] + [37.7075, 55.554329], + [37.7075, 55.554419], + [37.70759, 55.554419], + [37.70759, 55.554329], + [37.7075, 55.554329] ] ] } @@ -18360,11 +38168,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706658, 55.552981], - [37.706658, 55.553071], - [37.706817, 55.553071], - [37.706817, 55.552981], - [37.706658, 55.552981] + [37.7075, 55.554419], + [37.7075, 55.554509], + [37.70759, 55.554509], + [37.70759, 55.554419], + [37.7075, 55.554419] ] ] } @@ -18376,11 +38184,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706658, 55.553071], - [37.706658, 55.553161], - [37.706817, 55.553161], - [37.706817, 55.553071], - [37.706658, 55.553071] + [37.7075, 55.554509], + [37.7075, 55.554599], + [37.70759, 55.554599], + [37.70759, 55.554509], + [37.7075, 55.554509] ] ] } @@ -18392,11 +38200,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706658, 55.553161], - [37.706658, 55.553251], - [37.706817, 55.553251], - [37.706817, 55.553161], - [37.706658, 55.553161] + [37.7075, 55.554599], + [37.7075, 55.554689], + [37.70759, 55.554689], + [37.70759, 55.554599], + [37.7075, 55.554599] ] ] } @@ -18408,11 +38216,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706658, 55.553251], - [37.706658, 55.553341], - [37.706817, 55.553341], - [37.706817, 55.553251], - [37.706658, 55.553251] + [37.7075, 55.554689], + [37.7075, 55.554778], + [37.70759, 55.554778], + [37.70759, 55.554689], + [37.7075, 55.554689] ] ] } @@ -18424,11 +38232,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706658, 55.553341], - [37.706658, 55.553431], - [37.706817, 55.553431], - [37.706817, 55.553341], - [37.706658, 55.553341] + [37.7075, 55.554778], + [37.7075, 55.554868], + [37.70759, 55.554868], + [37.70759, 55.554778], + [37.7075, 55.554778] ] ] } @@ -18440,11 +38248,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706658, 55.553431], - [37.706658, 55.55352], - [37.706817, 55.55352], - [37.706817, 55.553431], - [37.706658, 55.553431] + [37.7075, 55.554868], + [37.7075, 55.554958], + [37.70759, 55.554958], + [37.70759, 55.554868], + [37.7075, 55.554868] ] ] } @@ -18456,11 +38264,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706658, 55.55352], - [37.706658, 55.55361], - [37.706817, 55.55361], - [37.706817, 55.55352], - [37.706658, 55.55352] + [37.7075, 55.554958], + [37.7075, 55.555048], + [37.70759, 55.555048], + [37.70759, 55.554958], + [37.7075, 55.554958] ] ] } @@ -18472,11 +38280,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706658, 55.55361], - [37.706658, 55.5537], - [37.706817, 55.5537], - [37.706817, 55.55361], - [37.706658, 55.55361] + [37.7075, 55.555048], + [37.7075, 55.555138], + [37.70759, 55.555138], + [37.70759, 55.555048], + [37.7075, 55.555048] ] ] } @@ -18488,11 +38296,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706658, 55.5537], - [37.706658, 55.55379], - [37.706817, 55.55379], - [37.706817, 55.5537], - [37.706658, 55.5537] + [37.7075, 55.555138], + [37.7075, 55.555228], + [37.70759, 55.555228], + [37.70759, 55.555138], + [37.7075, 55.555138] ] ] } @@ -18504,11 +38312,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706658, 55.55379], - [37.706658, 55.55388], - [37.706817, 55.55388], - [37.706817, 55.55379], - [37.706658, 55.55379] + [37.7075, 55.555228], + [37.7075, 55.555317], + [37.70759, 55.555317], + [37.70759, 55.555228], + [37.7075, 55.555228] ] ] } @@ -18520,11 +38328,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706658, 55.55388], - [37.706658, 55.55397], - [37.706817, 55.55397], - [37.706817, 55.55388], - [37.706658, 55.55388] + [37.7075, 55.555317], + [37.7075, 55.555407], + [37.70759, 55.555407], + [37.70759, 55.555317], + [37.7075, 55.555317] ] ] } @@ -18536,11 +38344,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706658, 55.55397], - [37.706658, 55.55406], - [37.706817, 55.55406], - [37.706817, 55.55397], - [37.706658, 55.55397] + [37.7075, 55.555407], + [37.7075, 55.555497], + [37.70759, 55.555497], + [37.70759, 55.555407], + [37.7075, 55.555407] ] ] } @@ -18552,11 +38360,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706658, 55.55406], - [37.706658, 55.55415], - [37.706817, 55.55415], - [37.706817, 55.55406], - [37.706658, 55.55406] + [37.7075, 55.555497], + [37.7075, 55.555587], + [37.70759, 55.555587], + [37.70759, 55.555497], + [37.7075, 55.555497] ] ] } @@ -18568,11 +38376,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706658, 55.55415], - [37.706658, 55.55424], - [37.706817, 55.55424], - [37.706817, 55.55415], - [37.706658, 55.55415] + [37.7075, 55.555587], + [37.7075, 55.555677], + [37.70759, 55.555677], + [37.70759, 55.555587], + [37.7075, 55.555587] ] ] } @@ -18584,11 +38392,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706658, 55.55424], - [37.706658, 55.55433], - [37.706817, 55.55433], - [37.706817, 55.55424], - [37.706658, 55.55424] + [37.7075, 55.555677], + [37.7075, 55.555767], + [37.70759, 55.555767], + [37.70759, 55.555677], + [37.7075, 55.555677] ] ] } @@ -18600,11 +38408,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706658, 55.55433], - [37.706658, 55.55442], - [37.706817, 55.55442], - [37.706817, 55.55433], - [37.706658, 55.55433] + [37.7075, 55.555767], + [37.7075, 55.555856], + [37.70759, 55.555856], + [37.70759, 55.555767], + [37.7075, 55.555767] ] ] } @@ -18616,11 +38424,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706658, 55.55442], - [37.706658, 55.55451], - [37.706817, 55.55451], - [37.706817, 55.55442], - [37.706658, 55.55442] + [37.70759, 55.552802], + [37.70759, 55.552892], + [37.70768, 55.552892], + [37.70768, 55.552802], + [37.70759, 55.552802] ] ] } @@ -18632,11 +38440,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706658, 55.55451], - [37.706658, 55.5546], - [37.706817, 55.5546], - [37.706817, 55.55451], - [37.706658, 55.55451] + [37.70759, 55.552892], + [37.70759, 55.552982], + [37.70768, 55.552982], + [37.70768, 55.552892], + [37.70759, 55.552892] ] ] } @@ -18648,11 +38456,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706658, 55.5546], - [37.706658, 55.55469], - [37.706817, 55.55469], - [37.706817, 55.5546], - [37.706658, 55.5546] + [37.70759, 55.552982], + [37.70759, 55.553072], + [37.70768, 55.553072], + [37.70768, 55.552982], + [37.70759, 55.552982] ] ] } @@ -18664,11 +38472,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706658, 55.55469], - [37.706658, 55.55478], - [37.706817, 55.55478], - [37.706817, 55.55469], - [37.706658, 55.55469] + [37.70759, 55.553072], + [37.70759, 55.553162], + [37.70768, 55.553162], + [37.70768, 55.553072], + [37.70759, 55.553072] ] ] } @@ -18680,11 +38488,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706658, 55.55478], - [37.706658, 55.554869], - [37.706817, 55.554869], - [37.706817, 55.55478], - [37.706658, 55.55478] + [37.70759, 55.553162], + [37.70759, 55.553251], + [37.70768, 55.553251], + [37.70768, 55.553162], + [37.70759, 55.553162] ] ] } @@ -18696,11 +38504,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706658, 55.554869], - [37.706658, 55.554959], - [37.706817, 55.554959], - [37.706817, 55.554869], - [37.706658, 55.554869] + [37.70759, 55.553251], + [37.70759, 55.553341], + [37.70768, 55.553341], + [37.70768, 55.553251], + [37.70759, 55.553251] ] ] } @@ -18712,11 +38520,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706658, 55.554959], - [37.706658, 55.555049], - [37.706817, 55.555049], - [37.706817, 55.554959], - [37.706658, 55.554959] + [37.70759, 55.553341], + [37.70759, 55.553431], + [37.70768, 55.553431], + [37.70768, 55.553341], + [37.70759, 55.553341] ] ] } @@ -18728,11 +38536,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706658, 55.555049], - [37.706658, 55.555139], - [37.706817, 55.555139], - [37.706817, 55.555049], - [37.706658, 55.555049] + [37.70759, 55.553431], + [37.70759, 55.553521], + [37.70768, 55.553521], + [37.70768, 55.553431], + [37.70759, 55.553431] ] ] } @@ -18744,11 +38552,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706658, 55.555139], - [37.706658, 55.555229], - [37.706817, 55.555229], - [37.706817, 55.555139], - [37.706658, 55.555139] + [37.70759, 55.553521], + [37.70759, 55.553611], + [37.70768, 55.553611], + [37.70768, 55.553521], + [37.70759, 55.553521] ] ] } @@ -18760,11 +38568,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706658, 55.555229], - [37.706658, 55.555319], - [37.706817, 55.555319], - [37.706817, 55.555229], - [37.706658, 55.555229] + [37.70759, 55.553611], + [37.70759, 55.5537], + [37.70768, 55.5537], + [37.70768, 55.553611], + [37.70759, 55.553611] ] ] } @@ -18776,11 +38584,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706658, 55.555319], - [37.706658, 55.555409], - [37.706817, 55.555409], - [37.706817, 55.555319], - [37.706658, 55.555319] + [37.70759, 55.5537], + [37.70759, 55.55379], + [37.70768, 55.55379], + [37.70768, 55.5537], + [37.70759, 55.5537] ] ] } @@ -18792,11 +38600,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706658, 55.555409], - [37.706658, 55.555499], - [37.706817, 55.555499], - [37.706817, 55.555409], - [37.706658, 55.555409] + [37.70759, 55.55379], + [37.70759, 55.55388], + [37.70768, 55.55388], + [37.70768, 55.55379], + [37.70759, 55.55379] ] ] } @@ -18808,11 +38616,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706658, 55.555499], - [37.706658, 55.555589], - [37.706817, 55.555589], - [37.706817, 55.555499], - [37.706658, 55.555499] + [37.70759, 55.55388], + [37.70759, 55.55397], + [37.70768, 55.55397], + [37.70768, 55.55388], + [37.70759, 55.55388] ] ] } @@ -18824,11 +38632,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706658, 55.555589], - [37.706658, 55.555679], - [37.706817, 55.555679], - [37.706817, 55.555589], - [37.706658, 55.555589] + [37.70759, 55.55397], + [37.70759, 55.55406], + [37.70768, 55.55406], + [37.70768, 55.55397], + [37.70759, 55.55397] ] ] } @@ -18840,11 +38648,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706817, 55.551812], - [37.706817, 55.551902], - [37.706976, 55.551902], - [37.706976, 55.551812], - [37.706817, 55.551812] + [37.70759, 55.55406], + [37.70759, 55.55415], + [37.70768, 55.55415], + [37.70768, 55.55406], + [37.70759, 55.55406] ] ] } @@ -18856,11 +38664,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706817, 55.551902], - [37.706817, 55.551992], - [37.706976, 55.551992], - [37.706976, 55.551902], - [37.706817, 55.551902] + [37.70759, 55.55415], + [37.70759, 55.554239], + [37.70768, 55.554239], + [37.70768, 55.55415], + [37.70759, 55.55415] ] ] } @@ -18872,11 +38680,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706817, 55.551992], - [37.706817, 55.552082], - [37.706976, 55.552082], - [37.706976, 55.551992], - [37.706817, 55.551992] + [37.70759, 55.554239], + [37.70759, 55.554329], + [37.70768, 55.554329], + [37.70768, 55.554239], + [37.70759, 55.554239] ] ] } @@ -18888,11 +38696,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706817, 55.552082], - [37.706817, 55.552171], - [37.706976, 55.552171], - [37.706976, 55.552082], - [37.706817, 55.552082] + [37.70759, 55.554329], + [37.70759, 55.554419], + [37.70768, 55.554419], + [37.70768, 55.554329], + [37.70759, 55.554329] ] ] } @@ -18904,11 +38712,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706817, 55.552171], - [37.706817, 55.552261], - [37.706976, 55.552261], - [37.706976, 55.552171], - [37.706817, 55.552171] + [37.70759, 55.554419], + [37.70759, 55.554509], + [37.70768, 55.554509], + [37.70768, 55.554419], + [37.70759, 55.554419] ] ] } @@ -18920,11 +38728,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706817, 55.552261], - [37.706817, 55.552351], - [37.706976, 55.552351], - [37.706976, 55.552261], - [37.706817, 55.552261] + [37.70759, 55.554509], + [37.70759, 55.554599], + [37.70768, 55.554599], + [37.70768, 55.554509], + [37.70759, 55.554509] ] ] } @@ -18936,11 +38744,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706817, 55.552351], - [37.706817, 55.552441], - [37.706976, 55.552441], - [37.706976, 55.552351], - [37.706817, 55.552351] + [37.70759, 55.554599], + [37.70759, 55.554689], + [37.70768, 55.554689], + [37.70768, 55.554599], + [37.70759, 55.554599] ] ] } @@ -18952,11 +38760,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706817, 55.552441], - [37.706817, 55.552531], - [37.706976, 55.552531], - [37.706976, 55.552441], - [37.706817, 55.552441] + [37.70759, 55.554689], + [37.70759, 55.554778], + [37.70768, 55.554778], + [37.70768, 55.554689], + [37.70759, 55.554689] ] ] } @@ -18968,11 +38776,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706817, 55.552531], - [37.706817, 55.552621], - [37.706976, 55.552621], - [37.706976, 55.552531], - [37.706817, 55.552531] + [37.70759, 55.554778], + [37.70759, 55.554868], + [37.70768, 55.554868], + [37.70768, 55.554778], + [37.70759, 55.554778] ] ] } @@ -18984,11 +38792,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706817, 55.552621], - [37.706817, 55.552711], - [37.706976, 55.552711], - [37.706976, 55.552621], - [37.706817, 55.552621] + [37.70759, 55.554868], + [37.70759, 55.554958], + [37.70768, 55.554958], + [37.70768, 55.554868], + [37.70759, 55.554868] ] ] } @@ -19000,11 +38808,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706817, 55.552711], - [37.706817, 55.552801], - [37.706976, 55.552801], - [37.706976, 55.552711], - [37.706817, 55.552711] + [37.70759, 55.554958], + [37.70759, 55.555048], + [37.70768, 55.555048], + [37.70768, 55.554958], + [37.70759, 55.554958] ] ] } @@ -19016,11 +38824,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706817, 55.552801], - [37.706817, 55.552891], - [37.706976, 55.552891], - [37.706976, 55.552801], - [37.706817, 55.552801] + [37.70759, 55.555048], + [37.70759, 55.555138], + [37.70768, 55.555138], + [37.70768, 55.555048], + [37.70759, 55.555048] ] ] } @@ -19032,11 +38840,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706817, 55.552891], - [37.706817, 55.552981], - [37.706976, 55.552981], - [37.706976, 55.552891], - [37.706817, 55.552891] + [37.70759, 55.555138], + [37.70759, 55.555228], + [37.70768, 55.555228], + [37.70768, 55.555138], + [37.70759, 55.555138] ] ] } @@ -19048,11 +38856,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706817, 55.552981], - [37.706817, 55.553071], - [37.706976, 55.553071], - [37.706976, 55.552981], - [37.706817, 55.552981] + [37.70759, 55.555228], + [37.70759, 55.555317], + [37.70768, 55.555317], + [37.70768, 55.555228], + [37.70759, 55.555228] ] ] } @@ -19064,11 +38872,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706817, 55.553071], - [37.706817, 55.553161], - [37.706976, 55.553161], - [37.706976, 55.553071], - [37.706817, 55.553071] + [37.70759, 55.555317], + [37.70759, 55.555407], + [37.70768, 55.555407], + [37.70768, 55.555317], + [37.70759, 55.555317] ] ] } @@ -19080,11 +38888,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706817, 55.553161], - [37.706817, 55.553251], - [37.706976, 55.553251], - [37.706976, 55.553161], - [37.706817, 55.553161] + [37.70759, 55.555407], + [37.70759, 55.555497], + [37.70768, 55.555497], + [37.70768, 55.555407], + [37.70759, 55.555407] ] ] } @@ -19096,11 +38904,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706817, 55.553251], - [37.706817, 55.553341], - [37.706976, 55.553341], - [37.706976, 55.553251], - [37.706817, 55.553251] + [37.70759, 55.555497], + [37.70759, 55.555587], + [37.70768, 55.555587], + [37.70768, 55.555497], + [37.70759, 55.555497] ] ] } @@ -19112,11 +38920,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706817, 55.553341], - [37.706817, 55.553431], - [37.706976, 55.553431], - [37.706976, 55.553341], - [37.706817, 55.553341] + [37.70759, 55.555587], + [37.70759, 55.555677], + [37.70768, 55.555677], + [37.70768, 55.555587], + [37.70759, 55.555587] ] ] } @@ -19128,11 +38936,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706817, 55.553431], - [37.706817, 55.55352], - [37.706976, 55.55352], - [37.706976, 55.553431], - [37.706817, 55.553431] + [37.70759, 55.555677], + [37.70759, 55.555767], + [37.70768, 55.555767], + [37.70768, 55.555677], + [37.70759, 55.555677] ] ] } @@ -19144,11 +38952,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706817, 55.55352], - [37.706817, 55.55361], - [37.706976, 55.55361], - [37.706976, 55.55352], - [37.706817, 55.55352] + [37.70759, 55.555767], + [37.70759, 55.555856], + [37.70768, 55.555856], + [37.70768, 55.555767], + [37.70759, 55.555767] ] ] } @@ -19160,11 +38968,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706817, 55.55361], - [37.706817, 55.5537], - [37.706976, 55.5537], - [37.706976, 55.55361], - [37.706817, 55.55361] + [37.70768, 55.552892], + [37.70768, 55.552982], + [37.707769, 55.552982], + [37.707769, 55.552892], + [37.70768, 55.552892] ] ] } @@ -19176,11 +38984,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706817, 55.5537], - [37.706817, 55.55379], - [37.706976, 55.55379], - [37.706976, 55.5537], - [37.706817, 55.5537] + [37.70768, 55.552982], + [37.70768, 55.553072], + [37.707769, 55.553072], + [37.707769, 55.552982], + [37.70768, 55.552982] ] ] } @@ -19192,11 +39000,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706817, 55.55379], - [37.706817, 55.55388], - [37.706976, 55.55388], - [37.706976, 55.55379], - [37.706817, 55.55379] + [37.70768, 55.553072], + [37.70768, 55.553162], + [37.707769, 55.553162], + [37.707769, 55.553072], + [37.70768, 55.553072] ] ] } @@ -19208,11 +39016,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706817, 55.55388], - [37.706817, 55.55397], - [37.706976, 55.55397], - [37.706976, 55.55388], - [37.706817, 55.55388] + [37.70768, 55.553162], + [37.70768, 55.553251], + [37.707769, 55.553251], + [37.707769, 55.553162], + [37.70768, 55.553162] ] ] } @@ -19224,11 +39032,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706817, 55.55397], - [37.706817, 55.55406], - [37.706976, 55.55406], - [37.706976, 55.55397], - [37.706817, 55.55397] + [37.70768, 55.553251], + [37.70768, 55.553341], + [37.707769, 55.553341], + [37.707769, 55.553251], + [37.70768, 55.553251] ] ] } @@ -19240,11 +39048,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706817, 55.55406], - [37.706817, 55.55415], - [37.706976, 55.55415], - [37.706976, 55.55406], - [37.706817, 55.55406] + [37.70768, 55.553341], + [37.70768, 55.553431], + [37.707769, 55.553431], + [37.707769, 55.553341], + [37.70768, 55.553341] ] ] } @@ -19256,11 +39064,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706817, 55.55415], - [37.706817, 55.55424], - [37.706976, 55.55424], - [37.706976, 55.55415], - [37.706817, 55.55415] + [37.70768, 55.553431], + [37.70768, 55.553521], + [37.707769, 55.553521], + [37.707769, 55.553431], + [37.70768, 55.553431] ] ] } @@ -19272,11 +39080,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706817, 55.55424], - [37.706817, 55.55433], - [37.706976, 55.55433], - [37.706976, 55.55424], - [37.706817, 55.55424] + [37.70768, 55.553521], + [37.70768, 55.553611], + [37.707769, 55.553611], + [37.707769, 55.553521], + [37.70768, 55.553521] ] ] } @@ -19288,11 +39096,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706817, 55.55433], - [37.706817, 55.55442], - [37.706976, 55.55442], - [37.706976, 55.55433], - [37.706817, 55.55433] + [37.70768, 55.553611], + [37.70768, 55.5537], + [37.707769, 55.5537], + [37.707769, 55.553611], + [37.70768, 55.553611] ] ] } @@ -19304,11 +39112,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706817, 55.55442], - [37.706817, 55.55451], - [37.706976, 55.55451], - [37.706976, 55.55442], - [37.706817, 55.55442] + [37.70768, 55.5537], + [37.70768, 55.55379], + [37.707769, 55.55379], + [37.707769, 55.5537], + [37.70768, 55.5537] ] ] } @@ -19320,11 +39128,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706817, 55.55451], - [37.706817, 55.5546], - [37.706976, 55.5546], - [37.706976, 55.55451], - [37.706817, 55.55451] + [37.70768, 55.55379], + [37.70768, 55.55388], + [37.707769, 55.55388], + [37.707769, 55.55379], + [37.70768, 55.55379] ] ] } @@ -19336,11 +39144,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706817, 55.5546], - [37.706817, 55.55469], - [37.706976, 55.55469], - [37.706976, 55.5546], - [37.706817, 55.5546] + [37.70768, 55.55388], + [37.70768, 55.55397], + [37.707769, 55.55397], + [37.707769, 55.55388], + [37.70768, 55.55388] ] ] } @@ -19352,11 +39160,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706817, 55.55469], - [37.706817, 55.55478], - [37.706976, 55.55478], - [37.706976, 55.55469], - [37.706817, 55.55469] + [37.70768, 55.55397], + [37.70768, 55.55406], + [37.707769, 55.55406], + [37.707769, 55.55397], + [37.70768, 55.55397] ] ] } @@ -19368,11 +39176,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706817, 55.55478], - [37.706817, 55.554869], - [37.706976, 55.554869], - [37.706976, 55.55478], - [37.706817, 55.55478] + [37.70768, 55.55406], + [37.70768, 55.55415], + [37.707769, 55.55415], + [37.707769, 55.55406], + [37.70768, 55.55406] ] ] } @@ -19384,11 +39192,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706817, 55.554869], - [37.706817, 55.554959], - [37.706976, 55.554959], - [37.706976, 55.554869], - [37.706817, 55.554869] + [37.70768, 55.55415], + [37.70768, 55.554239], + [37.707769, 55.554239], + [37.707769, 55.55415], + [37.70768, 55.55415] ] ] } @@ -19400,11 +39208,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706817, 55.554959], - [37.706817, 55.555049], - [37.706976, 55.555049], - [37.706976, 55.554959], - [37.706817, 55.554959] + [37.70768, 55.554239], + [37.70768, 55.554329], + [37.707769, 55.554329], + [37.707769, 55.554239], + [37.70768, 55.554239] ] ] } @@ -19416,11 +39224,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706817, 55.555049], - [37.706817, 55.555139], - [37.706976, 55.555139], - [37.706976, 55.555049], - [37.706817, 55.555049] + [37.70768, 55.554329], + [37.70768, 55.554419], + [37.707769, 55.554419], + [37.707769, 55.554329], + [37.70768, 55.554329] ] ] } @@ -19432,11 +39240,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706817, 55.555139], - [37.706817, 55.555229], - [37.706976, 55.555229], - [37.706976, 55.555139], - [37.706817, 55.555139] + [37.70768, 55.554419], + [37.70768, 55.554509], + [37.707769, 55.554509], + [37.707769, 55.554419], + [37.70768, 55.554419] ] ] } @@ -19448,11 +39256,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706817, 55.555229], - [37.706817, 55.555319], - [37.706976, 55.555319], - [37.706976, 55.555229], - [37.706817, 55.555229] + [37.70768, 55.554509], + [37.70768, 55.554599], + [37.707769, 55.554599], + [37.707769, 55.554509], + [37.70768, 55.554509] ] ] } @@ -19464,11 +39272,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706817, 55.555319], - [37.706817, 55.555409], - [37.706976, 55.555409], - [37.706976, 55.555319], - [37.706817, 55.555319] + [37.70768, 55.554599], + [37.70768, 55.554689], + [37.707769, 55.554689], + [37.707769, 55.554599], + [37.70768, 55.554599] ] ] } @@ -19480,11 +39288,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706817, 55.555409], - [37.706817, 55.555499], - [37.706976, 55.555499], - [37.706976, 55.555409], - [37.706817, 55.555409] + [37.70768, 55.554689], + [37.70768, 55.554778], + [37.707769, 55.554778], + [37.707769, 55.554689], + [37.70768, 55.554689] ] ] } @@ -19496,11 +39304,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706817, 55.555499], - [37.706817, 55.555589], - [37.706976, 55.555589], - [37.706976, 55.555499], - [37.706817, 55.555499] + [37.70768, 55.554778], + [37.70768, 55.554868], + [37.707769, 55.554868], + [37.707769, 55.554778], + [37.70768, 55.554778] ] ] } @@ -19512,11 +39320,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706817, 55.555589], - [37.706817, 55.555679], - [37.706976, 55.555679], - [37.706976, 55.555589], - [37.706817, 55.555589] + [37.70768, 55.554868], + [37.70768, 55.554958], + [37.707769, 55.554958], + [37.707769, 55.554868], + [37.70768, 55.554868] ] ] } @@ -19528,11 +39336,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706976, 55.551992], - [37.706976, 55.552082], - [37.707135, 55.552082], - [37.707135, 55.551992], - [37.706976, 55.551992] + [37.70768, 55.554958], + [37.70768, 55.555048], + [37.707769, 55.555048], + [37.707769, 55.554958], + [37.70768, 55.554958] ] ] } @@ -19544,11 +39352,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706976, 55.552082], - [37.706976, 55.552171], - [37.707135, 55.552171], - [37.707135, 55.552082], - [37.706976, 55.552082] + [37.70768, 55.555048], + [37.70768, 55.555138], + [37.707769, 55.555138], + [37.707769, 55.555048], + [37.70768, 55.555048] ] ] } @@ -19560,11 +39368,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706976, 55.552171], - [37.706976, 55.552261], - [37.707135, 55.552261], - [37.707135, 55.552171], - [37.706976, 55.552171] + [37.70768, 55.555138], + [37.70768, 55.555228], + [37.707769, 55.555228], + [37.707769, 55.555138], + [37.70768, 55.555138] ] ] } @@ -19576,11 +39384,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706976, 55.552261], - [37.706976, 55.552351], - [37.707135, 55.552351], - [37.707135, 55.552261], - [37.706976, 55.552261] + [37.70768, 55.555228], + [37.70768, 55.555317], + [37.707769, 55.555317], + [37.707769, 55.555228], + [37.70768, 55.555228] ] ] } @@ -19592,11 +39400,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706976, 55.552351], - [37.706976, 55.552441], - [37.707135, 55.552441], - [37.707135, 55.552351], - [37.706976, 55.552351] + [37.70768, 55.555317], + [37.70768, 55.555407], + [37.707769, 55.555407], + [37.707769, 55.555317], + [37.70768, 55.555317] ] ] } @@ -19608,11 +39416,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706976, 55.552441], - [37.706976, 55.552531], - [37.707135, 55.552531], - [37.707135, 55.552441], - [37.706976, 55.552441] + [37.70768, 55.555407], + [37.70768, 55.555497], + [37.707769, 55.555497], + [37.707769, 55.555407], + [37.70768, 55.555407] ] ] } @@ -19624,11 +39432,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706976, 55.552531], - [37.706976, 55.552621], - [37.707135, 55.552621], - [37.707135, 55.552531], - [37.706976, 55.552531] + [37.70768, 55.555497], + [37.70768, 55.555587], + [37.707769, 55.555587], + [37.707769, 55.555497], + [37.70768, 55.555497] ] ] } @@ -19640,11 +39448,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706976, 55.552621], - [37.706976, 55.552711], - [37.707135, 55.552711], - [37.707135, 55.552621], - [37.706976, 55.552621] + [37.70768, 55.555587], + [37.70768, 55.555677], + [37.707769, 55.555677], + [37.707769, 55.555587], + [37.70768, 55.555587] ] ] } @@ -19656,11 +39464,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706976, 55.552711], - [37.706976, 55.552801], - [37.707135, 55.552801], - [37.707135, 55.552711], - [37.706976, 55.552711] + [37.70768, 55.555677], + [37.70768, 55.555767], + [37.707769, 55.555767], + [37.707769, 55.555677], + [37.70768, 55.555677] ] ] } @@ -19672,11 +39480,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706976, 55.552801], - [37.706976, 55.552891], - [37.707135, 55.552891], - [37.707135, 55.552801], - [37.706976, 55.552801] + [37.70768, 55.555767], + [37.70768, 55.555856], + [37.707769, 55.555856], + [37.707769, 55.555767], + [37.70768, 55.555767] ] ] } @@ -19688,11 +39496,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706976, 55.552891], - [37.706976, 55.552981], - [37.707135, 55.552981], - [37.707135, 55.552891], - [37.706976, 55.552891] + [37.70768, 55.555856], + [37.70768, 55.555946], + [37.707769, 55.555946], + [37.707769, 55.555856], + [37.70768, 55.555856] ] ] } @@ -19704,11 +39512,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706976, 55.552981], - [37.706976, 55.553071], - [37.707135, 55.553071], - [37.707135, 55.552981], - [37.706976, 55.552981] + [37.707769, 55.552982], + [37.707769, 55.553072], + [37.707859, 55.553072], + [37.707859, 55.552982], + [37.707769, 55.552982] ] ] } @@ -19720,11 +39528,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706976, 55.553071], - [37.706976, 55.553161], - [37.707135, 55.553161], - [37.707135, 55.553071], - [37.706976, 55.553071] + [37.707769, 55.553072], + [37.707769, 55.553162], + [37.707859, 55.553162], + [37.707859, 55.553072], + [37.707769, 55.553072] ] ] } @@ -19736,11 +39544,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706976, 55.553161], - [37.706976, 55.553251], - [37.707135, 55.553251], - [37.707135, 55.553161], - [37.706976, 55.553161] + [37.707769, 55.553162], + [37.707769, 55.553251], + [37.707859, 55.553251], + [37.707859, 55.553162], + [37.707769, 55.553162] ] ] } @@ -19752,11 +39560,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706976, 55.553251], - [37.706976, 55.553341], - [37.707135, 55.553341], - [37.707135, 55.553251], - [37.706976, 55.553251] + [37.707769, 55.553251], + [37.707769, 55.553341], + [37.707859, 55.553341], + [37.707859, 55.553251], + [37.707769, 55.553251] ] ] } @@ -19768,11 +39576,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706976, 55.553341], - [37.706976, 55.553431], - [37.707135, 55.553431], - [37.707135, 55.553341], - [37.706976, 55.553341] + [37.707769, 55.553341], + [37.707769, 55.553431], + [37.707859, 55.553431], + [37.707859, 55.553341], + [37.707769, 55.553341] ] ] } @@ -19784,11 +39592,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706976, 55.553431], - [37.706976, 55.55352], - [37.707135, 55.55352], - [37.707135, 55.553431], - [37.706976, 55.553431] + [37.707769, 55.553431], + [37.707769, 55.553521], + [37.707859, 55.553521], + [37.707859, 55.553431], + [37.707769, 55.553431] ] ] } @@ -19800,11 +39608,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706976, 55.55352], - [37.706976, 55.55361], - [37.707135, 55.55361], - [37.707135, 55.55352], - [37.706976, 55.55352] + [37.707769, 55.553521], + [37.707769, 55.553611], + [37.707859, 55.553611], + [37.707859, 55.553521], + [37.707769, 55.553521] ] ] } @@ -19816,11 +39624,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706976, 55.55361], - [37.706976, 55.5537], - [37.707135, 55.5537], - [37.707135, 55.55361], - [37.706976, 55.55361] + [37.707769, 55.553611], + [37.707769, 55.5537], + [37.707859, 55.5537], + [37.707859, 55.553611], + [37.707769, 55.553611] ] ] } @@ -19832,11 +39640,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706976, 55.5537], - [37.706976, 55.55379], - [37.707135, 55.55379], - [37.707135, 55.5537], - [37.706976, 55.5537] + [37.707769, 55.5537], + [37.707769, 55.55379], + [37.707859, 55.55379], + [37.707859, 55.5537], + [37.707769, 55.5537] ] ] } @@ -19848,11 +39656,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706976, 55.55379], - [37.706976, 55.55388], - [37.707135, 55.55388], - [37.707135, 55.55379], - [37.706976, 55.55379] + [37.707769, 55.55379], + [37.707769, 55.55388], + [37.707859, 55.55388], + [37.707859, 55.55379], + [37.707769, 55.55379] ] ] } @@ -19864,11 +39672,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706976, 55.55388], - [37.706976, 55.55397], - [37.707135, 55.55397], - [37.707135, 55.55388], - [37.706976, 55.55388] + [37.707769, 55.55388], + [37.707769, 55.55397], + [37.707859, 55.55397], + [37.707859, 55.55388], + [37.707769, 55.55388] ] ] } @@ -19880,11 +39688,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706976, 55.55397], - [37.706976, 55.55406], - [37.707135, 55.55406], - [37.707135, 55.55397], - [37.706976, 55.55397] + [37.707769, 55.55397], + [37.707769, 55.55406], + [37.707859, 55.55406], + [37.707859, 55.55397], + [37.707769, 55.55397] ] ] } @@ -19896,11 +39704,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706976, 55.55406], - [37.706976, 55.55415], - [37.707135, 55.55415], - [37.707135, 55.55406], - [37.706976, 55.55406] + [37.707769, 55.55406], + [37.707769, 55.55415], + [37.707859, 55.55415], + [37.707859, 55.55406], + [37.707769, 55.55406] ] ] } @@ -19912,11 +39720,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706976, 55.55415], - [37.706976, 55.55424], - [37.707135, 55.55424], - [37.707135, 55.55415], - [37.706976, 55.55415] + [37.707769, 55.55415], + [37.707769, 55.554239], + [37.707859, 55.554239], + [37.707859, 55.55415], + [37.707769, 55.55415] ] ] } @@ -19928,11 +39736,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706976, 55.55424], - [37.706976, 55.55433], - [37.707135, 55.55433], - [37.707135, 55.55424], - [37.706976, 55.55424] + [37.707769, 55.554239], + [37.707769, 55.554329], + [37.707859, 55.554329], + [37.707859, 55.554239], + [37.707769, 55.554239] ] ] } @@ -19944,11 +39752,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706976, 55.55433], - [37.706976, 55.55442], - [37.707135, 55.55442], - [37.707135, 55.55433], - [37.706976, 55.55433] + [37.707769, 55.554329], + [37.707769, 55.554419], + [37.707859, 55.554419], + [37.707859, 55.554329], + [37.707769, 55.554329] ] ] } @@ -19960,11 +39768,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706976, 55.55442], - [37.706976, 55.55451], - [37.707135, 55.55451], - [37.707135, 55.55442], - [37.706976, 55.55442] + [37.707769, 55.554419], + [37.707769, 55.554509], + [37.707859, 55.554509], + [37.707859, 55.554419], + [37.707769, 55.554419] ] ] } @@ -19976,11 +39784,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706976, 55.55451], - [37.706976, 55.5546], - [37.707135, 55.5546], - [37.707135, 55.55451], - [37.706976, 55.55451] + [37.707769, 55.554509], + [37.707769, 55.554599], + [37.707859, 55.554599], + [37.707859, 55.554509], + [37.707769, 55.554509] ] ] } @@ -19992,11 +39800,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706976, 55.5546], - [37.706976, 55.55469], - [37.707135, 55.55469], - [37.707135, 55.5546], - [37.706976, 55.5546] + [37.707769, 55.554599], + [37.707769, 55.554689], + [37.707859, 55.554689], + [37.707859, 55.554599], + [37.707769, 55.554599] ] ] } @@ -20008,11 +39816,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706976, 55.55469], - [37.706976, 55.55478], - [37.707135, 55.55478], - [37.707135, 55.55469], - [37.706976, 55.55469] + [37.707769, 55.554689], + [37.707769, 55.554778], + [37.707859, 55.554778], + [37.707859, 55.554689], + [37.707769, 55.554689] ] ] } @@ -20024,11 +39832,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706976, 55.55478], - [37.706976, 55.554869], - [37.707135, 55.554869], - [37.707135, 55.55478], - [37.706976, 55.55478] + [37.707769, 55.554778], + [37.707769, 55.554868], + [37.707859, 55.554868], + [37.707859, 55.554778], + [37.707769, 55.554778] ] ] } @@ -20040,11 +39848,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706976, 55.554869], - [37.706976, 55.554959], - [37.707135, 55.554959], - [37.707135, 55.554869], - [37.706976, 55.554869] + [37.707769, 55.554868], + [37.707769, 55.554958], + [37.707859, 55.554958], + [37.707859, 55.554868], + [37.707769, 55.554868] ] ] } @@ -20056,11 +39864,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706976, 55.554959], - [37.706976, 55.555049], - [37.707135, 55.555049], - [37.707135, 55.554959], - [37.706976, 55.554959] + [37.707769, 55.554958], + [37.707769, 55.555048], + [37.707859, 55.555048], + [37.707859, 55.554958], + [37.707769, 55.554958] ] ] } @@ -20072,11 +39880,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706976, 55.555049], - [37.706976, 55.555139], - [37.707135, 55.555139], - [37.707135, 55.555049], - [37.706976, 55.555049] + [37.707769, 55.555048], + [37.707769, 55.555138], + [37.707859, 55.555138], + [37.707859, 55.555048], + [37.707769, 55.555048] ] ] } @@ -20088,11 +39896,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706976, 55.555139], - [37.706976, 55.555229], - [37.707135, 55.555229], - [37.707135, 55.555139], - [37.706976, 55.555139] + [37.707769, 55.555138], + [37.707769, 55.555228], + [37.707859, 55.555228], + [37.707859, 55.555138], + [37.707769, 55.555138] ] ] } @@ -20104,11 +39912,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706976, 55.555229], - [37.706976, 55.555319], - [37.707135, 55.555319], - [37.707135, 55.555229], - [37.706976, 55.555229] + [37.707769, 55.555228], + [37.707769, 55.555317], + [37.707859, 55.555317], + [37.707859, 55.555228], + [37.707769, 55.555228] ] ] } @@ -20120,11 +39928,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706976, 55.555319], - [37.706976, 55.555409], - [37.707135, 55.555409], - [37.707135, 55.555319], - [37.706976, 55.555319] + [37.707769, 55.555317], + [37.707769, 55.555407], + [37.707859, 55.555407], + [37.707859, 55.555317], + [37.707769, 55.555317] ] ] } @@ -20136,11 +39944,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706976, 55.555409], - [37.706976, 55.555499], - [37.707135, 55.555499], - [37.707135, 55.555409], - [37.706976, 55.555409] + [37.707769, 55.555407], + [37.707769, 55.555497], + [37.707859, 55.555497], + [37.707859, 55.555407], + [37.707769, 55.555407] ] ] } @@ -20152,11 +39960,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706976, 55.555499], - [37.706976, 55.555589], - [37.707135, 55.555589], - [37.707135, 55.555499], - [37.706976, 55.555499] + [37.707769, 55.555497], + [37.707769, 55.555587], + [37.707859, 55.555587], + [37.707859, 55.555497], + [37.707769, 55.555497] ] ] } @@ -20168,11 +39976,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706976, 55.555589], - [37.706976, 55.555679], - [37.707135, 55.555679], - [37.707135, 55.555589], - [37.706976, 55.555589] + [37.707769, 55.555587], + [37.707769, 55.555677], + [37.707859, 55.555677], + [37.707859, 55.555587], + [37.707769, 55.555587] ] ] } @@ -20184,11 +39992,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706976, 55.555679], - [37.706976, 55.555769], - [37.707135, 55.555769], - [37.707135, 55.555679], - [37.706976, 55.555679] + [37.707769, 55.555677], + [37.707769, 55.555767], + [37.707859, 55.555767], + [37.707859, 55.555677], + [37.707769, 55.555677] ] ] } @@ -20200,11 +40008,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707135, 55.552261], - [37.707135, 55.552351], - [37.707294, 55.552351], - [37.707294, 55.552261], - [37.707135, 55.552261] + [37.707769, 55.555767], + [37.707769, 55.555856], + [37.707859, 55.555856], + [37.707859, 55.555767], + [37.707769, 55.555767] ] ] } @@ -20216,11 +40024,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707135, 55.552351], - [37.707135, 55.552441], - [37.707294, 55.552441], - [37.707294, 55.552351], - [37.707135, 55.552351] + [37.707769, 55.555856], + [37.707769, 55.555946], + [37.707859, 55.555946], + [37.707859, 55.555856], + [37.707769, 55.555856] ] ] } @@ -20232,11 +40040,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707135, 55.552441], - [37.707135, 55.552531], - [37.707294, 55.552531], - [37.707294, 55.552441], - [37.707135, 55.552441] + [37.707859, 55.553162], + [37.707859, 55.553251], + [37.707949, 55.553251], + [37.707949, 55.553162], + [37.707859, 55.553162] ] ] } @@ -20248,11 +40056,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707135, 55.552531], - [37.707135, 55.552621], - [37.707294, 55.552621], - [37.707294, 55.552531], - [37.707135, 55.552531] + [37.707859, 55.553251], + [37.707859, 55.553341], + [37.707949, 55.553341], + [37.707949, 55.553251], + [37.707859, 55.553251] ] ] } @@ -20264,11 +40072,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707135, 55.552621], - [37.707135, 55.552711], - [37.707294, 55.552711], - [37.707294, 55.552621], - [37.707135, 55.552621] + [37.707859, 55.553341], + [37.707859, 55.553431], + [37.707949, 55.553431], + [37.707949, 55.553341], + [37.707859, 55.553341] ] ] } @@ -20280,11 +40088,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707135, 55.552711], - [37.707135, 55.552801], - [37.707294, 55.552801], - [37.707294, 55.552711], - [37.707135, 55.552711] + [37.707859, 55.553431], + [37.707859, 55.553521], + [37.707949, 55.553521], + [37.707949, 55.553431], + [37.707859, 55.553431] ] ] } @@ -20296,11 +40104,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707135, 55.552801], - [37.707135, 55.552891], - [37.707294, 55.552891], - [37.707294, 55.552801], - [37.707135, 55.552801] + [37.707859, 55.553521], + [37.707859, 55.553611], + [37.707949, 55.553611], + [37.707949, 55.553521], + [37.707859, 55.553521] ] ] } @@ -20312,11 +40120,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707135, 55.552891], - [37.707135, 55.552981], - [37.707294, 55.552981], - [37.707294, 55.552891], - [37.707135, 55.552891] + [37.707859, 55.553611], + [37.707859, 55.5537], + [37.707949, 55.5537], + [37.707949, 55.553611], + [37.707859, 55.553611] ] ] } @@ -20328,11 +40136,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707135, 55.552981], - [37.707135, 55.553071], - [37.707294, 55.553071], - [37.707294, 55.552981], - [37.707135, 55.552981] + [37.707859, 55.5537], + [37.707859, 55.55379], + [37.707949, 55.55379], + [37.707949, 55.5537], + [37.707859, 55.5537] ] ] } @@ -20344,11 +40152,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707135, 55.553071], - [37.707135, 55.553161], - [37.707294, 55.553161], - [37.707294, 55.553071], - [37.707135, 55.553071] + [37.707859, 55.55379], + [37.707859, 55.55388], + [37.707949, 55.55388], + [37.707949, 55.55379], + [37.707859, 55.55379] ] ] } @@ -20360,11 +40168,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707135, 55.553161], - [37.707135, 55.553251], - [37.707294, 55.553251], - [37.707294, 55.553161], - [37.707135, 55.553161] + [37.707859, 55.55388], + [37.707859, 55.55397], + [37.707949, 55.55397], + [37.707949, 55.55388], + [37.707859, 55.55388] ] ] } @@ -20376,11 +40184,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707135, 55.553251], - [37.707135, 55.553341], - [37.707294, 55.553341], - [37.707294, 55.553251], - [37.707135, 55.553251] + [37.707859, 55.55397], + [37.707859, 55.55406], + [37.707949, 55.55406], + [37.707949, 55.55397], + [37.707859, 55.55397] ] ] } @@ -20392,11 +40200,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707135, 55.553341], - [37.707135, 55.553431], - [37.707294, 55.553431], - [37.707294, 55.553341], - [37.707135, 55.553341] + [37.707859, 55.55406], + [37.707859, 55.55415], + [37.707949, 55.55415], + [37.707949, 55.55406], + [37.707859, 55.55406] ] ] } @@ -20408,11 +40216,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707135, 55.553431], - [37.707135, 55.55352], - [37.707294, 55.55352], - [37.707294, 55.553431], - [37.707135, 55.553431] + [37.707859, 55.55415], + [37.707859, 55.554239], + [37.707949, 55.554239], + [37.707949, 55.55415], + [37.707859, 55.55415] ] ] } @@ -20424,11 +40232,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707135, 55.55352], - [37.707135, 55.55361], - [37.707294, 55.55361], - [37.707294, 55.55352], - [37.707135, 55.55352] + [37.707859, 55.554239], + [37.707859, 55.554329], + [37.707949, 55.554329], + [37.707949, 55.554239], + [37.707859, 55.554239] ] ] } @@ -20440,11 +40248,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707135, 55.55361], - [37.707135, 55.5537], - [37.707294, 55.5537], - [37.707294, 55.55361], - [37.707135, 55.55361] + [37.707859, 55.554329], + [37.707859, 55.554419], + [37.707949, 55.554419], + [37.707949, 55.554329], + [37.707859, 55.554329] ] ] } @@ -20456,11 +40264,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707135, 55.5537], - [37.707135, 55.55379], - [37.707294, 55.55379], - [37.707294, 55.5537], - [37.707135, 55.5537] + [37.707859, 55.554419], + [37.707859, 55.554509], + [37.707949, 55.554509], + [37.707949, 55.554419], + [37.707859, 55.554419] ] ] } @@ -20472,11 +40280,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707135, 55.55379], - [37.707135, 55.55388], - [37.707294, 55.55388], - [37.707294, 55.55379], - [37.707135, 55.55379] + [37.707859, 55.554509], + [37.707859, 55.554599], + [37.707949, 55.554599], + [37.707949, 55.554509], + [37.707859, 55.554509] ] ] } @@ -20488,11 +40296,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707135, 55.55388], - [37.707135, 55.55397], - [37.707294, 55.55397], - [37.707294, 55.55388], - [37.707135, 55.55388] + [37.707859, 55.554599], + [37.707859, 55.554689], + [37.707949, 55.554689], + [37.707949, 55.554599], + [37.707859, 55.554599] ] ] } @@ -20504,11 +40312,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707135, 55.55397], - [37.707135, 55.55406], - [37.707294, 55.55406], - [37.707294, 55.55397], - [37.707135, 55.55397] + [37.707859, 55.554689], + [37.707859, 55.554778], + [37.707949, 55.554778], + [37.707949, 55.554689], + [37.707859, 55.554689] ] ] } @@ -20520,11 +40328,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707135, 55.55406], - [37.707135, 55.55415], - [37.707294, 55.55415], - [37.707294, 55.55406], - [37.707135, 55.55406] + [37.707859, 55.554778], + [37.707859, 55.554868], + [37.707949, 55.554868], + [37.707949, 55.554778], + [37.707859, 55.554778] ] ] } @@ -20536,11 +40344,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707135, 55.55415], - [37.707135, 55.55424], - [37.707294, 55.55424], - [37.707294, 55.55415], - [37.707135, 55.55415] + [37.707859, 55.554868], + [37.707859, 55.554958], + [37.707949, 55.554958], + [37.707949, 55.554868], + [37.707859, 55.554868] ] ] } @@ -20552,11 +40360,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707135, 55.55424], - [37.707135, 55.55433], - [37.707294, 55.55433], - [37.707294, 55.55424], - [37.707135, 55.55424] + [37.707859, 55.554958], + [37.707859, 55.555048], + [37.707949, 55.555048], + [37.707949, 55.554958], + [37.707859, 55.554958] ] ] } @@ -20568,11 +40376,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707135, 55.55433], - [37.707135, 55.55442], - [37.707294, 55.55442], - [37.707294, 55.55433], - [37.707135, 55.55433] + [37.707859, 55.555048], + [37.707859, 55.555138], + [37.707949, 55.555138], + [37.707949, 55.555048], + [37.707859, 55.555048] ] ] } @@ -20584,11 +40392,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707135, 55.55442], - [37.707135, 55.55451], - [37.707294, 55.55451], - [37.707294, 55.55442], - [37.707135, 55.55442] + [37.707859, 55.555138], + [37.707859, 55.555228], + [37.707949, 55.555228], + [37.707949, 55.555138], + [37.707859, 55.555138] ] ] } @@ -20600,11 +40408,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707135, 55.55451], - [37.707135, 55.5546], - [37.707294, 55.5546], - [37.707294, 55.55451], - [37.707135, 55.55451] + [37.707859, 55.555228], + [37.707859, 55.555317], + [37.707949, 55.555317], + [37.707949, 55.555228], + [37.707859, 55.555228] ] ] } @@ -20616,11 +40424,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707135, 55.5546], - [37.707135, 55.55469], - [37.707294, 55.55469], - [37.707294, 55.5546], - [37.707135, 55.5546] + [37.707859, 55.555317], + [37.707859, 55.555407], + [37.707949, 55.555407], + [37.707949, 55.555317], + [37.707859, 55.555317] ] ] } @@ -20632,11 +40440,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707135, 55.55469], - [37.707135, 55.55478], - [37.707294, 55.55478], - [37.707294, 55.55469], - [37.707135, 55.55469] + [37.707859, 55.555407], + [37.707859, 55.555497], + [37.707949, 55.555497], + [37.707949, 55.555407], + [37.707859, 55.555407] ] ] } @@ -20648,11 +40456,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707135, 55.55478], - [37.707135, 55.554869], - [37.707294, 55.554869], - [37.707294, 55.55478], - [37.707135, 55.55478] + [37.707859, 55.555497], + [37.707859, 55.555587], + [37.707949, 55.555587], + [37.707949, 55.555497], + [37.707859, 55.555497] ] ] } @@ -20664,11 +40472,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707135, 55.554869], - [37.707135, 55.554959], - [37.707294, 55.554959], - [37.707294, 55.554869], - [37.707135, 55.554869] + [37.707859, 55.555587], + [37.707859, 55.555677], + [37.707949, 55.555677], + [37.707949, 55.555587], + [37.707859, 55.555587] ] ] } @@ -20680,11 +40488,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707135, 55.554959], - [37.707135, 55.555049], - [37.707294, 55.555049], - [37.707294, 55.554959], - [37.707135, 55.554959] + [37.707859, 55.555677], + [37.707859, 55.555767], + [37.707949, 55.555767], + [37.707949, 55.555677], + [37.707859, 55.555677] ] ] } @@ -20696,11 +40504,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707135, 55.555049], - [37.707135, 55.555139], - [37.707294, 55.555139], - [37.707294, 55.555049], - [37.707135, 55.555049] + [37.707859, 55.555767], + [37.707859, 55.555856], + [37.707949, 55.555856], + [37.707949, 55.555767], + [37.707859, 55.555767] ] ] } @@ -20712,11 +40520,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707135, 55.555139], - [37.707135, 55.555229], - [37.707294, 55.555229], - [37.707294, 55.555139], - [37.707135, 55.555139] + [37.707859, 55.555856], + [37.707859, 55.555946], + [37.707949, 55.555946], + [37.707949, 55.555856], + [37.707859, 55.555856] ] ] } @@ -20728,11 +40536,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707135, 55.555229], - [37.707135, 55.555319], - [37.707294, 55.555319], - [37.707294, 55.555229], - [37.707135, 55.555229] + [37.707949, 55.553251], + [37.707949, 55.553341], + [37.708039, 55.553341], + [37.708039, 55.553251], + [37.707949, 55.553251] ] ] } @@ -20744,11 +40552,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707135, 55.555319], - [37.707135, 55.555409], - [37.707294, 55.555409], - [37.707294, 55.555319], - [37.707135, 55.555319] + [37.707949, 55.553341], + [37.707949, 55.553431], + [37.708039, 55.553431], + [37.708039, 55.553341], + [37.707949, 55.553341] ] ] } @@ -20760,11 +40568,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707135, 55.555409], - [37.707135, 55.555499], - [37.707294, 55.555499], - [37.707294, 55.555409], - [37.707135, 55.555409] + [37.707949, 55.553431], + [37.707949, 55.553521], + [37.708039, 55.553521], + [37.708039, 55.553431], + [37.707949, 55.553431] ] ] } @@ -20776,11 +40584,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707135, 55.555499], - [37.707135, 55.555589], - [37.707294, 55.555589], - [37.707294, 55.555499], - [37.707135, 55.555499] + [37.707949, 55.553521], + [37.707949, 55.553611], + [37.708039, 55.553611], + [37.708039, 55.553521], + [37.707949, 55.553521] ] ] } @@ -20792,11 +40600,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707135, 55.555589], - [37.707135, 55.555679], - [37.707294, 55.555679], - [37.707294, 55.555589], - [37.707135, 55.555589] + [37.707949, 55.553611], + [37.707949, 55.5537], + [37.708039, 55.5537], + [37.708039, 55.553611], + [37.707949, 55.553611] ] ] } @@ -20808,11 +40616,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707135, 55.555679], - [37.707135, 55.555769], - [37.707294, 55.555769], - [37.707294, 55.555679], - [37.707135, 55.555679] + [37.707949, 55.5537], + [37.707949, 55.55379], + [37.708039, 55.55379], + [37.708039, 55.5537], + [37.707949, 55.5537] ] ] } @@ -20824,11 +40632,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707294, 55.552441], - [37.707294, 55.552531], - [37.707453, 55.552531], - [37.707453, 55.552441], - [37.707294, 55.552441] + [37.707949, 55.55379], + [37.707949, 55.55388], + [37.708039, 55.55388], + [37.708039, 55.55379], + [37.707949, 55.55379] ] ] } @@ -20840,11 +40648,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707294, 55.552531], - [37.707294, 55.552621], - [37.707453, 55.552621], - [37.707453, 55.552531], - [37.707294, 55.552531] + [37.707949, 55.55388], + [37.707949, 55.55397], + [37.708039, 55.55397], + [37.708039, 55.55388], + [37.707949, 55.55388] ] ] } @@ -20856,11 +40664,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707294, 55.552621], - [37.707294, 55.552711], - [37.707453, 55.552711], - [37.707453, 55.552621], - [37.707294, 55.552621] + [37.707949, 55.55397], + [37.707949, 55.55406], + [37.708039, 55.55406], + [37.708039, 55.55397], + [37.707949, 55.55397] ] ] } @@ -20872,11 +40680,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707294, 55.552711], - [37.707294, 55.552801], - [37.707453, 55.552801], - [37.707453, 55.552711], - [37.707294, 55.552711] + [37.707949, 55.55406], + [37.707949, 55.55415], + [37.708039, 55.55415], + [37.708039, 55.55406], + [37.707949, 55.55406] ] ] } @@ -20888,11 +40696,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707294, 55.552801], - [37.707294, 55.552891], - [37.707453, 55.552891], - [37.707453, 55.552801], - [37.707294, 55.552801] + [37.707949, 55.55415], + [37.707949, 55.554239], + [37.708039, 55.554239], + [37.708039, 55.55415], + [37.707949, 55.55415] ] ] } @@ -20904,11 +40712,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707294, 55.552891], - [37.707294, 55.552981], - [37.707453, 55.552981], - [37.707453, 55.552891], - [37.707294, 55.552891] + [37.707949, 55.554239], + [37.707949, 55.554329], + [37.708039, 55.554329], + [37.708039, 55.554239], + [37.707949, 55.554239] ] ] } @@ -20920,11 +40728,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707294, 55.552981], - [37.707294, 55.553071], - [37.707453, 55.553071], - [37.707453, 55.552981], - [37.707294, 55.552981] + [37.707949, 55.554329], + [37.707949, 55.554419], + [37.708039, 55.554419], + [37.708039, 55.554329], + [37.707949, 55.554329] ] ] } @@ -20936,11 +40744,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707294, 55.553071], - [37.707294, 55.553161], - [37.707453, 55.553161], - [37.707453, 55.553071], - [37.707294, 55.553071] + [37.707949, 55.554419], + [37.707949, 55.554509], + [37.708039, 55.554509], + [37.708039, 55.554419], + [37.707949, 55.554419] ] ] } @@ -20952,11 +40760,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707294, 55.553161], - [37.707294, 55.553251], - [37.707453, 55.553251], - [37.707453, 55.553161], - [37.707294, 55.553161] + [37.707949, 55.554509], + [37.707949, 55.554599], + [37.708039, 55.554599], + [37.708039, 55.554509], + [37.707949, 55.554509] ] ] } @@ -20968,11 +40776,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707294, 55.553251], - [37.707294, 55.553341], - [37.707453, 55.553341], - [37.707453, 55.553251], - [37.707294, 55.553251] + [37.707949, 55.554599], + [37.707949, 55.554689], + [37.708039, 55.554689], + [37.708039, 55.554599], + [37.707949, 55.554599] ] ] } @@ -20984,11 +40792,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707294, 55.553341], - [37.707294, 55.553431], - [37.707453, 55.553431], - [37.707453, 55.553341], - [37.707294, 55.553341] + [37.707949, 55.554689], + [37.707949, 55.554778], + [37.708039, 55.554778], + [37.708039, 55.554689], + [37.707949, 55.554689] ] ] } @@ -21000,11 +40808,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707294, 55.553431], - [37.707294, 55.55352], - [37.707453, 55.55352], - [37.707453, 55.553431], - [37.707294, 55.553431] + [37.707949, 55.554778], + [37.707949, 55.554868], + [37.708039, 55.554868], + [37.708039, 55.554778], + [37.707949, 55.554778] ] ] } @@ -21016,11 +40824,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707294, 55.55352], - [37.707294, 55.55361], - [37.707453, 55.55361], - [37.707453, 55.55352], - [37.707294, 55.55352] + [37.707949, 55.554868], + [37.707949, 55.554958], + [37.708039, 55.554958], + [37.708039, 55.554868], + [37.707949, 55.554868] ] ] } @@ -21032,11 +40840,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707294, 55.55361], - [37.707294, 55.5537], - [37.707453, 55.5537], - [37.707453, 55.55361], - [37.707294, 55.55361] + [37.707949, 55.554958], + [37.707949, 55.555048], + [37.708039, 55.555048], + [37.708039, 55.554958], + [37.707949, 55.554958] ] ] } @@ -21048,11 +40856,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707294, 55.5537], - [37.707294, 55.55379], - [37.707453, 55.55379], - [37.707453, 55.5537], - [37.707294, 55.5537] + [37.707949, 55.555048], + [37.707949, 55.555138], + [37.708039, 55.555138], + [37.708039, 55.555048], + [37.707949, 55.555048] ] ] } @@ -21064,11 +40872,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707294, 55.55379], - [37.707294, 55.55388], - [37.707453, 55.55388], - [37.707453, 55.55379], - [37.707294, 55.55379] + [37.707949, 55.555138], + [37.707949, 55.555228], + [37.708039, 55.555228], + [37.708039, 55.555138], + [37.707949, 55.555138] ] ] } @@ -21080,11 +40888,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707294, 55.55388], - [37.707294, 55.55397], - [37.707453, 55.55397], - [37.707453, 55.55388], - [37.707294, 55.55388] + [37.707949, 55.555228], + [37.707949, 55.555317], + [37.708039, 55.555317], + [37.708039, 55.555228], + [37.707949, 55.555228] ] ] } @@ -21096,11 +40904,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707294, 55.55397], - [37.707294, 55.55406], - [37.707453, 55.55406], - [37.707453, 55.55397], - [37.707294, 55.55397] + [37.707949, 55.555317], + [37.707949, 55.555407], + [37.708039, 55.555407], + [37.708039, 55.555317], + [37.707949, 55.555317] ] ] } @@ -21112,11 +40920,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707294, 55.55406], - [37.707294, 55.55415], - [37.707453, 55.55415], - [37.707453, 55.55406], - [37.707294, 55.55406] + [37.707949, 55.555407], + [37.707949, 55.555497], + [37.708039, 55.555497], + [37.708039, 55.555407], + [37.707949, 55.555407] ] ] } @@ -21128,11 +40936,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707294, 55.55415], - [37.707294, 55.55424], - [37.707453, 55.55424], - [37.707453, 55.55415], - [37.707294, 55.55415] + [37.707949, 55.555497], + [37.707949, 55.555587], + [37.708039, 55.555587], + [37.708039, 55.555497], + [37.707949, 55.555497] ] ] } @@ -21144,11 +40952,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707294, 55.55424], - [37.707294, 55.55433], - [37.707453, 55.55433], - [37.707453, 55.55424], - [37.707294, 55.55424] + [37.707949, 55.555587], + [37.707949, 55.555677], + [37.708039, 55.555677], + [37.708039, 55.555587], + [37.707949, 55.555587] ] ] } @@ -21160,11 +40968,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707294, 55.55433], - [37.707294, 55.55442], - [37.707453, 55.55442], - [37.707453, 55.55433], - [37.707294, 55.55433] + [37.707949, 55.555677], + [37.707949, 55.555767], + [37.708039, 55.555767], + [37.708039, 55.555677], + [37.707949, 55.555677] ] ] } @@ -21176,11 +40984,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707294, 55.55442], - [37.707294, 55.55451], - [37.707453, 55.55451], - [37.707453, 55.55442], - [37.707294, 55.55442] + [37.707949, 55.555767], + [37.707949, 55.555856], + [37.708039, 55.555856], + [37.708039, 55.555767], + [37.707949, 55.555767] ] ] } @@ -21192,11 +41000,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707294, 55.55451], - [37.707294, 55.5546], - [37.707453, 55.5546], - [37.707453, 55.55451], - [37.707294, 55.55451] + [37.707949, 55.555856], + [37.707949, 55.555946], + [37.708039, 55.555946], + [37.708039, 55.555856], + [37.707949, 55.555856] ] ] } @@ -21208,11 +41016,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707294, 55.5546], - [37.707294, 55.55469], - [37.707453, 55.55469], - [37.707453, 55.5546], - [37.707294, 55.5546] + [37.708039, 55.553341], + [37.708039, 55.553431], + [37.708129, 55.553431], + [37.708129, 55.553341], + [37.708039, 55.553341] ] ] } @@ -21224,11 +41032,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707294, 55.55469], - [37.707294, 55.55478], - [37.707453, 55.55478], - [37.707453, 55.55469], - [37.707294, 55.55469] + [37.708039, 55.553431], + [37.708039, 55.553521], + [37.708129, 55.553521], + [37.708129, 55.553431], + [37.708039, 55.553431] ] ] } @@ -21240,11 +41048,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707294, 55.55478], - [37.707294, 55.554869], - [37.707453, 55.554869], - [37.707453, 55.55478], - [37.707294, 55.55478] + [37.708039, 55.553521], + [37.708039, 55.553611], + [37.708129, 55.553611], + [37.708129, 55.553521], + [37.708039, 55.553521] ] ] } @@ -21256,11 +41064,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707294, 55.554869], - [37.707294, 55.554959], - [37.707453, 55.554959], - [37.707453, 55.554869], - [37.707294, 55.554869] + [37.708039, 55.553611], + [37.708039, 55.5537], + [37.708129, 55.5537], + [37.708129, 55.553611], + [37.708039, 55.553611] ] ] } @@ -21272,11 +41080,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707294, 55.554959], - [37.707294, 55.555049], - [37.707453, 55.555049], - [37.707453, 55.554959], - [37.707294, 55.554959] + [37.708039, 55.5537], + [37.708039, 55.55379], + [37.708129, 55.55379], + [37.708129, 55.5537], + [37.708039, 55.5537] ] ] } @@ -21288,11 +41096,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707294, 55.555049], - [37.707294, 55.555139], - [37.707453, 55.555139], - [37.707453, 55.555049], - [37.707294, 55.555049] + [37.708039, 55.55379], + [37.708039, 55.55388], + [37.708129, 55.55388], + [37.708129, 55.55379], + [37.708039, 55.55379] ] ] } @@ -21304,11 +41112,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707294, 55.555139], - [37.707294, 55.555229], - [37.707453, 55.555229], - [37.707453, 55.555139], - [37.707294, 55.555139] + [37.708039, 55.55388], + [37.708039, 55.55397], + [37.708129, 55.55397], + [37.708129, 55.55388], + [37.708039, 55.55388] ] ] } @@ -21320,11 +41128,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707294, 55.555229], - [37.707294, 55.555319], - [37.707453, 55.555319], - [37.707453, 55.555229], - [37.707294, 55.555229] + [37.708039, 55.55397], + [37.708039, 55.55406], + [37.708129, 55.55406], + [37.708129, 55.55397], + [37.708039, 55.55397] ] ] } @@ -21336,11 +41144,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707294, 55.555319], - [37.707294, 55.555409], - [37.707453, 55.555409], - [37.707453, 55.555319], - [37.707294, 55.555319] + [37.708039, 55.55406], + [37.708039, 55.55415], + [37.708129, 55.55415], + [37.708129, 55.55406], + [37.708039, 55.55406] ] ] } @@ -21352,11 +41160,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707294, 55.555409], - [37.707294, 55.555499], - [37.707453, 55.555499], - [37.707453, 55.555409], - [37.707294, 55.555409] + [37.708039, 55.55415], + [37.708039, 55.554239], + [37.708129, 55.554239], + [37.708129, 55.55415], + [37.708039, 55.55415] ] ] } @@ -21368,11 +41176,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707294, 55.555499], - [37.707294, 55.555589], - [37.707453, 55.555589], - [37.707453, 55.555499], - [37.707294, 55.555499] + [37.708039, 55.554239], + [37.708039, 55.554329], + [37.708129, 55.554329], + [37.708129, 55.554239], + [37.708039, 55.554239] ] ] } @@ -21384,11 +41192,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707294, 55.555589], - [37.707294, 55.555679], - [37.707453, 55.555679], - [37.707453, 55.555589], - [37.707294, 55.555589] + [37.708039, 55.554329], + [37.708039, 55.554419], + [37.708129, 55.554419], + [37.708129, 55.554329], + [37.708039, 55.554329] ] ] } @@ -21400,11 +41208,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707294, 55.555679], - [37.707294, 55.555769], - [37.707453, 55.555769], - [37.707453, 55.555679], - [37.707294, 55.555679] + [37.708039, 55.554419], + [37.708039, 55.554509], + [37.708129, 55.554509], + [37.708129, 55.554419], + [37.708039, 55.554419] ] ] } @@ -21416,11 +41224,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707294, 55.555769], - [37.707294, 55.555859], - [37.707453, 55.555859], - [37.707453, 55.555769], - [37.707294, 55.555769] + [37.708039, 55.554509], + [37.708039, 55.554599], + [37.708129, 55.554599], + [37.708129, 55.554509], + [37.708039, 55.554509] ] ] } @@ -21432,11 +41240,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707453, 55.552621], - [37.707453, 55.552711], - [37.707612, 55.552711], - [37.707612, 55.552621], - [37.707453, 55.552621] + [37.708039, 55.554599], + [37.708039, 55.554689], + [37.708129, 55.554689], + [37.708129, 55.554599], + [37.708039, 55.554599] ] ] } @@ -21448,11 +41256,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707453, 55.552711], - [37.707453, 55.552801], - [37.707612, 55.552801], - [37.707612, 55.552711], - [37.707453, 55.552711] + [37.708039, 55.554689], + [37.708039, 55.554778], + [37.708129, 55.554778], + [37.708129, 55.554689], + [37.708039, 55.554689] ] ] } @@ -21464,11 +41272,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707453, 55.552801], - [37.707453, 55.552891], - [37.707612, 55.552891], - [37.707612, 55.552801], - [37.707453, 55.552801] + [37.708039, 55.554778], + [37.708039, 55.554868], + [37.708129, 55.554868], + [37.708129, 55.554778], + [37.708039, 55.554778] ] ] } @@ -21480,11 +41288,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707453, 55.552891], - [37.707453, 55.552981], - [37.707612, 55.552981], - [37.707612, 55.552891], - [37.707453, 55.552891] + [37.708039, 55.554868], + [37.708039, 55.554958], + [37.708129, 55.554958], + [37.708129, 55.554868], + [37.708039, 55.554868] ] ] } @@ -21496,11 +41304,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707453, 55.552981], - [37.707453, 55.553071], - [37.707612, 55.553071], - [37.707612, 55.552981], - [37.707453, 55.552981] + [37.708039, 55.554958], + [37.708039, 55.555048], + [37.708129, 55.555048], + [37.708129, 55.554958], + [37.708039, 55.554958] ] ] } @@ -21512,11 +41320,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707453, 55.553071], - [37.707453, 55.553161], - [37.707612, 55.553161], - [37.707612, 55.553071], - [37.707453, 55.553071] + [37.708039, 55.555048], + [37.708039, 55.555138], + [37.708129, 55.555138], + [37.708129, 55.555048], + [37.708039, 55.555048] ] ] } @@ -21528,11 +41336,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707453, 55.553161], - [37.707453, 55.553251], - [37.707612, 55.553251], - [37.707612, 55.553161], - [37.707453, 55.553161] + [37.708039, 55.555138], + [37.708039, 55.555228], + [37.708129, 55.555228], + [37.708129, 55.555138], + [37.708039, 55.555138] ] ] } @@ -21544,11 +41352,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707453, 55.553251], - [37.707453, 55.553341], - [37.707612, 55.553341], - [37.707612, 55.553251], - [37.707453, 55.553251] + [37.708039, 55.555228], + [37.708039, 55.555317], + [37.708129, 55.555317], + [37.708129, 55.555228], + [37.708039, 55.555228] ] ] } @@ -21560,11 +41368,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707453, 55.553341], - [37.707453, 55.553431], - [37.707612, 55.553431], - [37.707612, 55.553341], - [37.707453, 55.553341] + [37.708039, 55.555317], + [37.708039, 55.555407], + [37.708129, 55.555407], + [37.708129, 55.555317], + [37.708039, 55.555317] ] ] } @@ -21576,11 +41384,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707453, 55.553431], - [37.707453, 55.55352], - [37.707612, 55.55352], - [37.707612, 55.553431], - [37.707453, 55.553431] + [37.708039, 55.555407], + [37.708039, 55.555497], + [37.708129, 55.555497], + [37.708129, 55.555407], + [37.708039, 55.555407] ] ] } @@ -21592,11 +41400,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707453, 55.55352], - [37.707453, 55.55361], - [37.707612, 55.55361], - [37.707612, 55.55352], - [37.707453, 55.55352] + [37.708039, 55.555497], + [37.708039, 55.555587], + [37.708129, 55.555587], + [37.708129, 55.555497], + [37.708039, 55.555497] ] ] } @@ -21608,11 +41416,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707453, 55.55361], - [37.707453, 55.5537], - [37.707612, 55.5537], - [37.707612, 55.55361], - [37.707453, 55.55361] + [37.708039, 55.555587], + [37.708039, 55.555677], + [37.708129, 55.555677], + [37.708129, 55.555587], + [37.708039, 55.555587] ] ] } @@ -21624,11 +41432,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707453, 55.5537], - [37.707453, 55.55379], - [37.707612, 55.55379], - [37.707612, 55.5537], - [37.707453, 55.5537] + [37.708039, 55.555677], + [37.708039, 55.555767], + [37.708129, 55.555767], + [37.708129, 55.555677], + [37.708039, 55.555677] ] ] } @@ -21640,11 +41448,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707453, 55.55379], - [37.707453, 55.55388], - [37.707612, 55.55388], - [37.707612, 55.55379], - [37.707453, 55.55379] + [37.708039, 55.555767], + [37.708039, 55.555856], + [37.708129, 55.555856], + [37.708129, 55.555767], + [37.708039, 55.555767] ] ] } @@ -21656,11 +41464,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707453, 55.55388], - [37.707453, 55.55397], - [37.707612, 55.55397], - [37.707612, 55.55388], - [37.707453, 55.55388] + [37.708039, 55.555856], + [37.708039, 55.555946], + [37.708129, 55.555946], + [37.708129, 55.555856], + [37.708039, 55.555856] ] ] } @@ -21672,11 +41480,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707453, 55.55397], - [37.707453, 55.55406], - [37.707612, 55.55406], - [37.707612, 55.55397], - [37.707453, 55.55397] + [37.708039, 55.555946], + [37.708039, 55.556036], + [37.708129, 55.556036], + [37.708129, 55.555946], + [37.708039, 55.555946] ] ] } @@ -21688,11 +41496,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707453, 55.55406], - [37.707453, 55.55415], - [37.707612, 55.55415], - [37.707612, 55.55406], - [37.707453, 55.55406] + [37.708129, 55.553431], + [37.708129, 55.553521], + [37.708219, 55.553521], + [37.708219, 55.553431], + [37.708129, 55.553431] ] ] } @@ -21704,11 +41512,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707453, 55.55415], - [37.707453, 55.55424], - [37.707612, 55.55424], - [37.707612, 55.55415], - [37.707453, 55.55415] + [37.708129, 55.553521], + [37.708129, 55.553611], + [37.708219, 55.553611], + [37.708219, 55.553521], + [37.708129, 55.553521] ] ] } @@ -21720,11 +41528,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707453, 55.55424], - [37.707453, 55.55433], - [37.707612, 55.55433], - [37.707612, 55.55424], - [37.707453, 55.55424] + [37.708129, 55.553611], + [37.708129, 55.5537], + [37.708219, 55.5537], + [37.708219, 55.553611], + [37.708129, 55.553611] ] ] } @@ -21736,11 +41544,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707453, 55.55433], - [37.707453, 55.55442], - [37.707612, 55.55442], - [37.707612, 55.55433], - [37.707453, 55.55433] + [37.708129, 55.5537], + [37.708129, 55.55379], + [37.708219, 55.55379], + [37.708219, 55.5537], + [37.708129, 55.5537] ] ] } @@ -21752,11 +41560,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707453, 55.55442], - [37.707453, 55.55451], - [37.707612, 55.55451], - [37.707612, 55.55442], - [37.707453, 55.55442] + [37.708129, 55.55379], + [37.708129, 55.55388], + [37.708219, 55.55388], + [37.708219, 55.55379], + [37.708129, 55.55379] ] ] } @@ -21768,11 +41576,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707453, 55.55451], - [37.707453, 55.5546], - [37.707612, 55.5546], - [37.707612, 55.55451], - [37.707453, 55.55451] + [37.708129, 55.55388], + [37.708129, 55.55397], + [37.708219, 55.55397], + [37.708219, 55.55388], + [37.708129, 55.55388] ] ] } @@ -21784,11 +41592,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707453, 55.5546], - [37.707453, 55.55469], - [37.707612, 55.55469], - [37.707612, 55.5546], - [37.707453, 55.5546] + [37.708129, 55.55397], + [37.708129, 55.55406], + [37.708219, 55.55406], + [37.708219, 55.55397], + [37.708129, 55.55397] ] ] } @@ -21800,11 +41608,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707453, 55.55469], - [37.707453, 55.55478], - [37.707612, 55.55478], - [37.707612, 55.55469], - [37.707453, 55.55469] + [37.708129, 55.55406], + [37.708129, 55.55415], + [37.708219, 55.55415], + [37.708219, 55.55406], + [37.708129, 55.55406] ] ] } @@ -21816,11 +41624,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707453, 55.55478], - [37.707453, 55.554869], - [37.707612, 55.554869], - [37.707612, 55.55478], - [37.707453, 55.55478] + [37.708129, 55.55415], + [37.708129, 55.554239], + [37.708219, 55.554239], + [37.708219, 55.55415], + [37.708129, 55.55415] ] ] } @@ -21832,11 +41640,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707453, 55.554869], - [37.707453, 55.554959], - [37.707612, 55.554959], - [37.707612, 55.554869], - [37.707453, 55.554869] + [37.708129, 55.554239], + [37.708129, 55.554329], + [37.708219, 55.554329], + [37.708219, 55.554239], + [37.708129, 55.554239] ] ] } @@ -21848,11 +41656,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707453, 55.554959], - [37.707453, 55.555049], - [37.707612, 55.555049], - [37.707612, 55.554959], - [37.707453, 55.554959] + [37.708129, 55.554329], + [37.708129, 55.554419], + [37.708219, 55.554419], + [37.708219, 55.554329], + [37.708129, 55.554329] ] ] } @@ -21864,11 +41672,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707453, 55.555049], - [37.707453, 55.555139], - [37.707612, 55.555139], - [37.707612, 55.555049], - [37.707453, 55.555049] + [37.708129, 55.554419], + [37.708129, 55.554509], + [37.708219, 55.554509], + [37.708219, 55.554419], + [37.708129, 55.554419] ] ] } @@ -21880,11 +41688,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707453, 55.555139], - [37.707453, 55.555229], - [37.707612, 55.555229], - [37.707612, 55.555139], - [37.707453, 55.555139] + [37.708129, 55.554509], + [37.708129, 55.554599], + [37.708219, 55.554599], + [37.708219, 55.554509], + [37.708129, 55.554509] ] ] } @@ -21896,11 +41704,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707453, 55.555229], - [37.707453, 55.555319], - [37.707612, 55.555319], - [37.707612, 55.555229], - [37.707453, 55.555229] + [37.708129, 55.554599], + [37.708129, 55.554689], + [37.708219, 55.554689], + [37.708219, 55.554599], + [37.708129, 55.554599] ] ] } @@ -21912,11 +41720,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707453, 55.555319], - [37.707453, 55.555409], - [37.707612, 55.555409], - [37.707612, 55.555319], - [37.707453, 55.555319] + [37.708129, 55.554689], + [37.708129, 55.554778], + [37.708219, 55.554778], + [37.708219, 55.554689], + [37.708129, 55.554689] ] ] } @@ -21928,11 +41736,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707453, 55.555409], - [37.707453, 55.555499], - [37.707612, 55.555499], - [37.707612, 55.555409], - [37.707453, 55.555409] + [37.708129, 55.554778], + [37.708129, 55.554868], + [37.708219, 55.554868], + [37.708219, 55.554778], + [37.708129, 55.554778] ] ] } @@ -21944,11 +41752,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707453, 55.555499], - [37.707453, 55.555589], - [37.707612, 55.555589], - [37.707612, 55.555499], - [37.707453, 55.555499] + [37.708129, 55.554868], + [37.708129, 55.554958], + [37.708219, 55.554958], + [37.708219, 55.554868], + [37.708129, 55.554868] ] ] } @@ -21960,11 +41768,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707453, 55.555589], - [37.707453, 55.555679], - [37.707612, 55.555679], - [37.707612, 55.555589], - [37.707453, 55.555589] + [37.708129, 55.554958], + [37.708129, 55.555048], + [37.708219, 55.555048], + [37.708219, 55.554958], + [37.708129, 55.554958] ] ] } @@ -21976,11 +41784,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707453, 55.555679], - [37.707453, 55.555769], - [37.707612, 55.555769], - [37.707612, 55.555679], - [37.707453, 55.555679] + [37.708129, 55.555048], + [37.708129, 55.555138], + [37.708219, 55.555138], + [37.708219, 55.555048], + [37.708129, 55.555048] ] ] } @@ -21992,11 +41800,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707453, 55.555769], - [37.707453, 55.555859], - [37.707612, 55.555859], - [37.707612, 55.555769], - [37.707453, 55.555769] + [37.708129, 55.555138], + [37.708129, 55.555228], + [37.708219, 55.555228], + [37.708219, 55.555138], + [37.708129, 55.555138] ] ] } @@ -22008,11 +41816,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707612, 55.552801], - [37.707612, 55.552891], - [37.707771, 55.552891], - [37.707771, 55.552801], - [37.707612, 55.552801] + [37.708129, 55.555228], + [37.708129, 55.555317], + [37.708219, 55.555317], + [37.708219, 55.555228], + [37.708129, 55.555228] ] ] } @@ -22024,11 +41832,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707612, 55.552891], - [37.707612, 55.552981], - [37.707771, 55.552981], - [37.707771, 55.552891], - [37.707612, 55.552891] + [37.708129, 55.555317], + [37.708129, 55.555407], + [37.708219, 55.555407], + [37.708219, 55.555317], + [37.708129, 55.555317] ] ] } @@ -22040,11 +41848,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707612, 55.552981], - [37.707612, 55.553071], - [37.707771, 55.553071], - [37.707771, 55.552981], - [37.707612, 55.552981] + [37.708129, 55.555407], + [37.708129, 55.555497], + [37.708219, 55.555497], + [37.708219, 55.555407], + [37.708129, 55.555407] ] ] } @@ -22056,11 +41864,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707612, 55.553071], - [37.707612, 55.553161], - [37.707771, 55.553161], - [37.707771, 55.553071], - [37.707612, 55.553071] + [37.708129, 55.555497], + [37.708129, 55.555587], + [37.708219, 55.555587], + [37.708219, 55.555497], + [37.708129, 55.555497] ] ] } @@ -22072,11 +41880,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707612, 55.553161], - [37.707612, 55.553251], - [37.707771, 55.553251], - [37.707771, 55.553161], - [37.707612, 55.553161] + [37.708129, 55.555587], + [37.708129, 55.555677], + [37.708219, 55.555677], + [37.708219, 55.555587], + [37.708129, 55.555587] ] ] } @@ -22088,11 +41896,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707612, 55.553251], - [37.707612, 55.553341], - [37.707771, 55.553341], - [37.707771, 55.553251], - [37.707612, 55.553251] + [37.708129, 55.555677], + [37.708129, 55.555767], + [37.708219, 55.555767], + [37.708219, 55.555677], + [37.708129, 55.555677] ] ] } @@ -22104,11 +41912,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707612, 55.553341], - [37.707612, 55.553431], - [37.707771, 55.553431], - [37.707771, 55.553341], - [37.707612, 55.553341] + [37.708129, 55.555767], + [37.708129, 55.555856], + [37.708219, 55.555856], + [37.708219, 55.555767], + [37.708129, 55.555767] ] ] } @@ -22120,11 +41928,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707612, 55.553431], - [37.707612, 55.55352], - [37.707771, 55.55352], - [37.707771, 55.553431], - [37.707612, 55.553431] + [37.708129, 55.555856], + [37.708129, 55.555946], + [37.708219, 55.555946], + [37.708219, 55.555856], + [37.708129, 55.555856] ] ] } @@ -22136,11 +41944,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707612, 55.55352], - [37.707612, 55.55361], - [37.707771, 55.55361], - [37.707771, 55.55352], - [37.707612, 55.55352] + [37.708129, 55.555946], + [37.708129, 55.556036], + [37.708219, 55.556036], + [37.708219, 55.555946], + [37.708129, 55.555946] ] ] } @@ -22152,11 +41960,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707612, 55.55361], - [37.707612, 55.5537], - [37.707771, 55.5537], - [37.707771, 55.55361], - [37.707612, 55.55361] + [37.708219, 55.553611], + [37.708219, 55.5537], + [37.708308, 55.5537], + [37.708308, 55.553611], + [37.708219, 55.553611] ] ] } @@ -22168,11 +41976,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707612, 55.5537], - [37.707612, 55.55379], - [37.707771, 55.55379], - [37.707771, 55.5537], - [37.707612, 55.5537] + [37.708219, 55.5537], + [37.708219, 55.55379], + [37.708308, 55.55379], + [37.708308, 55.5537], + [37.708219, 55.5537] ] ] } @@ -22184,11 +41992,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707612, 55.55379], - [37.707612, 55.55388], - [37.707771, 55.55388], - [37.707771, 55.55379], - [37.707612, 55.55379] + [37.708219, 55.55379], + [37.708219, 55.55388], + [37.708308, 55.55388], + [37.708308, 55.55379], + [37.708219, 55.55379] ] ] } @@ -22200,11 +42008,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707612, 55.55388], - [37.707612, 55.55397], - [37.707771, 55.55397], - [37.707771, 55.55388], - [37.707612, 55.55388] + [37.708219, 55.55388], + [37.708219, 55.55397], + [37.708308, 55.55397], + [37.708308, 55.55388], + [37.708219, 55.55388] ] ] } @@ -22216,11 +42024,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707612, 55.55397], - [37.707612, 55.55406], - [37.707771, 55.55406], - [37.707771, 55.55397], - [37.707612, 55.55397] + [37.708219, 55.55397], + [37.708219, 55.55406], + [37.708308, 55.55406], + [37.708308, 55.55397], + [37.708219, 55.55397] ] ] } @@ -22232,11 +42040,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707612, 55.55406], - [37.707612, 55.55415], - [37.707771, 55.55415], - [37.707771, 55.55406], - [37.707612, 55.55406] + [37.708219, 55.55406], + [37.708219, 55.55415], + [37.708308, 55.55415], + [37.708308, 55.55406], + [37.708219, 55.55406] ] ] } @@ -22248,11 +42056,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707612, 55.55415], - [37.707612, 55.55424], - [37.707771, 55.55424], - [37.707771, 55.55415], - [37.707612, 55.55415] + [37.708219, 55.55415], + [37.708219, 55.554239], + [37.708308, 55.554239], + [37.708308, 55.55415], + [37.708219, 55.55415] ] ] } @@ -22264,11 +42072,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707612, 55.55424], - [37.707612, 55.55433], - [37.707771, 55.55433], - [37.707771, 55.55424], - [37.707612, 55.55424] + [37.708219, 55.554239], + [37.708219, 55.554329], + [37.708308, 55.554329], + [37.708308, 55.554239], + [37.708219, 55.554239] ] ] } @@ -22280,11 +42088,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707612, 55.55433], - [37.707612, 55.55442], - [37.707771, 55.55442], - [37.707771, 55.55433], - [37.707612, 55.55433] + [37.708219, 55.554329], + [37.708219, 55.554419], + [37.708308, 55.554419], + [37.708308, 55.554329], + [37.708219, 55.554329] ] ] } @@ -22296,11 +42104,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707612, 55.55442], - [37.707612, 55.55451], - [37.707771, 55.55451], - [37.707771, 55.55442], - [37.707612, 55.55442] + [37.708219, 55.554419], + [37.708219, 55.554509], + [37.708308, 55.554509], + [37.708308, 55.554419], + [37.708219, 55.554419] ] ] } @@ -22312,11 +42120,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707612, 55.55451], - [37.707612, 55.5546], - [37.707771, 55.5546], - [37.707771, 55.55451], - [37.707612, 55.55451] + [37.708219, 55.554509], + [37.708219, 55.554599], + [37.708308, 55.554599], + [37.708308, 55.554509], + [37.708219, 55.554509] ] ] } @@ -22328,11 +42136,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707612, 55.5546], - [37.707612, 55.55469], - [37.707771, 55.55469], - [37.707771, 55.5546], - [37.707612, 55.5546] + [37.708219, 55.554599], + [37.708219, 55.554689], + [37.708308, 55.554689], + [37.708308, 55.554599], + [37.708219, 55.554599] ] ] } @@ -22344,11 +42152,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707612, 55.55469], - [37.707612, 55.55478], - [37.707771, 55.55478], - [37.707771, 55.55469], - [37.707612, 55.55469] + [37.708219, 55.554689], + [37.708219, 55.554778], + [37.708308, 55.554778], + [37.708308, 55.554689], + [37.708219, 55.554689] ] ] } @@ -22360,11 +42168,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707612, 55.55478], - [37.707612, 55.554869], - [37.707771, 55.554869], - [37.707771, 55.55478], - [37.707612, 55.55478] + [37.708219, 55.554778], + [37.708219, 55.554868], + [37.708308, 55.554868], + [37.708308, 55.554778], + [37.708219, 55.554778] ] ] } @@ -22376,11 +42184,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707612, 55.554869], - [37.707612, 55.554959], - [37.707771, 55.554959], - [37.707771, 55.554869], - [37.707612, 55.554869] + [37.708219, 55.554868], + [37.708219, 55.554958], + [37.708308, 55.554958], + [37.708308, 55.554868], + [37.708219, 55.554868] ] ] } @@ -22392,11 +42200,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707612, 55.554959], - [37.707612, 55.555049], - [37.707771, 55.555049], - [37.707771, 55.554959], - [37.707612, 55.554959] + [37.708219, 55.554958], + [37.708219, 55.555048], + [37.708308, 55.555048], + [37.708308, 55.554958], + [37.708219, 55.554958] ] ] } @@ -22408,11 +42216,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707612, 55.555049], - [37.707612, 55.555139], - [37.707771, 55.555139], - [37.707771, 55.555049], - [37.707612, 55.555049] + [37.708219, 55.555048], + [37.708219, 55.555138], + [37.708308, 55.555138], + [37.708308, 55.555048], + [37.708219, 55.555048] ] ] } @@ -22424,11 +42232,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707612, 55.555139], - [37.707612, 55.555229], - [37.707771, 55.555229], - [37.707771, 55.555139], - [37.707612, 55.555139] + [37.708219, 55.555138], + [37.708219, 55.555228], + [37.708308, 55.555228], + [37.708308, 55.555138], + [37.708219, 55.555138] ] ] } @@ -22440,11 +42248,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707612, 55.555229], - [37.707612, 55.555319], - [37.707771, 55.555319], - [37.707771, 55.555229], - [37.707612, 55.555229] + [37.708219, 55.555228], + [37.708219, 55.555317], + [37.708308, 55.555317], + [37.708308, 55.555228], + [37.708219, 55.555228] ] ] } @@ -22456,11 +42264,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707612, 55.555319], - [37.707612, 55.555409], - [37.707771, 55.555409], - [37.707771, 55.555319], - [37.707612, 55.555319] + [37.708219, 55.555317], + [37.708219, 55.555407], + [37.708308, 55.555407], + [37.708308, 55.555317], + [37.708219, 55.555317] ] ] } @@ -22472,11 +42280,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707612, 55.555409], - [37.707612, 55.555499], - [37.707771, 55.555499], - [37.707771, 55.555409], - [37.707612, 55.555409] + [37.708219, 55.555407], + [37.708219, 55.555497], + [37.708308, 55.555497], + [37.708308, 55.555407], + [37.708219, 55.555407] ] ] } @@ -22488,11 +42296,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707612, 55.555499], - [37.707612, 55.555589], - [37.707771, 55.555589], - [37.707771, 55.555499], - [37.707612, 55.555499] + [37.708219, 55.555497], + [37.708219, 55.555587], + [37.708308, 55.555587], + [37.708308, 55.555497], + [37.708219, 55.555497] ] ] } @@ -22504,11 +42312,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707612, 55.555589], - [37.707612, 55.555679], - [37.707771, 55.555679], - [37.707771, 55.555589], - [37.707612, 55.555589] + [37.708219, 55.555587], + [37.708219, 55.555677], + [37.708308, 55.555677], + [37.708308, 55.555587], + [37.708219, 55.555587] ] ] } @@ -22520,11 +42328,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707612, 55.555679], - [37.707612, 55.555769], - [37.707771, 55.555769], - [37.707771, 55.555679], - [37.707612, 55.555679] + [37.708219, 55.555677], + [37.708219, 55.555767], + [37.708308, 55.555767], + [37.708308, 55.555677], + [37.708219, 55.555677] ] ] } @@ -22536,11 +42344,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707612, 55.555769], - [37.707612, 55.555859], - [37.707771, 55.555859], - [37.707771, 55.555769], - [37.707612, 55.555769] + [37.708219, 55.555767], + [37.708219, 55.555856], + [37.708308, 55.555856], + [37.708308, 55.555767], + [37.708219, 55.555767] ] ] } @@ -22552,11 +42360,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707612, 55.555859], - [37.707612, 55.555949], - [37.707771, 55.555949], - [37.707771, 55.555859], - [37.707612, 55.555859] + [37.708219, 55.555856], + [37.708219, 55.555946], + [37.708308, 55.555946], + [37.708308, 55.555856], + [37.708219, 55.555856] ] ] } @@ -22568,11 +42376,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707771, 55.552981], - [37.707771, 55.553071], - [37.70793, 55.553071], - [37.70793, 55.552981], - [37.707771, 55.552981] + [37.708219, 55.555946], + [37.708219, 55.556036], + [37.708308, 55.556036], + [37.708308, 55.555946], + [37.708219, 55.555946] ] ] } @@ -22584,11 +42392,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707771, 55.553071], - [37.707771, 55.553161], - [37.70793, 55.553161], - [37.70793, 55.553071], - [37.707771, 55.553071] + [37.708308, 55.5537], + [37.708308, 55.55379], + [37.708398, 55.55379], + [37.708398, 55.5537], + [37.708308, 55.5537] ] ] } @@ -22600,11 +42408,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707771, 55.553161], - [37.707771, 55.553251], - [37.70793, 55.553251], - [37.70793, 55.553161], - [37.707771, 55.553161] + [37.708308, 55.55379], + [37.708308, 55.55388], + [37.708398, 55.55388], + [37.708398, 55.55379], + [37.708308, 55.55379] ] ] } @@ -22616,11 +42424,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707771, 55.553251], - [37.707771, 55.553341], - [37.70793, 55.553341], - [37.70793, 55.553251], - [37.707771, 55.553251] + [37.708308, 55.55388], + [37.708308, 55.55397], + [37.708398, 55.55397], + [37.708398, 55.55388], + [37.708308, 55.55388] ] ] } @@ -22632,11 +42440,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707771, 55.553341], - [37.707771, 55.553431], - [37.70793, 55.553431], - [37.70793, 55.553341], - [37.707771, 55.553341] + [37.708308, 55.55397], + [37.708308, 55.55406], + [37.708398, 55.55406], + [37.708398, 55.55397], + [37.708308, 55.55397] ] ] } @@ -22648,11 +42456,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707771, 55.553431], - [37.707771, 55.55352], - [37.70793, 55.55352], - [37.70793, 55.553431], - [37.707771, 55.553431] + [37.708308, 55.55406], + [37.708308, 55.55415], + [37.708398, 55.55415], + [37.708398, 55.55406], + [37.708308, 55.55406] ] ] } @@ -22664,11 +42472,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707771, 55.55352], - [37.707771, 55.55361], - [37.70793, 55.55361], - [37.70793, 55.55352], - [37.707771, 55.55352] + [37.708308, 55.55415], + [37.708308, 55.554239], + [37.708398, 55.554239], + [37.708398, 55.55415], + [37.708308, 55.55415] ] ] } @@ -22680,11 +42488,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707771, 55.55361], - [37.707771, 55.5537], - [37.70793, 55.5537], - [37.70793, 55.55361], - [37.707771, 55.55361] + [37.708308, 55.554239], + [37.708308, 55.554329], + [37.708398, 55.554329], + [37.708398, 55.554239], + [37.708308, 55.554239] ] ] } @@ -22696,11 +42504,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707771, 55.5537], - [37.707771, 55.55379], - [37.70793, 55.55379], - [37.70793, 55.5537], - [37.707771, 55.5537] + [37.708308, 55.554329], + [37.708308, 55.554419], + [37.708398, 55.554419], + [37.708398, 55.554329], + [37.708308, 55.554329] ] ] } @@ -22712,11 +42520,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707771, 55.55379], - [37.707771, 55.55388], - [37.70793, 55.55388], - [37.70793, 55.55379], - [37.707771, 55.55379] + [37.708308, 55.554419], + [37.708308, 55.554509], + [37.708398, 55.554509], + [37.708398, 55.554419], + [37.708308, 55.554419] ] ] } @@ -22728,11 +42536,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707771, 55.55388], - [37.707771, 55.55397], - [37.70793, 55.55397], - [37.70793, 55.55388], - [37.707771, 55.55388] + [37.708308, 55.554509], + [37.708308, 55.554599], + [37.708398, 55.554599], + [37.708398, 55.554509], + [37.708308, 55.554509] ] ] } @@ -22744,11 +42552,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707771, 55.55397], - [37.707771, 55.55406], - [37.70793, 55.55406], - [37.70793, 55.55397], - [37.707771, 55.55397] + [37.708308, 55.554599], + [37.708308, 55.554689], + [37.708398, 55.554689], + [37.708398, 55.554599], + [37.708308, 55.554599] ] ] } @@ -22760,11 +42568,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707771, 55.55406], - [37.707771, 55.55415], - [37.70793, 55.55415], - [37.70793, 55.55406], - [37.707771, 55.55406] + [37.708308, 55.554689], + [37.708308, 55.554778], + [37.708398, 55.554778], + [37.708398, 55.554689], + [37.708308, 55.554689] ] ] } @@ -22776,11 +42584,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707771, 55.55415], - [37.707771, 55.55424], - [37.70793, 55.55424], - [37.70793, 55.55415], - [37.707771, 55.55415] + [37.708308, 55.554778], + [37.708308, 55.554868], + [37.708398, 55.554868], + [37.708398, 55.554778], + [37.708308, 55.554778] ] ] } @@ -22792,11 +42600,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707771, 55.55424], - [37.707771, 55.55433], - [37.70793, 55.55433], - [37.70793, 55.55424], - [37.707771, 55.55424] + [37.708308, 55.554868], + [37.708308, 55.554958], + [37.708398, 55.554958], + [37.708398, 55.554868], + [37.708308, 55.554868] ] ] } @@ -22808,11 +42616,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707771, 55.55433], - [37.707771, 55.55442], - [37.70793, 55.55442], - [37.70793, 55.55433], - [37.707771, 55.55433] + [37.708308, 55.554958], + [37.708308, 55.555048], + [37.708398, 55.555048], + [37.708398, 55.554958], + [37.708308, 55.554958] ] ] } @@ -22824,11 +42632,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707771, 55.55442], - [37.707771, 55.55451], - [37.70793, 55.55451], - [37.70793, 55.55442], - [37.707771, 55.55442] + [37.708308, 55.555048], + [37.708308, 55.555138], + [37.708398, 55.555138], + [37.708398, 55.555048], + [37.708308, 55.555048] ] ] } @@ -22840,11 +42648,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707771, 55.55451], - [37.707771, 55.5546], - [37.70793, 55.5546], - [37.70793, 55.55451], - [37.707771, 55.55451] + [37.708308, 55.555138], + [37.708308, 55.555228], + [37.708398, 55.555228], + [37.708398, 55.555138], + [37.708308, 55.555138] ] ] } @@ -22856,11 +42664,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707771, 55.5546], - [37.707771, 55.55469], - [37.70793, 55.55469], - [37.70793, 55.5546], - [37.707771, 55.5546] + [37.708308, 55.555228], + [37.708308, 55.555317], + [37.708398, 55.555317], + [37.708398, 55.555228], + [37.708308, 55.555228] ] ] } @@ -22872,11 +42680,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707771, 55.55469], - [37.707771, 55.55478], - [37.70793, 55.55478], - [37.70793, 55.55469], - [37.707771, 55.55469] + [37.708308, 55.555317], + [37.708308, 55.555407], + [37.708398, 55.555407], + [37.708398, 55.555317], + [37.708308, 55.555317] ] ] } @@ -22888,11 +42696,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707771, 55.55478], - [37.707771, 55.554869], - [37.70793, 55.554869], - [37.70793, 55.55478], - [37.707771, 55.55478] + [37.708308, 55.555407], + [37.708308, 55.555497], + [37.708398, 55.555497], + [37.708398, 55.555407], + [37.708308, 55.555407] ] ] } @@ -22904,11 +42712,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707771, 55.554869], - [37.707771, 55.554959], - [37.70793, 55.554959], - [37.70793, 55.554869], - [37.707771, 55.554869] + [37.708308, 55.555497], + [37.708308, 55.555587], + [37.708398, 55.555587], + [37.708398, 55.555497], + [37.708308, 55.555497] ] ] } @@ -22920,11 +42728,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707771, 55.554959], - [37.707771, 55.555049], - [37.70793, 55.555049], - [37.70793, 55.554959], - [37.707771, 55.554959] + [37.708308, 55.555587], + [37.708308, 55.555677], + [37.708398, 55.555677], + [37.708398, 55.555587], + [37.708308, 55.555587] ] ] } @@ -22936,11 +42744,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707771, 55.555049], - [37.707771, 55.555139], - [37.70793, 55.555139], - [37.70793, 55.555049], - [37.707771, 55.555049] + [37.708308, 55.555677], + [37.708308, 55.555767], + [37.708398, 55.555767], + [37.708398, 55.555677], + [37.708308, 55.555677] ] ] } @@ -22952,11 +42760,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707771, 55.555139], - [37.707771, 55.555229], - [37.70793, 55.555229], - [37.70793, 55.555139], - [37.707771, 55.555139] + [37.708308, 55.555767], + [37.708308, 55.555856], + [37.708398, 55.555856], + [37.708398, 55.555767], + [37.708308, 55.555767] ] ] } @@ -22968,11 +42776,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707771, 55.555229], - [37.707771, 55.555319], - [37.70793, 55.555319], - [37.70793, 55.555229], - [37.707771, 55.555229] + [37.708308, 55.555856], + [37.708308, 55.555946], + [37.708398, 55.555946], + [37.708398, 55.555856], + [37.708308, 55.555856] ] ] } @@ -22984,11 +42792,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707771, 55.555319], - [37.707771, 55.555409], - [37.70793, 55.555409], - [37.70793, 55.555319], - [37.707771, 55.555319] + [37.708308, 55.555946], + [37.708308, 55.556036], + [37.708398, 55.556036], + [37.708398, 55.555946], + [37.708308, 55.555946] ] ] } @@ -23000,11 +42808,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707771, 55.555409], - [37.707771, 55.555499], - [37.70793, 55.555499], - [37.70793, 55.555409], - [37.707771, 55.555409] + [37.708398, 55.55379], + [37.708398, 55.55388], + [37.708488, 55.55388], + [37.708488, 55.55379], + [37.708398, 55.55379] ] ] } @@ -23016,11 +42824,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707771, 55.555499], - [37.707771, 55.555589], - [37.70793, 55.555589], - [37.70793, 55.555499], - [37.707771, 55.555499] + [37.708398, 55.55388], + [37.708398, 55.55397], + [37.708488, 55.55397], + [37.708488, 55.55388], + [37.708398, 55.55388] ] ] } @@ -23032,11 +42840,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707771, 55.555589], - [37.707771, 55.555679], - [37.70793, 55.555679], - [37.70793, 55.555589], - [37.707771, 55.555589] + [37.708398, 55.55397], + [37.708398, 55.55406], + [37.708488, 55.55406], + [37.708488, 55.55397], + [37.708398, 55.55397] ] ] } @@ -23048,11 +42856,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707771, 55.555679], - [37.707771, 55.555769], - [37.70793, 55.555769], - [37.70793, 55.555679], - [37.707771, 55.555679] + [37.708398, 55.55406], + [37.708398, 55.55415], + [37.708488, 55.55415], + [37.708488, 55.55406], + [37.708398, 55.55406] ] ] } @@ -23064,11 +42872,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707771, 55.555769], - [37.707771, 55.555859], - [37.70793, 55.555859], - [37.70793, 55.555769], - [37.707771, 55.555769] + [37.708398, 55.55415], + [37.708398, 55.554239], + [37.708488, 55.554239], + [37.708488, 55.55415], + [37.708398, 55.55415] ] ] } @@ -23080,11 +42888,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707771, 55.555859], - [37.707771, 55.555949], - [37.70793, 55.555949], - [37.70793, 55.555859], - [37.707771, 55.555859] + [37.708398, 55.554239], + [37.708398, 55.554329], + [37.708488, 55.554329], + [37.708488, 55.554239], + [37.708398, 55.554239] ] ] } @@ -23096,11 +42904,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70793, 55.553251], - [37.70793, 55.553341], - [37.708089, 55.553341], - [37.708089, 55.553251], - [37.70793, 55.553251] + [37.708398, 55.554329], + [37.708398, 55.554419], + [37.708488, 55.554419], + [37.708488, 55.554329], + [37.708398, 55.554329] ] ] } @@ -23112,11 +42920,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70793, 55.553341], - [37.70793, 55.553431], - [37.708089, 55.553431], - [37.708089, 55.553341], - [37.70793, 55.553341] + [37.708398, 55.554419], + [37.708398, 55.554509], + [37.708488, 55.554509], + [37.708488, 55.554419], + [37.708398, 55.554419] ] ] } @@ -23128,11 +42936,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70793, 55.553431], - [37.70793, 55.55352], - [37.708089, 55.55352], - [37.708089, 55.553431], - [37.70793, 55.553431] + [37.708398, 55.554509], + [37.708398, 55.554599], + [37.708488, 55.554599], + [37.708488, 55.554509], + [37.708398, 55.554509] ] ] } @@ -23144,11 +42952,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70793, 55.55352], - [37.70793, 55.55361], - [37.708089, 55.55361], - [37.708089, 55.55352], - [37.70793, 55.55352] + [37.708398, 55.554599], + [37.708398, 55.554689], + [37.708488, 55.554689], + [37.708488, 55.554599], + [37.708398, 55.554599] ] ] } @@ -23160,11 +42968,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70793, 55.55361], - [37.70793, 55.5537], - [37.708089, 55.5537], - [37.708089, 55.55361], - [37.70793, 55.55361] + [37.708398, 55.554689], + [37.708398, 55.554778], + [37.708488, 55.554778], + [37.708488, 55.554689], + [37.708398, 55.554689] ] ] } @@ -23176,11 +42984,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70793, 55.5537], - [37.70793, 55.55379], - [37.708089, 55.55379], - [37.708089, 55.5537], - [37.70793, 55.5537] + [37.708398, 55.554778], + [37.708398, 55.554868], + [37.708488, 55.554868], + [37.708488, 55.554778], + [37.708398, 55.554778] ] ] } @@ -23192,11 +43000,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70793, 55.55379], - [37.70793, 55.55388], - [37.708089, 55.55388], - [37.708089, 55.55379], - [37.70793, 55.55379] + [37.708398, 55.554868], + [37.708398, 55.554958], + [37.708488, 55.554958], + [37.708488, 55.554868], + [37.708398, 55.554868] ] ] } @@ -23208,11 +43016,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70793, 55.55388], - [37.70793, 55.55397], - [37.708089, 55.55397], - [37.708089, 55.55388], - [37.70793, 55.55388] + [37.708398, 55.554958], + [37.708398, 55.555048], + [37.708488, 55.555048], + [37.708488, 55.554958], + [37.708398, 55.554958] ] ] } @@ -23224,11 +43032,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70793, 55.55397], - [37.70793, 55.55406], - [37.708089, 55.55406], - [37.708089, 55.55397], - [37.70793, 55.55397] + [37.708398, 55.555048], + [37.708398, 55.555138], + [37.708488, 55.555138], + [37.708488, 55.555048], + [37.708398, 55.555048] ] ] } @@ -23240,11 +43048,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70793, 55.55406], - [37.70793, 55.55415], - [37.708089, 55.55415], - [37.708089, 55.55406], - [37.70793, 55.55406] + [37.708398, 55.555138], + [37.708398, 55.555228], + [37.708488, 55.555228], + [37.708488, 55.555138], + [37.708398, 55.555138] ] ] } @@ -23256,11 +43064,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70793, 55.55415], - [37.70793, 55.55424], - [37.708089, 55.55424], - [37.708089, 55.55415], - [37.70793, 55.55415] + [37.708398, 55.555228], + [37.708398, 55.555317], + [37.708488, 55.555317], + [37.708488, 55.555228], + [37.708398, 55.555228] ] ] } @@ -23272,11 +43080,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70793, 55.55424], - [37.70793, 55.55433], - [37.708089, 55.55433], - [37.708089, 55.55424], - [37.70793, 55.55424] + [37.708398, 55.555317], + [37.708398, 55.555407], + [37.708488, 55.555407], + [37.708488, 55.555317], + [37.708398, 55.555317] ] ] } @@ -23288,11 +43096,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70793, 55.55433], - [37.70793, 55.55442], - [37.708089, 55.55442], - [37.708089, 55.55433], - [37.70793, 55.55433] + [37.708398, 55.555407], + [37.708398, 55.555497], + [37.708488, 55.555497], + [37.708488, 55.555407], + [37.708398, 55.555407] ] ] } @@ -23304,11 +43112,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70793, 55.55442], - [37.70793, 55.55451], - [37.708089, 55.55451], - [37.708089, 55.55442], - [37.70793, 55.55442] + [37.708398, 55.555497], + [37.708398, 55.555587], + [37.708488, 55.555587], + [37.708488, 55.555497], + [37.708398, 55.555497] ] ] } @@ -23320,11 +43128,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70793, 55.55451], - [37.70793, 55.5546], - [37.708089, 55.5546], - [37.708089, 55.55451], - [37.70793, 55.55451] + [37.708398, 55.555587], + [37.708398, 55.555677], + [37.708488, 55.555677], + [37.708488, 55.555587], + [37.708398, 55.555587] ] ] } @@ -23336,11 +43144,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70793, 55.5546], - [37.70793, 55.55469], - [37.708089, 55.55469], - [37.708089, 55.5546], - [37.70793, 55.5546] + [37.708398, 55.555677], + [37.708398, 55.555767], + [37.708488, 55.555767], + [37.708488, 55.555677], + [37.708398, 55.555677] ] ] } @@ -23352,11 +43160,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70793, 55.55469], - [37.70793, 55.55478], - [37.708089, 55.55478], - [37.708089, 55.55469], - [37.70793, 55.55469] + [37.708398, 55.555767], + [37.708398, 55.555856], + [37.708488, 55.555856], + [37.708488, 55.555767], + [37.708398, 55.555767] ] ] } @@ -23368,11 +43176,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70793, 55.55478], - [37.70793, 55.554869], - [37.708089, 55.554869], - [37.708089, 55.55478], - [37.70793, 55.55478] + [37.708398, 55.555856], + [37.708398, 55.555946], + [37.708488, 55.555946], + [37.708488, 55.555856], + [37.708398, 55.555856] ] ] } @@ -23384,11 +43192,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70793, 55.554869], - [37.70793, 55.554959], - [37.708089, 55.554959], - [37.708089, 55.554869], - [37.70793, 55.554869] + [37.708398, 55.555946], + [37.708398, 55.556036], + [37.708488, 55.556036], + [37.708488, 55.555946], + [37.708398, 55.555946] ] ] } @@ -23400,11 +43208,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70793, 55.554959], - [37.70793, 55.555049], - [37.708089, 55.555049], - [37.708089, 55.554959], - [37.70793, 55.554959] + [37.708398, 55.556036], + [37.708398, 55.556126], + [37.708488, 55.556126], + [37.708488, 55.556036], + [37.708398, 55.556036] ] ] } @@ -23416,11 +43224,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70793, 55.555049], - [37.70793, 55.555139], - [37.708089, 55.555139], - [37.708089, 55.555049], - [37.70793, 55.555049] + [37.708488, 55.55388], + [37.708488, 55.55397], + [37.708578, 55.55397], + [37.708578, 55.55388], + [37.708488, 55.55388] ] ] } @@ -23432,11 +43240,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70793, 55.555139], - [37.70793, 55.555229], - [37.708089, 55.555229], - [37.708089, 55.555139], - [37.70793, 55.555139] + [37.708488, 55.55397], + [37.708488, 55.55406], + [37.708578, 55.55406], + [37.708578, 55.55397], + [37.708488, 55.55397] ] ] } @@ -23448,11 +43256,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70793, 55.555229], - [37.70793, 55.555319], - [37.708089, 55.555319], - [37.708089, 55.555229], - [37.70793, 55.555229] + [37.708488, 55.55406], + [37.708488, 55.55415], + [37.708578, 55.55415], + [37.708578, 55.55406], + [37.708488, 55.55406] ] ] } @@ -23464,11 +43272,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70793, 55.555319], - [37.70793, 55.555409], - [37.708089, 55.555409], - [37.708089, 55.555319], - [37.70793, 55.555319] + [37.708488, 55.55415], + [37.708488, 55.554239], + [37.708578, 55.554239], + [37.708578, 55.55415], + [37.708488, 55.55415] ] ] } @@ -23480,11 +43288,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70793, 55.555409], - [37.70793, 55.555499], - [37.708089, 55.555499], - [37.708089, 55.555409], - [37.70793, 55.555409] + [37.708488, 55.554239], + [37.708488, 55.554329], + [37.708578, 55.554329], + [37.708578, 55.554239], + [37.708488, 55.554239] ] ] } @@ -23496,11 +43304,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70793, 55.555499], - [37.70793, 55.555589], - [37.708089, 55.555589], - [37.708089, 55.555499], - [37.70793, 55.555499] + [37.708488, 55.554329], + [37.708488, 55.554419], + [37.708578, 55.554419], + [37.708578, 55.554329], + [37.708488, 55.554329] ] ] } @@ -23512,11 +43320,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70793, 55.555589], - [37.70793, 55.555679], - [37.708089, 55.555679], - [37.708089, 55.555589], - [37.70793, 55.555589] + [37.708488, 55.554419], + [37.708488, 55.554509], + [37.708578, 55.554509], + [37.708578, 55.554419], + [37.708488, 55.554419] ] ] } @@ -23528,11 +43336,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70793, 55.555679], - [37.70793, 55.555769], - [37.708089, 55.555769], - [37.708089, 55.555679], - [37.70793, 55.555679] + [37.708488, 55.554509], + [37.708488, 55.554599], + [37.708578, 55.554599], + [37.708578, 55.554509], + [37.708488, 55.554509] ] ] } @@ -23544,11 +43352,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70793, 55.555769], - [37.70793, 55.555859], - [37.708089, 55.555859], - [37.708089, 55.555769], - [37.70793, 55.555769] + [37.708488, 55.554599], + [37.708488, 55.554689], + [37.708578, 55.554689], + [37.708578, 55.554599], + [37.708488, 55.554599] ] ] } @@ -23560,11 +43368,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70793, 55.555859], - [37.70793, 55.555949], - [37.708089, 55.555949], - [37.708089, 55.555859], - [37.70793, 55.555859] + [37.708488, 55.554689], + [37.708488, 55.554778], + [37.708578, 55.554778], + [37.708578, 55.554689], + [37.708488, 55.554689] ] ] } @@ -23576,11 +43384,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70793, 55.555949], - [37.70793, 55.556039], - [37.708089, 55.556039], - [37.708089, 55.555949], - [37.70793, 55.555949] + [37.708488, 55.554778], + [37.708488, 55.554868], + [37.708578, 55.554868], + [37.708578, 55.554778], + [37.708488, 55.554778] ] ] } @@ -23592,11 +43400,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708089, 55.553431], - [37.708089, 55.55352], - [37.708248, 55.55352], - [37.708248, 55.553431], - [37.708089, 55.553431] + [37.708488, 55.554868], + [37.708488, 55.554958], + [37.708578, 55.554958], + [37.708578, 55.554868], + [37.708488, 55.554868] ] ] } @@ -23608,11 +43416,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708089, 55.55352], - [37.708089, 55.55361], - [37.708248, 55.55361], - [37.708248, 55.55352], - [37.708089, 55.55352] + [37.708488, 55.554958], + [37.708488, 55.555048], + [37.708578, 55.555048], + [37.708578, 55.554958], + [37.708488, 55.554958] ] ] } @@ -23624,11 +43432,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708089, 55.55361], - [37.708089, 55.5537], - [37.708248, 55.5537], - [37.708248, 55.55361], - [37.708089, 55.55361] + [37.708488, 55.555048], + [37.708488, 55.555138], + [37.708578, 55.555138], + [37.708578, 55.555048], + [37.708488, 55.555048] ] ] } @@ -23640,11 +43448,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708089, 55.5537], - [37.708089, 55.55379], - [37.708248, 55.55379], - [37.708248, 55.5537], - [37.708089, 55.5537] + [37.708488, 55.555138], + [37.708488, 55.555228], + [37.708578, 55.555228], + [37.708578, 55.555138], + [37.708488, 55.555138] ] ] } @@ -23656,11 +43464,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708089, 55.55379], - [37.708089, 55.55388], - [37.708248, 55.55388], - [37.708248, 55.55379], - [37.708089, 55.55379] + [37.708488, 55.555228], + [37.708488, 55.555317], + [37.708578, 55.555317], + [37.708578, 55.555228], + [37.708488, 55.555228] ] ] } @@ -23672,11 +43480,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708089, 55.55388], - [37.708089, 55.55397], - [37.708248, 55.55397], - [37.708248, 55.55388], - [37.708089, 55.55388] + [37.708488, 55.555317], + [37.708488, 55.555407], + [37.708578, 55.555407], + [37.708578, 55.555317], + [37.708488, 55.555317] ] ] } @@ -23688,11 +43496,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708089, 55.55397], - [37.708089, 55.55406], - [37.708248, 55.55406], - [37.708248, 55.55397], - [37.708089, 55.55397] + [37.708488, 55.555407], + [37.708488, 55.555497], + [37.708578, 55.555497], + [37.708578, 55.555407], + [37.708488, 55.555407] ] ] } @@ -23704,11 +43512,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708089, 55.55406], - [37.708089, 55.55415], - [37.708248, 55.55415], - [37.708248, 55.55406], - [37.708089, 55.55406] + [37.708488, 55.555497], + [37.708488, 55.555587], + [37.708578, 55.555587], + [37.708578, 55.555497], + [37.708488, 55.555497] ] ] } @@ -23720,11 +43528,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708089, 55.55415], - [37.708089, 55.55424], - [37.708248, 55.55424], - [37.708248, 55.55415], - [37.708089, 55.55415] + [37.708488, 55.555587], + [37.708488, 55.555677], + [37.708578, 55.555677], + [37.708578, 55.555587], + [37.708488, 55.555587] ] ] } @@ -23736,11 +43544,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708089, 55.55424], - [37.708089, 55.55433], - [37.708248, 55.55433], - [37.708248, 55.55424], - [37.708089, 55.55424] + [37.708488, 55.555677], + [37.708488, 55.555767], + [37.708578, 55.555767], + [37.708578, 55.555677], + [37.708488, 55.555677] ] ] } @@ -23752,11 +43560,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708089, 55.55433], - [37.708089, 55.55442], - [37.708248, 55.55442], - [37.708248, 55.55433], - [37.708089, 55.55433] + [37.708488, 55.555767], + [37.708488, 55.555856], + [37.708578, 55.555856], + [37.708578, 55.555767], + [37.708488, 55.555767] ] ] } @@ -23768,11 +43576,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708089, 55.55442], - [37.708089, 55.55451], - [37.708248, 55.55451], - [37.708248, 55.55442], - [37.708089, 55.55442] + [37.708488, 55.555856], + [37.708488, 55.555946], + [37.708578, 55.555946], + [37.708578, 55.555856], + [37.708488, 55.555856] ] ] } @@ -23784,11 +43592,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708089, 55.55451], - [37.708089, 55.5546], - [37.708248, 55.5546], - [37.708248, 55.55451], - [37.708089, 55.55451] + [37.708488, 55.555946], + [37.708488, 55.556036], + [37.708578, 55.556036], + [37.708578, 55.555946], + [37.708488, 55.555946] ] ] } @@ -23800,11 +43608,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708089, 55.5546], - [37.708089, 55.55469], - [37.708248, 55.55469], - [37.708248, 55.5546], - [37.708089, 55.5546] + [37.708488, 55.556036], + [37.708488, 55.556126], + [37.708578, 55.556126], + [37.708578, 55.556036], + [37.708488, 55.556036] ] ] } @@ -23816,11 +43624,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708089, 55.55469], - [37.708089, 55.55478], - [37.708248, 55.55478], - [37.708248, 55.55469], - [37.708089, 55.55469] + [37.708578, 55.55397], + [37.708578, 55.55406], + [37.708668, 55.55406], + [37.708668, 55.55397], + [37.708578, 55.55397] ] ] } @@ -23832,11 +43640,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708089, 55.55478], - [37.708089, 55.554869], - [37.708248, 55.554869], - [37.708248, 55.55478], - [37.708089, 55.55478] + [37.708578, 55.55406], + [37.708578, 55.55415], + [37.708668, 55.55415], + [37.708668, 55.55406], + [37.708578, 55.55406] ] ] } @@ -23848,11 +43656,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708089, 55.554869], - [37.708089, 55.554959], - [37.708248, 55.554959], - [37.708248, 55.554869], - [37.708089, 55.554869] + [37.708578, 55.55415], + [37.708578, 55.554239], + [37.708668, 55.554239], + [37.708668, 55.55415], + [37.708578, 55.55415] ] ] } @@ -23864,11 +43672,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708089, 55.554959], - [37.708089, 55.555049], - [37.708248, 55.555049], - [37.708248, 55.554959], - [37.708089, 55.554959] + [37.708578, 55.554239], + [37.708578, 55.554329], + [37.708668, 55.554329], + [37.708668, 55.554239], + [37.708578, 55.554239] ] ] } @@ -23880,11 +43688,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708089, 55.555049], - [37.708089, 55.555139], - [37.708248, 55.555139], - [37.708248, 55.555049], - [37.708089, 55.555049] + [37.708578, 55.554329], + [37.708578, 55.554419], + [37.708668, 55.554419], + [37.708668, 55.554329], + [37.708578, 55.554329] ] ] } @@ -23896,11 +43704,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708089, 55.555139], - [37.708089, 55.555229], - [37.708248, 55.555229], - [37.708248, 55.555139], - [37.708089, 55.555139] + [37.708578, 55.554419], + [37.708578, 55.554509], + [37.708668, 55.554509], + [37.708668, 55.554419], + [37.708578, 55.554419] ] ] } @@ -23912,11 +43720,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708089, 55.555229], - [37.708089, 55.555319], - [37.708248, 55.555319], - [37.708248, 55.555229], - [37.708089, 55.555229] + [37.708578, 55.554509], + [37.708578, 55.554599], + [37.708668, 55.554599], + [37.708668, 55.554509], + [37.708578, 55.554509] ] ] } @@ -23928,11 +43736,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708089, 55.555319], - [37.708089, 55.555409], - [37.708248, 55.555409], - [37.708248, 55.555319], - [37.708089, 55.555319] + [37.708578, 55.554599], + [37.708578, 55.554689], + [37.708668, 55.554689], + [37.708668, 55.554599], + [37.708578, 55.554599] ] ] } @@ -23944,11 +43752,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708089, 55.555409], - [37.708089, 55.555499], - [37.708248, 55.555499], - [37.708248, 55.555409], - [37.708089, 55.555409] + [37.708578, 55.554689], + [37.708578, 55.554778], + [37.708668, 55.554778], + [37.708668, 55.554689], + [37.708578, 55.554689] ] ] } @@ -23960,11 +43768,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708089, 55.555499], - [37.708089, 55.555589], - [37.708248, 55.555589], - [37.708248, 55.555499], - [37.708089, 55.555499] + [37.708578, 55.554778], + [37.708578, 55.554868], + [37.708668, 55.554868], + [37.708668, 55.554778], + [37.708578, 55.554778] ] ] } @@ -23976,11 +43784,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708089, 55.555589], - [37.708089, 55.555679], - [37.708248, 55.555679], - [37.708248, 55.555589], - [37.708089, 55.555589] + [37.708578, 55.554868], + [37.708578, 55.554958], + [37.708668, 55.554958], + [37.708668, 55.554868], + [37.708578, 55.554868] ] ] } @@ -23992,11 +43800,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708089, 55.555679], - [37.708089, 55.555769], - [37.708248, 55.555769], - [37.708248, 55.555679], - [37.708089, 55.555679] + [37.708578, 55.554958], + [37.708578, 55.555048], + [37.708668, 55.555048], + [37.708668, 55.554958], + [37.708578, 55.554958] ] ] } @@ -24008,11 +43816,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708089, 55.555769], - [37.708089, 55.555859], - [37.708248, 55.555859], - [37.708248, 55.555769], - [37.708089, 55.555769] + [37.708578, 55.555048], + [37.708578, 55.555138], + [37.708668, 55.555138], + [37.708668, 55.555048], + [37.708578, 55.555048] ] ] } @@ -24024,11 +43832,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708089, 55.555859], - [37.708089, 55.555949], - [37.708248, 55.555949], - [37.708248, 55.555859], - [37.708089, 55.555859] + [37.708578, 55.555138], + [37.708578, 55.555228], + [37.708668, 55.555228], + [37.708668, 55.555138], + [37.708578, 55.555138] ] ] } @@ -24040,11 +43848,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708089, 55.555949], - [37.708089, 55.556039], - [37.708248, 55.556039], - [37.708248, 55.555949], - [37.708089, 55.555949] + [37.708578, 55.555228], + [37.708578, 55.555317], + [37.708668, 55.555317], + [37.708668, 55.555228], + [37.708578, 55.555228] ] ] } @@ -24056,11 +43864,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708248, 55.55361], - [37.708248, 55.5537], - [37.708407, 55.5537], - [37.708407, 55.55361], - [37.708248, 55.55361] + [37.708578, 55.555317], + [37.708578, 55.555407], + [37.708668, 55.555407], + [37.708668, 55.555317], + [37.708578, 55.555317] ] ] } @@ -24072,11 +43880,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708248, 55.5537], - [37.708248, 55.55379], - [37.708407, 55.55379], - [37.708407, 55.5537], - [37.708248, 55.5537] + [37.708578, 55.555407], + [37.708578, 55.555497], + [37.708668, 55.555497], + [37.708668, 55.555407], + [37.708578, 55.555407] ] ] } @@ -24088,11 +43896,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708248, 55.55379], - [37.708248, 55.55388], - [37.708407, 55.55388], - [37.708407, 55.55379], - [37.708248, 55.55379] + [37.708578, 55.555497], + [37.708578, 55.555587], + [37.708668, 55.555587], + [37.708668, 55.555497], + [37.708578, 55.555497] ] ] } @@ -24104,11 +43912,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708248, 55.55388], - [37.708248, 55.55397], - [37.708407, 55.55397], - [37.708407, 55.55388], - [37.708248, 55.55388] + [37.708578, 55.555587], + [37.708578, 55.555677], + [37.708668, 55.555677], + [37.708668, 55.555587], + [37.708578, 55.555587] ] ] } @@ -24120,11 +43928,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708248, 55.55397], - [37.708248, 55.55406], - [37.708407, 55.55406], - [37.708407, 55.55397], - [37.708248, 55.55397] + [37.708578, 55.555677], + [37.708578, 55.555767], + [37.708668, 55.555767], + [37.708668, 55.555677], + [37.708578, 55.555677] ] ] } @@ -24136,11 +43944,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708248, 55.55406], - [37.708248, 55.55415], - [37.708407, 55.55415], - [37.708407, 55.55406], - [37.708248, 55.55406] + [37.708578, 55.555767], + [37.708578, 55.555856], + [37.708668, 55.555856], + [37.708668, 55.555767], + [37.708578, 55.555767] ] ] } @@ -24152,11 +43960,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708248, 55.55415], - [37.708248, 55.55424], - [37.708407, 55.55424], - [37.708407, 55.55415], - [37.708248, 55.55415] + [37.708578, 55.555856], + [37.708578, 55.555946], + [37.708668, 55.555946], + [37.708668, 55.555856], + [37.708578, 55.555856] ] ] } @@ -24168,11 +43976,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708248, 55.55424], - [37.708248, 55.55433], - [37.708407, 55.55433], - [37.708407, 55.55424], - [37.708248, 55.55424] + [37.708578, 55.555946], + [37.708578, 55.556036], + [37.708668, 55.556036], + [37.708668, 55.555946], + [37.708578, 55.555946] ] ] } @@ -24184,11 +43992,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708248, 55.55433], - [37.708248, 55.55442], - [37.708407, 55.55442], - [37.708407, 55.55433], - [37.708248, 55.55433] + [37.708578, 55.556036], + [37.708578, 55.556126], + [37.708668, 55.556126], + [37.708668, 55.556036], + [37.708578, 55.556036] ] ] } @@ -24200,11 +44008,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708248, 55.55442], - [37.708248, 55.55451], - [37.708407, 55.55451], - [37.708407, 55.55442], - [37.708248, 55.55442] + [37.708668, 55.55415], + [37.708668, 55.554239], + [37.708758, 55.554239], + [37.708758, 55.55415], + [37.708668, 55.55415] ] ] } @@ -24216,11 +44024,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708248, 55.55451], - [37.708248, 55.5546], - [37.708407, 55.5546], - [37.708407, 55.55451], - [37.708248, 55.55451] + [37.708668, 55.554239], + [37.708668, 55.554329], + [37.708758, 55.554329], + [37.708758, 55.554239], + [37.708668, 55.554239] ] ] } @@ -24232,11 +44040,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708248, 55.5546], - [37.708248, 55.55469], - [37.708407, 55.55469], - [37.708407, 55.5546], - [37.708248, 55.5546] + [37.708668, 55.554329], + [37.708668, 55.554419], + [37.708758, 55.554419], + [37.708758, 55.554329], + [37.708668, 55.554329] ] ] } @@ -24248,11 +44056,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708248, 55.55469], - [37.708248, 55.55478], - [37.708407, 55.55478], - [37.708407, 55.55469], - [37.708248, 55.55469] + [37.708668, 55.554419], + [37.708668, 55.554509], + [37.708758, 55.554509], + [37.708758, 55.554419], + [37.708668, 55.554419] ] ] } @@ -24264,11 +44072,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708248, 55.55478], - [37.708248, 55.554869], - [37.708407, 55.554869], - [37.708407, 55.55478], - [37.708248, 55.55478] + [37.708668, 55.554509], + [37.708668, 55.554599], + [37.708758, 55.554599], + [37.708758, 55.554509], + [37.708668, 55.554509] ] ] } @@ -24280,11 +44088,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708248, 55.554869], - [37.708248, 55.554959], - [37.708407, 55.554959], - [37.708407, 55.554869], - [37.708248, 55.554869] + [37.708668, 55.554599], + [37.708668, 55.554689], + [37.708758, 55.554689], + [37.708758, 55.554599], + [37.708668, 55.554599] ] ] } @@ -24296,11 +44104,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708248, 55.554959], - [37.708248, 55.555049], - [37.708407, 55.555049], - [37.708407, 55.554959], - [37.708248, 55.554959] + [37.708668, 55.554689], + [37.708668, 55.554778], + [37.708758, 55.554778], + [37.708758, 55.554689], + [37.708668, 55.554689] ] ] } @@ -24312,11 +44120,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708248, 55.555049], - [37.708248, 55.555139], - [37.708407, 55.555139], - [37.708407, 55.555049], - [37.708248, 55.555049] + [37.708668, 55.554778], + [37.708668, 55.554868], + [37.708758, 55.554868], + [37.708758, 55.554778], + [37.708668, 55.554778] ] ] } @@ -24328,11 +44136,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708248, 55.555139], - [37.708248, 55.555229], - [37.708407, 55.555229], - [37.708407, 55.555139], - [37.708248, 55.555139] + [37.708668, 55.554868], + [37.708668, 55.554958], + [37.708758, 55.554958], + [37.708758, 55.554868], + [37.708668, 55.554868] ] ] } @@ -24344,11 +44152,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708248, 55.555229], - [37.708248, 55.555319], - [37.708407, 55.555319], - [37.708407, 55.555229], - [37.708248, 55.555229] + [37.708668, 55.554958], + [37.708668, 55.555048], + [37.708758, 55.555048], + [37.708758, 55.554958], + [37.708668, 55.554958] ] ] } @@ -24360,11 +44168,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708248, 55.555319], - [37.708248, 55.555409], - [37.708407, 55.555409], - [37.708407, 55.555319], - [37.708248, 55.555319] + [37.708668, 55.555048], + [37.708668, 55.555138], + [37.708758, 55.555138], + [37.708758, 55.555048], + [37.708668, 55.555048] ] ] } @@ -24376,11 +44184,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708248, 55.555409], - [37.708248, 55.555499], - [37.708407, 55.555499], - [37.708407, 55.555409], - [37.708248, 55.555409] + [37.708668, 55.555138], + [37.708668, 55.555228], + [37.708758, 55.555228], + [37.708758, 55.555138], + [37.708668, 55.555138] ] ] } @@ -24392,11 +44200,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708248, 55.555499], - [37.708248, 55.555589], - [37.708407, 55.555589], - [37.708407, 55.555499], - [37.708248, 55.555499] + [37.708668, 55.555228], + [37.708668, 55.555317], + [37.708758, 55.555317], + [37.708758, 55.555228], + [37.708668, 55.555228] ] ] } @@ -24408,11 +44216,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708248, 55.555589], - [37.708248, 55.555679], - [37.708407, 55.555679], - [37.708407, 55.555589], - [37.708248, 55.555589] + [37.708668, 55.555317], + [37.708668, 55.555407], + [37.708758, 55.555407], + [37.708758, 55.555317], + [37.708668, 55.555317] ] ] } @@ -24424,11 +44232,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708248, 55.555679], - [37.708248, 55.555769], - [37.708407, 55.555769], - [37.708407, 55.555679], - [37.708248, 55.555679] + [37.708668, 55.555407], + [37.708668, 55.555497], + [37.708758, 55.555497], + [37.708758, 55.555407], + [37.708668, 55.555407] ] ] } @@ -24440,11 +44248,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708248, 55.555769], - [37.708248, 55.555859], - [37.708407, 55.555859], - [37.708407, 55.555769], - [37.708248, 55.555769] + [37.708668, 55.555497], + [37.708668, 55.555587], + [37.708758, 55.555587], + [37.708758, 55.555497], + [37.708668, 55.555497] ] ] } @@ -24456,11 +44264,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708248, 55.555859], - [37.708248, 55.555949], - [37.708407, 55.555949], - [37.708407, 55.555859], - [37.708248, 55.555859] + [37.708668, 55.555587], + [37.708668, 55.555677], + [37.708758, 55.555677], + [37.708758, 55.555587], + [37.708668, 55.555587] ] ] } @@ -24472,11 +44280,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708248, 55.555949], - [37.708248, 55.556039], - [37.708407, 55.556039], - [37.708407, 55.555949], - [37.708248, 55.555949] + [37.708668, 55.555677], + [37.708668, 55.555767], + [37.708758, 55.555767], + [37.708758, 55.555677], + [37.708668, 55.555677] ] ] } @@ -24488,11 +44296,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708407, 55.55379], - [37.708407, 55.55388], - [37.708566, 55.55388], - [37.708566, 55.55379], - [37.708407, 55.55379] + [37.708668, 55.555767], + [37.708668, 55.555856], + [37.708758, 55.555856], + [37.708758, 55.555767], + [37.708668, 55.555767] ] ] } @@ -24504,11 +44312,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708407, 55.55388], - [37.708407, 55.55397], - [37.708566, 55.55397], - [37.708566, 55.55388], - [37.708407, 55.55388] + [37.708668, 55.555856], + [37.708668, 55.555946], + [37.708758, 55.555946], + [37.708758, 55.555856], + [37.708668, 55.555856] ] ] } @@ -24520,11 +44328,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708407, 55.55397], - [37.708407, 55.55406], - [37.708566, 55.55406], - [37.708566, 55.55397], - [37.708407, 55.55397] + [37.708668, 55.555946], + [37.708668, 55.556036], + [37.708758, 55.556036], + [37.708758, 55.555946], + [37.708668, 55.555946] ] ] } @@ -24536,11 +44344,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708407, 55.55406], - [37.708407, 55.55415], - [37.708566, 55.55415], - [37.708566, 55.55406], - [37.708407, 55.55406] + [37.708668, 55.556036], + [37.708668, 55.556126], + [37.708758, 55.556126], + [37.708758, 55.556036], + [37.708668, 55.556036] ] ] } @@ -24552,11 +44360,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708407, 55.55415], - [37.708407, 55.55424], - [37.708566, 55.55424], - [37.708566, 55.55415], - [37.708407, 55.55415] + [37.708758, 55.554239], + [37.708758, 55.554329], + [37.708847, 55.554329], + [37.708847, 55.554239], + [37.708758, 55.554239] ] ] } @@ -24568,11 +44376,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708407, 55.55424], - [37.708407, 55.55433], - [37.708566, 55.55433], - [37.708566, 55.55424], - [37.708407, 55.55424] + [37.708758, 55.554329], + [37.708758, 55.554419], + [37.708847, 55.554419], + [37.708847, 55.554329], + [37.708758, 55.554329] ] ] } @@ -24584,11 +44392,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708407, 55.55433], - [37.708407, 55.55442], - [37.708566, 55.55442], - [37.708566, 55.55433], - [37.708407, 55.55433] + [37.708758, 55.554419], + [37.708758, 55.554509], + [37.708847, 55.554509], + [37.708847, 55.554419], + [37.708758, 55.554419] ] ] } @@ -24600,11 +44408,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708407, 55.55442], - [37.708407, 55.55451], - [37.708566, 55.55451], - [37.708566, 55.55442], - [37.708407, 55.55442] + [37.708758, 55.554509], + [37.708758, 55.554599], + [37.708847, 55.554599], + [37.708847, 55.554509], + [37.708758, 55.554509] ] ] } @@ -24616,11 +44424,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708407, 55.55451], - [37.708407, 55.5546], - [37.708566, 55.5546], - [37.708566, 55.55451], - [37.708407, 55.55451] + [37.708758, 55.554599], + [37.708758, 55.554689], + [37.708847, 55.554689], + [37.708847, 55.554599], + [37.708758, 55.554599] ] ] } @@ -24632,11 +44440,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708407, 55.5546], - [37.708407, 55.55469], - [37.708566, 55.55469], - [37.708566, 55.5546], - [37.708407, 55.5546] + [37.708758, 55.554689], + [37.708758, 55.554778], + [37.708847, 55.554778], + [37.708847, 55.554689], + [37.708758, 55.554689] ] ] } @@ -24648,11 +44456,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708407, 55.55469], - [37.708407, 55.55478], - [37.708566, 55.55478], - [37.708566, 55.55469], - [37.708407, 55.55469] + [37.708758, 55.554778], + [37.708758, 55.554868], + [37.708847, 55.554868], + [37.708847, 55.554778], + [37.708758, 55.554778] ] ] } @@ -24664,11 +44472,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708407, 55.55478], - [37.708407, 55.554869], - [37.708566, 55.554869], - [37.708566, 55.55478], - [37.708407, 55.55478] + [37.708758, 55.554868], + [37.708758, 55.554958], + [37.708847, 55.554958], + [37.708847, 55.554868], + [37.708758, 55.554868] ] ] } @@ -24680,11 +44488,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708407, 55.554869], - [37.708407, 55.554959], - [37.708566, 55.554959], - [37.708566, 55.554869], - [37.708407, 55.554869] + [37.708758, 55.554958], + [37.708758, 55.555048], + [37.708847, 55.555048], + [37.708847, 55.554958], + [37.708758, 55.554958] ] ] } @@ -24696,11 +44504,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708407, 55.554959], - [37.708407, 55.555049], - [37.708566, 55.555049], - [37.708566, 55.554959], - [37.708407, 55.554959] + [37.708758, 55.555048], + [37.708758, 55.555138], + [37.708847, 55.555138], + [37.708847, 55.555048], + [37.708758, 55.555048] ] ] } @@ -24712,11 +44520,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708407, 55.555049], - [37.708407, 55.555139], - [37.708566, 55.555139], - [37.708566, 55.555049], - [37.708407, 55.555049] + [37.708758, 55.555138], + [37.708758, 55.555228], + [37.708847, 55.555228], + [37.708847, 55.555138], + [37.708758, 55.555138] ] ] } @@ -24728,11 +44536,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708407, 55.555139], - [37.708407, 55.555229], - [37.708566, 55.555229], - [37.708566, 55.555139], - [37.708407, 55.555139] + [37.708758, 55.555228], + [37.708758, 55.555317], + [37.708847, 55.555317], + [37.708847, 55.555228], + [37.708758, 55.555228] ] ] } @@ -24744,11 +44552,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708407, 55.555229], - [37.708407, 55.555319], - [37.708566, 55.555319], - [37.708566, 55.555229], - [37.708407, 55.555229] + [37.708758, 55.555317], + [37.708758, 55.555407], + [37.708847, 55.555407], + [37.708847, 55.555317], + [37.708758, 55.555317] ] ] } @@ -24760,11 +44568,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708407, 55.555319], - [37.708407, 55.555409], - [37.708566, 55.555409], - [37.708566, 55.555319], - [37.708407, 55.555319] + [37.708758, 55.555407], + [37.708758, 55.555497], + [37.708847, 55.555497], + [37.708847, 55.555407], + [37.708758, 55.555407] ] ] } @@ -24776,11 +44584,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708407, 55.555409], - [37.708407, 55.555499], - [37.708566, 55.555499], - [37.708566, 55.555409], - [37.708407, 55.555409] + [37.708758, 55.555497], + [37.708758, 55.555587], + [37.708847, 55.555587], + [37.708847, 55.555497], + [37.708758, 55.555497] ] ] } @@ -24792,11 +44600,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708407, 55.555499], - [37.708407, 55.555589], - [37.708566, 55.555589], - [37.708566, 55.555499], - [37.708407, 55.555499] + [37.708758, 55.555587], + [37.708758, 55.555677], + [37.708847, 55.555677], + [37.708847, 55.555587], + [37.708758, 55.555587] ] ] } @@ -24808,11 +44616,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708407, 55.555589], - [37.708407, 55.555679], - [37.708566, 55.555679], - [37.708566, 55.555589], - [37.708407, 55.555589] + [37.708758, 55.555677], + [37.708758, 55.555767], + [37.708847, 55.555767], + [37.708847, 55.555677], + [37.708758, 55.555677] ] ] } @@ -24824,11 +44632,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708407, 55.555679], - [37.708407, 55.555769], - [37.708566, 55.555769], - [37.708566, 55.555679], - [37.708407, 55.555679] + [37.708758, 55.555767], + [37.708758, 55.555856], + [37.708847, 55.555856], + [37.708847, 55.555767], + [37.708758, 55.555767] ] ] } @@ -24840,11 +44648,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708407, 55.555769], - [37.708407, 55.555859], - [37.708566, 55.555859], - [37.708566, 55.555769], - [37.708407, 55.555769] + [37.708758, 55.555856], + [37.708758, 55.555946], + [37.708847, 55.555946], + [37.708847, 55.555856], + [37.708758, 55.555856] ] ] } @@ -24856,11 +44664,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708407, 55.555859], - [37.708407, 55.555949], - [37.708566, 55.555949], - [37.708566, 55.555859], - [37.708407, 55.555859] + [37.708758, 55.555946], + [37.708758, 55.556036], + [37.708847, 55.556036], + [37.708847, 55.555946], + [37.708758, 55.555946] ] ] } @@ -24872,11 +44680,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708407, 55.555949], - [37.708407, 55.556039], - [37.708566, 55.556039], - [37.708566, 55.555949], - [37.708407, 55.555949] + [37.708758, 55.556036], + [37.708758, 55.556126], + [37.708847, 55.556126], + [37.708847, 55.556036], + [37.708758, 55.556036] ] ] } @@ -24888,11 +44696,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708407, 55.556039], - [37.708407, 55.556128], - [37.708566, 55.556128], - [37.708566, 55.556039], - [37.708407, 55.556039] + [37.708847, 55.554329], + [37.708847, 55.554419], + [37.708937, 55.554419], + [37.708937, 55.554329], + [37.708847, 55.554329] ] ] } @@ -24904,11 +44712,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708566, 55.55397], - [37.708566, 55.55406], - [37.708725, 55.55406], - [37.708725, 55.55397], - [37.708566, 55.55397] + [37.708847, 55.554419], + [37.708847, 55.554509], + [37.708937, 55.554509], + [37.708937, 55.554419], + [37.708847, 55.554419] ] ] } @@ -24920,11 +44728,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708566, 55.55406], - [37.708566, 55.55415], - [37.708725, 55.55415], - [37.708725, 55.55406], - [37.708566, 55.55406] + [37.708847, 55.554509], + [37.708847, 55.554599], + [37.708937, 55.554599], + [37.708937, 55.554509], + [37.708847, 55.554509] ] ] } @@ -24936,11 +44744,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708566, 55.55415], - [37.708566, 55.55424], - [37.708725, 55.55424], - [37.708725, 55.55415], - [37.708566, 55.55415] + [37.708847, 55.554599], + [37.708847, 55.554689], + [37.708937, 55.554689], + [37.708937, 55.554599], + [37.708847, 55.554599] ] ] } @@ -24952,11 +44760,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708566, 55.55424], - [37.708566, 55.55433], - [37.708725, 55.55433], - [37.708725, 55.55424], - [37.708566, 55.55424] + [37.708847, 55.554689], + [37.708847, 55.554778], + [37.708937, 55.554778], + [37.708937, 55.554689], + [37.708847, 55.554689] ] ] } @@ -24968,11 +44776,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708566, 55.55433], - [37.708566, 55.55442], - [37.708725, 55.55442], - [37.708725, 55.55433], - [37.708566, 55.55433] + [37.708847, 55.554778], + [37.708847, 55.554868], + [37.708937, 55.554868], + [37.708937, 55.554778], + [37.708847, 55.554778] ] ] } @@ -24984,11 +44792,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708566, 55.55442], - [37.708566, 55.55451], - [37.708725, 55.55451], - [37.708725, 55.55442], - [37.708566, 55.55442] + [37.708847, 55.554868], + [37.708847, 55.554958], + [37.708937, 55.554958], + [37.708937, 55.554868], + [37.708847, 55.554868] ] ] } @@ -25000,11 +44808,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708566, 55.55451], - [37.708566, 55.5546], - [37.708725, 55.5546], - [37.708725, 55.55451], - [37.708566, 55.55451] + [37.708847, 55.554958], + [37.708847, 55.555048], + [37.708937, 55.555048], + [37.708937, 55.554958], + [37.708847, 55.554958] ] ] } @@ -25016,11 +44824,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708566, 55.5546], - [37.708566, 55.55469], - [37.708725, 55.55469], - [37.708725, 55.5546], - [37.708566, 55.5546] + [37.708847, 55.555048], + [37.708847, 55.555138], + [37.708937, 55.555138], + [37.708937, 55.555048], + [37.708847, 55.555048] ] ] } @@ -25032,11 +44840,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708566, 55.55469], - [37.708566, 55.55478], - [37.708725, 55.55478], - [37.708725, 55.55469], - [37.708566, 55.55469] + [37.708847, 55.555138], + [37.708847, 55.555228], + [37.708937, 55.555228], + [37.708937, 55.555138], + [37.708847, 55.555138] ] ] } @@ -25048,11 +44856,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708566, 55.55478], - [37.708566, 55.554869], - [37.708725, 55.554869], - [37.708725, 55.55478], - [37.708566, 55.55478] + [37.708847, 55.555228], + [37.708847, 55.555317], + [37.708937, 55.555317], + [37.708937, 55.555228], + [37.708847, 55.555228] ] ] } @@ -25064,11 +44872,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708566, 55.554869], - [37.708566, 55.554959], - [37.708725, 55.554959], - [37.708725, 55.554869], - [37.708566, 55.554869] + [37.708847, 55.555317], + [37.708847, 55.555407], + [37.708937, 55.555407], + [37.708937, 55.555317], + [37.708847, 55.555317] ] ] } @@ -25080,11 +44888,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708566, 55.554959], - [37.708566, 55.555049], - [37.708725, 55.555049], - [37.708725, 55.554959], - [37.708566, 55.554959] + [37.708847, 55.555407], + [37.708847, 55.555497], + [37.708937, 55.555497], + [37.708937, 55.555407], + [37.708847, 55.555407] ] ] } @@ -25096,11 +44904,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708566, 55.555049], - [37.708566, 55.555139], - [37.708725, 55.555139], - [37.708725, 55.555049], - [37.708566, 55.555049] + [37.708847, 55.555497], + [37.708847, 55.555587], + [37.708937, 55.555587], + [37.708937, 55.555497], + [37.708847, 55.555497] ] ] } @@ -25112,11 +44920,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708566, 55.555139], - [37.708566, 55.555229], - [37.708725, 55.555229], - [37.708725, 55.555139], - [37.708566, 55.555139] + [37.708847, 55.555587], + [37.708847, 55.555677], + [37.708937, 55.555677], + [37.708937, 55.555587], + [37.708847, 55.555587] ] ] } @@ -25128,11 +44936,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708566, 55.555229], - [37.708566, 55.555319], - [37.708725, 55.555319], - [37.708725, 55.555229], - [37.708566, 55.555229] + [37.708847, 55.555677], + [37.708847, 55.555767], + [37.708937, 55.555767], + [37.708937, 55.555677], + [37.708847, 55.555677] ] ] } @@ -25144,11 +44952,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708566, 55.555319], - [37.708566, 55.555409], - [37.708725, 55.555409], - [37.708725, 55.555319], - [37.708566, 55.555319] + [37.708847, 55.555767], + [37.708847, 55.555856], + [37.708937, 55.555856], + [37.708937, 55.555767], + [37.708847, 55.555767] ] ] } @@ -25160,11 +44968,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708566, 55.555409], - [37.708566, 55.555499], - [37.708725, 55.555499], - [37.708725, 55.555409], - [37.708566, 55.555409] + [37.708847, 55.555856], + [37.708847, 55.555946], + [37.708937, 55.555946], + [37.708937, 55.555856], + [37.708847, 55.555856] ] ] } @@ -25176,11 +44984,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708566, 55.555499], - [37.708566, 55.555589], - [37.708725, 55.555589], - [37.708725, 55.555499], - [37.708566, 55.555499] + [37.708847, 55.555946], + [37.708847, 55.556036], + [37.708937, 55.556036], + [37.708937, 55.555946], + [37.708847, 55.555946] ] ] } @@ -25192,11 +45000,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708566, 55.555589], - [37.708566, 55.555679], - [37.708725, 55.555679], - [37.708725, 55.555589], - [37.708566, 55.555589] + [37.708847, 55.556036], + [37.708847, 55.556126], + [37.708937, 55.556126], + [37.708937, 55.556036], + [37.708847, 55.556036] ] ] } @@ -25208,11 +45016,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708566, 55.555679], - [37.708566, 55.555769], - [37.708725, 55.555769], - [37.708725, 55.555679], - [37.708566, 55.555679] + [37.708937, 55.554419], + [37.708937, 55.554509], + [37.709027, 55.554509], + [37.709027, 55.554419], + [37.708937, 55.554419] ] ] } @@ -25224,11 +45032,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708566, 55.555769], - [37.708566, 55.555859], - [37.708725, 55.555859], - [37.708725, 55.555769], - [37.708566, 55.555769] + [37.708937, 55.554509], + [37.708937, 55.554599], + [37.709027, 55.554599], + [37.709027, 55.554509], + [37.708937, 55.554509] ] ] } @@ -25240,11 +45048,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708566, 55.555859], - [37.708566, 55.555949], - [37.708725, 55.555949], - [37.708725, 55.555859], - [37.708566, 55.555859] + [37.708937, 55.554599], + [37.708937, 55.554689], + [37.709027, 55.554689], + [37.709027, 55.554599], + [37.708937, 55.554599] ] ] } @@ -25256,11 +45064,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708566, 55.555949], - [37.708566, 55.556039], - [37.708725, 55.556039], - [37.708725, 55.555949], - [37.708566, 55.555949] + [37.708937, 55.554689], + [37.708937, 55.554778], + [37.709027, 55.554778], + [37.709027, 55.554689], + [37.708937, 55.554689] ] ] } @@ -25272,11 +45080,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708566, 55.556039], - [37.708566, 55.556128], - [37.708725, 55.556128], - [37.708725, 55.556039], - [37.708566, 55.556039] + [37.708937, 55.554778], + [37.708937, 55.554868], + [37.709027, 55.554868], + [37.709027, 55.554778], + [37.708937, 55.554778] ] ] } @@ -25288,11 +45096,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708725, 55.55415], - [37.708725, 55.55424], - [37.708884, 55.55424], - [37.708884, 55.55415], - [37.708725, 55.55415] + [37.708937, 55.554868], + [37.708937, 55.554958], + [37.709027, 55.554958], + [37.709027, 55.554868], + [37.708937, 55.554868] ] ] } @@ -25304,11 +45112,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708725, 55.55424], - [37.708725, 55.55433], - [37.708884, 55.55433], - [37.708884, 55.55424], - [37.708725, 55.55424] + [37.708937, 55.554958], + [37.708937, 55.555048], + [37.709027, 55.555048], + [37.709027, 55.554958], + [37.708937, 55.554958] ] ] } @@ -25320,11 +45128,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708725, 55.55433], - [37.708725, 55.55442], - [37.708884, 55.55442], - [37.708884, 55.55433], - [37.708725, 55.55433] + [37.708937, 55.555048], + [37.708937, 55.555138], + [37.709027, 55.555138], + [37.709027, 55.555048], + [37.708937, 55.555048] ] ] } @@ -25336,11 +45144,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708725, 55.55442], - [37.708725, 55.55451], - [37.708884, 55.55451], - [37.708884, 55.55442], - [37.708725, 55.55442] + [37.708937, 55.555138], + [37.708937, 55.555228], + [37.709027, 55.555228], + [37.709027, 55.555138], + [37.708937, 55.555138] ] ] } @@ -25352,11 +45160,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708725, 55.55451], - [37.708725, 55.5546], - [37.708884, 55.5546], - [37.708884, 55.55451], - [37.708725, 55.55451] + [37.708937, 55.555228], + [37.708937, 55.555317], + [37.709027, 55.555317], + [37.709027, 55.555228], + [37.708937, 55.555228] ] ] } @@ -25368,11 +45176,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708725, 55.5546], - [37.708725, 55.55469], - [37.708884, 55.55469], - [37.708884, 55.5546], - [37.708725, 55.5546] + [37.708937, 55.555317], + [37.708937, 55.555407], + [37.709027, 55.555407], + [37.709027, 55.555317], + [37.708937, 55.555317] ] ] } @@ -25384,11 +45192,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708725, 55.55469], - [37.708725, 55.55478], - [37.708884, 55.55478], - [37.708884, 55.55469], - [37.708725, 55.55469] + [37.708937, 55.555407], + [37.708937, 55.555497], + [37.709027, 55.555497], + [37.709027, 55.555407], + [37.708937, 55.555407] ] ] } @@ -25400,11 +45208,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708725, 55.55478], - [37.708725, 55.554869], - [37.708884, 55.554869], - [37.708884, 55.55478], - [37.708725, 55.55478] + [37.708937, 55.555497], + [37.708937, 55.555587], + [37.709027, 55.555587], + [37.709027, 55.555497], + [37.708937, 55.555497] ] ] } @@ -25416,11 +45224,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708725, 55.554869], - [37.708725, 55.554959], - [37.708884, 55.554959], - [37.708884, 55.554869], - [37.708725, 55.554869] + [37.708937, 55.555587], + [37.708937, 55.555677], + [37.709027, 55.555677], + [37.709027, 55.555587], + [37.708937, 55.555587] ] ] } @@ -25432,11 +45240,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708725, 55.554959], - [37.708725, 55.555049], - [37.708884, 55.555049], - [37.708884, 55.554959], - [37.708725, 55.554959] + [37.708937, 55.555677], + [37.708937, 55.555767], + [37.709027, 55.555767], + [37.709027, 55.555677], + [37.708937, 55.555677] ] ] } @@ -25448,11 +45256,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708725, 55.555049], - [37.708725, 55.555139], - [37.708884, 55.555139], - [37.708884, 55.555049], - [37.708725, 55.555049] + [37.708937, 55.555767], + [37.708937, 55.555856], + [37.709027, 55.555856], + [37.709027, 55.555767], + [37.708937, 55.555767] ] ] } @@ -25464,11 +45272,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708725, 55.555139], - [37.708725, 55.555229], - [37.708884, 55.555229], - [37.708884, 55.555139], - [37.708725, 55.555139] + [37.708937, 55.555856], + [37.708937, 55.555946], + [37.709027, 55.555946], + [37.709027, 55.555856], + [37.708937, 55.555856] ] ] } @@ -25480,11 +45288,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708725, 55.555229], - [37.708725, 55.555319], - [37.708884, 55.555319], - [37.708884, 55.555229], - [37.708725, 55.555229] + [37.708937, 55.555946], + [37.708937, 55.556036], + [37.709027, 55.556036], + [37.709027, 55.555946], + [37.708937, 55.555946] ] ] } @@ -25496,11 +45304,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708725, 55.555319], - [37.708725, 55.555409], - [37.708884, 55.555409], - [37.708884, 55.555319], - [37.708725, 55.555319] + [37.708937, 55.556036], + [37.708937, 55.556126], + [37.709027, 55.556126], + [37.709027, 55.556036], + [37.708937, 55.556036] ] ] } @@ -25512,11 +45320,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708725, 55.555409], - [37.708725, 55.555499], - [37.708884, 55.555499], - [37.708884, 55.555409], - [37.708725, 55.555409] + [37.709027, 55.554599], + [37.709027, 55.554689], + [37.709117, 55.554689], + [37.709117, 55.554599], + [37.709027, 55.554599] ] ] } @@ -25528,11 +45336,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708725, 55.555499], - [37.708725, 55.555589], - [37.708884, 55.555589], - [37.708884, 55.555499], - [37.708725, 55.555499] + [37.709027, 55.554689], + [37.709027, 55.554778], + [37.709117, 55.554778], + [37.709117, 55.554689], + [37.709027, 55.554689] ] ] } @@ -25544,11 +45352,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708725, 55.555589], - [37.708725, 55.555679], - [37.708884, 55.555679], - [37.708884, 55.555589], - [37.708725, 55.555589] + [37.709027, 55.554778], + [37.709027, 55.554868], + [37.709117, 55.554868], + [37.709117, 55.554778], + [37.709027, 55.554778] ] ] } @@ -25560,11 +45368,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708725, 55.555679], - [37.708725, 55.555769], - [37.708884, 55.555769], - [37.708884, 55.555679], - [37.708725, 55.555679] + [37.709027, 55.554868], + [37.709027, 55.554958], + [37.709117, 55.554958], + [37.709117, 55.554868], + [37.709027, 55.554868] ] ] } @@ -25576,11 +45384,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708725, 55.555769], - [37.708725, 55.555859], - [37.708884, 55.555859], - [37.708884, 55.555769], - [37.708725, 55.555769] + [37.709027, 55.554958], + [37.709027, 55.555048], + [37.709117, 55.555048], + [37.709117, 55.554958], + [37.709027, 55.554958] ] ] } @@ -25592,11 +45400,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708725, 55.555859], - [37.708725, 55.555949], - [37.708884, 55.555949], - [37.708884, 55.555859], - [37.708725, 55.555859] + [37.709027, 55.555048], + [37.709027, 55.555138], + [37.709117, 55.555138], + [37.709117, 55.555048], + [37.709027, 55.555048] ] ] } @@ -25608,11 +45416,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708725, 55.555949], - [37.708725, 55.556039], - [37.708884, 55.556039], - [37.708884, 55.555949], - [37.708725, 55.555949] + [37.709027, 55.555138], + [37.709027, 55.555228], + [37.709117, 55.555228], + [37.709117, 55.555138], + [37.709027, 55.555138] ] ] } @@ -25624,11 +45432,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708725, 55.556039], - [37.708725, 55.556128], - [37.708884, 55.556128], - [37.708884, 55.556039], - [37.708725, 55.556039] + [37.709027, 55.555228], + [37.709027, 55.555317], + [37.709117, 55.555317], + [37.709117, 55.555228], + [37.709027, 55.555228] ] ] } @@ -25640,11 +45448,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708884, 55.55442], - [37.708884, 55.55451], - [37.709043, 55.55451], - [37.709043, 55.55442], - [37.708884, 55.55442] + [37.709027, 55.555317], + [37.709027, 55.555407], + [37.709117, 55.555407], + [37.709117, 55.555317], + [37.709027, 55.555317] ] ] } @@ -25656,11 +45464,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708884, 55.55451], - [37.708884, 55.5546], - [37.709043, 55.5546], - [37.709043, 55.55451], - [37.708884, 55.55451] + [37.709027, 55.555407], + [37.709027, 55.555497], + [37.709117, 55.555497], + [37.709117, 55.555407], + [37.709027, 55.555407] ] ] } @@ -25672,11 +45480,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708884, 55.5546], - [37.708884, 55.55469], - [37.709043, 55.55469], - [37.709043, 55.5546], - [37.708884, 55.5546] + [37.709027, 55.555497], + [37.709027, 55.555587], + [37.709117, 55.555587], + [37.709117, 55.555497], + [37.709027, 55.555497] ] ] } @@ -25688,11 +45496,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708884, 55.55469], - [37.708884, 55.55478], - [37.709043, 55.55478], - [37.709043, 55.55469], - [37.708884, 55.55469] + [37.709027, 55.555587], + [37.709027, 55.555677], + [37.709117, 55.555677], + [37.709117, 55.555587], + [37.709027, 55.555587] ] ] } @@ -25704,11 +45512,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708884, 55.55478], - [37.708884, 55.554869], - [37.709043, 55.554869], - [37.709043, 55.55478], - [37.708884, 55.55478] + [37.709027, 55.555677], + [37.709027, 55.555767], + [37.709117, 55.555767], + [37.709117, 55.555677], + [37.709027, 55.555677] ] ] } @@ -25720,11 +45528,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708884, 55.554869], - [37.708884, 55.554959], - [37.709043, 55.554959], - [37.709043, 55.554869], - [37.708884, 55.554869] + [37.709027, 55.555767], + [37.709027, 55.555856], + [37.709117, 55.555856], + [37.709117, 55.555767], + [37.709027, 55.555767] ] ] } @@ -25736,11 +45544,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708884, 55.554959], - [37.708884, 55.555049], - [37.709043, 55.555049], - [37.709043, 55.554959], - [37.708884, 55.554959] + [37.709027, 55.555856], + [37.709027, 55.555946], + [37.709117, 55.555946], + [37.709117, 55.555856], + [37.709027, 55.555856] ] ] } @@ -25752,11 +45560,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708884, 55.555049], - [37.708884, 55.555139], - [37.709043, 55.555139], - [37.709043, 55.555049], - [37.708884, 55.555049] + [37.709027, 55.555946], + [37.709027, 55.556036], + [37.709117, 55.556036], + [37.709117, 55.555946], + [37.709027, 55.555946] ] ] } @@ -25768,11 +45576,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708884, 55.555139], - [37.708884, 55.555229], - [37.709043, 55.555229], - [37.709043, 55.555139], - [37.708884, 55.555139] + [37.709117, 55.554689], + [37.709117, 55.554778], + [37.709207, 55.554778], + [37.709207, 55.554689], + [37.709117, 55.554689] ] ] } @@ -25784,11 +45592,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708884, 55.555229], - [37.708884, 55.555319], - [37.709043, 55.555319], - [37.709043, 55.555229], - [37.708884, 55.555229] + [37.709117, 55.554778], + [37.709117, 55.554868], + [37.709207, 55.554868], + [37.709207, 55.554778], + [37.709117, 55.554778] ] ] } @@ -25800,11 +45608,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708884, 55.555319], - [37.708884, 55.555409], - [37.709043, 55.555409], - [37.709043, 55.555319], - [37.708884, 55.555319] + [37.709117, 55.554868], + [37.709117, 55.554958], + [37.709207, 55.554958], + [37.709207, 55.554868], + [37.709117, 55.554868] ] ] } @@ -25816,11 +45624,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708884, 55.555409], - [37.708884, 55.555499], - [37.709043, 55.555499], - [37.709043, 55.555409], - [37.708884, 55.555409] + [37.709117, 55.554958], + [37.709117, 55.555048], + [37.709207, 55.555048], + [37.709207, 55.554958], + [37.709117, 55.554958] ] ] } @@ -25832,11 +45640,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708884, 55.555499], - [37.708884, 55.555589], - [37.709043, 55.555589], - [37.709043, 55.555499], - [37.708884, 55.555499] + [37.709117, 55.555048], + [37.709117, 55.555138], + [37.709207, 55.555138], + [37.709207, 55.555048], + [37.709117, 55.555048] ] ] } @@ -25848,11 +45656,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708884, 55.555589], - [37.708884, 55.555679], - [37.709043, 55.555679], - [37.709043, 55.555589], - [37.708884, 55.555589] + [37.709117, 55.555138], + [37.709117, 55.555228], + [37.709207, 55.555228], + [37.709207, 55.555138], + [37.709117, 55.555138] ] ] } @@ -25864,11 +45672,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708884, 55.555679], - [37.708884, 55.555769], - [37.709043, 55.555769], - [37.709043, 55.555679], - [37.708884, 55.555679] + [37.709117, 55.555228], + [37.709117, 55.555317], + [37.709207, 55.555317], + [37.709207, 55.555228], + [37.709117, 55.555228] ] ] } @@ -25880,11 +45688,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708884, 55.555769], - [37.708884, 55.555859], - [37.709043, 55.555859], - [37.709043, 55.555769], - [37.708884, 55.555769] + [37.709117, 55.555317], + [37.709117, 55.555407], + [37.709207, 55.555407], + [37.709207, 55.555317], + [37.709117, 55.555317] ] ] } @@ -25896,11 +45704,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708884, 55.555859], - [37.708884, 55.555949], - [37.709043, 55.555949], - [37.709043, 55.555859], - [37.708884, 55.555859] + [37.709117, 55.555407], + [37.709117, 55.555497], + [37.709207, 55.555497], + [37.709207, 55.555407], + [37.709117, 55.555407] ] ] } @@ -25912,11 +45720,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708884, 55.555949], - [37.708884, 55.556039], - [37.709043, 55.556039], - [37.709043, 55.555949], - [37.708884, 55.555949] + [37.709117, 55.555497], + [37.709117, 55.555587], + [37.709207, 55.555587], + [37.709207, 55.555497], + [37.709117, 55.555497] ] ] } @@ -25928,11 +45736,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708884, 55.556039], - [37.708884, 55.556128], - [37.709043, 55.556128], - [37.709043, 55.556039], - [37.708884, 55.556039] + [37.709117, 55.555587], + [37.709117, 55.555677], + [37.709207, 55.555677], + [37.709207, 55.555587], + [37.709117, 55.555587] ] ] } @@ -25944,11 +45752,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709043, 55.5546], - [37.709043, 55.55469], - [37.709201, 55.55469], - [37.709201, 55.5546], - [37.709043, 55.5546] + [37.709117, 55.555677], + [37.709117, 55.555767], + [37.709207, 55.555767], + [37.709207, 55.555677], + [37.709117, 55.555677] ] ] } @@ -25960,11 +45768,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709043, 55.55469], - [37.709043, 55.55478], - [37.709201, 55.55478], - [37.709201, 55.55469], - [37.709043, 55.55469] + [37.709117, 55.555767], + [37.709117, 55.555856], + [37.709207, 55.555856], + [37.709207, 55.555767], + [37.709117, 55.555767] ] ] } @@ -25976,11 +45784,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709043, 55.55478], - [37.709043, 55.554869], - [37.709201, 55.554869], - [37.709201, 55.55478], - [37.709043, 55.55478] + [37.709117, 55.555856], + [37.709117, 55.555946], + [37.709207, 55.555946], + [37.709207, 55.555856], + [37.709117, 55.555856] ] ] } @@ -25992,11 +45800,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709043, 55.554869], - [37.709043, 55.554959], - [37.709201, 55.554959], - [37.709201, 55.554869], - [37.709043, 55.554869] + [37.709207, 55.554778], + [37.709207, 55.554868], + [37.709297, 55.554868], + [37.709297, 55.554778], + [37.709207, 55.554778] ] ] } @@ -26008,11 +45816,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709043, 55.554959], - [37.709043, 55.555049], - [37.709201, 55.555049], - [37.709201, 55.554959], - [37.709043, 55.554959] + [37.709207, 55.554868], + [37.709207, 55.554958], + [37.709297, 55.554958], + [37.709297, 55.554868], + [37.709207, 55.554868] ] ] } @@ -26024,11 +45832,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709043, 55.555049], - [37.709043, 55.555139], - [37.709201, 55.555139], - [37.709201, 55.555049], - [37.709043, 55.555049] + [37.709207, 55.554958], + [37.709207, 55.555048], + [37.709297, 55.555048], + [37.709297, 55.554958], + [37.709207, 55.554958] ] ] } @@ -26040,11 +45848,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709043, 55.555139], - [37.709043, 55.555229], - [37.709201, 55.555229], - [37.709201, 55.555139], - [37.709043, 55.555139] + [37.709207, 55.555048], + [37.709207, 55.555138], + [37.709297, 55.555138], + [37.709297, 55.555048], + [37.709207, 55.555048] ] ] } @@ -26056,11 +45864,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709043, 55.555229], - [37.709043, 55.555319], - [37.709201, 55.555319], - [37.709201, 55.555229], - [37.709043, 55.555229] + [37.709207, 55.555138], + [37.709207, 55.555228], + [37.709297, 55.555228], + [37.709297, 55.555138], + [37.709207, 55.555138] ] ] } @@ -26072,11 +45880,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709043, 55.555319], - [37.709043, 55.555409], - [37.709201, 55.555409], - [37.709201, 55.555319], - [37.709043, 55.555319] + [37.709207, 55.555228], + [37.709207, 55.555317], + [37.709297, 55.555317], + [37.709297, 55.555228], + [37.709207, 55.555228] ] ] } @@ -26088,11 +45896,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709043, 55.555409], - [37.709043, 55.555499], - [37.709201, 55.555499], - [37.709201, 55.555409], - [37.709043, 55.555409] + [37.709207, 55.555317], + [37.709207, 55.555407], + [37.709297, 55.555407], + [37.709297, 55.555317], + [37.709207, 55.555317] ] ] } @@ -26104,11 +45912,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709043, 55.555499], - [37.709043, 55.555589], - [37.709201, 55.555589], - [37.709201, 55.555499], - [37.709043, 55.555499] + [37.709207, 55.555407], + [37.709207, 55.555497], + [37.709297, 55.555497], + [37.709297, 55.555407], + [37.709207, 55.555407] ] ] } @@ -26120,11 +45928,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709043, 55.555589], - [37.709043, 55.555679], - [37.709201, 55.555679], - [37.709201, 55.555589], - [37.709043, 55.555589] + [37.709207, 55.555497], + [37.709207, 55.555587], + [37.709297, 55.555587], + [37.709297, 55.555497], + [37.709207, 55.555497] ] ] } @@ -26136,11 +45944,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709043, 55.555679], - [37.709043, 55.555769], - [37.709201, 55.555769], - [37.709201, 55.555679], - [37.709043, 55.555679] + [37.709207, 55.555587], + [37.709207, 55.555677], + [37.709297, 55.555677], + [37.709297, 55.555587], + [37.709207, 55.555587] ] ] } @@ -26152,11 +45960,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709043, 55.555769], - [37.709043, 55.555859], - [37.709201, 55.555859], - [37.709201, 55.555769], - [37.709043, 55.555769] + [37.709207, 55.555677], + [37.709207, 55.555767], + [37.709297, 55.555767], + [37.709297, 55.555677], + [37.709207, 55.555677] ] ] } @@ -26168,11 +45976,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709043, 55.555859], - [37.709043, 55.555949], - [37.709201, 55.555949], - [37.709201, 55.555859], - [37.709043, 55.555859] + [37.709207, 55.555767], + [37.709207, 55.555856], + [37.709297, 55.555856], + [37.709297, 55.555767], + [37.709207, 55.555767] ] ] } @@ -26184,11 +45992,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709043, 55.555949], - [37.709043, 55.556039], - [37.709201, 55.556039], - [37.709201, 55.555949], - [37.709043, 55.555949] + [37.709207, 55.555856], + [37.709207, 55.555946], + [37.709297, 55.555946], + [37.709297, 55.555856], + [37.709207, 55.555856] ] ] } @@ -26200,11 +46008,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709201, 55.55478], - [37.709201, 55.554869], - [37.70936, 55.554869], - [37.70936, 55.55478], - [37.709201, 55.55478] + [37.709297, 55.554868], + [37.709297, 55.554958], + [37.709386, 55.554958], + [37.709386, 55.554868], + [37.709297, 55.554868] ] ] } @@ -26216,11 +46024,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709201, 55.554869], - [37.709201, 55.554959], - [37.70936, 55.554959], - [37.70936, 55.554869], - [37.709201, 55.554869] + [37.709297, 55.554958], + [37.709297, 55.555048], + [37.709386, 55.555048], + [37.709386, 55.554958], + [37.709297, 55.554958] ] ] } @@ -26232,11 +46040,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709201, 55.554959], - [37.709201, 55.555049], - [37.70936, 55.555049], - [37.70936, 55.554959], - [37.709201, 55.554959] + [37.709297, 55.555048], + [37.709297, 55.555138], + [37.709386, 55.555138], + [37.709386, 55.555048], + [37.709297, 55.555048] ] ] } @@ -26248,11 +46056,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709201, 55.555049], - [37.709201, 55.555139], - [37.70936, 55.555139], - [37.70936, 55.555049], - [37.709201, 55.555049] + [37.709297, 55.555138], + [37.709297, 55.555228], + [37.709386, 55.555228], + [37.709386, 55.555138], + [37.709297, 55.555138] ] ] } @@ -26264,11 +46072,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709201, 55.555139], - [37.709201, 55.555229], - [37.70936, 55.555229], - [37.70936, 55.555139], - [37.709201, 55.555139] + [37.709297, 55.555228], + [37.709297, 55.555317], + [37.709386, 55.555317], + [37.709386, 55.555228], + [37.709297, 55.555228] ] ] } @@ -26280,11 +46088,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709201, 55.555229], - [37.709201, 55.555319], - [37.70936, 55.555319], - [37.70936, 55.555229], - [37.709201, 55.555229] + [37.709297, 55.555317], + [37.709297, 55.555407], + [37.709386, 55.555407], + [37.709386, 55.555317], + [37.709297, 55.555317] ] ] } @@ -26296,11 +46104,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709201, 55.555319], - [37.709201, 55.555409], - [37.70936, 55.555409], - [37.70936, 55.555319], - [37.709201, 55.555319] + [37.709297, 55.555407], + [37.709297, 55.555497], + [37.709386, 55.555497], + [37.709386, 55.555407], + [37.709297, 55.555407] ] ] } @@ -26312,11 +46120,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709201, 55.555409], - [37.709201, 55.555499], - [37.70936, 55.555499], - [37.70936, 55.555409], - [37.709201, 55.555409] + [37.709297, 55.555497], + [37.709297, 55.555587], + [37.709386, 55.555587], + [37.709386, 55.555497], + [37.709297, 55.555497] ] ] } @@ -26328,11 +46136,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709201, 55.555499], - [37.709201, 55.555589], - [37.70936, 55.555589], - [37.70936, 55.555499], - [37.709201, 55.555499] + [37.709297, 55.555587], + [37.709297, 55.555677], + [37.709386, 55.555677], + [37.709386, 55.555587], + [37.709297, 55.555587] ] ] } @@ -26344,11 +46152,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709201, 55.555589], - [37.709201, 55.555679], - [37.70936, 55.555679], - [37.70936, 55.555589], - [37.709201, 55.555589] + [37.709297, 55.555677], + [37.709297, 55.555767], + [37.709386, 55.555767], + [37.709386, 55.555677], + [37.709297, 55.555677] ] ] } @@ -26360,11 +46168,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709201, 55.555679], - [37.709201, 55.555769], - [37.70936, 55.555769], - [37.70936, 55.555679], - [37.709201, 55.555679] + [37.709386, 55.555048], + [37.709386, 55.555138], + [37.709476, 55.555138], + [37.709476, 55.555048], + [37.709386, 55.555048] ] ] } @@ -26376,11 +46184,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709201, 55.555769], - [37.709201, 55.555859], - [37.70936, 55.555859], - [37.70936, 55.555769], - [37.709201, 55.555769] + [37.709386, 55.555138], + [37.709386, 55.555228], + [37.709476, 55.555228], + [37.709476, 55.555138], + [37.709386, 55.555138] ] ] } @@ -26392,11 +46200,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709201, 55.555859], - [37.709201, 55.555949], - [37.70936, 55.555949], - [37.70936, 55.555859], - [37.709201, 55.555859] + [37.709386, 55.555228], + [37.709386, 55.555317], + [37.709476, 55.555317], + [37.709476, 55.555228], + [37.709386, 55.555228] ] ] } @@ -26408,11 +46216,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70936, 55.554959], - [37.70936, 55.555049], - [37.709519, 55.555049], - [37.709519, 55.554959], - [37.70936, 55.554959] + [37.709386, 55.555317], + [37.709386, 55.555407], + [37.709476, 55.555407], + [37.709476, 55.555317], + [37.709386, 55.555317] ] ] } @@ -26424,11 +46232,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70936, 55.555049], - [37.70936, 55.555139], - [37.709519, 55.555139], - [37.709519, 55.555049], - [37.70936, 55.555049] + [37.709386, 55.555407], + [37.709386, 55.555497], + [37.709476, 55.555497], + [37.709476, 55.555407], + [37.709386, 55.555407] ] ] } @@ -26440,11 +46248,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70936, 55.555139], - [37.70936, 55.555229], - [37.709519, 55.555229], - [37.709519, 55.555139], - [37.70936, 55.555139] + [37.709386, 55.555497], + [37.709386, 55.555587], + [37.709476, 55.555587], + [37.709476, 55.555497], + [37.709386, 55.555497] ] ] } @@ -26456,11 +46264,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70936, 55.555229], - [37.70936, 55.555319], - [37.709519, 55.555319], - [37.709519, 55.555229], - [37.70936, 55.555229] + [37.709386, 55.555587], + [37.709386, 55.555677], + [37.709476, 55.555677], + [37.709476, 55.555587], + [37.709386, 55.555587] ] ] } @@ -26472,11 +46280,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70936, 55.555319], - [37.70936, 55.555409], - [37.709519, 55.555409], - [37.709519, 55.555319], - [37.70936, 55.555319] + [37.709476, 55.555138], + [37.709476, 55.555228], + [37.709566, 55.555228], + [37.709566, 55.555138], + [37.709476, 55.555138] ] ] } @@ -26488,11 +46296,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70936, 55.555409], - [37.70936, 55.555499], - [37.709519, 55.555499], - [37.709519, 55.555409], - [37.70936, 55.555409] + [37.709476, 55.555228], + [37.709476, 55.555317], + [37.709566, 55.555317], + [37.709566, 55.555228], + [37.709476, 55.555228] ] ] } @@ -26504,11 +46312,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70936, 55.555499], - [37.70936, 55.555589], - [37.709519, 55.555589], - [37.709519, 55.555499], - [37.70936, 55.555499] + [37.709476, 55.555317], + [37.709476, 55.555407], + [37.709566, 55.555407], + [37.709566, 55.555317], + [37.709476, 55.555317] ] ] } @@ -26520,11 +46328,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70936, 55.555589], - [37.70936, 55.555679], - [37.709519, 55.555679], - [37.709519, 55.555589], - [37.70936, 55.555589] + [37.709476, 55.555407], + [37.709476, 55.555497], + [37.709566, 55.555497], + [37.709566, 55.555407], + [37.709476, 55.555407] ] ] } @@ -26532,9 +46340,7 @@ { "type": "Feature", "bbox": [ - 37.69975662231445, - 55.55151096909941, - 37.70958423614502, + 37.69975662231445, 55.55151096909941, 37.70958423614502, 55.55615949302079 ], "properties": { diff --git a/packages/turf-square-grid/test/out/london-20-miles.geojson b/packages/turf-square-grid/test/out/london-20-miles.geojson index 344d0dcfae..7ddd3984c5 100644 --- a/packages/turf-square-grid/test/out/london-20-miles.geojson +++ b/packages/turf-square-grid/test/out/london-20-miles.geojson @@ -8,11 +8,11 @@ "type": "Polygon", "coordinates": [ [ - [-0.552977, 51.358112], - [-0.552977, 51.647575], - [-0.090637, 51.647575], - [-0.090637, 51.358112], - [-0.552977, 51.358112] + [-0.524325, 51.358281], + [-0.524325, 51.647406], + [-0.2352, 51.647406], + [-0.2352, 51.358281], + [-0.524325, 51.358281] ] ] } @@ -24,11 +24,27 @@ "type": "Polygon", "coordinates": [ [ - [-0.090637, 51.358112], - [-0.090637, 51.647575], - [0.371702, 51.647575], - [0.371702, 51.358112], - [-0.090637, 51.358112] + [-0.2352, 51.358281], + [-0.2352, 51.647406], + [0.053925, 51.647406], + [0.053925, 51.358281], + [-0.2352, 51.358281] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [0.053925, 51.358281], + [0.053925, 51.647406], + [0.343051, 51.647406], + [0.343051, 51.358281], + [0.053925, 51.358281] ] ] } @@ -36,10 +52,7 @@ { "type": "Feature", "bbox": [ - -0.6207275390625, - 51.23784668914442, - 0.439453125, - 51.767839887322154 + -0.6207275390625, 51.23784668914442, 0.439453125, 51.767839887322154 ], "properties": { "stroke": "#F00", diff --git a/packages/turf-square-grid/test/out/piedemont-mask.geojson b/packages/turf-square-grid/test/out/piedemont-mask.geojson index 836001a47b..69eb27ea88 100644 --- a/packages/turf-square-grid/test/out/piedemont-mask.geojson +++ b/packages/turf-square-grid/test/out/piedemont-mask.geojson @@ -8,11 +8,11 @@ "type": "Polygon", "coordinates": [ [ - [6.396892, 45.009611], - [6.396892, 45.190526], - [6.648645, 45.190526], - [6.648645, 45.009611], - [6.396892, 45.009611] + [6.461783, 45.009928], + [6.461783, 45.190631], + [6.642486, 45.190631], + [6.642486, 45.009928], + [6.461783, 45.009928] ] ] } @@ -24,11 +24,11 @@ "type": "Polygon", "coordinates": [ [ - [6.648645, 44.285953], - [6.648645, 44.466868], - [6.900398, 44.466868], - [6.900398, 44.285953], - [6.648645, 44.285953] + [6.642486, 44.829225], + [6.642486, 45.009928], + [6.82319, 45.009928], + [6.82319, 44.829225], + [6.642486, 44.829225] ] ] } @@ -40,11 +40,11 @@ "type": "Polygon", "coordinates": [ [ - [6.648645, 44.466868], - [6.648645, 44.647782], - [6.900398, 44.647782], - [6.900398, 44.466868], - [6.648645, 44.466868] + [6.642486, 45.009928], + [6.642486, 45.190631], + [6.82319, 45.190631], + [6.82319, 45.009928], + [6.642486, 45.009928] ] ] } @@ -56,11 +56,11 @@ "type": "Polygon", "coordinates": [ [ - [6.648645, 44.828697], - [6.648645, 45.009611], - [6.900398, 45.009611], - [6.900398, 44.828697], - [6.648645, 44.828697] + [6.82319, 44.106411], + [6.82319, 44.287115], + [7.003893, 44.287115], + [7.003893, 44.106411], + [6.82319, 44.106411] ] ] } @@ -72,11 +72,11 @@ "type": "Polygon", "coordinates": [ [ - [6.648645, 45.009611], - [6.648645, 45.190526], - [6.900398, 45.190526], - [6.900398, 45.009611], - [6.648645, 45.009611] + [6.82319, 44.287115], + [6.82319, 44.467818], + [7.003893, 44.467818], + [7.003893, 44.287115], + [6.82319, 44.287115] ] ] } @@ -88,11 +88,11 @@ "type": "Polygon", "coordinates": [ [ - [6.900398, 44.105039], - [6.900398, 44.285953], - [7.152151, 44.285953], - [7.152151, 44.105039], - [6.900398, 44.105039] + [6.82319, 44.467818], + [6.82319, 44.648521], + [7.003893, 44.648521], + [7.003893, 44.467818], + [6.82319, 44.467818] ] ] } @@ -104,11 +104,11 @@ "type": "Polygon", "coordinates": [ [ - [6.900398, 44.285953], - [6.900398, 44.466868], - [7.152151, 44.466868], - [7.152151, 44.285953], - [6.900398, 44.285953] + [6.82319, 44.648521], + [6.82319, 44.829225], + [7.003893, 44.829225], + [7.003893, 44.648521], + [6.82319, 44.648521] ] ] } @@ -120,11 +120,11 @@ "type": "Polygon", "coordinates": [ [ - [6.900398, 44.466868], - [6.900398, 44.647782], - [7.152151, 44.647782], - [7.152151, 44.466868], - [6.900398, 44.466868] + [6.82319, 44.829225], + [6.82319, 45.009928], + [7.003893, 45.009928], + [7.003893, 44.829225], + [6.82319, 44.829225] ] ] } @@ -136,11 +136,11 @@ "type": "Polygon", "coordinates": [ [ - [6.900398, 44.647782], - [6.900398, 44.828697], - [7.152151, 44.828697], - [7.152151, 44.647782], - [6.900398, 44.647782] + [6.82319, 45.009928], + [6.82319, 45.190631], + [7.003893, 45.190631], + [7.003893, 45.009928], + [6.82319, 45.009928] ] ] } @@ -152,11 +152,11 @@ "type": "Polygon", "coordinates": [ [ - [6.900398, 44.828697], - [6.900398, 45.009611], - [7.152151, 45.009611], - [7.152151, 44.828697], - [6.900398, 44.828697] + [6.82319, 45.190631], + [6.82319, 45.371335], + [7.003893, 45.371335], + [7.003893, 45.190631], + [6.82319, 45.190631] ] ] } @@ -168,11 +168,11 @@ "type": "Polygon", "coordinates": [ [ - [6.900398, 45.009611], - [6.900398, 45.190526], - [7.152151, 45.190526], - [7.152151, 45.009611], - [6.900398, 45.009611] + [7.003893, 44.106411], + [7.003893, 44.287115], + [7.184596, 44.287115], + [7.184596, 44.106411], + [7.003893, 44.106411] ] ] } @@ -184,11 +184,11 @@ "type": "Polygon", "coordinates": [ [ - [6.900398, 45.190526], - [6.900398, 45.37144], - [7.152151, 45.37144], - [7.152151, 45.190526], - [6.900398, 45.190526] + [7.003893, 44.287115], + [7.003893, 44.467818], + [7.184596, 44.467818], + [7.184596, 44.287115], + [7.003893, 44.287115] ] ] } @@ -200,11 +200,11 @@ "type": "Polygon", "coordinates": [ [ - [6.900398, 45.37144], - [6.900398, 45.552355], - [7.152151, 45.552355], - [7.152151, 45.37144], - [6.900398, 45.37144] + [7.003893, 44.467818], + [7.003893, 44.648521], + [7.184596, 44.648521], + [7.184596, 44.467818], + [7.003893, 44.467818] ] ] } @@ -216,11 +216,11 @@ "type": "Polygon", "coordinates": [ [ - [7.152151, 44.105039], - [7.152151, 44.285953], - [7.403904, 44.285953], - [7.403904, 44.105039], - [7.152151, 44.105039] + [7.003893, 44.648521], + [7.003893, 44.829225], + [7.184596, 44.829225], + [7.184596, 44.648521], + [7.003893, 44.648521] ] ] } @@ -232,11 +232,11 @@ "type": "Polygon", "coordinates": [ [ - [7.152151, 44.285953], - [7.152151, 44.466868], - [7.403904, 44.466868], - [7.403904, 44.285953], - [7.152151, 44.285953] + [7.003893, 44.829225], + [7.003893, 45.009928], + [7.184596, 45.009928], + [7.184596, 44.829225], + [7.003893, 44.829225] ] ] } @@ -248,11 +248,11 @@ "type": "Polygon", "coordinates": [ [ - [7.152151, 44.466868], - [7.152151, 44.647782], - [7.403904, 44.647782], - [7.403904, 44.466868], - [7.152151, 44.466868] + [7.003893, 45.009928], + [7.003893, 45.190631], + [7.184596, 45.190631], + [7.184596, 45.009928], + [7.003893, 45.009928] ] ] } @@ -264,11 +264,11 @@ "type": "Polygon", "coordinates": [ [ - [7.152151, 44.647782], - [7.152151, 44.828697], - [7.403904, 44.828697], - [7.403904, 44.647782], - [7.152151, 44.647782] + [7.003893, 45.190631], + [7.003893, 45.371335], + [7.184596, 45.371335], + [7.184596, 45.190631], + [7.003893, 45.190631] ] ] } @@ -280,11 +280,11 @@ "type": "Polygon", "coordinates": [ [ - [7.152151, 44.828697], - [7.152151, 45.009611], - [7.403904, 45.009611], - [7.403904, 44.828697], - [7.152151, 44.828697] + [7.003893, 45.371335], + [7.003893, 45.552038], + [7.184596, 45.552038], + [7.184596, 45.371335], + [7.003893, 45.371335] ] ] } @@ -296,11 +296,11 @@ "type": "Polygon", "coordinates": [ [ - [7.152151, 45.009611], - [7.152151, 45.190526], - [7.403904, 45.190526], - [7.403904, 45.009611], - [7.152151, 45.009611] + [7.184596, 44.106411], + [7.184596, 44.287115], + [7.3653, 44.287115], + [7.3653, 44.106411], + [7.184596, 44.106411] ] ] } @@ -312,11 +312,11 @@ "type": "Polygon", "coordinates": [ [ - [7.152151, 45.190526], - [7.152151, 45.37144], - [7.403904, 45.37144], - [7.403904, 45.190526], - [7.152151, 45.190526] + [7.184596, 44.287115], + [7.184596, 44.467818], + [7.3653, 44.467818], + [7.3653, 44.287115], + [7.184596, 44.287115] ] ] } @@ -328,11 +328,11 @@ "type": "Polygon", "coordinates": [ [ - [7.152151, 45.37144], - [7.152151, 45.552355], - [7.403904, 45.552355], - [7.403904, 45.37144], - [7.152151, 45.37144] + [7.184596, 44.467818], + [7.184596, 44.648521], + [7.3653, 44.648521], + [7.3653, 44.467818], + [7.184596, 44.467818] ] ] } @@ -344,11 +344,11 @@ "type": "Polygon", "coordinates": [ [ - [7.403904, 44.105039], - [7.403904, 44.285953], - [7.655657, 44.285953], - [7.655657, 44.105039], - [7.403904, 44.105039] + [7.184596, 44.648521], + [7.184596, 44.829225], + [7.3653, 44.829225], + [7.3653, 44.648521], + [7.184596, 44.648521] ] ] } @@ -360,11 +360,11 @@ "type": "Polygon", "coordinates": [ [ - [7.403904, 44.285953], - [7.403904, 44.466868], - [7.655657, 44.466868], - [7.655657, 44.285953], - [7.403904, 44.285953] + [7.184596, 44.829225], + [7.184596, 45.009928], + [7.3653, 45.009928], + [7.3653, 44.829225], + [7.184596, 44.829225] ] ] } @@ -376,11 +376,11 @@ "type": "Polygon", "coordinates": [ [ - [7.403904, 44.466868], - [7.403904, 44.647782], - [7.655657, 44.647782], - [7.655657, 44.466868], - [7.403904, 44.466868] + [7.184596, 45.009928], + [7.184596, 45.190631], + [7.3653, 45.190631], + [7.3653, 45.009928], + [7.184596, 45.009928] ] ] } @@ -392,11 +392,11 @@ "type": "Polygon", "coordinates": [ [ - [7.403904, 44.647782], - [7.403904, 44.828697], - [7.655657, 44.828697], - [7.655657, 44.647782], - [7.403904, 44.647782] + [7.184596, 45.190631], + [7.184596, 45.371335], + [7.3653, 45.371335], + [7.3653, 45.190631], + [7.184596, 45.190631] ] ] } @@ -408,11 +408,11 @@ "type": "Polygon", "coordinates": [ [ - [7.403904, 44.828697], - [7.403904, 45.009611], - [7.655657, 45.009611], - [7.655657, 44.828697], - [7.403904, 44.828697] + [7.184596, 45.371335], + [7.184596, 45.552038], + [7.3653, 45.552038], + [7.3653, 45.371335], + [7.184596, 45.371335] ] ] } @@ -424,11 +424,11 @@ "type": "Polygon", "coordinates": [ [ - [7.403904, 45.009611], - [7.403904, 45.190526], - [7.655657, 45.190526], - [7.655657, 45.009611], - [7.403904, 45.009611] + [7.3653, 44.106411], + [7.3653, 44.287115], + [7.546003, 44.287115], + [7.546003, 44.106411], + [7.3653, 44.106411] ] ] } @@ -440,11 +440,11 @@ "type": "Polygon", "coordinates": [ [ - [7.403904, 45.190526], - [7.403904, 45.37144], - [7.655657, 45.37144], - [7.655657, 45.190526], - [7.403904, 45.190526] + [7.3653, 44.287115], + [7.3653, 44.467818], + [7.546003, 44.467818], + [7.546003, 44.287115], + [7.3653, 44.287115] ] ] } @@ -456,11 +456,11 @@ "type": "Polygon", "coordinates": [ [ - [7.403904, 45.37144], - [7.403904, 45.552355], - [7.655657, 45.552355], - [7.655657, 45.37144], - [7.403904, 45.37144] + [7.3653, 44.467818], + [7.3653, 44.648521], + [7.546003, 44.648521], + [7.546003, 44.467818], + [7.3653, 44.467818] ] ] } @@ -472,11 +472,11 @@ "type": "Polygon", "coordinates": [ [ - [7.403904, 45.552355], - [7.403904, 45.733269], - [7.655657, 45.733269], - [7.655657, 45.552355], - [7.403904, 45.552355] + [7.3653, 44.648521], + [7.3653, 44.829225], + [7.546003, 44.829225], + [7.546003, 44.648521], + [7.3653, 44.648521] ] ] } @@ -488,11 +488,11 @@ "type": "Polygon", "coordinates": [ [ - [7.655657, 44.105039], - [7.655657, 44.285953], - [7.90741, 44.285953], - [7.90741, 44.105039], - [7.655657, 44.105039] + [7.3653, 44.829225], + [7.3653, 45.009928], + [7.546003, 45.009928], + [7.546003, 44.829225], + [7.3653, 44.829225] ] ] } @@ -504,11 +504,11 @@ "type": "Polygon", "coordinates": [ [ - [7.655657, 44.285953], - [7.655657, 44.466868], - [7.90741, 44.466868], - [7.90741, 44.285953], - [7.655657, 44.285953] + [7.3653, 45.009928], + [7.3653, 45.190631], + [7.546003, 45.190631], + [7.546003, 45.009928], + [7.3653, 45.009928] ] ] } @@ -520,11 +520,11 @@ "type": "Polygon", "coordinates": [ [ - [7.655657, 44.466868], - [7.655657, 44.647782], - [7.90741, 44.647782], - [7.90741, 44.466868], - [7.655657, 44.466868] + [7.3653, 45.190631], + [7.3653, 45.371335], + [7.546003, 45.371335], + [7.546003, 45.190631], + [7.3653, 45.190631] ] ] } @@ -536,11 +536,11 @@ "type": "Polygon", "coordinates": [ [ - [7.655657, 44.647782], - [7.655657, 44.828697], - [7.90741, 44.828697], - [7.90741, 44.647782], - [7.655657, 44.647782] + [7.3653, 45.371335], + [7.3653, 45.552038], + [7.546003, 45.552038], + [7.546003, 45.371335], + [7.3653, 45.371335] ] ] } @@ -552,11 +552,11 @@ "type": "Polygon", "coordinates": [ [ - [7.655657, 44.828697], - [7.655657, 45.009611], - [7.90741, 45.009611], - [7.90741, 44.828697], - [7.655657, 44.828697] + [7.3653, 45.552038], + [7.3653, 45.732741], + [7.546003, 45.732741], + [7.546003, 45.552038], + [7.3653, 45.552038] ] ] } @@ -568,11 +568,11 @@ "type": "Polygon", "coordinates": [ [ - [7.655657, 45.009611], - [7.655657, 45.190526], - [7.90741, 45.190526], - [7.90741, 45.009611], - [7.655657, 45.009611] + [7.546003, 44.106411], + [7.546003, 44.287115], + [7.726706, 44.287115], + [7.726706, 44.106411], + [7.546003, 44.106411] ] ] } @@ -584,11 +584,11 @@ "type": "Polygon", "coordinates": [ [ - [7.655657, 45.190526], - [7.655657, 45.37144], - [7.90741, 45.37144], - [7.90741, 45.190526], - [7.655657, 45.190526] + [7.546003, 44.287115], + [7.546003, 44.467818], + [7.726706, 44.467818], + [7.726706, 44.287115], + [7.546003, 44.287115] ] ] } @@ -600,11 +600,11 @@ "type": "Polygon", "coordinates": [ [ - [7.655657, 45.37144], - [7.655657, 45.552355], - [7.90741, 45.552355], - [7.90741, 45.37144], - [7.655657, 45.37144] + [7.546003, 44.467818], + [7.546003, 44.648521], + [7.726706, 44.648521], + [7.726706, 44.467818], + [7.546003, 44.467818] ] ] } @@ -616,11 +616,11 @@ "type": "Polygon", "coordinates": [ [ - [7.655657, 45.552355], - [7.655657, 45.733269], - [7.90741, 45.733269], - [7.90741, 45.552355], - [7.655657, 45.552355] + [7.546003, 44.648521], + [7.546003, 44.829225], + [7.726706, 44.829225], + [7.726706, 44.648521], + [7.546003, 44.648521] ] ] } @@ -632,11 +632,11 @@ "type": "Polygon", "coordinates": [ [ - [7.655657, 45.733269], - [7.655657, 45.914184], - [7.90741, 45.914184], - [7.90741, 45.733269], - [7.655657, 45.733269] + [7.546003, 44.829225], + [7.546003, 45.009928], + [7.726706, 45.009928], + [7.726706, 44.829225], + [7.546003, 44.829225] ] ] } @@ -648,11 +648,11 @@ "type": "Polygon", "coordinates": [ [ - [7.655657, 45.914184], - [7.655657, 46.095098], - [7.90741, 46.095098], - [7.90741, 45.914184], - [7.655657, 45.914184] + [7.546003, 45.009928], + [7.546003, 45.190631], + [7.726706, 45.190631], + [7.726706, 45.009928], + [7.546003, 45.009928] ] ] } @@ -664,11 +664,11 @@ "type": "Polygon", "coordinates": [ [ - [7.90741, 44.105039], - [7.90741, 44.285953], - [8.159163, 44.285953], - [8.159163, 44.105039], - [7.90741, 44.105039] + [7.546003, 45.190631], + [7.546003, 45.371335], + [7.726706, 45.371335], + [7.726706, 45.190631], + [7.546003, 45.190631] ] ] } @@ -680,11 +680,11 @@ "type": "Polygon", "coordinates": [ [ - [7.90741, 44.285953], - [7.90741, 44.466868], - [8.159163, 44.466868], - [8.159163, 44.285953], - [7.90741, 44.285953] + [7.546003, 45.371335], + [7.546003, 45.552038], + [7.726706, 45.552038], + [7.726706, 45.371335], + [7.546003, 45.371335] ] ] } @@ -696,11 +696,11 @@ "type": "Polygon", "coordinates": [ [ - [7.90741, 44.466868], - [7.90741, 44.647782], - [8.159163, 44.647782], - [8.159163, 44.466868], - [7.90741, 44.466868] + [7.546003, 45.552038], + [7.546003, 45.732741], + [7.726706, 45.732741], + [7.726706, 45.552038], + [7.546003, 45.552038] ] ] } @@ -712,11 +712,11 @@ "type": "Polygon", "coordinates": [ [ - [7.90741, 44.647782], - [7.90741, 44.828697], - [8.159163, 44.828697], - [8.159163, 44.647782], - [7.90741, 44.647782] + [7.726706, 44.106411], + [7.726706, 44.287115], + [7.90741, 44.287115], + [7.90741, 44.106411], + [7.726706, 44.106411] ] ] } @@ -728,11 +728,11 @@ "type": "Polygon", "coordinates": [ [ - [7.90741, 44.828697], - [7.90741, 45.009611], - [8.159163, 45.009611], - [8.159163, 44.828697], - [7.90741, 44.828697] + [7.726706, 44.287115], + [7.726706, 44.467818], + [7.90741, 44.467818], + [7.90741, 44.287115], + [7.726706, 44.287115] ] ] } @@ -744,11 +744,11 @@ "type": "Polygon", "coordinates": [ [ - [7.90741, 45.009611], - [7.90741, 45.190526], - [8.159163, 45.190526], - [8.159163, 45.009611], - [7.90741, 45.009611] + [7.726706, 44.467818], + [7.726706, 44.648521], + [7.90741, 44.648521], + [7.90741, 44.467818], + [7.726706, 44.467818] ] ] } @@ -760,11 +760,11 @@ "type": "Polygon", "coordinates": [ [ - [7.90741, 45.190526], - [7.90741, 45.37144], - [8.159163, 45.37144], - [8.159163, 45.190526], - [7.90741, 45.190526] + [7.726706, 44.648521], + [7.726706, 44.829225], + [7.90741, 44.829225], + [7.90741, 44.648521], + [7.726706, 44.648521] ] ] } @@ -776,11 +776,11 @@ "type": "Polygon", "coordinates": [ [ - [7.90741, 45.37144], - [7.90741, 45.552355], - [8.159163, 45.552355], - [8.159163, 45.37144], - [7.90741, 45.37144] + [7.726706, 44.829225], + [7.726706, 45.009928], + [7.90741, 45.009928], + [7.90741, 44.829225], + [7.726706, 44.829225] ] ] } @@ -792,11 +792,11 @@ "type": "Polygon", "coordinates": [ [ - [7.90741, 45.552355], - [7.90741, 45.733269], - [8.159163, 45.733269], - [8.159163, 45.552355], - [7.90741, 45.552355] + [7.726706, 45.009928], + [7.726706, 45.190631], + [7.90741, 45.190631], + [7.90741, 45.009928], + [7.726706, 45.009928] ] ] } @@ -808,11 +808,11 @@ "type": "Polygon", "coordinates": [ [ - [7.90741, 45.733269], - [7.90741, 45.914184], - [8.159163, 45.914184], - [8.159163, 45.733269], - [7.90741, 45.733269] + [7.726706, 45.190631], + [7.726706, 45.371335], + [7.90741, 45.371335], + [7.90741, 45.190631], + [7.726706, 45.190631] ] ] } @@ -824,11 +824,11 @@ "type": "Polygon", "coordinates": [ [ - [7.90741, 45.914184], - [7.90741, 46.095098], - [8.159163, 46.095098], - [8.159163, 45.914184], - [7.90741, 45.914184] + [7.726706, 45.371335], + [7.726706, 45.552038], + [7.90741, 45.552038], + [7.90741, 45.371335], + [7.726706, 45.371335] ] ] } @@ -840,11 +840,11 @@ "type": "Polygon", "coordinates": [ [ - [7.90741, 46.095098], - [7.90741, 46.276013], - [8.159163, 46.276013], - [8.159163, 46.095098], - [7.90741, 46.095098] + [7.726706, 45.552038], + [7.726706, 45.732741], + [7.90741, 45.732741], + [7.90741, 45.552038], + [7.726706, 45.552038] ] ] } @@ -856,11 +856,11 @@ "type": "Polygon", "coordinates": [ [ - [7.90741, 46.276013], - [7.90741, 46.456927], - [8.159163, 46.456927], - [8.159163, 46.276013], - [7.90741, 46.276013] + [7.726706, 45.732741], + [7.726706, 45.913445], + [7.90741, 45.913445], + [7.90741, 45.732741], + [7.726706, 45.732741] ] ] } @@ -872,11 +872,11 @@ "type": "Polygon", "coordinates": [ [ - [8.159163, 44.285953], - [8.159163, 44.466868], - [8.410916, 44.466868], - [8.410916, 44.285953], - [8.159163, 44.285953] + [7.726706, 45.913445], + [7.726706, 46.094148], + [7.90741, 46.094148], + [7.90741, 45.913445], + [7.726706, 45.913445] ] ] } @@ -888,11 +888,11 @@ "type": "Polygon", "coordinates": [ [ - [8.159163, 44.466868], - [8.159163, 44.647782], - [8.410916, 44.647782], - [8.410916, 44.466868], - [8.159163, 44.466868] + [7.90741, 44.106411], + [7.90741, 44.287115], + [8.088113, 44.287115], + [8.088113, 44.106411], + [7.90741, 44.106411] ] ] } @@ -904,11 +904,11 @@ "type": "Polygon", "coordinates": [ [ - [8.159163, 44.647782], - [8.159163, 44.828697], - [8.410916, 44.828697], - [8.410916, 44.647782], - [8.159163, 44.647782] + [7.90741, 44.287115], + [7.90741, 44.467818], + [8.088113, 44.467818], + [8.088113, 44.287115], + [7.90741, 44.287115] ] ] } @@ -920,11 +920,11 @@ "type": "Polygon", "coordinates": [ [ - [8.159163, 44.828697], - [8.159163, 45.009611], - [8.410916, 45.009611], - [8.410916, 44.828697], - [8.159163, 44.828697] + [7.90741, 44.467818], + [7.90741, 44.648521], + [8.088113, 44.648521], + [8.088113, 44.467818], + [7.90741, 44.467818] ] ] } @@ -936,11 +936,11 @@ "type": "Polygon", "coordinates": [ [ - [8.159163, 45.009611], - [8.159163, 45.190526], - [8.410916, 45.190526], - [8.410916, 45.009611], - [8.159163, 45.009611] + [7.90741, 44.648521], + [7.90741, 44.829225], + [8.088113, 44.829225], + [8.088113, 44.648521], + [7.90741, 44.648521] ] ] } @@ -952,11 +952,11 @@ "type": "Polygon", "coordinates": [ [ - [8.159163, 45.190526], - [8.159163, 45.37144], - [8.410916, 45.37144], - [8.410916, 45.190526], - [8.159163, 45.190526] + [7.90741, 44.829225], + [7.90741, 45.009928], + [8.088113, 45.009928], + [8.088113, 44.829225], + [7.90741, 44.829225] ] ] } @@ -968,11 +968,11 @@ "type": "Polygon", "coordinates": [ [ - [8.159163, 45.37144], - [8.159163, 45.552355], - [8.410916, 45.552355], - [8.410916, 45.37144], - [8.159163, 45.37144] + [7.90741, 45.009928], + [7.90741, 45.190631], + [8.088113, 45.190631], + [8.088113, 45.009928], + [7.90741, 45.009928] ] ] } @@ -984,11 +984,11 @@ "type": "Polygon", "coordinates": [ [ - [8.159163, 45.552355], - [8.159163, 45.733269], - [8.410916, 45.733269], - [8.410916, 45.552355], - [8.159163, 45.552355] + [7.90741, 45.190631], + [7.90741, 45.371335], + [8.088113, 45.371335], + [8.088113, 45.190631], + [7.90741, 45.190631] ] ] } @@ -1000,11 +1000,11 @@ "type": "Polygon", "coordinates": [ [ - [8.159163, 45.733269], - [8.159163, 45.914184], - [8.410916, 45.914184], - [8.410916, 45.733269], - [8.159163, 45.733269] + [7.90741, 45.371335], + [7.90741, 45.552038], + [8.088113, 45.552038], + [8.088113, 45.371335], + [7.90741, 45.371335] ] ] } @@ -1016,11 +1016,11 @@ "type": "Polygon", "coordinates": [ [ - [8.159163, 45.914184], - [8.159163, 46.095098], - [8.410916, 46.095098], - [8.410916, 45.914184], - [8.159163, 45.914184] + [7.90741, 45.552038], + [7.90741, 45.732741], + [8.088113, 45.732741], + [8.088113, 45.552038], + [7.90741, 45.552038] ] ] } @@ -1032,11 +1032,11 @@ "type": "Polygon", "coordinates": [ [ - [8.159163, 46.095098], - [8.159163, 46.276013], - [8.410916, 46.276013], - [8.410916, 46.095098], - [8.159163, 46.095098] + [7.90741, 45.732741], + [7.90741, 45.913445], + [8.088113, 45.913445], + [8.088113, 45.732741], + [7.90741, 45.732741] ] ] } @@ -1048,11 +1048,11 @@ "type": "Polygon", "coordinates": [ [ - [8.159163, 46.276013], - [8.159163, 46.456927], - [8.410916, 46.456927], - [8.410916, 46.276013], - [8.159163, 46.276013] + [7.90741, 45.913445], + [7.90741, 46.094148], + [8.088113, 46.094148], + [8.088113, 45.913445], + [7.90741, 45.913445] ] ] } @@ -1064,11 +1064,11 @@ "type": "Polygon", "coordinates": [ [ - [8.410916, 44.466868], - [8.410916, 44.647782], - [8.662669, 44.647782], - [8.662669, 44.466868], - [8.410916, 44.466868] + [7.90741, 46.094148], + [7.90741, 46.274851], + [8.088113, 46.274851], + [8.088113, 46.094148], + [7.90741, 46.094148] ] ] } @@ -1080,11 +1080,11 @@ "type": "Polygon", "coordinates": [ [ - [8.410916, 44.647782], - [8.410916, 44.828697], - [8.662669, 44.828697], - [8.662669, 44.647782], - [8.410916, 44.647782] + [8.088113, 44.287115], + [8.088113, 44.467818], + [8.268816, 44.467818], + [8.268816, 44.287115], + [8.088113, 44.287115] ] ] } @@ -1096,11 +1096,11 @@ "type": "Polygon", "coordinates": [ [ - [8.410916, 44.828697], - [8.410916, 45.009611], - [8.662669, 45.009611], - [8.662669, 44.828697], - [8.410916, 44.828697] + [8.088113, 44.467818], + [8.088113, 44.648521], + [8.268816, 44.648521], + [8.268816, 44.467818], + [8.088113, 44.467818] ] ] } @@ -1112,11 +1112,11 @@ "type": "Polygon", "coordinates": [ [ - [8.410916, 45.009611], - [8.410916, 45.190526], - [8.662669, 45.190526], - [8.662669, 45.009611], - [8.410916, 45.009611] + [8.088113, 44.648521], + [8.088113, 44.829225], + [8.268816, 44.829225], + [8.268816, 44.648521], + [8.088113, 44.648521] ] ] } @@ -1128,11 +1128,11 @@ "type": "Polygon", "coordinates": [ [ - [8.410916, 45.190526], - [8.410916, 45.37144], - [8.662669, 45.37144], - [8.662669, 45.190526], - [8.410916, 45.190526] + [8.088113, 44.829225], + [8.088113, 45.009928], + [8.268816, 45.009928], + [8.268816, 44.829225], + [8.088113, 44.829225] ] ] } @@ -1144,11 +1144,11 @@ "type": "Polygon", "coordinates": [ [ - [8.410916, 45.37144], - [8.410916, 45.552355], - [8.662669, 45.552355], - [8.662669, 45.37144], - [8.410916, 45.37144] + [8.088113, 45.009928], + [8.088113, 45.190631], + [8.268816, 45.190631], + [8.268816, 45.009928], + [8.088113, 45.009928] ] ] } @@ -1160,11 +1160,11 @@ "type": "Polygon", "coordinates": [ [ - [8.410916, 45.552355], - [8.410916, 45.733269], - [8.662669, 45.733269], - [8.662669, 45.552355], - [8.410916, 45.552355] + [8.088113, 45.190631], + [8.088113, 45.371335], + [8.268816, 45.371335], + [8.268816, 45.190631], + [8.088113, 45.190631] ] ] } @@ -1176,11 +1176,11 @@ "type": "Polygon", "coordinates": [ [ - [8.410916, 45.733269], - [8.410916, 45.914184], - [8.662669, 45.914184], - [8.662669, 45.733269], - [8.410916, 45.733269] + [8.088113, 45.371335], + [8.088113, 45.552038], + [8.268816, 45.552038], + [8.268816, 45.371335], + [8.088113, 45.371335] ] ] } @@ -1192,11 +1192,11 @@ "type": "Polygon", "coordinates": [ [ - [8.410916, 45.914184], - [8.410916, 46.095098], - [8.662669, 46.095098], - [8.662669, 45.914184], - [8.410916, 45.914184] + [8.088113, 45.552038], + [8.088113, 45.732741], + [8.268816, 45.732741], + [8.268816, 45.552038], + [8.088113, 45.552038] ] ] } @@ -1208,11 +1208,11 @@ "type": "Polygon", "coordinates": [ [ - [8.410916, 46.095098], - [8.410916, 46.276013], - [8.662669, 46.276013], - [8.662669, 46.095098], - [8.410916, 46.095098] + [8.088113, 45.732741], + [8.088113, 45.913445], + [8.268816, 45.913445], + [8.268816, 45.732741], + [8.088113, 45.732741] ] ] } @@ -1224,11 +1224,11 @@ "type": "Polygon", "coordinates": [ [ - [8.410916, 46.276013], - [8.410916, 46.456927], - [8.662669, 46.456927], - [8.662669, 46.276013], - [8.410916, 46.276013] + [8.088113, 45.913445], + [8.088113, 46.094148], + [8.268816, 46.094148], + [8.268816, 45.913445], + [8.088113, 45.913445] ] ] } @@ -1240,11 +1240,11 @@ "type": "Polygon", "coordinates": [ [ - [8.662669, 44.466868], - [8.662669, 44.647782], - [8.914422, 44.647782], - [8.914422, 44.466868], - [8.662669, 44.466868] + [8.088113, 46.094148], + [8.088113, 46.274851], + [8.268816, 46.274851], + [8.268816, 46.094148], + [8.088113, 46.094148] ] ] } @@ -1256,11 +1256,11 @@ "type": "Polygon", "coordinates": [ [ - [8.662669, 44.647782], - [8.662669, 44.828697], - [8.914422, 44.828697], - [8.914422, 44.647782], - [8.662669, 44.647782] + [8.088113, 46.274851], + [8.088113, 46.455555], + [8.268816, 46.455555], + [8.268816, 46.274851], + [8.088113, 46.274851] ] ] } @@ -1272,11 +1272,11 @@ "type": "Polygon", "coordinates": [ [ - [8.662669, 44.828697], - [8.662669, 45.009611], - [8.914422, 45.009611], - [8.914422, 44.828697], - [8.662669, 44.828697] + [8.268816, 44.467818], + [8.268816, 44.648521], + [8.44952, 44.648521], + [8.44952, 44.467818], + [8.268816, 44.467818] ] ] } @@ -1288,11 +1288,11 @@ "type": "Polygon", "coordinates": [ [ - [8.662669, 45.009611], - [8.662669, 45.190526], - [8.914422, 45.190526], - [8.914422, 45.009611], - [8.662669, 45.009611] + [8.268816, 44.648521], + [8.268816, 44.829225], + [8.44952, 44.829225], + [8.44952, 44.648521], + [8.268816, 44.648521] ] ] } @@ -1304,11 +1304,11 @@ "type": "Polygon", "coordinates": [ [ - [8.662669, 45.190526], - [8.662669, 45.37144], - [8.914422, 45.37144], - [8.914422, 45.190526], - [8.662669, 45.190526] + [8.268816, 44.829225], + [8.268816, 45.009928], + [8.44952, 45.009928], + [8.44952, 44.829225], + [8.268816, 44.829225] ] ] } @@ -1320,11 +1320,11 @@ "type": "Polygon", "coordinates": [ [ - [8.662669, 45.37144], - [8.662669, 45.552355], - [8.914422, 45.552355], - [8.914422, 45.37144], - [8.662669, 45.37144] + [8.268816, 45.009928], + [8.268816, 45.190631], + [8.44952, 45.190631], + [8.44952, 45.009928], + [8.268816, 45.009928] ] ] } @@ -1336,11 +1336,11 @@ "type": "Polygon", "coordinates": [ [ - [8.662669, 45.552355], - [8.662669, 45.733269], - [8.914422, 45.733269], - [8.914422, 45.552355], - [8.662669, 45.552355] + [8.268816, 45.190631], + [8.268816, 45.371335], + [8.44952, 45.371335], + [8.44952, 45.190631], + [8.268816, 45.190631] ] ] } @@ -1352,11 +1352,11 @@ "type": "Polygon", "coordinates": [ [ - [8.662669, 45.914184], - [8.662669, 46.095098], - [8.914422, 46.095098], - [8.914422, 45.914184], - [8.662669, 45.914184] + [8.268816, 45.371335], + [8.268816, 45.552038], + [8.44952, 45.552038], + [8.44952, 45.371335], + [8.268816, 45.371335] ] ] } @@ -1368,11 +1368,11 @@ "type": "Polygon", "coordinates": [ [ - [8.662669, 46.095098], - [8.662669, 46.276013], - [8.914422, 46.276013], - [8.914422, 46.095098], - [8.662669, 46.095098] + [8.268816, 45.552038], + [8.268816, 45.732741], + [8.44952, 45.732741], + [8.44952, 45.552038], + [8.268816, 45.552038] ] ] } @@ -1384,11 +1384,11 @@ "type": "Polygon", "coordinates": [ [ - [8.914422, 44.466868], - [8.914422, 44.647782], - [9.166174, 44.647782], - [9.166174, 44.466868], - [8.914422, 44.466868] + [8.268816, 45.732741], + [8.268816, 45.913445], + [8.44952, 45.913445], + [8.44952, 45.732741], + [8.268816, 45.732741] ] ] } @@ -1400,11 +1400,11 @@ "type": "Polygon", "coordinates": [ [ - [8.914422, 44.647782], - [8.914422, 44.828697], - [9.166174, 44.828697], - [9.166174, 44.647782], - [8.914422, 44.647782] + [8.268816, 45.913445], + [8.268816, 46.094148], + [8.44952, 46.094148], + [8.44952, 45.913445], + [8.268816, 45.913445] ] ] } @@ -1416,11 +1416,11 @@ "type": "Polygon", "coordinates": [ [ - [8.914422, 44.828697], - [8.914422, 45.009611], - [9.166174, 45.009611], - [9.166174, 44.828697], - [8.914422, 44.828697] + [8.268816, 46.094148], + [8.268816, 46.274851], + [8.44952, 46.274851], + [8.44952, 46.094148], + [8.268816, 46.094148] ] ] } @@ -1432,11 +1432,11 @@ "type": "Polygon", "coordinates": [ [ - [8.914422, 45.009611], - [8.914422, 45.190526], - [9.166174, 45.190526], - [9.166174, 45.009611], - [8.914422, 45.009611] + [8.268816, 46.274851], + [8.268816, 46.455555], + [8.44952, 46.455555], + [8.44952, 46.274851], + [8.268816, 46.274851] ] ] } @@ -1448,11 +1448,11 @@ "type": "Polygon", "coordinates": [ [ - [9.166174, 44.466868], - [9.166174, 44.647782], - [9.417927, 44.647782], - [9.417927, 44.466868], - [9.166174, 44.466868] + [8.44952, 44.467818], + [8.44952, 44.648521], + [8.630223, 44.648521], + [8.630223, 44.467818], + [8.44952, 44.467818] ] ] } @@ -1464,11 +1464,459 @@ "type": "Polygon", "coordinates": [ [ - [9.166174, 44.647782], - [9.166174, 44.828697], - [9.417927, 44.828697], - [9.417927, 44.647782], - [9.166174, 44.647782] + [8.44952, 44.648521], + [8.44952, 44.829225], + [8.630223, 44.829225], + [8.630223, 44.648521], + [8.44952, 44.648521] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.44952, 44.829225], + [8.44952, 45.009928], + [8.630223, 45.009928], + [8.630223, 44.829225], + [8.44952, 44.829225] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.44952, 45.009928], + [8.44952, 45.190631], + [8.630223, 45.190631], + [8.630223, 45.009928], + [8.44952, 45.009928] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.44952, 45.190631], + [8.44952, 45.371335], + [8.630223, 45.371335], + [8.630223, 45.190631], + [8.44952, 45.190631] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.44952, 45.371335], + [8.44952, 45.552038], + [8.630223, 45.552038], + [8.630223, 45.371335], + [8.44952, 45.371335] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.44952, 45.552038], + [8.44952, 45.732741], + [8.630223, 45.732741], + [8.630223, 45.552038], + [8.44952, 45.552038] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.44952, 45.732741], + [8.44952, 45.913445], + [8.630223, 45.913445], + [8.630223, 45.732741], + [8.44952, 45.732741] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.44952, 45.913445], + [8.44952, 46.094148], + [8.630223, 46.094148], + [8.630223, 45.913445], + [8.44952, 45.913445] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.44952, 46.094148], + [8.44952, 46.274851], + [8.630223, 46.274851], + [8.630223, 46.094148], + [8.44952, 46.094148] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.44952, 46.274851], + [8.44952, 46.455555], + [8.630223, 46.455555], + [8.630223, 46.274851], + [8.44952, 46.274851] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.630223, 44.467818], + [8.630223, 44.648521], + [8.810926, 44.648521], + [8.810926, 44.467818], + [8.630223, 44.467818] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.630223, 44.648521], + [8.630223, 44.829225], + [8.810926, 44.829225], + [8.810926, 44.648521], + [8.630223, 44.648521] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.630223, 44.829225], + [8.630223, 45.009928], + [8.810926, 45.009928], + [8.810926, 44.829225], + [8.630223, 44.829225] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.630223, 45.009928], + [8.630223, 45.190631], + [8.810926, 45.190631], + [8.810926, 45.009928], + [8.630223, 45.009928] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.630223, 45.190631], + [8.630223, 45.371335], + [8.810926, 45.371335], + [8.810926, 45.190631], + [8.630223, 45.190631] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.630223, 45.371335], + [8.630223, 45.552038], + [8.810926, 45.552038], + [8.810926, 45.371335], + [8.630223, 45.371335] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.630223, 45.552038], + [8.630223, 45.732741], + [8.810926, 45.732741], + [8.810926, 45.552038], + [8.630223, 45.552038] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.630223, 45.913445], + [8.630223, 46.094148], + [8.810926, 46.094148], + [8.810926, 45.913445], + [8.630223, 45.913445] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.630223, 46.094148], + [8.630223, 46.274851], + [8.810926, 46.274851], + [8.810926, 46.094148], + [8.630223, 46.094148] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.810926, 44.467818], + [8.810926, 44.648521], + [8.99163, 44.648521], + [8.99163, 44.467818], + [8.810926, 44.467818] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.810926, 44.648521], + [8.810926, 44.829225], + [8.99163, 44.829225], + [8.99163, 44.648521], + [8.810926, 44.648521] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.810926, 44.829225], + [8.810926, 45.009928], + [8.99163, 45.009928], + [8.99163, 44.829225], + [8.810926, 44.829225] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.810926, 45.009928], + [8.810926, 45.190631], + [8.99163, 45.190631], + [8.99163, 45.009928], + [8.810926, 45.009928] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.810926, 45.371335], + [8.810926, 45.552038], + [8.99163, 45.552038], + [8.99163, 45.371335], + [8.810926, 45.371335] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.99163, 44.467818], + [8.99163, 44.648521], + [9.172333, 44.648521], + [9.172333, 44.467818], + [8.99163, 44.467818] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.99163, 44.648521], + [8.99163, 44.829225], + [9.172333, 44.829225], + [9.172333, 44.648521], + [8.99163, 44.648521] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.99163, 44.829225], + [8.99163, 45.009928], + [9.172333, 45.009928], + [9.172333, 44.829225], + [8.99163, 44.829225] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172333, 44.467818], + [9.172333, 44.648521], + [9.353036, 44.648521], + [9.353036, 44.467818], + [9.172333, 44.467818] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172333, 44.648521], + [9.172333, 44.829225], + [9.353036, 44.829225], + [9.353036, 44.648521], + [9.172333, 44.648521] ] ] } @@ -1476,10 +1924,7 @@ { "type": "Feature", "bbox": [ - 6.3775634765625, - 44.05601169578525, - 9.437255859375, - 46.50595444552049 + 6.3775634765625, 44.05601169578525, 9.437255859375, 46.50595444552049 ], "properties": { "stroke": "#F00", diff --git a/packages/turf-square-grid/test/out/properties.geojson b/packages/turf-square-grid/test/out/properties.geojson index ab6583645b..f9e0a449fd 100644 --- a/packages/turf-square-grid/test/out/properties.geojson +++ b/packages/turf-square-grid/test/out/properties.geojson @@ -10,11 +10,11 @@ "type": "Polygon", "coordinates": [ [ - [2.137036, 41.39763], - [2.137036, 41.406623], - [2.149021, 41.406623], - [2.149021, 41.39763], - [2.137036, 41.39763] + [2.13407, 41.397645], + [2.13407, 41.406628], + [2.143053, 41.406628], + [2.143053, 41.397645], + [2.13407, 41.397645] ] ] } @@ -28,11 +28,11 @@ "type": "Polygon", "coordinates": [ [ - [2.137036, 41.406623], - [2.137036, 41.415616], - [2.149021, 41.415616], - [2.149021, 41.406623], - [2.137036, 41.406623] + [2.13407, 41.406628], + [2.13407, 41.415611], + [2.143053, 41.415611], + [2.143053, 41.406628], + [2.13407, 41.406628] ] ] } @@ -46,11 +46,11 @@ "type": "Polygon", "coordinates": [ [ - [2.149021, 41.388636], - [2.149021, 41.39763], - [2.161006, 41.39763], - [2.161006, 41.388636], - [2.149021, 41.388636] + [2.143053, 41.388663], + [2.143053, 41.397645], + [2.152036, 41.397645], + [2.152036, 41.388663], + [2.143053, 41.388663] ] ] } @@ -64,11 +64,11 @@ "type": "Polygon", "coordinates": [ [ - [2.149021, 41.39763], - [2.149021, 41.406623], - [2.161006, 41.406623], - [2.161006, 41.39763], - [2.149021, 41.39763] + [2.143053, 41.397645], + [2.143053, 41.406628], + [2.152036, 41.406628], + [2.152036, 41.397645], + [2.143053, 41.397645] ] ] } @@ -82,11 +82,11 @@ "type": "Polygon", "coordinates": [ [ - [2.149021, 41.406623], - [2.149021, 41.415616], - [2.161006, 41.415616], - [2.161006, 41.406623], - [2.149021, 41.406623] + [2.143053, 41.406628], + [2.143053, 41.415611], + [2.152036, 41.415611], + [2.152036, 41.406628], + [2.143053, 41.406628] ] ] } @@ -100,11 +100,11 @@ "type": "Polygon", "coordinates": [ [ - [2.161006, 41.379643], - [2.161006, 41.388636], - [2.172991, 41.388636], - [2.172991, 41.379643], - [2.161006, 41.379643] + [2.152036, 41.388663], + [2.152036, 41.397645], + [2.161018, 41.397645], + [2.161018, 41.388663], + [2.152036, 41.388663] ] ] } @@ -118,11 +118,11 @@ "type": "Polygon", "coordinates": [ [ - [2.161006, 41.388636], - [2.161006, 41.39763], - [2.172991, 41.39763], - [2.172991, 41.388636], - [2.161006, 41.388636] + [2.152036, 41.397645], + [2.152036, 41.406628], + [2.161018, 41.406628], + [2.161018, 41.397645], + [2.152036, 41.397645] ] ] } @@ -136,11 +136,11 @@ "type": "Polygon", "coordinates": [ [ - [2.161006, 41.39763], - [2.161006, 41.406623], - [2.172991, 41.406623], - [2.172991, 41.39763], - [2.161006, 41.39763] + [2.152036, 41.406628], + [2.152036, 41.415611], + [2.161018, 41.415611], + [2.161018, 41.406628], + [2.152036, 41.406628] ] ] } @@ -154,11 +154,11 @@ "type": "Polygon", "coordinates": [ [ - [2.161006, 41.406623], - [2.161006, 41.415616], - [2.172991, 41.415616], - [2.172991, 41.406623], - [2.161006, 41.406623] + [2.161018, 41.37968], + [2.161018, 41.388663], + [2.170001, 41.388663], + [2.170001, 41.37968], + [2.161018, 41.37968] ] ] } @@ -172,11 +172,11 @@ "type": "Polygon", "coordinates": [ [ - [2.161006, 41.415616], - [2.161006, 41.424609], - [2.172991, 41.424609], - [2.172991, 41.415616], - [2.161006, 41.415616] + [2.161018, 41.388663], + [2.161018, 41.397645], + [2.170001, 41.397645], + [2.170001, 41.388663], + [2.161018, 41.388663] ] ] } @@ -190,11 +190,11 @@ "type": "Polygon", "coordinates": [ [ - [2.161006, 41.424609], - [2.161006, 41.433602], - [2.172991, 41.433602], - [2.172991, 41.424609], - [2.161006, 41.424609] + [2.161018, 41.397645], + [2.161018, 41.406628], + [2.170001, 41.406628], + [2.170001, 41.397645], + [2.161018, 41.397645] ] ] } @@ -208,11 +208,11 @@ "type": "Polygon", "coordinates": [ [ - [2.161006, 41.433602], - [2.161006, 41.442596], - [2.172991, 41.442596], - [2.172991, 41.433602], - [2.161006, 41.433602] + [2.161018, 41.406628], + [2.161018, 41.415611], + [2.170001, 41.415611], + [2.170001, 41.406628], + [2.161018, 41.406628] ] ] } @@ -226,11 +226,11 @@ "type": "Polygon", "coordinates": [ [ - [2.172991, 41.379643], - [2.172991, 41.388636], - [2.184976, 41.388636], - [2.184976, 41.379643], - [2.172991, 41.379643] + [2.161018, 41.415611], + [2.161018, 41.424593], + [2.170001, 41.424593], + [2.170001, 41.415611], + [2.161018, 41.415611] ] ] } @@ -244,11 +244,11 @@ "type": "Polygon", "coordinates": [ [ - [2.172991, 41.388636], - [2.172991, 41.39763], - [2.184976, 41.39763], - [2.184976, 41.388636], - [2.172991, 41.388636] + [2.161018, 41.424593], + [2.161018, 41.433576], + [2.170001, 41.433576], + [2.170001, 41.424593], + [2.161018, 41.424593] ] ] } @@ -262,11 +262,11 @@ "type": "Polygon", "coordinates": [ [ - [2.172991, 41.39763], - [2.172991, 41.406623], - [2.184976, 41.406623], - [2.184976, 41.39763], - [2.172991, 41.39763] + [2.161018, 41.433576], + [2.161018, 41.442559], + [2.170001, 41.442559], + [2.170001, 41.433576], + [2.161018, 41.433576] ] ] } @@ -280,11 +280,11 @@ "type": "Polygon", "coordinates": [ [ - [2.172991, 41.406623], - [2.172991, 41.415616], - [2.184976, 41.415616], - [2.184976, 41.406623], - [2.172991, 41.406623] + [2.170001, 41.37968], + [2.170001, 41.388663], + [2.178984, 41.388663], + [2.178984, 41.37968], + [2.170001, 41.37968] ] ] } @@ -298,11 +298,11 @@ "type": "Polygon", "coordinates": [ [ - [2.172991, 41.415616], - [2.172991, 41.424609], - [2.184976, 41.424609], - [2.184976, 41.415616], - [2.172991, 41.415616] + [2.170001, 41.388663], + [2.170001, 41.397645], + [2.178984, 41.397645], + [2.178984, 41.388663], + [2.170001, 41.388663] ] ] } @@ -316,11 +316,11 @@ "type": "Polygon", "coordinates": [ [ - [2.172991, 41.424609], - [2.172991, 41.433602], - [2.184976, 41.433602], - [2.184976, 41.424609], - [2.172991, 41.424609] + [2.170001, 41.397645], + [2.170001, 41.406628], + [2.178984, 41.406628], + [2.178984, 41.397645], + [2.170001, 41.397645] ] ] } @@ -334,11 +334,11 @@ "type": "Polygon", "coordinates": [ [ - [2.172991, 41.433602], - [2.172991, 41.442596], - [2.184976, 41.442596], - [2.184976, 41.433602], - [2.172991, 41.433602] + [2.170001, 41.406628], + [2.170001, 41.415611], + [2.178984, 41.415611], + [2.178984, 41.406628], + [2.170001, 41.406628] ] ] } @@ -352,11 +352,11 @@ "type": "Polygon", "coordinates": [ [ - [2.184976, 41.379643], - [2.184976, 41.388636], - [2.196961, 41.388636], - [2.196961, 41.379643], - [2.184976, 41.379643] + [2.170001, 41.415611], + [2.170001, 41.424593], + [2.178984, 41.424593], + [2.178984, 41.415611], + [2.170001, 41.415611] ] ] } @@ -370,11 +370,11 @@ "type": "Polygon", "coordinates": [ [ - [2.184976, 41.388636], - [2.184976, 41.39763], - [2.196961, 41.39763], - [2.196961, 41.388636], - [2.184976, 41.388636] + [2.170001, 41.424593], + [2.170001, 41.433576], + [2.178984, 41.433576], + [2.178984, 41.424593], + [2.170001, 41.424593] ] ] } @@ -388,11 +388,11 @@ "type": "Polygon", "coordinates": [ [ - [2.184976, 41.39763], - [2.184976, 41.406623], - [2.196961, 41.406623], - [2.196961, 41.39763], - [2.184976, 41.39763] + [2.170001, 41.433576], + [2.170001, 41.442559], + [2.178984, 41.442559], + [2.178984, 41.433576], + [2.170001, 41.433576] ] ] } @@ -406,11 +406,11 @@ "type": "Polygon", "coordinates": [ [ - [2.184976, 41.406623], - [2.184976, 41.415616], - [2.196961, 41.415616], - [2.196961, 41.406623], - [2.184976, 41.406623] + [2.178984, 41.37968], + [2.178984, 41.388663], + [2.187966, 41.388663], + [2.187966, 41.37968], + [2.178984, 41.37968] ] ] } @@ -424,11 +424,11 @@ "type": "Polygon", "coordinates": [ [ - [2.184976, 41.415616], - [2.184976, 41.424609], - [2.196961, 41.424609], - [2.196961, 41.415616], - [2.184976, 41.415616] + [2.178984, 41.388663], + [2.178984, 41.397645], + [2.187966, 41.397645], + [2.187966, 41.388663], + [2.178984, 41.388663] ] ] } @@ -442,11 +442,11 @@ "type": "Polygon", "coordinates": [ [ - [2.184976, 41.424609], - [2.184976, 41.433602], - [2.196961, 41.433602], - [2.196961, 41.424609], - [2.184976, 41.424609] + [2.178984, 41.397645], + [2.178984, 41.406628], + [2.187966, 41.406628], + [2.187966, 41.397645], + [2.178984, 41.397645] ] ] } @@ -460,11 +460,11 @@ "type": "Polygon", "coordinates": [ [ - [2.184976, 41.433602], - [2.184976, 41.442596], - [2.196961, 41.442596], - [2.196961, 41.433602], - [2.184976, 41.433602] + [2.178984, 41.406628], + [2.178984, 41.415611], + [2.187966, 41.415611], + [2.187966, 41.406628], + [2.178984, 41.406628] ] ] } @@ -478,11 +478,11 @@ "type": "Polygon", "coordinates": [ [ - [2.196961, 41.388636], - [2.196961, 41.39763], - [2.208947, 41.39763], - [2.208947, 41.388636], - [2.196961, 41.388636] + [2.178984, 41.415611], + [2.178984, 41.424593], + [2.187966, 41.424593], + [2.187966, 41.415611], + [2.178984, 41.415611] ] ] } @@ -496,11 +496,11 @@ "type": "Polygon", "coordinates": [ [ - [2.196961, 41.39763], - [2.196961, 41.406623], - [2.208947, 41.406623], - [2.208947, 41.39763], - [2.196961, 41.39763] + [2.178984, 41.424593], + [2.178984, 41.433576], + [2.187966, 41.433576], + [2.187966, 41.424593], + [2.178984, 41.424593] ] ] } @@ -514,11 +514,11 @@ "type": "Polygon", "coordinates": [ [ - [2.196961, 41.406623], - [2.196961, 41.415616], - [2.208947, 41.415616], - [2.208947, 41.406623], - [2.196961, 41.406623] + [2.178984, 41.433576], + [2.178984, 41.442559], + [2.187966, 41.442559], + [2.187966, 41.433576], + [2.178984, 41.433576] ] ] } @@ -532,11 +532,11 @@ "type": "Polygon", "coordinates": [ [ - [2.196961, 41.415616], - [2.196961, 41.424609], - [2.208947, 41.424609], - [2.208947, 41.415616], - [2.196961, 41.415616] + [2.187966, 41.37968], + [2.187966, 41.388663], + [2.196949, 41.388663], + [2.196949, 41.37968], + [2.187966, 41.37968] ] ] } @@ -550,11 +550,11 @@ "type": "Polygon", "coordinates": [ [ - [2.196961, 41.424609], - [2.196961, 41.433602], - [2.208947, 41.433602], - [2.208947, 41.424609], - [2.196961, 41.424609] + [2.187966, 41.388663], + [2.187966, 41.397645], + [2.196949, 41.397645], + [2.196949, 41.388663], + [2.187966, 41.388663] ] ] } @@ -568,11 +568,11 @@ "type": "Polygon", "coordinates": [ [ - [2.208947, 41.39763], - [2.208947, 41.406623], - [2.220932, 41.406623], - [2.220932, 41.39763], - [2.208947, 41.39763] + [2.187966, 41.397645], + [2.187966, 41.406628], + [2.196949, 41.406628], + [2.196949, 41.397645], + [2.187966, 41.397645] ] ] } @@ -586,11 +586,11 @@ "type": "Polygon", "coordinates": [ [ - [2.208947, 41.406623], - [2.208947, 41.415616], - [2.220932, 41.415616], - [2.220932, 41.406623], - [2.208947, 41.406623] + [2.187966, 41.406628], + [2.187966, 41.415611], + [2.196949, 41.415611], + [2.196949, 41.406628], + [2.187966, 41.406628] ] ] } @@ -604,11 +604,245 @@ "type": "Polygon", "coordinates": [ [ - [2.208947, 41.415616], - [2.208947, 41.424609], - [2.220932, 41.424609], - [2.220932, 41.415616], - [2.208947, 41.415616] + [2.187966, 41.415611], + [2.187966, 41.424593], + [2.196949, 41.424593], + [2.196949, 41.415611], + [2.187966, 41.415611] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.187966, 41.424593], + [2.187966, 41.433576], + [2.196949, 41.433576], + [2.196949, 41.424593], + [2.187966, 41.424593] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.187966, 41.433576], + [2.187966, 41.442559], + [2.196949, 41.442559], + [2.196949, 41.433576], + [2.187966, 41.433576] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.196949, 41.388663], + [2.196949, 41.397645], + [2.205932, 41.397645], + [2.205932, 41.388663], + [2.196949, 41.388663] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.196949, 41.397645], + [2.196949, 41.406628], + [2.205932, 41.406628], + [2.205932, 41.397645], + [2.196949, 41.397645] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.196949, 41.406628], + [2.196949, 41.415611], + [2.205932, 41.415611], + [2.205932, 41.406628], + [2.196949, 41.406628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.196949, 41.415611], + [2.196949, 41.424593], + [2.205932, 41.424593], + [2.205932, 41.415611], + [2.196949, 41.415611] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.196949, 41.424593], + [2.196949, 41.433576], + [2.205932, 41.433576], + [2.205932, 41.424593], + [2.196949, 41.424593] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.205932, 41.397645], + [2.205932, 41.406628], + [2.214915, 41.406628], + [2.214915, 41.397645], + [2.205932, 41.397645] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.205932, 41.406628], + [2.205932, 41.415611], + [2.214915, 41.415611], + [2.214915, 41.406628], + [2.205932, 41.406628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.205932, 41.415611], + [2.205932, 41.424593], + [2.214915, 41.424593], + [2.214915, 41.415611], + [2.205932, 41.415611] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.205932, 41.424593], + [2.205932, 41.433576], + [2.214915, 41.433576], + [2.214915, 41.424593], + [2.205932, 41.424593] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.214915, 41.406628], + [2.214915, 41.415611], + [2.223897, 41.415611], + [2.223897, 41.406628], + [2.214915, 41.406628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.214915, 41.415611], + [2.214915, 41.424593], + [2.223897, 41.424593], + [2.223897, 41.415611], + [2.214915, 41.415611] ] ] } @@ -616,9 +850,7 @@ { "type": "Feature", "bbox": [ - 2.131519317626953, - 41.37835427979543, - 2.2264480590820312, + 2.131519317626953, 41.37835427979543, 2.2264480590820312, 41.44388449101261 ], "properties": { diff --git a/packages/turf-square-grid/test/out/resolute.geojson b/packages/turf-square-grid/test/out/resolute.geojson index 2c5c55bf65..72dc32bbd3 100644 --- a/packages/turf-square-grid/test/out/resolute.geojson +++ b/packages/turf-square-grid/test/out/resolute.geojson @@ -8,11 +8,139 @@ "type": "Polygon", "coordinates": [ [ - [-95.630499, 74.504464], - [-95.630499, 74.685378], + [-95.858351, 74.504675], + [-95.858351, 74.685378], + [-95.677647, 74.685378], + [-95.677647, 74.504675], + [-95.858351, 74.504675] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-95.858351, 74.685378], + [-95.858351, 74.866082], + [-95.677647, 74.866082], + [-95.677647, 74.685378], + [-95.858351, 74.685378] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-95.677647, 74.504675], + [-95.677647, 74.685378], + [-95.496944, 74.685378], + [-95.496944, 74.504675], + [-95.677647, 74.504675] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-95.677647, 74.685378], + [-95.677647, 74.866082], + [-95.496944, 74.866082], + [-95.496944, 74.685378], + [-95.677647, 74.685378] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-95.496944, 74.504675], + [-95.496944, 74.685378], + [-95.316241, 74.685378], + [-95.316241, 74.504675], + [-95.496944, 74.504675] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-95.496944, 74.685378], + [-95.496944, 74.866082], + [-95.316241, 74.866082], + [-95.316241, 74.685378], + [-95.496944, 74.685378] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-95.316241, 74.504675], + [-95.316241, 74.685378], + [-95.135537, 74.685378], + [-95.135537, 74.504675], + [-95.316241, 74.504675] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-95.316241, 74.685378], + [-95.316241, 74.866082], + [-95.135537, 74.866082], + [-95.135537, 74.685378], + [-95.316241, 74.685378] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-95.135537, 74.504675], + [-95.135537, 74.685378], [-94.954834, 74.685378], - [-94.954834, 74.504464], - [-95.630499, 74.504464] + [-94.954834, 74.504675], + [-95.135537, 74.504675] ] ] } @@ -24,11 +152,11 @@ "type": "Polygon", "coordinates": [ [ - [-95.630499, 74.685378], - [-95.630499, 74.866293], - [-94.954834, 74.866293], + [-95.135537, 74.685378], + [-95.135537, 74.866082], + [-94.954834, 74.866082], [-94.954834, 74.685378], - [-95.630499, 74.685378] + [-95.135537, 74.685378] ] ] } @@ -40,11 +168,11 @@ "type": "Polygon", "coordinates": [ [ - [-94.954834, 74.504464], + [-94.954834, 74.504675], [-94.954834, 74.685378], - [-94.279169, 74.685378], - [-94.279169, 74.504464], - [-94.954834, 74.504464] + [-94.774131, 74.685378], + [-94.774131, 74.504675], + [-94.954834, 74.504675] ] ] } @@ -57,21 +185,146 @@ "coordinates": [ [ [-94.954834, 74.685378], - [-94.954834, 74.866293], - [-94.279169, 74.866293], - [-94.279169, 74.685378], + [-94.954834, 74.866082], + [-94.774131, 74.866082], + [-94.774131, 74.685378], [-94.954834, 74.685378] ] ] } }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-94.774131, 74.504675], + [-94.774131, 74.685378], + [-94.593427, 74.685378], + [-94.593427, 74.504675], + [-94.774131, 74.504675] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-94.774131, 74.685378], + [-94.774131, 74.866082], + [-94.593427, 74.866082], + [-94.593427, 74.685378], + [-94.774131, 74.685378] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-94.593427, 74.504675], + [-94.593427, 74.685378], + [-94.412724, 74.685378], + [-94.412724, 74.504675], + [-94.593427, 74.504675] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-94.593427, 74.685378], + [-94.593427, 74.866082], + [-94.412724, 74.866082], + [-94.412724, 74.685378], + [-94.593427, 74.685378] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-94.412724, 74.504675], + [-94.412724, 74.685378], + [-94.232021, 74.685378], + [-94.232021, 74.504675], + [-94.412724, 74.504675] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-94.412724, 74.685378], + [-94.412724, 74.866082], + [-94.232021, 74.866082], + [-94.232021, 74.685378], + [-94.412724, 74.685378] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-94.232021, 74.504675], + [-94.232021, 74.685378], + [-94.051317, 74.685378], + [-94.051317, 74.504675], + [-94.232021, 74.504675] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-94.232021, 74.685378], + [-94.232021, 74.866082], + [-94.051317, 74.866082], + [-94.051317, 74.685378], + [-94.232021, 74.685378] + ] + ] + } + }, { "type": "Feature", "bbox": [ - -95.877685546875, - 74.46849062193377, - -94.031982421875, - 74.90226611990785 + -95.877685546875, 74.46849062193377, -94.031982421875, 74.90226611990785 ], "properties": { "stroke": "#F00", From e1eb8c41944aabc724cff4f2eca6906f67d0f311 Mon Sep 17 00:00:00 2001 From: Rowan Winsemius Date: Sat, 31 Jul 2021 22:23:10 +1000 Subject: [PATCH 7/9] prettier again --- packages/turf-square-grid/test/in/fiji-10-miles.json | 4 +++- packages/turf-square-grid/test/in/issue-1215.geojson | 5 ++++- packages/turf-square-grid/test/in/london-20-miles.json | 5 ++++- packages/turf-square-grid/test/in/piedemont-mask.json | 5 ++++- packages/turf-square-grid/test/in/properties.json | 5 ++++- packages/turf-square-grid/test/in/resolute.json | 5 ++++- packages/turf-square-grid/test/out/fiji-10-miles.geojson | 4 +++- packages/turf-square-grid/test/out/issue-1215.geojson | 4 +++- packages/turf-square-grid/test/out/london-20-miles.geojson | 5 ++++- packages/turf-square-grid/test/out/piedemont-mask.geojson | 5 ++++- packages/turf-square-grid/test/out/properties.geojson | 4 +++- packages/turf-square-grid/test/out/resolute.geojson | 5 ++++- 12 files changed, 44 insertions(+), 12 deletions(-) diff --git a/packages/turf-square-grid/test/in/fiji-10-miles.json b/packages/turf-square-grid/test/in/fiji-10-miles.json index d5a71f0026..b4497e0f1d 100644 --- a/packages/turf-square-grid/test/in/fiji-10-miles.json +++ b/packages/turf-square-grid/test/in/fiji-10-miles.json @@ -1,6 +1,8 @@ { "bbox": [ - -180.3460693359375, -17.16703442146408, -179.5770263671875, + -180.3460693359375, + -17.16703442146408, + -179.5770263671875, -16.48349760264812 ], "cellSide": 10, diff --git a/packages/turf-square-grid/test/in/issue-1215.geojson b/packages/turf-square-grid/test/in/issue-1215.geojson index 4ac2ff8ebc..951b3718fc 100644 --- a/packages/turf-square-grid/test/in/issue-1215.geojson +++ b/packages/turf-square-grid/test/in/issue-1215.geojson @@ -1,6 +1,9 @@ { "bbox": [ - 37.69975662231445, 55.55151096909941, 37.70958423614502, 55.55615949302079 + 37.69975662231445, + 55.55151096909941, + 37.70958423614502, + 55.55615949302079 ], "cellSide": 0.01, "units": "kilometers", diff --git a/packages/turf-square-grid/test/in/london-20-miles.json b/packages/turf-square-grid/test/in/london-20-miles.json index 404dc56709..634ed5b566 100644 --- a/packages/turf-square-grid/test/in/london-20-miles.json +++ b/packages/turf-square-grid/test/in/london-20-miles.json @@ -1,6 +1,9 @@ { "bbox": [ - -0.6207275390625, 51.23784668914442, 0.439453125, 51.767839887322154 + -0.6207275390625, + 51.23784668914442, + 0.439453125, + 51.767839887322154 ], "cellSide": 20, "units": "miles" diff --git a/packages/turf-square-grid/test/in/piedemont-mask.json b/packages/turf-square-grid/test/in/piedemont-mask.json index 5f53b65e24..52311fc419 100644 --- a/packages/turf-square-grid/test/in/piedemont-mask.json +++ b/packages/turf-square-grid/test/in/piedemont-mask.json @@ -1,6 +1,9 @@ { "bbox": [ - 6.3775634765625, 44.05601169578525, 9.437255859375, 46.50595444552049 + 6.3775634765625, + 44.05601169578525, + 9.437255859375, + 46.50595444552049 ], "cellSide": 12.5, "units": "miles", diff --git a/packages/turf-square-grid/test/in/properties.json b/packages/turf-square-grid/test/in/properties.json index 13148f1c10..a1f89b7b34 100644 --- a/packages/turf-square-grid/test/in/properties.json +++ b/packages/turf-square-grid/test/in/properties.json @@ -1,6 +1,9 @@ { "bbox": [ - 2.131519317626953, 41.37835427979543, 2.2264480590820312, 41.44388449101261 + 2.131519317626953, + 41.37835427979543, + 2.2264480590820312, + 41.44388449101261 ], "properties": { "marker-color": "#0ff" diff --git a/packages/turf-square-grid/test/in/resolute.json b/packages/turf-square-grid/test/in/resolute.json index 78d15417cc..df7df65f6c 100644 --- a/packages/turf-square-grid/test/in/resolute.json +++ b/packages/turf-square-grid/test/in/resolute.json @@ -1,6 +1,9 @@ { "bbox": [ - -95.877685546875, 74.46849062193377, -94.031982421875, 74.90226611990785 + -95.877685546875, + 74.46849062193377, + -94.031982421875, + 74.90226611990785 ], "cellSide": 12.5, "units": "miles" diff --git a/packages/turf-square-grid/test/out/fiji-10-miles.geojson b/packages/turf-square-grid/test/out/fiji-10-miles.geojson index c9a33e5978..3ad5172e49 100644 --- a/packages/turf-square-grid/test/out/fiji-10-miles.geojson +++ b/packages/turf-square-grid/test/out/fiji-10-miles.geojson @@ -324,7 +324,9 @@ { "type": "Feature", "bbox": [ - -180.3460693359375, -17.16703442146408, -179.5770263671875, + -180.3460693359375, + -17.16703442146408, + -179.5770263671875, -16.48349760264812 ], "properties": { diff --git a/packages/turf-square-grid/test/out/issue-1215.geojson b/packages/turf-square-grid/test/out/issue-1215.geojson index ee69ad07c8..82d42625c8 100644 --- a/packages/turf-square-grid/test/out/issue-1215.geojson +++ b/packages/turf-square-grid/test/out/issue-1215.geojson @@ -46340,7 +46340,9 @@ { "type": "Feature", "bbox": [ - 37.69975662231445, 55.55151096909941, 37.70958423614502, + 37.69975662231445, + 55.55151096909941, + 37.70958423614502, 55.55615949302079 ], "properties": { diff --git a/packages/turf-square-grid/test/out/london-20-miles.geojson b/packages/turf-square-grid/test/out/london-20-miles.geojson index 7ddd3984c5..0adf5a3a4b 100644 --- a/packages/turf-square-grid/test/out/london-20-miles.geojson +++ b/packages/turf-square-grid/test/out/london-20-miles.geojson @@ -52,7 +52,10 @@ { "type": "Feature", "bbox": [ - -0.6207275390625, 51.23784668914442, 0.439453125, 51.767839887322154 + -0.6207275390625, + 51.23784668914442, + 0.439453125, + 51.767839887322154 ], "properties": { "stroke": "#F00", diff --git a/packages/turf-square-grid/test/out/piedemont-mask.geojson b/packages/turf-square-grid/test/out/piedemont-mask.geojson index 69eb27ea88..01afbba776 100644 --- a/packages/turf-square-grid/test/out/piedemont-mask.geojson +++ b/packages/turf-square-grid/test/out/piedemont-mask.geojson @@ -1924,7 +1924,10 @@ { "type": "Feature", "bbox": [ - 6.3775634765625, 44.05601169578525, 9.437255859375, 46.50595444552049 + 6.3775634765625, + 44.05601169578525, + 9.437255859375, + 46.50595444552049 ], "properties": { "stroke": "#F00", diff --git a/packages/turf-square-grid/test/out/properties.geojson b/packages/turf-square-grid/test/out/properties.geojson index f9e0a449fd..50373241e4 100644 --- a/packages/turf-square-grid/test/out/properties.geojson +++ b/packages/turf-square-grid/test/out/properties.geojson @@ -850,7 +850,9 @@ { "type": "Feature", "bbox": [ - 2.131519317626953, 41.37835427979543, 2.2264480590820312, + 2.131519317626953, + 41.37835427979543, + 2.2264480590820312, 41.44388449101261 ], "properties": { diff --git a/packages/turf-square-grid/test/out/resolute.geojson b/packages/turf-square-grid/test/out/resolute.geojson index 72dc32bbd3..203b373584 100644 --- a/packages/turf-square-grid/test/out/resolute.geojson +++ b/packages/turf-square-grid/test/out/resolute.geojson @@ -324,7 +324,10 @@ { "type": "Feature", "bbox": [ - -95.877685546875, 74.46849062193377, -94.031982421875, 74.90226611990785 + -95.877685546875, + 74.46849062193377, + -94.031982421875, + 74.90226611990785 ], "properties": { "stroke": "#F00", From 401c22ccf182045ab195e2bdd814eb302004e941 Mon Sep 17 00:00:00 2001 From: Matt Fedderly Date: Wed, 4 Aug 2021 15:43:07 -0400 Subject: [PATCH 8/9] update @turf/interpolate test output (because of square-grid changes) --- .../test/out/data-1km.geojson | 1880 ++-- .../test/out/data-500m.geojson | 8609 +++++++++++------ .../test/out/data-weight-2.geojson | 636 +- 3 files changed, 7547 insertions(+), 3578 deletions(-) diff --git a/packages/turf-interpolate/test/out/data-1km.geojson b/packages/turf-interpolate/test/out/data-1km.geojson index 68c98fb529..bad32c23cf 100644 --- a/packages/turf-interpolate/test/out/data-1km.geojson +++ b/packages/turf-interpolate/test/out/data-1km.geojson @@ -5,19 +5,19 @@ "type": "Feature", "properties": { "value": 18, - "stroke": "#ebf5ff", - "fill": "#ebf5ff", + "stroke": "#d6ebff", + "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.116251, 45.44307], - [9.116251, 45.452063], - [9.129068, 45.452063], - [9.129068, 45.44307], - [9.116251, 45.44307] + [9.119968, 45.44307], + [9.119968, 45.452063], + [9.128961, 45.452063], + [9.128961, 45.44307], + [9.119968, 45.44307] ] ] } @@ -26,19 +26,19 @@ "type": "Feature", "properties": { "value": 19, - "stroke": "#d6ebff", - "fill": "#d6ebff", + "stroke": "#c2e2ff", + "fill": "#c2e2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.116251, 45.452063], - [9.116251, 45.461057], - [9.129068, 45.461057], - [9.129068, 45.452063], - [9.116251, 45.452063] + [9.119968, 45.452063], + [9.119968, 45.461057], + [9.128961, 45.461057], + [9.128961, 45.452063], + [9.119968, 45.452063] ] ] } @@ -47,19 +47,19 @@ "type": "Feature", "properties": { "value": 20, - "stroke": "#c2e2ff", - "fill": "#c2e2ff", + "stroke": "#b3daff", + "fill": "#b3daff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.116251, 45.461057], - [9.116251, 45.47005], - [9.129068, 45.47005], - [9.129068, 45.461057], - [9.116251, 45.461057] + [9.119968, 45.461057], + [9.119968, 45.47005], + [9.128961, 45.47005], + [9.128961, 45.461057], + [9.119968, 45.461057] ] ] } @@ -68,19 +68,19 @@ "type": "Feature", "properties": { "value": 20, - "stroke": "#c2e2ff", - "fill": "#c2e2ff", + "stroke": "#b3daff", + "fill": "#b3daff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.116251, 45.47005], - [9.116251, 45.479043], - [9.129068, 45.479043], - [9.129068, 45.47005], - [9.116251, 45.47005] + [9.119968, 45.47005], + [9.119968, 45.479043], + [9.128961, 45.479043], + [9.128961, 45.47005], + [9.119968, 45.47005] ] ] } @@ -89,19 +89,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#9ed1ff", + "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.116251, 45.479043], - [9.116251, 45.488036], - [9.129068, 45.488036], - [9.129068, 45.479043], - [9.116251, 45.479043] + [9.119968, 45.479043], + [9.119968, 45.488036], + [9.128961, 45.488036], + [9.128961, 45.479043], + [9.119968, 45.479043] ] ] } @@ -110,19 +110,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#99ceff", - "fill": "#99ceff", + "stroke": "#8ac7ff", + "fill": "#8ac7ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.116251, 45.488036], - [9.116251, 45.49703], - [9.129068, 45.49703], - [9.129068, 45.488036], - [9.116251, 45.488036] + [9.119968, 45.488036], + [9.119968, 45.49703], + [9.128961, 45.49703], + [9.128961, 45.488036], + [9.119968, 45.488036] ] ] } @@ -131,19 +131,19 @@ "type": "Feature", "properties": { "value": 24, - "stroke": "#70bbff", - "fill": "#70bbff", + "stroke": "#61b3ff", + "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.116251, 45.49703], - [9.116251, 45.506023], - [9.129068, 45.506023], - [9.129068, 45.49703], - [9.116251, 45.49703] + [9.119968, 45.49703], + [9.119968, 45.506023], + [9.128961, 45.506023], + [9.128961, 45.49703], + [9.119968, 45.49703] ] ] } @@ -152,19 +152,19 @@ "type": "Feature", "properties": { "value": 25, - "stroke": "#5cb1ff", - "fill": "#5cb1ff", + "stroke": "#4daaff", + "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.116251, 45.506023], - [9.116251, 45.515016], - [9.129068, 45.515016], - [9.129068, 45.506023], - [9.116251, 45.506023] + [9.119968, 45.506023], + [9.119968, 45.515016], + [9.128961, 45.515016], + [9.128961, 45.506023], + [9.119968, 45.506023] ] ] } @@ -173,19 +173,19 @@ "type": "Feature", "properties": { "value": 26, - "stroke": "#47a7ff", - "fill": "#47a7ff", + "stroke": "#3da2ff", + "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.116251, 45.515016], - [9.116251, 45.524009], - [9.129068, 45.524009], - [9.129068, 45.515016], - [9.116251, 45.515016] + [9.119968, 45.515016], + [9.119968, 45.524009], + [9.128961, 45.524009], + [9.128961, 45.515016], + [9.119968, 45.515016] ] ] } @@ -194,19 +194,19 @@ "type": "Feature", "properties": { "value": 27, - "stroke": "#339dff", - "fill": "#339dff", + "stroke": "#2999ff", + "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.116251, 45.524009], - [9.116251, 45.533002], - [9.129068, 45.533002], - [9.129068, 45.524009], - [9.116251, 45.524009] + [9.119968, 45.524009], + [9.119968, 45.533002], + [9.128961, 45.533002], + [9.128961, 45.524009], + [9.119968, 45.524009] ] ] } @@ -215,19 +215,19 @@ "type": "Feature", "properties": { "value": 18, - "stroke": "#ebf5ff", - "fill": "#ebf5ff", + "stroke": "#d6ebff", + "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.129068, 45.44307], - [9.129068, 45.452063], - [9.141885, 45.452063], - [9.141885, 45.44307], - [9.129068, 45.44307] + [9.128961, 45.44307], + [9.128961, 45.452063], + [9.137954, 45.452063], + [9.137954, 45.44307], + [9.128961, 45.44307] ] ] } @@ -236,19 +236,19 @@ "type": "Feature", "properties": { "value": 19, - "stroke": "#d6ebff", - "fill": "#d6ebff", + "stroke": "#c2e2ff", + "fill": "#c2e2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.129068, 45.452063], - [9.129068, 45.461057], - [9.141885, 45.461057], - [9.141885, 45.452063], - [9.129068, 45.452063] + [9.128961, 45.452063], + [9.128961, 45.461057], + [9.137954, 45.461057], + [9.137954, 45.452063], + [9.128961, 45.452063] ] ] } @@ -257,19 +257,19 @@ "type": "Feature", "properties": { "value": 19, - "stroke": "#d6ebff", - "fill": "#d6ebff", + "stroke": "#c2e2ff", + "fill": "#c2e2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.129068, 45.461057], - [9.129068, 45.47005], - [9.141885, 45.47005], - [9.141885, 45.461057], - [9.129068, 45.461057] + [9.128961, 45.461057], + [9.128961, 45.47005], + [9.137954, 45.47005], + [9.137954, 45.461057], + [9.128961, 45.461057] ] ] } @@ -277,20 +277,20 @@ { "type": "Feature", "properties": { - "value": 19, - "stroke": "#d6ebff", - "fill": "#d6ebff", + "value": 20, + "stroke": "#b3daff", + "fill": "#b3daff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.129068, 45.47005], - [9.129068, 45.479043], - [9.141885, 45.479043], - [9.141885, 45.47005], - [9.129068, 45.47005] + [9.128961, 45.47005], + [9.128961, 45.479043], + [9.137954, 45.479043], + [9.137954, 45.47005], + [9.128961, 45.47005] ] ] } @@ -299,19 +299,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#9ed1ff", + "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.129068, 45.479043], - [9.129068, 45.488036], - [9.141885, 45.488036], - [9.141885, 45.479043], - [9.129068, 45.479043] + [9.128961, 45.479043], + [9.128961, 45.488036], + [9.137954, 45.488036], + [9.137954, 45.479043], + [9.128961, 45.479043] ] ] } @@ -320,19 +320,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#99ceff", - "fill": "#99ceff", + "stroke": "#8ac7ff", + "fill": "#8ac7ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.129068, 45.488036], - [9.129068, 45.49703], - [9.141885, 45.49703], - [9.141885, 45.488036], - [9.129068, 45.488036] + [9.128961, 45.488036], + [9.128961, 45.49703], + [9.137954, 45.49703], + [9.137954, 45.488036], + [9.128961, 45.488036] ] ] } @@ -341,19 +341,19 @@ "type": "Feature", "properties": { "value": 24, - "stroke": "#70bbff", - "fill": "#70bbff", + "stroke": "#61b3ff", + "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.129068, 45.49703], - [9.129068, 45.506023], - [9.141885, 45.506023], - [9.141885, 45.49703], - [9.129068, 45.49703] + [9.128961, 45.49703], + [9.128961, 45.506023], + [9.137954, 45.506023], + [9.137954, 45.49703], + [9.128961, 45.49703] ] ] } @@ -362,19 +362,19 @@ "type": "Feature", "properties": { "value": 25, - "stroke": "#5cb1ff", - "fill": "#5cb1ff", + "stroke": "#4daaff", + "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.129068, 45.506023], - [9.129068, 45.515016], - [9.141885, 45.515016], - [9.141885, 45.506023], - [9.129068, 45.506023] + [9.128961, 45.506023], + [9.128961, 45.515016], + [9.137954, 45.515016], + [9.137954, 45.506023], + [9.128961, 45.506023] ] ] } @@ -383,19 +383,19 @@ "type": "Feature", "properties": { "value": 27, - "stroke": "#339dff", - "fill": "#339dff", + "stroke": "#2999ff", + "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.129068, 45.515016], - [9.129068, 45.524009], - [9.141885, 45.524009], - [9.141885, 45.515016], - [9.129068, 45.515016] + [9.128961, 45.515016], + [9.128961, 45.524009], + [9.137954, 45.524009], + [9.137954, 45.515016], + [9.128961, 45.515016] ] ] } @@ -404,19 +404,19 @@ "type": "Feature", "properties": { "value": 28, - "stroke": "#1f94ff", - "fill": "#1f94ff", + "stroke": "#148fff", + "fill": "#148fff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.129068, 45.524009], - [9.129068, 45.533002], - [9.141885, 45.533002], - [9.141885, 45.524009], - [9.129068, 45.524009] + [9.128961, 45.524009], + [9.128961, 45.533002], + [9.137954, 45.533002], + [9.137954, 45.524009], + [9.128961, 45.524009] ] ] } @@ -425,19 +425,19 @@ "type": "Feature", "properties": { "value": 19, - "stroke": "#d6ebff", - "fill": "#d6ebff", + "stroke": "#c2e2ff", + "fill": "#c2e2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.141885, 45.44307], - [9.141885, 45.452063], - [9.154702, 45.452063], - [9.154702, 45.44307], - [9.141885, 45.44307] + [9.137954, 45.44307], + [9.137954, 45.452063], + [9.146948, 45.452063], + [9.146948, 45.44307], + [9.137954, 45.44307] ] ] } @@ -446,6 +446,27 @@ "type": "Feature", "properties": { "value": 19, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.137954, 45.452063], + [9.137954, 45.461057], + [9.146948, 45.461057], + [9.146948, 45.452063], + [9.137954, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 @@ -454,11 +475,11 @@ "type": "Polygon", "coordinates": [ [ - [9.141885, 45.452063], - [9.141885, 45.461057], - [9.154702, 45.461057], - [9.154702, 45.452063], - [9.141885, 45.452063] + [9.137954, 45.461057], + [9.137954, 45.47005], + [9.146948, 45.47005], + [9.146948, 45.461057], + [9.137954, 45.461057] ] ] } @@ -467,6 +488,195 @@ "type": "Feature", "properties": { "value": 18, + "stroke": "#d6ebff", + "fill": "#d6ebff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.137954, 45.47005], + [9.137954, 45.479043], + [9.146948, 45.479043], + [9.146948, 45.47005], + [9.137954, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#b3daff", + "fill": "#b3daff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.137954, 45.479043], + [9.137954, 45.488036], + [9.146948, 45.488036], + [9.146948, 45.479043], + [9.137954, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8ac7ff", + "fill": "#8ac7ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.137954, 45.488036], + [9.137954, 45.49703], + [9.146948, 45.49703], + [9.146948, 45.488036], + [9.137954, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.137954, 45.49703], + [9.137954, 45.506023], + [9.146948, 45.506023], + [9.146948, 45.49703], + [9.137954, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.137954, 45.506023], + [9.137954, 45.515016], + [9.146948, 45.515016], + [9.146948, 45.506023], + [9.137954, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#2999ff", + "fill": "#2999ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.137954, 45.515016], + [9.137954, 45.524009], + [9.146948, 45.524009], + [9.146948, 45.515016], + [9.137954, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#0085ff", + "fill": "#0085ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.137954, 45.524009], + [9.137954, 45.533002], + [9.146948, 45.533002], + [9.146948, 45.524009], + [9.137954, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.146948, 45.44307], + [9.146948, 45.452063], + [9.155941, 45.452063], + [9.155941, 45.44307], + [9.146948, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.146948, 45.452063], + [9.146948, 45.461057], + [9.155941, 45.461057], + [9.155941, 45.452063], + [9.146948, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, "stroke": "#ebf5ff", "fill": "#ebf5ff", "fill-opacity": 0.85 @@ -475,11 +685,11 @@ "type": "Polygon", "coordinates": [ [ - [9.141885, 45.461057], - [9.141885, 45.47005], - [9.154702, 45.47005], - [9.154702, 45.461057], - [9.141885, 45.461057] + [9.146948, 45.461057], + [9.146948, 45.47005], + [9.155941, 45.47005], + [9.155941, 45.461057], + [9.146948, 45.461057] ] ] } @@ -487,7 +697,7 @@ { "type": "Feature", "properties": { - "value": 17, + "value": 16, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 @@ -496,11 +706,11 @@ "type": "Polygon", "coordinates": [ [ - [9.141885, 45.47005], - [9.141885, 45.479043], - [9.154702, 45.479043], - [9.154702, 45.47005], - [9.141885, 45.47005] + [9.146948, 45.47005], + [9.146948, 45.479043], + [9.155941, 45.479043], + [9.155941, 45.47005], + [9.146948, 45.47005] ] ] } @@ -509,19 +719,19 @@ "type": "Feature", "properties": { "value": 20, - "stroke": "#c2e2ff", - "fill": "#c2e2ff", + "stroke": "#b3daff", + "fill": "#b3daff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.141885, 45.479043], - [9.141885, 45.488036], - [9.154702, 45.488036], - [9.154702, 45.479043], - [9.141885, 45.479043] + [9.146948, 45.479043], + [9.146948, 45.488036], + [9.155941, 45.488036], + [9.155941, 45.479043], + [9.146948, 45.479043] ] ] } @@ -530,19 +740,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#99ceff", - "fill": "#99ceff", + "stroke": "#8ac7ff", + "fill": "#8ac7ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.141885, 45.488036], - [9.141885, 45.49703], - [9.154702, 45.49703], - [9.154702, 45.488036], - [9.141885, 45.488036] + [9.146948, 45.488036], + [9.146948, 45.49703], + [9.155941, 45.49703], + [9.155941, 45.488036], + [9.146948, 45.488036] ] ] } @@ -551,19 +761,19 @@ "type": "Feature", "properties": { "value": 23, - "stroke": "#85c4ff", - "fill": "#85c4ff", + "stroke": "#75bdff", + "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.141885, 45.49703], - [9.141885, 45.506023], - [9.154702, 45.506023], - [9.154702, 45.49703], - [9.141885, 45.49703] + [9.146948, 45.49703], + [9.146948, 45.506023], + [9.155941, 45.506023], + [9.155941, 45.49703], + [9.146948, 45.49703] ] ] } @@ -572,19 +782,19 @@ "type": "Feature", "properties": { "value": 25, - "stroke": "#5cb1ff", - "fill": "#5cb1ff", + "stroke": "#4daaff", + "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.141885, 45.506023], - [9.141885, 45.515016], - [9.154702, 45.515016], - [9.154702, 45.506023], - [9.141885, 45.506023] + [9.146948, 45.506023], + [9.146948, 45.515016], + [9.155941, 45.515016], + [9.155941, 45.506023], + [9.146948, 45.506023] ] ] } @@ -593,19 +803,19 @@ "type": "Feature", "properties": { "value": 28, - "stroke": "#1f94ff", - "fill": "#1f94ff", + "stroke": "#148fff", + "fill": "#148fff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.141885, 45.515016], - [9.141885, 45.524009], - [9.154702, 45.524009], - [9.154702, 45.515016], - [9.141885, 45.515016] + [9.146948, 45.515016], + [9.146948, 45.524009], + [9.155941, 45.524009], + [9.155941, 45.515016], + [9.146948, 45.515016] ] ] } @@ -614,19 +824,19 @@ "type": "Feature", "properties": { "value": 30, - "stroke": "#0080f5", - "fill": "#0080f5", + "stroke": "#007aeb", + "fill": "#007aeb", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.141885, 45.524009], - [9.141885, 45.533002], - [9.154702, 45.533002], - [9.154702, 45.524009], - [9.141885, 45.524009] + [9.146948, 45.524009], + [9.146948, 45.533002], + [9.155941, 45.533002], + [9.155941, 45.524009], + [9.146948, 45.524009] ] ] } @@ -634,7 +844,7 @@ { "type": "Feature", "properties": { - "value": 20, + "value": 19, "stroke": "#c2e2ff", "fill": "#c2e2ff", "fill-opacity": 0.85 @@ -643,11 +853,11 @@ "type": "Polygon", "coordinates": [ [ - [9.154702, 45.44307], - [9.154702, 45.452063], - [9.167519, 45.452063], - [9.167519, 45.44307], - [9.154702, 45.44307] + [9.155941, 45.44307], + [9.155941, 45.452063], + [9.164934, 45.452063], + [9.164934, 45.44307], + [9.155941, 45.44307] ] ] } @@ -656,19 +866,19 @@ "type": "Feature", "properties": { "value": 19, - "stroke": "#d6ebff", - "fill": "#d6ebff", + "stroke": "#c2e2ff", + "fill": "#c2e2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.154702, 45.452063], - [9.154702, 45.461057], - [9.167519, 45.461057], - [9.167519, 45.452063], - [9.154702, 45.452063] + [9.155941, 45.452063], + [9.155941, 45.461057], + [9.164934, 45.461057], + [9.164934, 45.452063], + [9.155941, 45.452063] ] ] } @@ -676,7 +886,7 @@ { "type": "Feature", "properties": { - "value": 18, + "value": 17, "stroke": "#ebf5ff", "fill": "#ebf5ff", "fill-opacity": 0.85 @@ -685,11 +895,11 @@ "type": "Polygon", "coordinates": [ [ - [9.154702, 45.461057], - [9.154702, 45.47005], - [9.167519, 45.47005], - [9.167519, 45.461057], - [9.154702, 45.461057] + [9.155941, 45.461057], + [9.155941, 45.47005], + [9.164934, 45.47005], + [9.164934, 45.461057], + [9.155941, 45.461057] ] ] } @@ -697,7 +907,7 @@ { "type": "Feature", "properties": { - "value": 17, + "value": 16, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 @@ -706,11 +916,11 @@ "type": "Polygon", "coordinates": [ [ - [9.154702, 45.47005], - [9.154702, 45.479043], - [9.167519, 45.479043], - [9.167519, 45.47005], - [9.154702, 45.47005] + [9.155941, 45.47005], + [9.155941, 45.479043], + [9.164934, 45.479043], + [9.164934, 45.47005], + [9.155941, 45.47005] ] ] } @@ -719,19 +929,19 @@ "type": "Feature", "properties": { "value": 20, - "stroke": "#c2e2ff", - "fill": "#c2e2ff", + "stroke": "#b3daff", + "fill": "#b3daff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.154702, 45.479043], - [9.154702, 45.488036], - [9.167519, 45.488036], - [9.167519, 45.479043], - [9.154702, 45.479043] + [9.155941, 45.479043], + [9.155941, 45.488036], + [9.164934, 45.488036], + [9.164934, 45.479043], + [9.155941, 45.479043] ] ] } @@ -740,19 +950,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#9ed1ff", + "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.154702, 45.488036], - [9.154702, 45.49703], - [9.167519, 45.49703], - [9.167519, 45.488036], - [9.154702, 45.488036] + [9.155941, 45.488036], + [9.155941, 45.49703], + [9.164934, 45.49703], + [9.164934, 45.488036], + [9.155941, 45.488036] ] ] } @@ -761,19 +971,19 @@ "type": "Feature", "properties": { "value": 23, - "stroke": "#85c4ff", - "fill": "#85c4ff", + "stroke": "#75bdff", + "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.154702, 45.49703], - [9.154702, 45.506023], - [9.167519, 45.506023], - [9.167519, 45.49703], - [9.154702, 45.49703] + [9.155941, 45.49703], + [9.155941, 45.506023], + [9.164934, 45.506023], + [9.164934, 45.49703], + [9.155941, 45.49703] ] ] } @@ -782,19 +992,19 @@ "type": "Feature", "properties": { "value": 26, - "stroke": "#47a7ff", - "fill": "#47a7ff", + "stroke": "#3da2ff", + "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.154702, 45.506023], - [9.154702, 45.515016], - [9.167519, 45.515016], - [9.167519, 45.506023], - [9.154702, 45.506023] + [9.155941, 45.506023], + [9.155941, 45.515016], + [9.164934, 45.515016], + [9.164934, 45.506023], + [9.155941, 45.506023] ] ] } @@ -803,19 +1013,19 @@ "type": "Feature", "properties": { "value": 29, - "stroke": "#0a8aff", - "fill": "#0a8aff", + "stroke": "#0085ff", + "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.154702, 45.515016], - [9.154702, 45.524009], - [9.167519, 45.524009], - [9.167519, 45.515016], - [9.154702, 45.515016] + [9.155941, 45.515016], + [9.155941, 45.524009], + [9.164934, 45.524009], + [9.164934, 45.515016], + [9.155941, 45.515016] ] ] } @@ -824,19 +1034,19 @@ "type": "Feature", "properties": { "value": 32, - "stroke": "#006acc", - "fill": "#006acc", + "stroke": "#0065c2", + "fill": "#0065c2", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.154702, 45.524009], - [9.154702, 45.533002], - [9.167519, 45.533002], - [9.167519, 45.524009], - [9.154702, 45.524009] + [9.155941, 45.524009], + [9.155941, 45.533002], + [9.164934, 45.533002], + [9.164934, 45.524009], + [9.155941, 45.524009] ] ] } @@ -845,19 +1055,19 @@ "type": "Feature", "properties": { "value": 20, - "stroke": "#c2e2ff", - "fill": "#c2e2ff", + "stroke": "#b3daff", + "fill": "#b3daff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.167519, 45.44307], - [9.167519, 45.452063], - [9.180336, 45.452063], - [9.180336, 45.44307], - [9.167519, 45.44307] + [9.164934, 45.44307], + [9.164934, 45.452063], + [9.173927, 45.452063], + [9.173927, 45.44307], + [9.164934, 45.44307] ] ] } @@ -865,7 +1075,7 @@ { "type": "Feature", "properties": { - "value": 20, + "value": 19, "stroke": "#c2e2ff", "fill": "#c2e2ff", "fill-opacity": 0.85 @@ -874,11 +1084,11 @@ "type": "Polygon", "coordinates": [ [ - [9.167519, 45.452063], - [9.167519, 45.461057], - [9.180336, 45.461057], - [9.180336, 45.452063], - [9.167519, 45.452063] + [9.164934, 45.452063], + [9.164934, 45.461057], + [9.173927, 45.461057], + [9.173927, 45.452063], + [9.164934, 45.452063] ] ] } @@ -887,19 +1097,19 @@ "type": "Feature", "properties": { "value": 19, - "stroke": "#d6ebff", - "fill": "#d6ebff", + "stroke": "#c2e2ff", + "fill": "#c2e2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.167519, 45.461057], - [9.167519, 45.47005], - [9.180336, 45.47005], - [9.180336, 45.461057], - [9.167519, 45.461057] + [9.164934, 45.461057], + [9.164934, 45.47005], + [9.173927, 45.47005], + [9.173927, 45.461057], + [9.164934, 45.461057] ] ] } @@ -908,19 +1118,19 @@ "type": "Feature", "properties": { "value": 19, - "stroke": "#d6ebff", - "fill": "#d6ebff", + "stroke": "#c2e2ff", + "fill": "#c2e2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.167519, 45.47005], - [9.167519, 45.479043], - [9.180336, 45.479043], - [9.180336, 45.47005], - [9.167519, 45.47005] + [9.164934, 45.47005], + [9.164934, 45.479043], + [9.173927, 45.479043], + [9.173927, 45.47005], + [9.164934, 45.47005] ] ] } @@ -929,19 +1139,40 @@ "type": "Feature", "properties": { "value": 20, - "stroke": "#c2e2ff", - "fill": "#c2e2ff", + "stroke": "#b3daff", + "fill": "#b3daff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.164934, 45.479043], + [9.164934, 45.488036], + [9.173927, 45.488036], + [9.173927, 45.479043], + [9.164934, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.167519, 45.479043], - [9.167519, 45.488036], - [9.180336, 45.488036], - [9.180336, 45.479043], - [9.167519, 45.479043] + [9.164934, 45.488036], + [9.164934, 45.49703], + [9.173927, 45.49703], + [9.173927, 45.488036], + [9.164934, 45.488036] ] ] } @@ -950,19 +1181,82 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.164934, 45.49703], + [9.164934, 45.506023], + [9.173927, 45.506023], + [9.173927, 45.49703], + [9.164934, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.164934, 45.506023], + [9.164934, 45.515016], + [9.173927, 45.515016], + [9.173927, 45.506023], + [9.164934, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#007aeb", + "fill": "#007aeb", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.164934, 45.515016], + [9.164934, 45.524009], + [9.173927, 45.524009], + [9.173927, 45.515016], + [9.164934, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#00529e", + "fill": "#00529e", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.167519, 45.488036], - [9.167519, 45.49703], - [9.180336, 45.49703], - [9.180336, 45.488036], - [9.167519, 45.488036] + [9.164934, 45.524009], + [9.164934, 45.533002], + [9.173927, 45.533002], + [9.173927, 45.524009], + [9.164934, 45.524009] ] ] } @@ -971,19 +1265,145 @@ "type": "Feature", "properties": { "value": 20, - "stroke": "#c2e2ff", - "fill": "#c2e2ff", + "stroke": "#b3daff", + "fill": "#b3daff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.173927, 45.44307], + [9.173927, 45.452063], + [9.182921, 45.452063], + [9.182921, 45.44307], + [9.173927, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#b3daff", + "fill": "#b3daff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.173927, 45.452063], + [9.173927, 45.461057], + [9.182921, 45.461057], + [9.182921, 45.452063], + [9.173927, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#b3daff", + "fill": "#b3daff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.173927, 45.461057], + [9.173927, 45.47005], + [9.182921, 45.47005], + [9.182921, 45.461057], + [9.173927, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#b3daff", + "fill": "#b3daff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.167519, 45.49703], - [9.167519, 45.506023], - [9.180336, 45.506023], - [9.180336, 45.49703], - [9.167519, 45.49703] + [9.173927, 45.47005], + [9.173927, 45.479043], + [9.182921, 45.479043], + [9.182921, 45.47005], + [9.173927, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.173927, 45.479043], + [9.173927, 45.488036], + [9.182921, 45.488036], + [9.182921, 45.479043], + [9.173927, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.173927, 45.488036], + [9.173927, 45.49703], + [9.182921, 45.49703], + [9.182921, 45.488036], + [9.173927, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.173927, 45.49703], + [9.173927, 45.506023], + [9.182921, 45.506023], + [9.182921, 45.49703], + [9.173927, 45.49703] ] ] } @@ -992,19 +1412,19 @@ "type": "Feature", "properties": { "value": 26, - "stroke": "#47a7ff", - "fill": "#47a7ff", + "stroke": "#3da2ff", + "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.167519, 45.506023], - [9.167519, 45.515016], - [9.180336, 45.515016], - [9.180336, 45.506023], - [9.167519, 45.506023] + [9.173927, 45.506023], + [9.173927, 45.515016], + [9.182921, 45.515016], + [9.182921, 45.506023], + [9.173927, 45.506023] ] ] } @@ -1013,19 +1433,19 @@ "type": "Feature", "properties": { "value": 31, - "stroke": "#0075e0", - "fill": "#0075e0", + "stroke": "#0070d6", + "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.167519, 45.515016], - [9.167519, 45.524009], - [9.180336, 45.524009], - [9.180336, 45.515016], - [9.167519, 45.515016] + [9.173927, 45.515016], + [9.173927, 45.524009], + [9.182921, 45.524009], + [9.182921, 45.515016], + [9.173927, 45.515016] ] ] } @@ -1033,20 +1453,20 @@ { "type": "Feature", "properties": { - "value": 35, - "stroke": "#004a8f", - "fill": "#004a8f", + "value": 37, + "stroke": "#003361", + "fill": "#003361", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.167519, 45.524009], - [9.167519, 45.533002], - [9.180336, 45.533002], - [9.180336, 45.524009], - [9.167519, 45.524009] + [9.173927, 45.524009], + [9.173927, 45.533002], + [9.182921, 45.533002], + [9.182921, 45.524009], + [9.173927, 45.524009] ] ] } @@ -1055,19 +1475,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#9ed1ff", + "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.180336, 45.44307], - [9.180336, 45.452063], - [9.193153, 45.452063], - [9.193153, 45.44307], - [9.180336, 45.44307] + [9.182921, 45.44307], + [9.182921, 45.452063], + [9.191914, 45.452063], + [9.191914, 45.44307], + [9.182921, 45.44307] ] ] } @@ -1075,20 +1495,20 @@ { "type": "Feature", "properties": { - "value": 20, - "stroke": "#c2e2ff", - "fill": "#c2e2ff", + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.180336, 45.452063], - [9.180336, 45.461057], - [9.193153, 45.461057], - [9.193153, 45.452063], - [9.180336, 45.452063] + [9.182921, 45.452063], + [9.182921, 45.461057], + [9.191914, 45.461057], + [9.191914, 45.452063], + [9.182921, 45.452063] ] ] } @@ -1097,19 +1517,19 @@ "type": "Feature", "properties": { "value": 20, - "stroke": "#c2e2ff", - "fill": "#c2e2ff", + "stroke": "#b3daff", + "fill": "#b3daff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.180336, 45.461057], - [9.180336, 45.47005], - [9.193153, 45.47005], - [9.193153, 45.461057], - [9.180336, 45.461057] + [9.182921, 45.461057], + [9.182921, 45.47005], + [9.191914, 45.47005], + [9.191914, 45.461057], + [9.182921, 45.461057] ] ] } @@ -1118,19 +1538,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#9ed1ff", + "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.180336, 45.47005], - [9.180336, 45.479043], - [9.193153, 45.479043], - [9.193153, 45.47005], - [9.180336, 45.47005] + [9.182921, 45.47005], + [9.182921, 45.479043], + [9.191914, 45.479043], + [9.191914, 45.47005], + [9.182921, 45.47005] ] ] } @@ -1139,19 +1559,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#9ed1ff", + "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.180336, 45.479043], - [9.180336, 45.488036], - [9.193153, 45.488036], - [9.193153, 45.479043], - [9.180336, 45.479043] + [9.182921, 45.479043], + [9.182921, 45.488036], + [9.191914, 45.488036], + [9.191914, 45.479043], + [9.182921, 45.479043] ] ] } @@ -1160,19 +1580,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#99ceff", - "fill": "#99ceff", + "stroke": "#8ac7ff", + "fill": "#8ac7ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.180336, 45.488036], - [9.180336, 45.49703], - [9.193153, 45.49703], - [9.193153, 45.488036], - [9.180336, 45.488036] + [9.182921, 45.488036], + [9.182921, 45.49703], + [9.191914, 45.49703], + [9.191914, 45.488036], + [9.182921, 45.488036] ] ] } @@ -1181,19 +1601,19 @@ "type": "Feature", "properties": { "value": 23, - "stroke": "#85c4ff", - "fill": "#85c4ff", + "stroke": "#75bdff", + "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.180336, 45.49703], - [9.180336, 45.506023], - [9.193153, 45.506023], - [9.193153, 45.49703], - [9.180336, 45.49703] + [9.182921, 45.49703], + [9.182921, 45.506023], + [9.191914, 45.506023], + [9.191914, 45.49703], + [9.182921, 45.49703] ] ] } @@ -1202,19 +1622,19 @@ "type": "Feature", "properties": { "value": 27, - "stroke": "#339dff", - "fill": "#339dff", + "stroke": "#2999ff", + "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.180336, 45.506023], - [9.180336, 45.515016], - [9.193153, 45.515016], - [9.193153, 45.506023], - [9.180336, 45.506023] + [9.182921, 45.506023], + [9.182921, 45.515016], + [9.191914, 45.515016], + [9.191914, 45.506023], + [9.182921, 45.506023] ] ] } @@ -1223,19 +1643,19 @@ "type": "Feature", "properties": { "value": 33, - "stroke": "#0060b8", - "fill": "#0060b8", + "stroke": "#005db3", + "fill": "#005db3", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.180336, 45.515016], - [9.180336, 45.524009], - [9.193153, 45.524009], - [9.193153, 45.515016], - [9.180336, 45.515016] + [9.182921, 45.515016], + [9.182921, 45.524009], + [9.191914, 45.524009], + [9.191914, 45.515016], + [9.182921, 45.515016] ] ] } @@ -1252,11 +1672,11 @@ "type": "Polygon", "coordinates": [ [ - [9.180336, 45.524009], - [9.180336, 45.533002], - [9.193153, 45.533002], - [9.193153, 45.524009], - [9.180336, 45.524009] + [9.182921, 45.524009], + [9.182921, 45.533002], + [9.191914, 45.533002], + [9.191914, 45.524009], + [9.182921, 45.524009] ] ] } @@ -1265,19 +1685,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#9ed1ff", + "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.193153, 45.44307], - [9.193153, 45.452063], - [9.20597, 45.452063], - [9.20597, 45.44307], - [9.193153, 45.44307] + [9.191914, 45.44307], + [9.191914, 45.452063], + [9.200907, 45.452063], + [9.200907, 45.44307], + [9.191914, 45.44307] ] ] } @@ -1286,19 +1706,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#9ed1ff", + "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.193153, 45.452063], - [9.193153, 45.461057], - [9.20597, 45.461057], - [9.20597, 45.452063], - [9.193153, 45.452063] + [9.191914, 45.452063], + [9.191914, 45.461057], + [9.200907, 45.461057], + [9.200907, 45.452063], + [9.191914, 45.452063] ] ] } @@ -1307,19 +1727,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#9ed1ff", + "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.193153, 45.461057], - [9.193153, 45.47005], - [9.20597, 45.47005], - [9.20597, 45.461057], - [9.193153, 45.461057] + [9.191914, 45.461057], + [9.191914, 45.47005], + [9.200907, 45.47005], + [9.200907, 45.461057], + [9.191914, 45.461057] ] ] } @@ -1328,19 +1748,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#9ed1ff", + "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.193153, 45.47005], - [9.193153, 45.479043], - [9.20597, 45.479043], - [9.20597, 45.47005], - [9.193153, 45.47005] + [9.191914, 45.47005], + [9.191914, 45.479043], + [9.200907, 45.479043], + [9.200907, 45.47005], + [9.191914, 45.47005] ] ] } @@ -1349,19 +1769,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#99ceff", - "fill": "#99ceff", + "stroke": "#8ac7ff", + "fill": "#8ac7ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.193153, 45.479043], - [9.193153, 45.488036], - [9.20597, 45.488036], - [9.20597, 45.479043], - [9.193153, 45.479043] + [9.191914, 45.479043], + [9.191914, 45.488036], + [9.200907, 45.488036], + [9.200907, 45.479043], + [9.191914, 45.479043] ] ] } @@ -1370,19 +1790,19 @@ "type": "Feature", "properties": { "value": 23, - "stroke": "#85c4ff", - "fill": "#85c4ff", + "stroke": "#75bdff", + "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.193153, 45.488036], - [9.193153, 45.49703], - [9.20597, 45.49703], - [9.20597, 45.488036], - [9.193153, 45.488036] + [9.191914, 45.488036], + [9.191914, 45.49703], + [9.200907, 45.49703], + [9.200907, 45.488036], + [9.191914, 45.488036] ] ] } @@ -1391,19 +1811,19 @@ "type": "Feature", "properties": { "value": 25, - "stroke": "#5cb1ff", - "fill": "#5cb1ff", + "stroke": "#4daaff", + "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.193153, 45.49703], - [9.193153, 45.506023], - [9.20597, 45.506023], - [9.20597, 45.49703], - [9.193153, 45.49703] + [9.191914, 45.49703], + [9.191914, 45.506023], + [9.200907, 45.506023], + [9.200907, 45.49703], + [9.191914, 45.49703] ] ] } @@ -1412,19 +1832,19 @@ "type": "Feature", "properties": { "value": 28, - "stroke": "#1f94ff", - "fill": "#1f94ff", + "stroke": "#148fff", + "fill": "#148fff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.193153, 45.506023], - [9.193153, 45.515016], - [9.20597, 45.515016], - [9.20597, 45.506023], - [9.193153, 45.506023] + [9.191914, 45.506023], + [9.191914, 45.515016], + [9.200907, 45.515016], + [9.200907, 45.506023], + [9.191914, 45.506023] ] ] } @@ -1433,19 +1853,19 @@ "type": "Feature", "properties": { "value": 33, - "stroke": "#0060b8", - "fill": "#0060b8", + "stroke": "#005db3", + "fill": "#005db3", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.193153, 45.515016], - [9.193153, 45.524009], - [9.20597, 45.524009], - [9.20597, 45.515016], - [9.193153, 45.515016] + [9.191914, 45.515016], + [9.191914, 45.524009], + [9.200907, 45.524009], + [9.200907, 45.515016], + [9.191914, 45.515016] ] ] } @@ -1462,11 +1882,74 @@ "type": "Polygon", "coordinates": [ [ - [9.193153, 45.524009], - [9.193153, 45.533002], - [9.20597, 45.533002], - [9.20597, 45.524009], - [9.193153, 45.524009] + [9.191914, 45.524009], + [9.191914, 45.533002], + [9.200907, 45.533002], + [9.200907, 45.524009], + [9.191914, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.200907, 45.44307], + [9.200907, 45.452063], + [9.2099, 45.452063], + [9.2099, 45.44307], + [9.200907, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.200907, 45.452063], + [9.200907, 45.461057], + [9.2099, 45.461057], + [9.2099, 45.452063], + [9.200907, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.200907, 45.461057], + [9.200907, 45.47005], + [9.2099, 45.47005], + [9.2099, 45.461057], + [9.200907, 45.461057] ] ] } @@ -1475,19 +1958,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#99ceff", - "fill": "#99ceff", + "stroke": "#8ac7ff", + "fill": "#8ac7ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.20597, 45.44307], - [9.20597, 45.452063], - [9.218787, 45.452063], - [9.218787, 45.44307], - [9.20597, 45.44307] + [9.200907, 45.47005], + [9.200907, 45.479043], + [9.2099, 45.479043], + [9.2099, 45.47005], + [9.200907, 45.47005] ] ] } @@ -1496,19 +1979,124 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#99ceff", - "fill": "#99ceff", + "stroke": "#8ac7ff", + "fill": "#8ac7ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.200907, 45.479043], + [9.200907, 45.488036], + [9.2099, 45.488036], + [9.2099, 45.479043], + [9.200907, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.200907, 45.488036], + [9.200907, 45.49703], + [9.2099, 45.49703], + [9.2099, 45.488036], + [9.200907, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.200907, 45.49703], + [9.200907, 45.506023], + [9.2099, 45.506023], + [9.2099, 45.49703], + [9.200907, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#148fff", + "fill": "#148fff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.20597, 45.452063], - [9.20597, 45.461057], - [9.218787, 45.461057], - [9.218787, 45.452063], - [9.20597, 45.452063] + [9.200907, 45.506023], + [9.200907, 45.515016], + [9.2099, 45.515016], + [9.2099, 45.506023], + [9.200907, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#005db3", + "fill": "#005db3", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.200907, 45.515016], + [9.200907, 45.524009], + [9.2099, 45.524009], + [9.2099, 45.515016], + [9.200907, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 40, + "stroke": "#001529", + "fill": "#001529", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.200907, 45.524009], + [9.200907, 45.533002], + [9.2099, 45.533002], + [9.2099, 45.524009], + [9.200907, 45.524009] ] ] } @@ -1517,19 +2105,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#99ceff", - "fill": "#99ceff", + "stroke": "#8ac7ff", + "fill": "#8ac7ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.20597, 45.461057], - [9.20597, 45.47005], - [9.218787, 45.47005], - [9.218787, 45.461057], - [9.20597, 45.461057] + [9.2099, 45.44307], + [9.2099, 45.452063], + [9.218893, 45.452063], + [9.218893, 45.44307], + [9.2099, 45.44307] ] ] } @@ -1538,19 +2126,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#99ceff", - "fill": "#99ceff", + "stroke": "#8ac7ff", + "fill": "#8ac7ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.20597, 45.47005], - [9.20597, 45.479043], - [9.218787, 45.479043], - [9.218787, 45.47005], - [9.20597, 45.47005] + [9.2099, 45.452063], + [9.2099, 45.461057], + [9.218893, 45.461057], + [9.218893, 45.452063], + [9.2099, 45.452063] ] ] } @@ -1559,19 +2147,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#99ceff", - "fill": "#99ceff", + "stroke": "#8ac7ff", + "fill": "#8ac7ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.20597, 45.479043], - [9.20597, 45.488036], - [9.218787, 45.488036], - [9.218787, 45.479043], - [9.20597, 45.479043] + [9.2099, 45.461057], + [9.2099, 45.47005], + [9.218893, 45.47005], + [9.218893, 45.461057], + [9.2099, 45.461057] ] ] } @@ -1580,19 +2168,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#99ceff", - "fill": "#99ceff", + "stroke": "#8ac7ff", + "fill": "#8ac7ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.20597, 45.488036], - [9.20597, 45.49703], - [9.218787, 45.49703], - [9.218787, 45.488036], - [9.20597, 45.488036] + [9.2099, 45.47005], + [9.2099, 45.479043], + [9.218893, 45.479043], + [9.218893, 45.47005], + [9.2099, 45.47005] ] ] } @@ -1600,20 +2188,62 @@ { "type": "Feature", "properties": { - "value": 25, - "stroke": "#5cb1ff", - "fill": "#5cb1ff", + "value": 22, + "stroke": "#8ac7ff", + "fill": "#8ac7ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.20597, 45.49703], - [9.20597, 45.506023], - [9.218787, 45.506023], - [9.218787, 45.49703], - [9.20597, 45.49703] + [9.2099, 45.479043], + [9.2099, 45.488036], + [9.218893, 45.488036], + [9.218893, 45.479043], + [9.2099, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8ac7ff", + "fill": "#8ac7ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2099, 45.488036], + [9.2099, 45.49703], + [9.218893, 45.49703], + [9.218893, 45.488036], + [9.2099, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2099, 45.49703], + [9.2099, 45.506023], + [9.218893, 45.506023], + [9.218893, 45.49703], + [9.2099, 45.49703] ] ] } @@ -1622,19 +2252,19 @@ "type": "Feature", "properties": { "value": 28, - "stroke": "#1f94ff", - "fill": "#1f94ff", + "stroke": "#148fff", + "fill": "#148fff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.20597, 45.506023], - [9.20597, 45.515016], - [9.218787, 45.515016], - [9.218787, 45.506023], - [9.20597, 45.506023] + [9.2099, 45.506023], + [9.2099, 45.515016], + [9.218893, 45.515016], + [9.218893, 45.506023], + [9.2099, 45.506023] ] ] } @@ -1643,19 +2273,19 @@ "type": "Feature", "properties": { "value": 32, - "stroke": "#006acc", - "fill": "#006acc", + "stroke": "#0065c2", + "fill": "#0065c2", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.20597, 45.515016], - [9.20597, 45.524009], - [9.218787, 45.524009], - [9.218787, 45.515016], - [9.20597, 45.515016] + [9.2099, 45.515016], + [9.2099, 45.524009], + [9.218893, 45.524009], + [9.218893, 45.515016], + [9.2099, 45.515016] ] ] } @@ -1663,20 +2293,20 @@ { "type": "Feature", "properties": { - "value": 37, - "stroke": "#003566", - "fill": "#003566", + "value": 36, + "stroke": "#003d75", + "fill": "#003d75", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.20597, 45.524009], - [9.20597, 45.533002], - [9.218787, 45.533002], - [9.218787, 45.524009], - [9.20597, 45.524009] + [9.2099, 45.524009], + [9.2099, 45.533002], + [9.218893, 45.533002], + [9.218893, 45.524009], + [9.2099, 45.524009] ] ] } @@ -1685,19 +2315,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#99ceff", - "fill": "#99ceff", + "stroke": "#8ac7ff", + "fill": "#8ac7ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.218787, 45.44307], - [9.218787, 45.452063], - [9.231603, 45.452063], - [9.231603, 45.44307], - [9.218787, 45.44307] + [9.218893, 45.44307], + [9.218893, 45.452063], + [9.227887, 45.452063], + [9.227887, 45.44307], + [9.218893, 45.44307] ] ] } @@ -1706,19 +2336,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#99ceff", - "fill": "#99ceff", + "stroke": "#8ac7ff", + "fill": "#8ac7ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.218787, 45.452063], - [9.218787, 45.461057], - [9.231603, 45.461057], - [9.231603, 45.452063], - [9.218787, 45.452063] + [9.218893, 45.452063], + [9.218893, 45.461057], + [9.227887, 45.461057], + [9.227887, 45.452063], + [9.218893, 45.452063] ] ] } @@ -1727,19 +2357,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#99ceff", - "fill": "#99ceff", + "stroke": "#8ac7ff", + "fill": "#8ac7ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.218787, 45.461057], - [9.218787, 45.47005], - [9.231603, 45.47005], - [9.231603, 45.461057], - [9.218787, 45.461057] + [9.218893, 45.461057], + [9.218893, 45.47005], + [9.227887, 45.47005], + [9.227887, 45.461057], + [9.218893, 45.461057] ] ] } @@ -1748,19 +2378,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#99ceff", - "fill": "#99ceff", + "stroke": "#8ac7ff", + "fill": "#8ac7ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.218787, 45.47005], - [9.218787, 45.479043], - [9.231603, 45.479043], - [9.231603, 45.47005], - [9.218787, 45.47005] + [9.218893, 45.47005], + [9.218893, 45.479043], + [9.227887, 45.479043], + [9.227887, 45.47005], + [9.218893, 45.47005] ] ] } @@ -1769,19 +2399,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#9ed1ff", + "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.218787, 45.479043], - [9.218787, 45.488036], - [9.231603, 45.488036], - [9.231603, 45.479043], - [9.218787, 45.479043] + [9.218893, 45.479043], + [9.218893, 45.488036], + [9.227887, 45.488036], + [9.227887, 45.479043], + [9.218893, 45.479043] ] ] } @@ -1789,20 +2419,20 @@ { "type": "Feature", "properties": { - "value": 19, - "stroke": "#d6ebff", - "fill": "#d6ebff", + "value": 20, + "stroke": "#b3daff", + "fill": "#b3daff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.218787, 45.488036], - [9.218787, 45.49703], - [9.231603, 45.49703], - [9.231603, 45.488036], - [9.218787, 45.488036] + [9.218893, 45.488036], + [9.218893, 45.49703], + [9.227887, 45.49703], + [9.227887, 45.488036], + [9.218893, 45.488036] ] ] } @@ -1810,20 +2440,20 @@ { "type": "Feature", "properties": { - "value": 23, - "stroke": "#85c4ff", - "fill": "#85c4ff", + "value": 24, + "stroke": "#61b3ff", + "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.218787, 45.49703], - [9.218787, 45.506023], - [9.231603, 45.506023], - [9.231603, 45.49703], - [9.218787, 45.49703] + [9.218893, 45.49703], + [9.218893, 45.506023], + [9.227887, 45.506023], + [9.227887, 45.49703], + [9.218893, 45.49703] ] ] } @@ -1832,19 +2462,19 @@ "type": "Feature", "properties": { "value": 27, - "stroke": "#339dff", - "fill": "#339dff", + "stroke": "#2999ff", + "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.218787, 45.506023], - [9.218787, 45.515016], - [9.231603, 45.515016], - [9.231603, 45.506023], - [9.218787, 45.506023] + [9.218893, 45.506023], + [9.218893, 45.515016], + [9.227887, 45.515016], + [9.227887, 45.506023], + [9.218893, 45.506023] ] ] } @@ -1853,19 +2483,19 @@ "type": "Feature", "properties": { "value": 30, - "stroke": "#0080f5", - "fill": "#0080f5", + "stroke": "#007aeb", + "fill": "#007aeb", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.218787, 45.515016], - [9.218787, 45.524009], - [9.231603, 45.524009], - [9.231603, 45.515016], - [9.218787, 45.515016] + [9.218893, 45.515016], + [9.218893, 45.524009], + [9.227887, 45.524009], + [9.227887, 45.515016], + [9.218893, 45.515016] ] ] } @@ -1873,20 +2503,20 @@ { "type": "Feature", "properties": { - "value": 33, - "stroke": "#0060b8", - "fill": "#0060b8", + "value": 34, + "stroke": "#00529e", + "fill": "#00529e", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.218787, 45.524009], - [9.218787, 45.533002], - [9.231603, 45.533002], - [9.231603, 45.524009], - [9.218787, 45.524009] + [9.218893, 45.524009], + [9.218893, 45.533002], + [9.227887, 45.533002], + [9.227887, 45.524009], + [9.218893, 45.524009] ] ] } diff --git a/packages/turf-interpolate/test/out/data-500m.geojson b/packages/turf-interpolate/test/out/data-500m.geojson index 932be882aa..c24a8fcba0 100644 --- a/packages/turf-interpolate/test/out/data-500m.geojson +++ b/packages/turf-interpolate/test/out/data-500m.geojson @@ -5,19 +5,19 @@ "type": "Feature", "properties": { "value": 16, - "stroke": "#f0f8ff", - "fill": "#f0f8ff", + "stroke": "#e5f3ff", + "fill": "#e5f3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.116251, 45.440822], - [9.116251, 45.445319], - [9.12266, 45.445319], - [9.12266, 45.440822], - [9.116251, 45.440822] + [9.11772, 45.440822], + [9.11772, 45.445319], + [9.122216, 45.445319], + [9.122216, 45.440822], + [9.11772, 45.440822] ] ] } @@ -26,19 +26,19 @@ "type": "Feature", "properties": { "value": 18, - "stroke": "#d6ebff", - "fill": "#d6ebff", + "stroke": "#c7e4ff", + "fill": "#c7e4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.116251, 45.445319], - [9.116251, 45.449815], - [9.12266, 45.449815], - [9.12266, 45.445319], - [9.116251, 45.445319] + [9.11772, 45.445319], + [9.11772, 45.449815], + [9.122216, 45.449815], + [9.122216, 45.445319], + [9.11772, 45.445319] ] ] } @@ -47,19 +47,19 @@ "type": "Feature", "properties": { "value": 18, - "stroke": "#d6ebff", - "fill": "#d6ebff", + "stroke": "#c7e4ff", + "fill": "#c7e4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.116251, 45.449815], - [9.116251, 45.454312], - [9.12266, 45.454312], - [9.12266, 45.449815], - [9.116251, 45.449815] + [9.11772, 45.449815], + [9.11772, 45.454312], + [9.122216, 45.454312], + [9.122216, 45.449815], + [9.11772, 45.449815] ] ] } @@ -68,19 +68,19 @@ "type": "Feature", "properties": { "value": 19, - "stroke": "#c7e4ff", - "fill": "#c7e4ff", + "stroke": "#bddfff", + "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.116251, 45.454312], - [9.116251, 45.458808], - [9.12266, 45.458808], - [9.12266, 45.454312], - [9.116251, 45.454312] + [9.11772, 45.454312], + [9.11772, 45.458808], + [9.122216, 45.458808], + [9.122216, 45.454312], + [9.11772, 45.454312] ] ] } @@ -89,19 +89,19 @@ "type": "Feature", "properties": { "value": 19, - "stroke": "#c7e4ff", - "fill": "#c7e4ff", + "stroke": "#bddfff", + "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.116251, 45.458808], - [9.116251, 45.463305], - [9.12266, 45.463305], - [9.12266, 45.458808], - [9.116251, 45.458808] + [9.11772, 45.458808], + [9.11772, 45.463305], + [9.122216, 45.463305], + [9.122216, 45.458808], + [9.11772, 45.458808] ] ] } @@ -110,19 +110,19 @@ "type": "Feature", "properties": { "value": 20, - "stroke": "#b8ddff", - "fill": "#b8ddff", + "stroke": "#add8ff", + "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.116251, 45.463305], - [9.116251, 45.467802], - [9.12266, 45.467802], - [9.12266, 45.463305], - [9.116251, 45.463305] + [9.11772, 45.463305], + [9.11772, 45.467802], + [9.122216, 45.467802], + [9.122216, 45.463305], + [9.11772, 45.463305] ] ] } @@ -131,19 +131,19 @@ "type": "Feature", "properties": { "value": 20, - "stroke": "#b8ddff", - "fill": "#b8ddff", + "stroke": "#add8ff", + "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.116251, 45.467802], - [9.116251, 45.472298], - [9.12266, 45.472298], - [9.12266, 45.467802], - [9.116251, 45.467802] + [9.11772, 45.467802], + [9.11772, 45.472298], + [9.122216, 45.472298], + [9.122216, 45.467802], + [9.11772, 45.467802] ] ] } @@ -152,19 +152,19 @@ "type": "Feature", "properties": { "value": 20, - "stroke": "#b8ddff", - "fill": "#b8ddff", + "stroke": "#add8ff", + "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.116251, 45.472298], - [9.116251, 45.476795], - [9.12266, 45.476795], - [9.12266, 45.472298], - [9.116251, 45.472298] + [9.11772, 45.472298], + [9.11772, 45.476795], + [9.122216, 45.476795], + [9.122216, 45.472298], + [9.11772, 45.472298] ] ] } @@ -173,19 +173,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.116251, 45.476795], - [9.116251, 45.481291], - [9.12266, 45.481291], - [9.12266, 45.476795], - [9.116251, 45.476795] + [9.11772, 45.476795], + [9.11772, 45.481291], + [9.122216, 45.481291], + [9.122216, 45.476795], + [9.11772, 45.476795] ] ] } @@ -194,19 +194,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.116251, 45.481291], - [9.116251, 45.485788], - [9.12266, 45.485788], - [9.12266, 45.481291], - [9.116251, 45.481291] + [9.11772, 45.481291], + [9.11772, 45.485788], + [9.122216, 45.485788], + [9.122216, 45.481291], + [9.11772, 45.481291] ] ] } @@ -215,19 +215,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.116251, 45.485788], - [9.116251, 45.490285], - [9.12266, 45.490285], - [9.12266, 45.485788], - [9.116251, 45.485788] + [9.11772, 45.485788], + [9.11772, 45.490285], + [9.122216, 45.490285], + [9.122216, 45.485788], + [9.11772, 45.485788] ] ] } @@ -236,19 +236,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.116251, 45.490285], - [9.116251, 45.494781], - [9.12266, 45.494781], - [9.12266, 45.490285], - [9.116251, 45.490285] + [9.11772, 45.490285], + [9.11772, 45.494781], + [9.122216, 45.494781], + [9.122216, 45.490285], + [9.11772, 45.490285] ] ] } @@ -257,19 +257,19 @@ "type": "Feature", "properties": { "value": 23, - "stroke": "#8fc9ff", - "fill": "#8fc9ff", + "stroke": "#85c4ff", + "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.116251, 45.494781], - [9.116251, 45.499278], - [9.12266, 45.499278], - [9.12266, 45.494781], - [9.116251, 45.494781] + [9.11772, 45.494781], + [9.11772, 45.499278], + [9.122216, 45.499278], + [9.122216, 45.494781], + [9.11772, 45.494781] ] ] } @@ -278,19 +278,19 @@ "type": "Feature", "properties": { "value": 24, - "stroke": "#85c4ff", - "fill": "#85c4ff", + "stroke": "#7ac0ff", + "fill": "#7ac0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.116251, 45.499278], - [9.116251, 45.503774], - [9.12266, 45.503774], - [9.12266, 45.499278], - [9.116251, 45.499278] + [9.11772, 45.499278], + [9.11772, 45.503774], + [9.122216, 45.503774], + [9.122216, 45.499278], + [9.11772, 45.499278] ] ] } @@ -299,19 +299,19 @@ "type": "Feature", "properties": { "value": 24, - "stroke": "#85c4ff", - "fill": "#85c4ff", + "stroke": "#7ac0ff", + "fill": "#7ac0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.116251, 45.503774], - [9.116251, 45.508271], - [9.12266, 45.508271], - [9.12266, 45.503774], - [9.116251, 45.503774] + [9.11772, 45.503774], + [9.11772, 45.508271], + [9.122216, 45.508271], + [9.122216, 45.503774], + [9.11772, 45.503774] ] ] } @@ -320,19 +320,19 @@ "type": "Feature", "properties": { "value": 25, - "stroke": "#75bdff", - "fill": "#75bdff", + "stroke": "#6bb8ff", + "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.116251, 45.508271], - [9.116251, 45.512768], - [9.12266, 45.512768], - [9.12266, 45.508271], - [9.116251, 45.508271] + [9.11772, 45.508271], + [9.11772, 45.512768], + [9.122216, 45.512768], + [9.122216, 45.508271], + [9.11772, 45.508271] ] ] } @@ -340,20 +340,20 @@ { "type": "Feature", "properties": { - "value": 25, - "stroke": "#75bdff", - "fill": "#75bdff", + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.116251, 45.512768], - [9.116251, 45.517264], - [9.12266, 45.517264], - [9.12266, 45.512768], - [9.116251, 45.512768] + [9.11772, 45.512768], + [9.11772, 45.517264], + [9.122216, 45.517264], + [9.122216, 45.512768], + [9.11772, 45.512768] ] ] } @@ -362,19 +362,19 @@ "type": "Feature", "properties": { "value": 26, - "stroke": "#66b6ff", - "fill": "#66b6ff", + "stroke": "#5cb1ff", + "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.116251, 45.517264], - [9.116251, 45.521761], - [9.12266, 45.521761], - [9.12266, 45.517264], - [9.116251, 45.517264] + [9.11772, 45.517264], + [9.11772, 45.521761], + [9.122216, 45.521761], + [9.122216, 45.517264], + [9.11772, 45.517264] ] ] } @@ -383,19 +383,19 @@ "type": "Feature", "properties": { "value": 27, - "stroke": "#5cb1ff", - "fill": "#5cb1ff", + "stroke": "#52acff", + "fill": "#52acff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.116251, 45.521761], - [9.116251, 45.526257], - [9.12266, 45.526257], - [9.12266, 45.521761], - [9.116251, 45.521761] + [9.11772, 45.521761], + [9.11772, 45.526257], + [9.122216, 45.526257], + [9.122216, 45.521761], + [9.11772, 45.521761] ] ] } @@ -404,19 +404,19 @@ "type": "Feature", "properties": { "value": 27, - "stroke": "#5cb1ff", - "fill": "#5cb1ff", + "stroke": "#52acff", + "fill": "#52acff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.116251, 45.526257], - [9.116251, 45.530754], - [9.12266, 45.530754], - [9.12266, 45.526257], - [9.116251, 45.526257] + [9.11772, 45.526257], + [9.11772, 45.530754], + [9.122216, 45.530754], + [9.122216, 45.526257], + [9.11772, 45.526257] ] ] } @@ -425,19 +425,19 @@ "type": "Feature", "properties": { "value": 28, - "stroke": "#4daaff", - "fill": "#4daaff", + "stroke": "#42a5ff", + "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.116251, 45.530754], - [9.116251, 45.535251], - [9.12266, 45.535251], - [9.12266, 45.530754], - [9.116251, 45.530754] + [9.11772, 45.530754], + [9.11772, 45.535251], + [9.122216, 45.535251], + [9.122216, 45.530754], + [9.11772, 45.530754] ] ] } @@ -446,19 +446,19 @@ "type": "Feature", "properties": { "value": 17, - "stroke": "#e5f3ff", - "fill": "#e5f3ff", + "stroke": "#d6ebff", + "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.12266, 45.440822], - [9.12266, 45.445319], - [9.129068, 45.445319], - [9.129068, 45.440822], - [9.12266, 45.440822] + [9.122216, 45.440822], + [9.122216, 45.445319], + [9.126713, 45.445319], + [9.126713, 45.440822], + [9.122216, 45.440822] ] ] } @@ -467,19 +467,19 @@ "type": "Feature", "properties": { "value": 18, - "stroke": "#d6ebff", - "fill": "#d6ebff", + "stroke": "#c7e4ff", + "fill": "#c7e4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.12266, 45.445319], - [9.12266, 45.449815], - [9.129068, 45.449815], - [9.129068, 45.445319], - [9.12266, 45.445319] + [9.122216, 45.445319], + [9.122216, 45.449815], + [9.126713, 45.449815], + [9.126713, 45.445319], + [9.122216, 45.445319] ] ] } @@ -488,19 +488,19 @@ "type": "Feature", "properties": { "value": 18, - "stroke": "#d6ebff", - "fill": "#d6ebff", + "stroke": "#c7e4ff", + "fill": "#c7e4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.12266, 45.449815], - [9.12266, 45.454312], - [9.129068, 45.454312], - [9.129068, 45.449815], - [9.12266, 45.449815] + [9.122216, 45.449815], + [9.122216, 45.454312], + [9.126713, 45.454312], + [9.126713, 45.449815], + [9.122216, 45.449815] ] ] } @@ -509,19 +509,19 @@ "type": "Feature", "properties": { "value": 19, - "stroke": "#c7e4ff", - "fill": "#c7e4ff", + "stroke": "#bddfff", + "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.12266, 45.454312], - [9.12266, 45.458808], - [9.129068, 45.458808], - [9.129068, 45.454312], - [9.12266, 45.454312] + [9.122216, 45.454312], + [9.122216, 45.458808], + [9.126713, 45.458808], + [9.126713, 45.454312], + [9.122216, 45.454312] ] ] } @@ -530,19 +530,19 @@ "type": "Feature", "properties": { "value": 19, - "stroke": "#c7e4ff", - "fill": "#c7e4ff", + "stroke": "#bddfff", + "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.12266, 45.458808], - [9.12266, 45.463305], - [9.129068, 45.463305], - [9.129068, 45.458808], - [9.12266, 45.458808] + [9.122216, 45.458808], + [9.122216, 45.463305], + [9.126713, 45.463305], + [9.126713, 45.458808], + [9.122216, 45.458808] ] ] } @@ -550,20 +550,20 @@ { "type": "Feature", "properties": { - "value": 19, - "stroke": "#c7e4ff", - "fill": "#c7e4ff", + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.12266, 45.463305], - [9.12266, 45.467802], - [9.129068, 45.467802], - [9.129068, 45.463305], - [9.12266, 45.463305] + [9.122216, 45.463305], + [9.122216, 45.467802], + [9.126713, 45.467802], + [9.126713, 45.463305], + [9.122216, 45.463305] ] ] } @@ -572,19 +572,19 @@ "type": "Feature", "properties": { "value": 20, - "stroke": "#b8ddff", - "fill": "#b8ddff", + "stroke": "#add8ff", + "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.12266, 45.467802], - [9.12266, 45.472298], - [9.129068, 45.472298], - [9.129068, 45.467802], - [9.12266, 45.467802] + [9.122216, 45.467802], + [9.122216, 45.472298], + [9.126713, 45.472298], + [9.126713, 45.467802], + [9.122216, 45.467802] ] ] } @@ -593,19 +593,19 @@ "type": "Feature", "properties": { "value": 20, - "stroke": "#b8ddff", - "fill": "#b8ddff", + "stroke": "#add8ff", + "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.12266, 45.472298], - [9.12266, 45.476795], - [9.129068, 45.476795], - [9.129068, 45.472298], - [9.12266, 45.472298] + [9.122216, 45.472298], + [9.122216, 45.476795], + [9.126713, 45.476795], + [9.126713, 45.472298], + [9.122216, 45.472298] ] ] } @@ -614,19 +614,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.12266, 45.476795], - [9.12266, 45.481291], - [9.129068, 45.481291], - [9.129068, 45.476795], - [9.12266, 45.476795] + [9.122216, 45.476795], + [9.122216, 45.481291], + [9.126713, 45.481291], + [9.126713, 45.476795], + [9.122216, 45.476795] ] ] } @@ -635,19 +635,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.12266, 45.481291], - [9.12266, 45.485788], - [9.129068, 45.485788], - [9.129068, 45.481291], - [9.12266, 45.481291] + [9.122216, 45.481291], + [9.122216, 45.485788], + [9.126713, 45.485788], + [9.126713, 45.481291], + [9.122216, 45.481291] ] ] } @@ -656,19 +656,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.12266, 45.485788], - [9.12266, 45.490285], - [9.129068, 45.490285], - [9.129068, 45.485788], - [9.12266, 45.485788] + [9.122216, 45.485788], + [9.122216, 45.490285], + [9.126713, 45.490285], + [9.126713, 45.485788], + [9.122216, 45.485788] ] ] } @@ -677,19 +677,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.12266, 45.490285], - [9.12266, 45.494781], - [9.129068, 45.494781], - [9.129068, 45.490285], - [9.12266, 45.490285] + [9.122216, 45.490285], + [9.122216, 45.494781], + [9.126713, 45.494781], + [9.126713, 45.490285], + [9.122216, 45.490285] ] ] } @@ -698,19 +698,19 @@ "type": "Feature", "properties": { "value": 23, - "stroke": "#8fc9ff", - "fill": "#8fc9ff", + "stroke": "#85c4ff", + "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.12266, 45.494781], - [9.12266, 45.499278], - [9.129068, 45.499278], - [9.129068, 45.494781], - [9.12266, 45.494781] + [9.122216, 45.494781], + [9.122216, 45.499278], + [9.126713, 45.499278], + [9.126713, 45.494781], + [9.122216, 45.494781] ] ] } @@ -719,19 +719,19 @@ "type": "Feature", "properties": { "value": 24, - "stroke": "#85c4ff", - "fill": "#85c4ff", + "stroke": "#7ac0ff", + "fill": "#7ac0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.12266, 45.499278], - [9.12266, 45.503774], - [9.129068, 45.503774], - [9.129068, 45.499278], - [9.12266, 45.499278] + [9.122216, 45.499278], + [9.122216, 45.503774], + [9.126713, 45.503774], + [9.126713, 45.499278], + [9.122216, 45.499278] ] ] } @@ -740,19 +740,19 @@ "type": "Feature", "properties": { "value": 24, - "stroke": "#85c4ff", - "fill": "#85c4ff", + "stroke": "#7ac0ff", + "fill": "#7ac0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.12266, 45.503774], - [9.12266, 45.508271], - [9.129068, 45.508271], - [9.129068, 45.503774], - [9.12266, 45.503774] + [9.122216, 45.503774], + [9.122216, 45.508271], + [9.126713, 45.508271], + [9.126713, 45.503774], + [9.122216, 45.503774] ] ] } @@ -761,19 +761,19 @@ "type": "Feature", "properties": { "value": 25, - "stroke": "#75bdff", - "fill": "#75bdff", + "stroke": "#6bb8ff", + "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.12266, 45.508271], - [9.12266, 45.512768], - [9.129068, 45.512768], - [9.129068, 45.508271], - [9.12266, 45.508271] + [9.122216, 45.508271], + [9.122216, 45.512768], + [9.126713, 45.512768], + [9.126713, 45.508271], + [9.122216, 45.508271] ] ] } @@ -782,19 +782,19 @@ "type": "Feature", "properties": { "value": 26, - "stroke": "#66b6ff", - "fill": "#66b6ff", + "stroke": "#5cb1ff", + "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.12266, 45.512768], - [9.12266, 45.517264], - [9.129068, 45.517264], - [9.129068, 45.512768], - [9.12266, 45.512768] + [9.122216, 45.512768], + [9.122216, 45.517264], + [9.126713, 45.517264], + [9.126713, 45.512768], + [9.122216, 45.512768] ] ] } @@ -803,19 +803,19 @@ "type": "Feature", "properties": { "value": 26, - "stroke": "#66b6ff", - "fill": "#66b6ff", + "stroke": "#5cb1ff", + "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.12266, 45.517264], - [9.12266, 45.521761], - [9.129068, 45.521761], - [9.129068, 45.517264], - [9.12266, 45.517264] + [9.122216, 45.517264], + [9.122216, 45.521761], + [9.126713, 45.521761], + [9.126713, 45.517264], + [9.122216, 45.517264] ] ] } @@ -824,19 +824,19 @@ "type": "Feature", "properties": { "value": 27, - "stroke": "#5cb1ff", - "fill": "#5cb1ff", + "stroke": "#52acff", + "fill": "#52acff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.12266, 45.521761], - [9.12266, 45.526257], - [9.129068, 45.526257], - [9.129068, 45.521761], - [9.12266, 45.521761] + [9.122216, 45.521761], + [9.122216, 45.526257], + [9.126713, 45.526257], + [9.126713, 45.521761], + [9.122216, 45.521761] ] ] } @@ -844,20 +844,20 @@ { "type": "Feature", "properties": { - "value": 28, - "stroke": "#4daaff", - "fill": "#4daaff", + "value": 27, + "stroke": "#52acff", + "fill": "#52acff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.12266, 45.526257], - [9.12266, 45.530754], - [9.129068, 45.530754], - [9.129068, 45.526257], - [9.12266, 45.526257] + [9.122216, 45.526257], + [9.122216, 45.530754], + [9.126713, 45.530754], + [9.126713, 45.526257], + [9.122216, 45.526257] ] ] } @@ -866,19 +866,19 @@ "type": "Feature", "properties": { "value": 28, - "stroke": "#4daaff", - "fill": "#4daaff", + "stroke": "#42a5ff", + "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.12266, 45.530754], - [9.12266, 45.535251], - [9.129068, 45.535251], - [9.129068, 45.530754], - [9.12266, 45.530754] + [9.122216, 45.530754], + [9.122216, 45.535251], + [9.126713, 45.535251], + [9.126713, 45.530754], + [9.122216, 45.530754] ] ] } @@ -887,19 +887,19 @@ "type": "Feature", "properties": { "value": 18, - "stroke": "#d6ebff", - "fill": "#d6ebff", + "stroke": "#c7e4ff", + "fill": "#c7e4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.129068, 45.440822], - [9.129068, 45.445319], - [9.135477, 45.445319], - [9.135477, 45.440822], - [9.129068, 45.440822] + [9.126713, 45.440822], + [9.126713, 45.445319], + [9.13121, 45.445319], + [9.13121, 45.440822], + [9.126713, 45.440822] ] ] } @@ -908,19 +908,19 @@ "type": "Feature", "properties": { "value": 18, - "stroke": "#d6ebff", - "fill": "#d6ebff", + "stroke": "#c7e4ff", + "fill": "#c7e4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.129068, 45.445319], - [9.129068, 45.449815], - [9.135477, 45.449815], - [9.135477, 45.445319], - [9.129068, 45.445319] + [9.126713, 45.445319], + [9.126713, 45.449815], + [9.13121, 45.449815], + [9.13121, 45.445319], + [9.126713, 45.445319] ] ] } @@ -929,19 +929,19 @@ "type": "Feature", "properties": { "value": 19, - "stroke": "#c7e4ff", - "fill": "#c7e4ff", + "stroke": "#bddfff", + "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.129068, 45.449815], - [9.129068, 45.454312], - [9.135477, 45.454312], - [9.135477, 45.449815], - [9.129068, 45.449815] + [9.126713, 45.449815], + [9.126713, 45.454312], + [9.13121, 45.454312], + [9.13121, 45.449815], + [9.126713, 45.449815] ] ] } @@ -950,19 +950,19 @@ "type": "Feature", "properties": { "value": 19, - "stroke": "#c7e4ff", - "fill": "#c7e4ff", + "stroke": "#bddfff", + "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.129068, 45.454312], - [9.129068, 45.458808], - [9.135477, 45.458808], - [9.135477, 45.454312], - [9.129068, 45.454312] + [9.126713, 45.454312], + [9.126713, 45.458808], + [9.13121, 45.458808], + [9.13121, 45.454312], + [9.126713, 45.454312] ] ] } @@ -971,19 +971,19 @@ "type": "Feature", "properties": { "value": 19, - "stroke": "#c7e4ff", - "fill": "#c7e4ff", + "stroke": "#bddfff", + "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.129068, 45.458808], - [9.129068, 45.463305], - [9.135477, 45.463305], - [9.135477, 45.458808], - [9.129068, 45.458808] + [9.126713, 45.458808], + [9.126713, 45.463305], + [9.13121, 45.463305], + [9.13121, 45.458808], + [9.126713, 45.458808] ] ] } @@ -992,19 +992,19 @@ "type": "Feature", "properties": { "value": 19, - "stroke": "#c7e4ff", - "fill": "#c7e4ff", + "stroke": "#bddfff", + "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.129068, 45.463305], - [9.129068, 45.467802], - [9.135477, 45.467802], - [9.135477, 45.463305], - [9.129068, 45.463305] + [9.126713, 45.463305], + [9.126713, 45.467802], + [9.13121, 45.467802], + [9.13121, 45.463305], + [9.126713, 45.463305] ] ] } @@ -1012,20 +1012,20 @@ { "type": "Feature", "properties": { - "value": 19, - "stroke": "#c7e4ff", - "fill": "#c7e4ff", + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.129068, 45.467802], - [9.129068, 45.472298], - [9.135477, 45.472298], - [9.135477, 45.467802], - [9.129068, 45.467802] + [9.126713, 45.467802], + [9.126713, 45.472298], + [9.13121, 45.472298], + [9.13121, 45.467802], + [9.126713, 45.467802] ] ] } @@ -1034,19 +1034,19 @@ "type": "Feature", "properties": { "value": 20, - "stroke": "#b8ddff", - "fill": "#b8ddff", + "stroke": "#add8ff", + "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.129068, 45.472298], - [9.129068, 45.476795], - [9.135477, 45.476795], - [9.135477, 45.472298], - [9.129068, 45.472298] + [9.126713, 45.472298], + [9.126713, 45.476795], + [9.13121, 45.476795], + [9.13121, 45.472298], + [9.126713, 45.472298] ] ] } @@ -1055,19 +1055,19 @@ "type": "Feature", "properties": { "value": 20, - "stroke": "#b8ddff", - "fill": "#b8ddff", + "stroke": "#add8ff", + "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.129068, 45.476795], - [9.129068, 45.481291], - [9.135477, 45.481291], - [9.135477, 45.476795], - [9.129068, 45.476795] + [9.126713, 45.476795], + [9.126713, 45.481291], + [9.13121, 45.481291], + [9.13121, 45.476795], + [9.126713, 45.476795] ] ] } @@ -1076,19 +1076,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.129068, 45.481291], - [9.129068, 45.485788], - [9.135477, 45.485788], - [9.135477, 45.481291], - [9.129068, 45.481291] + [9.126713, 45.481291], + [9.126713, 45.485788], + [9.13121, 45.485788], + [9.13121, 45.481291], + [9.126713, 45.481291] ] ] } @@ -1096,20 +1096,20 @@ { "type": "Feature", "properties": { - "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "value": 22, + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.129068, 45.485788], - [9.129068, 45.490285], - [9.135477, 45.490285], - [9.135477, 45.485788], - [9.129068, 45.485788] + [9.126713, 45.485788], + [9.126713, 45.490285], + [9.13121, 45.490285], + [9.13121, 45.485788], + [9.126713, 45.485788] ] ] } @@ -1118,19 +1118,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.129068, 45.490285], - [9.129068, 45.494781], - [9.135477, 45.494781], - [9.135477, 45.490285], - [9.129068, 45.490285] + [9.126713, 45.490285], + [9.126713, 45.494781], + [9.13121, 45.494781], + [9.13121, 45.490285], + [9.126713, 45.490285] ] ] } @@ -1139,19 +1139,19 @@ "type": "Feature", "properties": { "value": 23, - "stroke": "#8fc9ff", - "fill": "#8fc9ff", + "stroke": "#85c4ff", + "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.129068, 45.494781], - [9.129068, 45.499278], - [9.135477, 45.499278], - [9.135477, 45.494781], - [9.129068, 45.494781] + [9.126713, 45.494781], + [9.126713, 45.499278], + [9.13121, 45.499278], + [9.13121, 45.494781], + [9.126713, 45.494781] ] ] } @@ -1160,19 +1160,19 @@ "type": "Feature", "properties": { "value": 24, - "stroke": "#85c4ff", - "fill": "#85c4ff", + "stroke": "#7ac0ff", + "fill": "#7ac0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.129068, 45.499278], - [9.129068, 45.503774], - [9.135477, 45.503774], - [9.135477, 45.499278], - [9.129068, 45.499278] + [9.126713, 45.499278], + [9.126713, 45.503774], + [9.13121, 45.503774], + [9.13121, 45.499278], + [9.126713, 45.499278] ] ] } @@ -1181,19 +1181,19 @@ "type": "Feature", "properties": { "value": 24, - "stroke": "#85c4ff", - "fill": "#85c4ff", + "stroke": "#7ac0ff", + "fill": "#7ac0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.129068, 45.503774], - [9.129068, 45.508271], - [9.135477, 45.508271], - [9.135477, 45.503774], - [9.129068, 45.503774] + [9.126713, 45.503774], + [9.126713, 45.508271], + [9.13121, 45.508271], + [9.13121, 45.503774], + [9.126713, 45.503774] ] ] } @@ -1202,19 +1202,19 @@ "type": "Feature", "properties": { "value": 25, - "stroke": "#75bdff", - "fill": "#75bdff", + "stroke": "#6bb8ff", + "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.129068, 45.508271], - [9.129068, 45.512768], - [9.135477, 45.512768], - [9.135477, 45.508271], - [9.129068, 45.508271] + [9.126713, 45.508271], + [9.126713, 45.512768], + [9.13121, 45.512768], + [9.13121, 45.508271], + [9.126713, 45.508271] ] ] } @@ -1223,19 +1223,19 @@ "type": "Feature", "properties": { "value": 26, - "stroke": "#66b6ff", - "fill": "#66b6ff", + "stroke": "#5cb1ff", + "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.129068, 45.512768], - [9.129068, 45.517264], - [9.135477, 45.517264], - [9.135477, 45.512768], - [9.129068, 45.512768] + [9.126713, 45.512768], + [9.126713, 45.517264], + [9.13121, 45.517264], + [9.13121, 45.512768], + [9.126713, 45.512768] ] ] } @@ -1243,7 +1243,7 @@ { "type": "Feature", "properties": { - "value": 27, + "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 @@ -1252,11 +1252,11 @@ "type": "Polygon", "coordinates": [ [ - [9.129068, 45.517264], - [9.129068, 45.521761], - [9.135477, 45.521761], - [9.135477, 45.517264], - [9.129068, 45.517264] + [9.126713, 45.517264], + [9.126713, 45.521761], + [9.13121, 45.521761], + [9.13121, 45.517264], + [9.126713, 45.517264] ] ] } @@ -1265,19 +1265,19 @@ "type": "Feature", "properties": { "value": 27, - "stroke": "#5cb1ff", - "fill": "#5cb1ff", + "stroke": "#52acff", + "fill": "#52acff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.129068, 45.521761], - [9.129068, 45.526257], - [9.135477, 45.526257], - [9.135477, 45.521761], - [9.129068, 45.521761] + [9.126713, 45.521761], + [9.126713, 45.526257], + [9.13121, 45.526257], + [9.13121, 45.521761], + [9.126713, 45.521761] ] ] } @@ -1286,19 +1286,19 @@ "type": "Feature", "properties": { "value": 28, - "stroke": "#4daaff", - "fill": "#4daaff", + "stroke": "#42a5ff", + "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.129068, 45.526257], - [9.129068, 45.530754], - [9.135477, 45.530754], - [9.135477, 45.526257], - [9.129068, 45.526257] + [9.126713, 45.526257], + [9.126713, 45.530754], + [9.13121, 45.530754], + [9.13121, 45.526257], + [9.126713, 45.526257] ] ] } @@ -1306,20 +1306,20 @@ { "type": "Feature", "properties": { - "value": 29, - "stroke": "#3da2ff", - "fill": "#3da2ff", + "value": 28, + "stroke": "#42a5ff", + "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.129068, 45.530754], - [9.129068, 45.535251], - [9.135477, 45.535251], - [9.135477, 45.530754], - [9.129068, 45.530754] + [9.126713, 45.530754], + [9.126713, 45.535251], + [9.13121, 45.535251], + [9.13121, 45.530754], + [9.126713, 45.530754] ] ] } @@ -1327,7 +1327,7 @@ { "type": "Feature", "properties": { - "value": 19, + "value": 18, "stroke": "#c7e4ff", "fill": "#c7e4ff", "fill-opacity": 0.85 @@ -1336,11 +1336,11 @@ "type": "Polygon", "coordinates": [ [ - [9.135477, 45.440822], - [9.135477, 45.445319], - [9.141885, 45.445319], - [9.141885, 45.440822], - [9.135477, 45.440822] + [9.13121, 45.440822], + [9.13121, 45.445319], + [9.135706, 45.445319], + [9.135706, 45.440822], + [9.13121, 45.440822] ] ] } @@ -1348,7 +1348,7 @@ { "type": "Feature", "properties": { - "value": 19, + "value": 18, "stroke": "#c7e4ff", "fill": "#c7e4ff", "fill-opacity": 0.85 @@ -1357,11 +1357,11 @@ "type": "Polygon", "coordinates": [ [ - [9.135477, 45.445319], - [9.135477, 45.449815], - [9.141885, 45.449815], - [9.141885, 45.445319], - [9.135477, 45.445319] + [9.13121, 45.445319], + [9.13121, 45.449815], + [9.135706, 45.449815], + [9.135706, 45.445319], + [9.13121, 45.445319] ] ] } @@ -1370,19 +1370,19 @@ "type": "Feature", "properties": { "value": 19, - "stroke": "#c7e4ff", - "fill": "#c7e4ff", + "stroke": "#bddfff", + "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.135477, 45.449815], - [9.135477, 45.454312], - [9.141885, 45.454312], - [9.141885, 45.449815], - [9.135477, 45.449815] + [9.13121, 45.449815], + [9.13121, 45.454312], + [9.135706, 45.454312], + [9.135706, 45.449815], + [9.13121, 45.449815] ] ] } @@ -1391,19 +1391,19 @@ "type": "Feature", "properties": { "value": 19, - "stroke": "#c7e4ff", - "fill": "#c7e4ff", + "stroke": "#bddfff", + "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.135477, 45.454312], - [9.135477, 45.458808], - [9.141885, 45.458808], - [9.141885, 45.454312], - [9.135477, 45.454312] + [9.13121, 45.454312], + [9.13121, 45.458808], + [9.135706, 45.458808], + [9.135706, 45.454312], + [9.13121, 45.454312] ] ] } @@ -1412,19 +1412,19 @@ "type": "Feature", "properties": { "value": 19, - "stroke": "#c7e4ff", - "fill": "#c7e4ff", + "stroke": "#bddfff", + "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.135477, 45.458808], - [9.135477, 45.463305], - [9.141885, 45.463305], - [9.141885, 45.458808], - [9.135477, 45.458808] + [9.13121, 45.458808], + [9.13121, 45.463305], + [9.135706, 45.463305], + [9.135706, 45.458808], + [9.13121, 45.458808] ] ] } @@ -1433,19 +1433,19 @@ "type": "Feature", "properties": { "value": 19, - "stroke": "#c7e4ff", - "fill": "#c7e4ff", + "stroke": "#bddfff", + "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.135477, 45.463305], - [9.135477, 45.467802], - [9.141885, 45.467802], - [9.141885, 45.463305], - [9.135477, 45.463305] + [9.13121, 45.463305], + [9.13121, 45.467802], + [9.135706, 45.467802], + [9.135706, 45.463305], + [9.13121, 45.463305] ] ] } @@ -1454,19 +1454,19 @@ "type": "Feature", "properties": { "value": 19, - "stroke": "#c7e4ff", - "fill": "#c7e4ff", + "stroke": "#bddfff", + "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.135477, 45.467802], - [9.135477, 45.472298], - [9.141885, 45.472298], - [9.141885, 45.467802], - [9.135477, 45.467802] + [9.13121, 45.467802], + [9.13121, 45.472298], + [9.135706, 45.472298], + [9.135706, 45.467802], + [9.13121, 45.467802] ] ] } @@ -1474,20 +1474,20 @@ { "type": "Feature", "properties": { - "value": 19, - "stroke": "#c7e4ff", - "fill": "#c7e4ff", + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.135477, 45.472298], - [9.135477, 45.476795], - [9.141885, 45.476795], - [9.141885, 45.472298], - [9.135477, 45.472298] + [9.13121, 45.472298], + [9.13121, 45.476795], + [9.135706, 45.476795], + [9.135706, 45.472298], + [9.13121, 45.472298] ] ] } @@ -1496,19 +1496,19 @@ "type": "Feature", "properties": { "value": 20, - "stroke": "#b8ddff", - "fill": "#b8ddff", + "stroke": "#add8ff", + "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.135477, 45.476795], - [9.135477, 45.481291], - [9.141885, 45.481291], - [9.141885, 45.476795], - [9.135477, 45.476795] + [9.13121, 45.476795], + [9.13121, 45.481291], + [9.135706, 45.481291], + [9.135706, 45.476795], + [9.13121, 45.476795] ] ] } @@ -1516,20 +1516,20 @@ { "type": "Feature", "properties": { - "value": 20, - "stroke": "#b8ddff", - "fill": "#b8ddff", + "value": 21, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.135477, 45.481291], - [9.135477, 45.485788], - [9.141885, 45.485788], - [9.141885, 45.481291], - [9.135477, 45.481291] + [9.13121, 45.481291], + [9.13121, 45.485788], + [9.135706, 45.485788], + [9.135706, 45.481291], + [9.13121, 45.481291] ] ] } @@ -1538,19 +1538,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.135477, 45.485788], - [9.135477, 45.490285], - [9.141885, 45.490285], - [9.141885, 45.485788], - [9.135477, 45.485788] + [9.13121, 45.485788], + [9.13121, 45.490285], + [9.135706, 45.490285], + [9.135706, 45.485788], + [9.13121, 45.485788] ] ] } @@ -1559,19 +1559,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.135477, 45.490285], - [9.135477, 45.494781], - [9.141885, 45.494781], - [9.141885, 45.490285], - [9.135477, 45.490285] + [9.13121, 45.490285], + [9.13121, 45.494781], + [9.135706, 45.494781], + [9.135706, 45.490285], + [9.13121, 45.490285] ] ] } @@ -1580,19 +1580,19 @@ "type": "Feature", "properties": { "value": 23, - "stroke": "#8fc9ff", - "fill": "#8fc9ff", + "stroke": "#85c4ff", + "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.135477, 45.494781], - [9.135477, 45.499278], - [9.141885, 45.499278], - [9.141885, 45.494781], - [9.135477, 45.494781] + [9.13121, 45.494781], + [9.13121, 45.499278], + [9.135706, 45.499278], + [9.135706, 45.494781], + [9.13121, 45.494781] ] ] } @@ -1601,19 +1601,19 @@ "type": "Feature", "properties": { "value": 24, - "stroke": "#85c4ff", - "fill": "#85c4ff", + "stroke": "#7ac0ff", + "fill": "#7ac0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.135477, 45.499278], - [9.135477, 45.503774], - [9.141885, 45.503774], - [9.141885, 45.499278], - [9.135477, 45.499278] + [9.13121, 45.499278], + [9.13121, 45.503774], + [9.135706, 45.503774], + [9.135706, 45.499278], + [9.13121, 45.499278] ] ] } @@ -1622,19 +1622,19 @@ "type": "Feature", "properties": { "value": 24, - "stroke": "#85c4ff", - "fill": "#85c4ff", + "stroke": "#7ac0ff", + "fill": "#7ac0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.135477, 45.503774], - [9.135477, 45.508271], - [9.141885, 45.508271], - [9.141885, 45.503774], - [9.135477, 45.503774] + [9.13121, 45.503774], + [9.13121, 45.508271], + [9.135706, 45.508271], + [9.135706, 45.503774], + [9.13121, 45.503774] ] ] } @@ -1643,19 +1643,19 @@ "type": "Feature", "properties": { "value": 25, - "stroke": "#75bdff", - "fill": "#75bdff", + "stroke": "#6bb8ff", + "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.135477, 45.508271], - [9.135477, 45.512768], - [9.141885, 45.512768], - [9.141885, 45.508271], - [9.135477, 45.508271] + [9.13121, 45.508271], + [9.13121, 45.512768], + [9.135706, 45.512768], + [9.135706, 45.508271], + [9.13121, 45.508271] ] ] } @@ -1664,19 +1664,19 @@ "type": "Feature", "properties": { "value": 26, - "stroke": "#66b6ff", - "fill": "#66b6ff", + "stroke": "#5cb1ff", + "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.135477, 45.512768], - [9.135477, 45.517264], - [9.141885, 45.517264], - [9.141885, 45.512768], - [9.135477, 45.512768] + [9.13121, 45.512768], + [9.13121, 45.517264], + [9.135706, 45.517264], + [9.135706, 45.512768], + [9.13121, 45.512768] ] ] } @@ -1685,19 +1685,19 @@ "type": "Feature", "properties": { "value": 27, - "stroke": "#5cb1ff", - "fill": "#5cb1ff", + "stroke": "#52acff", + "fill": "#52acff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.135477, 45.517264], - [9.135477, 45.521761], - [9.141885, 45.521761], - [9.141885, 45.517264], - [9.135477, 45.517264] + [9.13121, 45.517264], + [9.13121, 45.521761], + [9.135706, 45.521761], + [9.135706, 45.517264], + [9.13121, 45.517264] ] ] } @@ -1705,20 +1705,20 @@ { "type": "Feature", "properties": { - "value": 28, - "stroke": "#4daaff", - "fill": "#4daaff", + "value": 27, + "stroke": "#52acff", + "fill": "#52acff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.135477, 45.521761], - [9.135477, 45.526257], - [9.141885, 45.526257], - [9.141885, 45.521761], - [9.135477, 45.521761] + [9.13121, 45.521761], + [9.13121, 45.526257], + [9.135706, 45.526257], + [9.135706, 45.521761], + [9.13121, 45.521761] ] ] } @@ -1726,20 +1726,20 @@ { "type": "Feature", "properties": { - "value": 29, - "stroke": "#3da2ff", - "fill": "#3da2ff", + "value": 28, + "stroke": "#42a5ff", + "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.135477, 45.526257], - [9.135477, 45.530754], - [9.141885, 45.530754], - [9.141885, 45.526257], - [9.135477, 45.526257] + [9.13121, 45.526257], + [9.13121, 45.530754], + [9.135706, 45.530754], + [9.135706, 45.526257], + [9.13121, 45.526257] ] ] } @@ -1748,19 +1748,19 @@ "type": "Feature", "properties": { "value": 29, - "stroke": "#3da2ff", - "fill": "#3da2ff", + "stroke": "#38a0ff", + "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.135477, 45.530754], - [9.135477, 45.535251], - [9.141885, 45.535251], - [9.141885, 45.530754], - [9.135477, 45.530754] + [9.13121, 45.530754], + [9.13121, 45.535251], + [9.135706, 45.535251], + [9.135706, 45.530754], + [9.13121, 45.530754] ] ] } @@ -1769,19 +1769,19 @@ "type": "Feature", "properties": { "value": 19, - "stroke": "#c7e4ff", - "fill": "#c7e4ff", + "stroke": "#bddfff", + "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.141885, 45.440822], - [9.141885, 45.445319], - [9.148293, 45.445319], - [9.148293, 45.440822], - [9.141885, 45.440822] + [9.135706, 45.440822], + [9.135706, 45.445319], + [9.140203, 45.445319], + [9.140203, 45.440822], + [9.135706, 45.440822] ] ] } @@ -1790,19 +1790,19 @@ "type": "Feature", "properties": { "value": 19, - "stroke": "#c7e4ff", - "fill": "#c7e4ff", + "stroke": "#bddfff", + "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.141885, 45.445319], - [9.141885, 45.449815], - [9.148293, 45.449815], - [9.148293, 45.445319], - [9.141885, 45.445319] + [9.135706, 45.445319], + [9.135706, 45.449815], + [9.140203, 45.449815], + [9.140203, 45.445319], + [9.135706, 45.445319] ] ] } @@ -1811,19 +1811,19 @@ "type": "Feature", "properties": { "value": 19, - "stroke": "#c7e4ff", - "fill": "#c7e4ff", + "stroke": "#bddfff", + "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.141885, 45.449815], - [9.141885, 45.454312], - [9.148293, 45.454312], - [9.148293, 45.449815], - [9.141885, 45.449815] + [9.135706, 45.449815], + [9.135706, 45.454312], + [9.140203, 45.454312], + [9.140203, 45.449815], + [9.135706, 45.449815] ] ] } @@ -1832,19 +1832,19 @@ "type": "Feature", "properties": { "value": 19, - "stroke": "#c7e4ff", - "fill": "#c7e4ff", + "stroke": "#bddfff", + "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.141885, 45.454312], - [9.141885, 45.458808], - [9.148293, 45.458808], - [9.148293, 45.454312], - [9.141885, 45.454312] + [9.135706, 45.454312], + [9.135706, 45.458808], + [9.140203, 45.458808], + [9.140203, 45.454312], + [9.135706, 45.454312] ] ] } @@ -1852,20 +1852,20 @@ { "type": "Feature", "properties": { - "value": 18, - "stroke": "#d6ebff", - "fill": "#d6ebff", + "value": 19, + "stroke": "#bddfff", + "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.141885, 45.458808], - [9.141885, 45.463305], - [9.148293, 45.463305], - [9.148293, 45.458808], - [9.141885, 45.458808] + [9.135706, 45.458808], + [9.135706, 45.463305], + [9.140203, 45.463305], + [9.140203, 45.458808], + [9.135706, 45.458808] ] ] } @@ -1873,20 +1873,20 @@ { "type": "Feature", "properties": { - "value": 18, - "stroke": "#d6ebff", - "fill": "#d6ebff", + "value": 19, + "stroke": "#bddfff", + "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.141885, 45.463305], - [9.141885, 45.467802], - [9.148293, 45.467802], - [9.148293, 45.463305], - [9.141885, 45.463305] + [9.135706, 45.463305], + [9.135706, 45.467802], + [9.140203, 45.467802], + [9.140203, 45.463305], + [9.135706, 45.463305] ] ] } @@ -1894,20 +1894,20 @@ { "type": "Feature", "properties": { - "value": 18, - "stroke": "#d6ebff", - "fill": "#d6ebff", + "value": 19, + "stroke": "#bddfff", + "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.141885, 45.467802], - [9.141885, 45.472298], - [9.148293, 45.472298], - [9.148293, 45.467802], - [9.141885, 45.467802] + [9.135706, 45.467802], + [9.135706, 45.472298], + [9.140203, 45.472298], + [9.140203, 45.467802], + [9.135706, 45.467802] ] ] } @@ -1915,20 +1915,20 @@ { "type": "Feature", "properties": { - "value": 18, - "stroke": "#d6ebff", - "fill": "#d6ebff", + "value": 19, + "stroke": "#bddfff", + "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.141885, 45.472298], - [9.141885, 45.476795], - [9.148293, 45.476795], - [9.148293, 45.472298], - [9.141885, 45.472298] + [9.135706, 45.472298], + [9.135706, 45.476795], + [9.140203, 45.476795], + [9.140203, 45.472298], + [9.135706, 45.472298] ] ] } @@ -1936,20 +1936,20 @@ { "type": "Feature", "properties": { - "value": 19, - "stroke": "#c7e4ff", - "fill": "#c7e4ff", + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.141885, 45.476795], - [9.141885, 45.481291], - [9.148293, 45.481291], - [9.148293, 45.476795], - [9.141885, 45.476795] + [9.135706, 45.476795], + [9.135706, 45.481291], + [9.140203, 45.481291], + [9.140203, 45.476795], + [9.135706, 45.476795] ] ] } @@ -1958,19 +1958,19 @@ "type": "Feature", "properties": { "value": 20, - "stroke": "#b8ddff", - "fill": "#b8ddff", + "stroke": "#add8ff", + "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.141885, 45.481291], - [9.141885, 45.485788], - [9.148293, 45.485788], - [9.148293, 45.481291], - [9.141885, 45.481291] + [9.135706, 45.481291], + [9.135706, 45.485788], + [9.140203, 45.485788], + [9.140203, 45.481291], + [9.135706, 45.481291] ] ] } @@ -1979,19 +1979,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.141885, 45.485788], - [9.141885, 45.490285], - [9.148293, 45.490285], - [9.148293, 45.485788], - [9.141885, 45.485788] + [9.135706, 45.485788], + [9.135706, 45.490285], + [9.140203, 45.490285], + [9.140203, 45.485788], + [9.135706, 45.485788] ] ] } @@ -2000,19 +2000,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.141885, 45.490285], - [9.141885, 45.494781], - [9.148293, 45.494781], - [9.148293, 45.490285], - [9.141885, 45.490285] + [9.135706, 45.490285], + [9.135706, 45.494781], + [9.140203, 45.494781], + [9.140203, 45.490285], + [9.135706, 45.490285] ] ] } @@ -2021,19 +2021,19 @@ "type": "Feature", "properties": { "value": 23, - "stroke": "#8fc9ff", - "fill": "#8fc9ff", + "stroke": "#85c4ff", + "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.141885, 45.494781], - [9.141885, 45.499278], - [9.148293, 45.499278], - [9.148293, 45.494781], - [9.141885, 45.494781] + [9.135706, 45.494781], + [9.135706, 45.499278], + [9.140203, 45.499278], + [9.140203, 45.494781], + [9.135706, 45.494781] ] ] } @@ -2041,20 +2041,20 @@ { "type": "Feature", "properties": { - "value": 23, - "stroke": "#8fc9ff", - "fill": "#8fc9ff", + "value": 24, + "stroke": "#7ac0ff", + "fill": "#7ac0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.141885, 45.499278], - [9.141885, 45.503774], - [9.148293, 45.503774], - [9.148293, 45.499278], - [9.141885, 45.499278] + [9.135706, 45.499278], + [9.135706, 45.503774], + [9.140203, 45.503774], + [9.140203, 45.499278], + [9.135706, 45.499278] ] ] } @@ -2063,19 +2063,19 @@ "type": "Feature", "properties": { "value": 24, - "stroke": "#85c4ff", - "fill": "#85c4ff", + "stroke": "#7ac0ff", + "fill": "#7ac0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.141885, 45.503774], - [9.141885, 45.508271], - [9.148293, 45.508271], - [9.148293, 45.503774], - [9.141885, 45.503774] + [9.135706, 45.503774], + [9.135706, 45.508271], + [9.140203, 45.508271], + [9.140203, 45.503774], + [9.135706, 45.503774] ] ] } @@ -2084,19 +2084,19 @@ "type": "Feature", "properties": { "value": 25, - "stroke": "#75bdff", - "fill": "#75bdff", + "stroke": "#6bb8ff", + "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.141885, 45.508271], - [9.141885, 45.512768], - [9.148293, 45.512768], - [9.148293, 45.508271], - [9.141885, 45.508271] + [9.135706, 45.508271], + [9.135706, 45.512768], + [9.140203, 45.512768], + [9.140203, 45.508271], + [9.135706, 45.508271] ] ] } @@ -2105,19 +2105,19 @@ "type": "Feature", "properties": { "value": 26, - "stroke": "#66b6ff", - "fill": "#66b6ff", + "stroke": "#5cb1ff", + "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.141885, 45.512768], - [9.141885, 45.517264], - [9.148293, 45.517264], - [9.148293, 45.512768], - [9.141885, 45.512768] + [9.135706, 45.512768], + [9.135706, 45.517264], + [9.140203, 45.517264], + [9.140203, 45.512768], + [9.135706, 45.512768] ] ] } @@ -2126,19 +2126,19 @@ "type": "Feature", "properties": { "value": 27, - "stroke": "#5cb1ff", - "fill": "#5cb1ff", + "stroke": "#52acff", + "fill": "#52acff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.141885, 45.517264], - [9.141885, 45.521761], - [9.148293, 45.521761], - [9.148293, 45.517264], - [9.141885, 45.517264] + [9.135706, 45.517264], + [9.135706, 45.521761], + [9.140203, 45.521761], + [9.140203, 45.517264], + [9.135706, 45.517264] ] ] } @@ -2147,19 +2147,19 @@ "type": "Feature", "properties": { "value": 28, - "stroke": "#4daaff", - "fill": "#4daaff", + "stroke": "#42a5ff", + "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.141885, 45.521761], - [9.141885, 45.526257], - [9.148293, 45.526257], - [9.148293, 45.521761], - [9.141885, 45.521761] + [9.135706, 45.521761], + [9.135706, 45.526257], + [9.140203, 45.526257], + [9.140203, 45.521761], + [9.135706, 45.521761] ] ] } @@ -2167,20 +2167,20 @@ { "type": "Feature", "properties": { - "value": 29, - "stroke": "#3da2ff", - "fill": "#3da2ff", + "value": 28, + "stroke": "#42a5ff", + "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.141885, 45.526257], - [9.141885, 45.530754], - [9.148293, 45.530754], - [9.148293, 45.526257], - [9.141885, 45.526257] + [9.135706, 45.526257], + [9.135706, 45.530754], + [9.140203, 45.530754], + [9.140203, 45.526257], + [9.135706, 45.526257] ] ] } @@ -2188,20 +2188,20 @@ { "type": "Feature", "properties": { - "value": 30, - "stroke": "#2e9bff", - "fill": "#2e9bff", + "value": 29, + "stroke": "#38a0ff", + "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.141885, 45.530754], - [9.141885, 45.535251], - [9.148293, 45.535251], - [9.148293, 45.530754], - [9.141885, 45.530754] + [9.135706, 45.530754], + [9.135706, 45.535251], + [9.140203, 45.535251], + [9.140203, 45.530754], + [9.135706, 45.530754] ] ] } @@ -2210,19 +2210,19 @@ "type": "Feature", "properties": { "value": 19, - "stroke": "#c7e4ff", - "fill": "#c7e4ff", + "stroke": "#bddfff", + "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.148293, 45.440822], - [9.148293, 45.445319], - [9.154702, 45.445319], - [9.154702, 45.440822], - [9.148293, 45.440822] + [9.140203, 45.440822], + [9.140203, 45.445319], + [9.144699, 45.445319], + [9.144699, 45.440822], + [9.140203, 45.440822] ] ] } @@ -2231,19 +2231,19 @@ "type": "Feature", "properties": { "value": 19, - "stroke": "#c7e4ff", - "fill": "#c7e4ff", + "stroke": "#bddfff", + "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.148293, 45.445319], - [9.148293, 45.449815], - [9.154702, 45.449815], - [9.154702, 45.445319], - [9.148293, 45.445319] + [9.140203, 45.445319], + [9.140203, 45.449815], + [9.144699, 45.449815], + [9.144699, 45.445319], + [9.140203, 45.445319] ] ] } @@ -2252,19 +2252,19 @@ "type": "Feature", "properties": { "value": 19, - "stroke": "#c7e4ff", - "fill": "#c7e4ff", + "stroke": "#bddfff", + "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.148293, 45.449815], - [9.148293, 45.454312], - [9.154702, 45.454312], - [9.154702, 45.449815], - [9.148293, 45.449815] + [9.140203, 45.449815], + [9.140203, 45.454312], + [9.144699, 45.454312], + [9.144699, 45.449815], + [9.140203, 45.449815] ] ] } @@ -2273,19 +2273,19 @@ "type": "Feature", "properties": { "value": 19, - "stroke": "#c7e4ff", - "fill": "#c7e4ff", + "stroke": "#bddfff", + "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.148293, 45.454312], - [9.148293, 45.458808], - [9.154702, 45.458808], - [9.154702, 45.454312], - [9.148293, 45.454312] + [9.140203, 45.454312], + [9.140203, 45.458808], + [9.144699, 45.458808], + [9.144699, 45.454312], + [9.140203, 45.454312] ] ] } @@ -2293,20 +2293,20 @@ { "type": "Feature", "properties": { - "value": 18, - "stroke": "#d6ebff", - "fill": "#d6ebff", + "value": 19, + "stroke": "#bddfff", + "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.148293, 45.458808], - [9.148293, 45.463305], - [9.154702, 45.463305], - [9.154702, 45.458808], - [9.148293, 45.458808] + [9.140203, 45.458808], + [9.140203, 45.463305], + [9.144699, 45.463305], + [9.144699, 45.458808], + [9.140203, 45.458808] ] ] } @@ -2314,20 +2314,20 @@ { "type": "Feature", "properties": { - "value": 17, - "stroke": "#e5f3ff", - "fill": "#e5f3ff", + "value": 18, + "stroke": "#c7e4ff", + "fill": "#c7e4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.148293, 45.463305], - [9.148293, 45.467802], - [9.154702, 45.467802], - [9.154702, 45.463305], - [9.148293, 45.463305] + [9.140203, 45.463305], + [9.140203, 45.467802], + [9.144699, 45.467802], + [9.144699, 45.463305], + [9.140203, 45.463305] ] ] } @@ -2335,20 +2335,20 @@ { "type": "Feature", "properties": { - "value": 16, - "stroke": "#f0f8ff", - "fill": "#f0f8ff", + "value": 18, + "stroke": "#c7e4ff", + "fill": "#c7e4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.148293, 45.467802], - [9.148293, 45.472298], - [9.154702, 45.472298], - [9.154702, 45.467802], - [9.148293, 45.467802] + [9.140203, 45.467802], + [9.140203, 45.472298], + [9.144699, 45.472298], + [9.144699, 45.467802], + [9.140203, 45.467802] ] ] } @@ -2356,20 +2356,20 @@ { "type": "Feature", "properties": { - "value": 16, - "stroke": "#f0f8ff", - "fill": "#f0f8ff", + "value": 18, + "stroke": "#c7e4ff", + "fill": "#c7e4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.148293, 45.472298], - [9.148293, 45.476795], - [9.154702, 45.476795], - [9.154702, 45.472298], - [9.148293, 45.472298] + [9.140203, 45.472298], + [9.140203, 45.476795], + [9.144699, 45.476795], + [9.144699, 45.472298], + [9.140203, 45.472298] ] ] } @@ -2377,20 +2377,20 @@ { "type": "Feature", "properties": { - "value": 18, - "stroke": "#d6ebff", - "fill": "#d6ebff", + "value": 19, + "stroke": "#bddfff", + "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.148293, 45.476795], - [9.148293, 45.481291], - [9.154702, 45.481291], - [9.154702, 45.476795], - [9.148293, 45.476795] + [9.140203, 45.476795], + [9.140203, 45.481291], + [9.144699, 45.481291], + [9.144699, 45.476795], + [9.140203, 45.476795] ] ] } @@ -2399,19 +2399,19 @@ "type": "Feature", "properties": { "value": 20, - "stroke": "#b8ddff", - "fill": "#b8ddff", + "stroke": "#add8ff", + "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.148293, 45.481291], - [9.148293, 45.485788], - [9.154702, 45.485788], - [9.154702, 45.481291], - [9.148293, 45.481291] + [9.140203, 45.481291], + [9.140203, 45.485788], + [9.144699, 45.485788], + [9.144699, 45.481291], + [9.140203, 45.481291] ] ] } @@ -2420,19 +2420,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.148293, 45.485788], - [9.148293, 45.490285], - [9.154702, 45.490285], - [9.154702, 45.485788], - [9.148293, 45.485788] + [9.140203, 45.485788], + [9.140203, 45.490285], + [9.144699, 45.490285], + [9.144699, 45.485788], + [9.140203, 45.485788] ] ] } @@ -2441,19 +2441,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.148293, 45.490285], - [9.148293, 45.494781], - [9.154702, 45.494781], - [9.154702, 45.490285], - [9.148293, 45.490285] + [9.140203, 45.490285], + [9.140203, 45.494781], + [9.144699, 45.494781], + [9.144699, 45.490285], + [9.140203, 45.490285] ] ] } @@ -2461,20 +2461,20 @@ { "type": "Feature", "properties": { - "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.148293, 45.494781], - [9.148293, 45.499278], - [9.154702, 45.499278], - [9.154702, 45.494781], - [9.148293, 45.494781] + [9.140203, 45.494781], + [9.140203, 45.499278], + [9.144699, 45.499278], + [9.144699, 45.494781], + [9.140203, 45.494781] ] ] } @@ -2483,19 +2483,19 @@ "type": "Feature", "properties": { "value": 23, - "stroke": "#8fc9ff", - "fill": "#8fc9ff", + "stroke": "#85c4ff", + "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.148293, 45.499278], - [9.148293, 45.503774], - [9.154702, 45.503774], - [9.154702, 45.499278], - [9.148293, 45.499278] + [9.140203, 45.499278], + [9.140203, 45.503774], + [9.144699, 45.503774], + [9.144699, 45.499278], + [9.140203, 45.499278] ] ] } @@ -2504,19 +2504,19 @@ "type": "Feature", "properties": { "value": 24, - "stroke": "#85c4ff", - "fill": "#85c4ff", + "stroke": "#7ac0ff", + "fill": "#7ac0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.148293, 45.503774], - [9.148293, 45.508271], - [9.154702, 45.508271], - [9.154702, 45.503774], - [9.148293, 45.503774] + [9.140203, 45.503774], + [9.140203, 45.508271], + [9.144699, 45.508271], + [9.144699, 45.503774], + [9.140203, 45.503774] ] ] } @@ -2525,19 +2525,19 @@ "type": "Feature", "properties": { "value": 25, - "stroke": "#75bdff", - "fill": "#75bdff", + "stroke": "#6bb8ff", + "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.148293, 45.508271], - [9.148293, 45.512768], - [9.154702, 45.512768], - [9.154702, 45.508271], - [9.148293, 45.508271] + [9.140203, 45.508271], + [9.140203, 45.512768], + [9.144699, 45.512768], + [9.144699, 45.508271], + [9.140203, 45.508271] ] ] } @@ -2545,7 +2545,7 @@ { "type": "Feature", "properties": { - "value": 27, + "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 @@ -2554,11 +2554,11 @@ "type": "Polygon", "coordinates": [ [ - [9.148293, 45.512768], - [9.148293, 45.517264], - [9.154702, 45.517264], - [9.154702, 45.512768], - [9.148293, 45.512768] + [9.140203, 45.512768], + [9.140203, 45.517264], + [9.144699, 45.517264], + [9.144699, 45.512768], + [9.140203, 45.512768] ] ] } @@ -2566,20 +2566,20 @@ { "type": "Feature", "properties": { - "value": 28, - "stroke": "#4daaff", - "fill": "#4daaff", + "value": 27, + "stroke": "#52acff", + "fill": "#52acff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.148293, 45.517264], - [9.148293, 45.521761], - [9.154702, 45.521761], - [9.154702, 45.517264], - [9.148293, 45.517264] + [9.140203, 45.517264], + [9.140203, 45.521761], + [9.144699, 45.521761], + [9.144699, 45.517264], + [9.140203, 45.517264] ] ] } @@ -2587,20 +2587,20 @@ { "type": "Feature", "properties": { - "value": 29, - "stroke": "#3da2ff", - "fill": "#3da2ff", + "value": 28, + "stroke": "#42a5ff", + "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.148293, 45.521761], - [9.148293, 45.526257], - [9.154702, 45.526257], - [9.154702, 45.521761], - [9.148293, 45.521761] + [9.140203, 45.521761], + [9.140203, 45.526257], + [9.144699, 45.526257], + [9.144699, 45.521761], + [9.140203, 45.521761] ] ] } @@ -2608,20 +2608,20 @@ { "type": "Feature", "properties": { - "value": 30, - "stroke": "#2e9bff", - "fill": "#2e9bff", + "value": 29, + "stroke": "#38a0ff", + "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.148293, 45.526257], - [9.148293, 45.530754], - [9.154702, 45.530754], - [9.154702, 45.526257], - [9.148293, 45.526257] + [9.140203, 45.526257], + [9.140203, 45.530754], + [9.144699, 45.530754], + [9.144699, 45.526257], + [9.140203, 45.526257] ] ] } @@ -2629,20 +2629,20 @@ { "type": "Feature", "properties": { - "value": 31, - "stroke": "#2496ff", - "fill": "#2496ff", + "value": 30, + "stroke": "#2999ff", + "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.148293, 45.530754], - [9.148293, 45.535251], - [9.154702, 45.535251], - [9.154702, 45.530754], - [9.148293, 45.530754] + [9.140203, 45.530754], + [9.140203, 45.535251], + [9.144699, 45.535251], + [9.144699, 45.530754], + [9.140203, 45.530754] ] ] } @@ -2650,20 +2650,20 @@ { "type": "Feature", "properties": { - "value": 20, - "stroke": "#b8ddff", - "fill": "#b8ddff", + "value": 19, + "stroke": "#bddfff", + "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.154702, 45.440822], - [9.154702, 45.445319], - [9.16111, 45.445319], - [9.16111, 45.440822], - [9.154702, 45.440822] + [9.144699, 45.440822], + [9.144699, 45.445319], + [9.149196, 45.445319], + [9.149196, 45.440822], + [9.144699, 45.440822] ] ] } @@ -2672,19 +2672,19 @@ "type": "Feature", "properties": { "value": 19, - "stroke": "#c7e4ff", - "fill": "#c7e4ff", + "stroke": "#bddfff", + "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.154702, 45.445319], - [9.154702, 45.449815], - [9.16111, 45.449815], - [9.16111, 45.445319], - [9.154702, 45.445319] + [9.144699, 45.445319], + [9.144699, 45.449815], + [9.149196, 45.449815], + [9.149196, 45.445319], + [9.144699, 45.445319] ] ] } @@ -2693,19 +2693,19 @@ "type": "Feature", "properties": { "value": 19, - "stroke": "#c7e4ff", - "fill": "#c7e4ff", + "stroke": "#bddfff", + "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.154702, 45.449815], - [9.154702, 45.454312], - [9.16111, 45.454312], - [9.16111, 45.449815], - [9.154702, 45.449815] + [9.144699, 45.449815], + [9.144699, 45.454312], + [9.149196, 45.454312], + [9.149196, 45.449815], + [9.144699, 45.449815] ] ] } @@ -2714,19 +2714,19 @@ "type": "Feature", "properties": { "value": 19, - "stroke": "#c7e4ff", - "fill": "#c7e4ff", + "stroke": "#bddfff", + "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.154702, 45.454312], - [9.154702, 45.458808], - [9.16111, 45.458808], - [9.16111, 45.454312], - [9.154702, 45.454312] + [9.144699, 45.454312], + [9.144699, 45.458808], + [9.149196, 45.458808], + [9.149196, 45.454312], + [9.144699, 45.454312] ] ] } @@ -2735,19 +2735,19 @@ "type": "Feature", "properties": { "value": 18, - "stroke": "#d6ebff", - "fill": "#d6ebff", + "stroke": "#c7e4ff", + "fill": "#c7e4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.154702, 45.458808], - [9.154702, 45.463305], - [9.16111, 45.463305], - [9.16111, 45.458808], - [9.154702, 45.458808] + [9.144699, 45.458808], + [9.144699, 45.463305], + [9.149196, 45.463305], + [9.149196, 45.458808], + [9.144699, 45.458808] ] ] } @@ -2755,20 +2755,20 @@ { "type": "Feature", "properties": { - "value": 17, - "stroke": "#e5f3ff", - "fill": "#e5f3ff", + "value": 18, + "stroke": "#c7e4ff", + "fill": "#c7e4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.154702, 45.463305], - [9.154702, 45.467802], - [9.16111, 45.467802], - [9.16111, 45.463305], - [9.154702, 45.463305] + [9.144699, 45.463305], + [9.144699, 45.467802], + [9.149196, 45.467802], + [9.149196, 45.463305], + [9.144699, 45.463305] ] ] } @@ -2776,20 +2776,20 @@ { "type": "Feature", "properties": { - "value": 15, - "stroke": "#ffffff", - "fill": "#ffffff", + "value": 17, + "stroke": "#d6ebff", + "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.154702, 45.467802], - [9.154702, 45.472298], - [9.16111, 45.472298], - [9.16111, 45.467802], - [9.154702, 45.467802] + [9.144699, 45.467802], + [9.144699, 45.472298], + [9.149196, 45.472298], + [9.149196, 45.467802], + [9.144699, 45.467802] ] ] } @@ -2797,20 +2797,20 @@ { "type": "Feature", "properties": { - "value": 15, - "stroke": "#ffffff", - "fill": "#ffffff", + "value": 17, + "stroke": "#d6ebff", + "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.154702, 45.472298], - [9.154702, 45.476795], - [9.16111, 45.476795], - [9.16111, 45.472298], - [9.154702, 45.472298] + [9.144699, 45.472298], + [9.144699, 45.476795], + [9.149196, 45.476795], + [9.149196, 45.472298], + [9.144699, 45.472298] ] ] } @@ -2818,20 +2818,20 @@ { "type": "Feature", "properties": { - "value": 18, - "stroke": "#d6ebff", - "fill": "#d6ebff", + "value": 19, + "stroke": "#bddfff", + "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.154702, 45.476795], - [9.154702, 45.481291], - [9.16111, 45.481291], - [9.16111, 45.476795], - [9.154702, 45.476795] + [9.144699, 45.476795], + [9.144699, 45.481291], + [9.149196, 45.481291], + [9.149196, 45.476795], + [9.144699, 45.476795] ] ] } @@ -2840,19 +2840,19 @@ "type": "Feature", "properties": { "value": 20, - "stroke": "#b8ddff", - "fill": "#b8ddff", + "stroke": "#add8ff", + "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.154702, 45.481291], - [9.154702, 45.485788], - [9.16111, 45.485788], - [9.16111, 45.481291], - [9.154702, 45.481291] + [9.144699, 45.481291], + [9.144699, 45.485788], + [9.149196, 45.485788], + [9.149196, 45.481291], + [9.144699, 45.481291] ] ] } @@ -2861,19 +2861,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.154702, 45.485788], - [9.154702, 45.490285], - [9.16111, 45.490285], - [9.16111, 45.485788], - [9.154702, 45.485788] + [9.144699, 45.485788], + [9.144699, 45.490285], + [9.149196, 45.490285], + [9.149196, 45.485788], + [9.144699, 45.485788] ] ] } @@ -2881,20 +2881,20 @@ { "type": "Feature", "properties": { - "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "value": 22, + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.154702, 45.490285], - [9.154702, 45.494781], - [9.16111, 45.494781], - [9.16111, 45.490285], - [9.154702, 45.490285] + [9.144699, 45.490285], + [9.144699, 45.494781], + [9.149196, 45.494781], + [9.149196, 45.490285], + [9.144699, 45.490285] ] ] } @@ -2902,20 +2902,20 @@ { "type": "Feature", "properties": { - "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.154702, 45.494781], - [9.154702, 45.499278], - [9.16111, 45.499278], - [9.16111, 45.494781], - [9.154702, 45.494781] + [9.144699, 45.494781], + [9.144699, 45.499278], + [9.149196, 45.499278], + [9.149196, 45.494781], + [9.144699, 45.494781] ] ] } @@ -2924,19 +2924,19 @@ "type": "Feature", "properties": { "value": 23, - "stroke": "#8fc9ff", - "fill": "#8fc9ff", + "stroke": "#85c4ff", + "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.154702, 45.499278], - [9.154702, 45.503774], - [9.16111, 45.503774], - [9.16111, 45.499278], - [9.154702, 45.499278] + [9.144699, 45.499278], + [9.144699, 45.503774], + [9.149196, 45.503774], + [9.149196, 45.499278], + [9.144699, 45.499278] ] ] } @@ -2945,19 +2945,19 @@ "type": "Feature", "properties": { "value": 24, - "stroke": "#85c4ff", - "fill": "#85c4ff", + "stroke": "#7ac0ff", + "fill": "#7ac0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.154702, 45.503774], - [9.154702, 45.508271], - [9.16111, 45.508271], - [9.16111, 45.503774], - [9.154702, 45.503774] + [9.144699, 45.503774], + [9.144699, 45.508271], + [9.149196, 45.508271], + [9.149196, 45.503774], + [9.144699, 45.503774] ] ] } @@ -2965,20 +2965,20 @@ { "type": "Feature", "properties": { - "value": 26, - "stroke": "#66b6ff", - "fill": "#66b6ff", + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.154702, 45.508271], - [9.154702, 45.512768], - [9.16111, 45.512768], - [9.16111, 45.508271], - [9.154702, 45.508271] + [9.144699, 45.508271], + [9.144699, 45.512768], + [9.149196, 45.512768], + [9.149196, 45.508271], + [9.144699, 45.508271] ] ] } @@ -2986,7 +2986,7 @@ { "type": "Feature", "properties": { - "value": 27, + "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 @@ -2995,11 +2995,11 @@ "type": "Polygon", "coordinates": [ [ - [9.154702, 45.512768], - [9.154702, 45.517264], - [9.16111, 45.517264], - [9.16111, 45.512768], - [9.154702, 45.512768] + [9.144699, 45.512768], + [9.144699, 45.517264], + [9.149196, 45.517264], + [9.149196, 45.512768], + [9.144699, 45.512768] ] ] } @@ -3008,19 +3008,19 @@ "type": "Feature", "properties": { "value": 28, - "stroke": "#4daaff", - "fill": "#4daaff", + "stroke": "#42a5ff", + "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.154702, 45.517264], - [9.154702, 45.521761], - [9.16111, 45.521761], - [9.16111, 45.517264], - [9.154702, 45.517264] + [9.144699, 45.517264], + [9.144699, 45.521761], + [9.149196, 45.521761], + [9.149196, 45.517264], + [9.144699, 45.517264] ] ] } @@ -3028,20 +3028,20 @@ { "type": "Feature", "properties": { - "value": 30, - "stroke": "#2e9bff", - "fill": "#2e9bff", + "value": 29, + "stroke": "#38a0ff", + "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.154702, 45.521761], - [9.154702, 45.526257], - [9.16111, 45.526257], - [9.16111, 45.521761], - [9.154702, 45.521761] + [9.144699, 45.521761], + [9.144699, 45.526257], + [9.149196, 45.526257], + [9.149196, 45.521761], + [9.144699, 45.521761] ] ] } @@ -3049,20 +3049,20 @@ { "type": "Feature", "properties": { - "value": 31, - "stroke": "#2496ff", - "fill": "#2496ff", + "value": 29, + "stroke": "#38a0ff", + "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.154702, 45.526257], - [9.154702, 45.530754], - [9.16111, 45.530754], - [9.16111, 45.526257], - [9.154702, 45.526257] + [9.144699, 45.526257], + [9.144699, 45.530754], + [9.149196, 45.530754], + [9.149196, 45.526257], + [9.144699, 45.526257] ] ] } @@ -3070,20 +3070,20 @@ { "type": "Feature", "properties": { - "value": 32, - "stroke": "#148fff", - "fill": "#148fff", + "value": 30, + "stroke": "#2999ff", + "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.154702, 45.530754], - [9.154702, 45.535251], - [9.16111, 45.535251], - [9.16111, 45.530754], - [9.154702, 45.530754] + [9.144699, 45.530754], + [9.144699, 45.535251], + [9.149196, 45.535251], + [9.149196, 45.530754], + [9.144699, 45.530754] ] ] } @@ -3091,20 +3091,20 @@ { "type": "Feature", "properties": { - "value": 20, - "stroke": "#b8ddff", - "fill": "#b8ddff", + "value": 19, + "stroke": "#bddfff", + "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.16111, 45.440822], - [9.16111, 45.445319], - [9.167519, 45.445319], - [9.167519, 45.440822], - [9.16111, 45.440822] + [9.149196, 45.440822], + [9.149196, 45.445319], + [9.153693, 45.445319], + [9.153693, 45.440822], + [9.149196, 45.440822] ] ] } @@ -3112,20 +3112,20 @@ { "type": "Feature", "properties": { - "value": 20, - "stroke": "#b8ddff", - "fill": "#b8ddff", + "value": 19, + "stroke": "#bddfff", + "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.16111, 45.445319], - [9.16111, 45.449815], - [9.167519, 45.449815], - [9.167519, 45.445319], - [9.16111, 45.445319] + [9.149196, 45.445319], + [9.149196, 45.449815], + [9.153693, 45.449815], + [9.153693, 45.445319], + [9.149196, 45.445319] ] ] } @@ -3134,19 +3134,19 @@ "type": "Feature", "properties": { "value": 19, - "stroke": "#c7e4ff", - "fill": "#c7e4ff", + "stroke": "#bddfff", + "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.16111, 45.449815], - [9.16111, 45.454312], - [9.167519, 45.454312], - [9.167519, 45.449815], - [9.16111, 45.449815] + [9.149196, 45.449815], + [9.149196, 45.454312], + [9.153693, 45.454312], + [9.153693, 45.449815], + [9.149196, 45.449815] ] ] } @@ -3155,19 +3155,19 @@ "type": "Feature", "properties": { "value": 19, - "stroke": "#c7e4ff", - "fill": "#c7e4ff", + "stroke": "#bddfff", + "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.16111, 45.454312], - [9.16111, 45.458808], - [9.167519, 45.458808], - [9.167519, 45.454312], - [9.16111, 45.454312] + [9.149196, 45.454312], + [9.149196, 45.458808], + [9.153693, 45.458808], + [9.153693, 45.454312], + [9.149196, 45.454312] ] ] } @@ -3175,7 +3175,7 @@ { "type": "Feature", "properties": { - "value": 19, + "value": 18, "stroke": "#c7e4ff", "fill": "#c7e4ff", "fill-opacity": 0.85 @@ -3184,11 +3184,11 @@ "type": "Polygon", "coordinates": [ [ - [9.16111, 45.458808], - [9.16111, 45.463305], - [9.167519, 45.463305], - [9.167519, 45.458808], - [9.16111, 45.458808] + [9.149196, 45.458808], + [9.149196, 45.463305], + [9.153693, 45.463305], + [9.153693, 45.458808], + [9.149196, 45.458808] ] ] } @@ -3196,7 +3196,7 @@ { "type": "Feature", "properties": { - "value": 18, + "value": 17, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 @@ -3205,11 +3205,11 @@ "type": "Polygon", "coordinates": [ [ - [9.16111, 45.463305], - [9.16111, 45.467802], - [9.167519, 45.467802], - [9.167519, 45.463305], - [9.16111, 45.463305] + [9.149196, 45.463305], + [9.149196, 45.467802], + [9.153693, 45.467802], + [9.153693, 45.463305], + [9.149196, 45.463305] ] ] } @@ -3217,7 +3217,7 @@ { "type": "Feature", "properties": { - "value": 17, + "value": 16, "stroke": "#e5f3ff", "fill": "#e5f3ff", "fill-opacity": 0.85 @@ -3226,11 +3226,11 @@ "type": "Polygon", "coordinates": [ [ - [9.16111, 45.467802], - [9.16111, 45.472298], - [9.167519, 45.472298], - [9.167519, 45.467802], - [9.16111, 45.467802] + [9.149196, 45.467802], + [9.149196, 45.472298], + [9.153693, 45.472298], + [9.153693, 45.467802], + [9.149196, 45.467802] ] ] } @@ -3238,20 +3238,20 @@ { "type": "Feature", "properties": { - "value": 18, - "stroke": "#d6ebff", - "fill": "#d6ebff", + "value": 16, + "stroke": "#e5f3ff", + "fill": "#e5f3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.16111, 45.472298], - [9.16111, 45.476795], - [9.167519, 45.476795], - [9.167519, 45.472298], - [9.16111, 45.472298] + [9.149196, 45.472298], + [9.149196, 45.476795], + [9.153693, 45.476795], + [9.153693, 45.472298], + [9.149196, 45.472298] ] ] } @@ -3259,7 +3259,7 @@ { "type": "Feature", "properties": { - "value": 19, + "value": 18, "stroke": "#c7e4ff", "fill": "#c7e4ff", "fill-opacity": 0.85 @@ -3268,11 +3268,11 @@ "type": "Polygon", "coordinates": [ [ - [9.16111, 45.476795], - [9.16111, 45.481291], - [9.167519, 45.481291], - [9.167519, 45.476795], - [9.16111, 45.476795] + [9.149196, 45.476795], + [9.149196, 45.481291], + [9.153693, 45.481291], + [9.153693, 45.476795], + [9.149196, 45.476795] ] ] } @@ -3281,19 +3281,19 @@ "type": "Feature", "properties": { "value": 20, - "stroke": "#b8ddff", - "fill": "#b8ddff", + "stroke": "#add8ff", + "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.16111, 45.481291], - [9.16111, 45.485788], - [9.167519, 45.485788], - [9.167519, 45.481291], - [9.16111, 45.481291] + [9.149196, 45.481291], + [9.149196, 45.485788], + [9.153693, 45.485788], + [9.153693, 45.481291], + [9.149196, 45.481291] ] ] } @@ -3302,19 +3302,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.16111, 45.485788], - [9.16111, 45.490285], - [9.167519, 45.490285], - [9.167519, 45.485788], - [9.16111, 45.485788] + [9.149196, 45.485788], + [9.149196, 45.490285], + [9.153693, 45.490285], + [9.153693, 45.485788], + [9.149196, 45.485788] ] ] } @@ -3322,20 +3322,20 @@ { "type": "Feature", "properties": { - "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "value": 22, + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.16111, 45.490285], - [9.16111, 45.494781], - [9.167519, 45.494781], - [9.167519, 45.490285], - [9.16111, 45.490285] + [9.149196, 45.490285], + [9.149196, 45.494781], + [9.153693, 45.494781], + [9.153693, 45.490285], + [9.149196, 45.490285] ] ] } @@ -3343,20 +3343,20 @@ { "type": "Feature", "properties": { - "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "value": 22, + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.16111, 45.494781], - [9.16111, 45.499278], - [9.167519, 45.499278], - [9.167519, 45.494781], - [9.16111, 45.494781] + [9.149196, 45.494781], + [9.149196, 45.499278], + [9.153693, 45.499278], + [9.153693, 45.494781], + [9.149196, 45.494781] ] ] } @@ -3364,20 +3364,20 @@ { "type": "Feature", "properties": { - "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.16111, 45.499278], - [9.16111, 45.503774], - [9.167519, 45.503774], - [9.167519, 45.499278], - [9.16111, 45.499278] + [9.149196, 45.499278], + [9.149196, 45.503774], + [9.153693, 45.503774], + [9.153693, 45.499278], + [9.149196, 45.499278] ] ] } @@ -3386,19 +3386,19 @@ "type": "Feature", "properties": { "value": 24, - "stroke": "#85c4ff", - "fill": "#85c4ff", + "stroke": "#7ac0ff", + "fill": "#7ac0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.16111, 45.503774], - [9.16111, 45.508271], - [9.167519, 45.508271], - [9.167519, 45.503774], - [9.16111, 45.503774] + [9.149196, 45.503774], + [9.149196, 45.508271], + [9.153693, 45.508271], + [9.153693, 45.503774], + [9.149196, 45.503774] ] ] } @@ -3406,20 +3406,20 @@ { "type": "Feature", "properties": { - "value": 26, - "stroke": "#66b6ff", - "fill": "#66b6ff", + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.16111, 45.508271], - [9.16111, 45.512768], - [9.167519, 45.512768], - [9.167519, 45.508271], - [9.16111, 45.508271] + [9.149196, 45.508271], + [9.149196, 45.512768], + [9.153693, 45.512768], + [9.153693, 45.508271], + [9.149196, 45.508271] ] ] } @@ -3428,19 +3428,19 @@ "type": "Feature", "properties": { "value": 27, - "stroke": "#5cb1ff", - "fill": "#5cb1ff", + "stroke": "#52acff", + "fill": "#52acff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.16111, 45.512768], - [9.16111, 45.517264], - [9.167519, 45.517264], - [9.167519, 45.512768], - [9.16111, 45.512768] + [9.149196, 45.512768], + [9.149196, 45.517264], + [9.153693, 45.517264], + [9.153693, 45.512768], + [9.149196, 45.512768] ] ] } @@ -3448,20 +3448,20 @@ { "type": "Feature", "properties": { - "value": 29, - "stroke": "#3da2ff", - "fill": "#3da2ff", + "value": 28, + "stroke": "#42a5ff", + "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.16111, 45.517264], - [9.16111, 45.521761], - [9.167519, 45.521761], - [9.167519, 45.517264], - [9.16111, 45.517264] + [9.149196, 45.517264], + [9.149196, 45.521761], + [9.153693, 45.521761], + [9.153693, 45.517264], + [9.149196, 45.517264] ] ] } @@ -3469,20 +3469,20 @@ { "type": "Feature", "properties": { - "value": 31, - "stroke": "#2496ff", - "fill": "#2496ff", + "value": 29, + "stroke": "#38a0ff", + "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.16111, 45.521761], - [9.16111, 45.526257], - [9.167519, 45.526257], - [9.167519, 45.521761], - [9.16111, 45.521761] + [9.149196, 45.521761], + [9.149196, 45.526257], + [9.153693, 45.526257], + [9.153693, 45.521761], + [9.149196, 45.521761] ] ] } @@ -3490,20 +3490,20 @@ { "type": "Feature", "properties": { - "value": 32, - "stroke": "#148fff", - "fill": "#148fff", + "value": 30, + "stroke": "#2999ff", + "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.16111, 45.526257], - [9.16111, 45.530754], - [9.167519, 45.530754], - [9.167519, 45.526257], - [9.16111, 45.526257] + [9.149196, 45.526257], + [9.149196, 45.530754], + [9.153693, 45.530754], + [9.153693, 45.526257], + [9.149196, 45.526257] ] ] } @@ -3511,20 +3511,20 @@ { "type": "Feature", "properties": { - "value": 34, - "stroke": "#0082fa", - "fill": "#0082fa", + "value": 31, + "stroke": "#1a91ff", + "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.16111, 45.530754], - [9.16111, 45.535251], - [9.167519, 45.535251], - [9.167519, 45.530754], - [9.16111, 45.530754] + [9.149196, 45.530754], + [9.149196, 45.535251], + [9.153693, 45.535251], + [9.153693, 45.530754], + [9.149196, 45.530754] ] ] } @@ -3532,20 +3532,20 @@ { "type": "Feature", "properties": { - "value": 20, - "stroke": "#b8ddff", - "fill": "#b8ddff", + "value": 19, + "stroke": "#bddfff", + "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.167519, 45.440822], - [9.167519, 45.445319], - [9.173927, 45.445319], - [9.173927, 45.440822], - [9.167519, 45.440822] + [9.153693, 45.440822], + [9.153693, 45.445319], + [9.158189, 45.445319], + [9.158189, 45.440822], + [9.153693, 45.440822] ] ] } @@ -3553,20 +3553,20 @@ { "type": "Feature", "properties": { - "value": 20, - "stroke": "#b8ddff", - "fill": "#b8ddff", + "value": 19, + "stroke": "#bddfff", + "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.167519, 45.445319], - [9.167519, 45.449815], - [9.173927, 45.449815], - [9.173927, 45.445319], - [9.167519, 45.445319] + [9.153693, 45.445319], + [9.153693, 45.449815], + [9.158189, 45.449815], + [9.158189, 45.445319], + [9.153693, 45.445319] ] ] } @@ -3574,20 +3574,20 @@ { "type": "Feature", "properties": { - "value": 20, - "stroke": "#b8ddff", - "fill": "#b8ddff", + "value": 19, + "stroke": "#bddfff", + "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.167519, 45.449815], - [9.167519, 45.454312], - [9.173927, 45.454312], - [9.173927, 45.449815], - [9.167519, 45.449815] + [9.153693, 45.449815], + [9.153693, 45.454312], + [9.158189, 45.454312], + [9.158189, 45.449815], + [9.153693, 45.449815] ] ] } @@ -3595,20 +3595,20 @@ { "type": "Feature", "properties": { - "value": 20, - "stroke": "#b8ddff", - "fill": "#b8ddff", + "value": 19, + "stroke": "#bddfff", + "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.167519, 45.454312], - [9.167519, 45.458808], - [9.173927, 45.458808], - [9.173927, 45.454312], - [9.167519, 45.454312] + [9.153693, 45.454312], + [9.153693, 45.458808], + [9.158189, 45.458808], + [9.158189, 45.454312], + [9.153693, 45.454312] ] ] } @@ -3616,7 +3616,7 @@ { "type": "Feature", "properties": { - "value": 19, + "value": 18, "stroke": "#c7e4ff", "fill": "#c7e4ff", "fill-opacity": 0.85 @@ -3625,11 +3625,11 @@ "type": "Polygon", "coordinates": [ [ - [9.167519, 45.458808], - [9.167519, 45.463305], - [9.173927, 45.463305], - [9.173927, 45.458808], - [9.167519, 45.458808] + [9.153693, 45.458808], + [9.153693, 45.463305], + [9.158189, 45.463305], + [9.158189, 45.458808], + [9.153693, 45.458808] ] ] } @@ -3637,20 +3637,20 @@ { "type": "Feature", "properties": { - "value": 19, - "stroke": "#c7e4ff", - "fill": "#c7e4ff", + "value": 17, + "stroke": "#d6ebff", + "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.167519, 45.463305], - [9.167519, 45.467802], - [9.173927, 45.467802], - [9.173927, 45.463305], - [9.167519, 45.463305] + [9.153693, 45.463305], + [9.153693, 45.467802], + [9.158189, 45.467802], + [9.158189, 45.463305], + [9.153693, 45.463305] ] ] } @@ -3658,20 +3658,20 @@ { "type": "Feature", "properties": { - "value": 19, - "stroke": "#c7e4ff", - "fill": "#c7e4ff", + "value": 14, + "stroke": "#ffffff", + "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.167519, 45.467802], - [9.167519, 45.472298], - [9.173927, 45.472298], - [9.173927, 45.467802], - [9.167519, 45.467802] + [9.153693, 45.467802], + [9.153693, 45.472298], + [9.158189, 45.472298], + [9.158189, 45.467802], + [9.153693, 45.467802] ] ] } @@ -3679,20 +3679,20 @@ { "type": "Feature", "properties": { - "value": 19, - "stroke": "#c7e4ff", - "fill": "#c7e4ff", + "value": 15, + "stroke": "#f0f8ff", + "fill": "#f0f8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.167519, 45.472298], - [9.167519, 45.476795], - [9.173927, 45.476795], - [9.173927, 45.472298], - [9.167519, 45.472298] + [9.153693, 45.472298], + [9.153693, 45.476795], + [9.158189, 45.476795], + [9.158189, 45.472298], + [9.153693, 45.472298] ] ] } @@ -3700,20 +3700,20 @@ { "type": "Feature", "properties": { - "value": 20, - "stroke": "#b8ddff", - "fill": "#b8ddff", + "value": 18, + "stroke": "#c7e4ff", + "fill": "#c7e4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.167519, 45.476795], - [9.167519, 45.481291], - [9.173927, 45.481291], - [9.173927, 45.476795], - [9.167519, 45.476795] + [9.153693, 45.476795], + [9.153693, 45.481291], + [9.158189, 45.481291], + [9.158189, 45.476795], + [9.153693, 45.476795] ] ] } @@ -3722,19 +3722,19 @@ "type": "Feature", "properties": { "value": 20, - "stroke": "#b8ddff", - "fill": "#b8ddff", + "stroke": "#add8ff", + "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.167519, 45.481291], - [9.167519, 45.485788], - [9.173927, 45.485788], - [9.173927, 45.481291], - [9.167519, 45.481291] + [9.153693, 45.481291], + [9.153693, 45.485788], + [9.158189, 45.485788], + [9.158189, 45.481291], + [9.153693, 45.481291] ] ] } @@ -3743,19 +3743,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.167519, 45.485788], - [9.167519, 45.490285], - [9.173927, 45.490285], - [9.173927, 45.485788], - [9.167519, 45.485788] + [9.153693, 45.485788], + [9.153693, 45.490285], + [9.158189, 45.490285], + [9.158189, 45.485788], + [9.153693, 45.485788] ] ] } @@ -3764,19 +3764,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.167519, 45.490285], - [9.167519, 45.494781], - [9.173927, 45.494781], - [9.173927, 45.490285], - [9.167519, 45.490285] + [9.153693, 45.490285], + [9.153693, 45.494781], + [9.158189, 45.494781], + [9.158189, 45.490285], + [9.153693, 45.490285] ] ] } @@ -3784,20 +3784,20 @@ { "type": "Feature", "properties": { - "value": 20, - "stroke": "#b8ddff", - "fill": "#b8ddff", + "value": 22, + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.167519, 45.494781], - [9.167519, 45.499278], - [9.173927, 45.499278], - [9.173927, 45.494781], - [9.167519, 45.494781] + [9.153693, 45.494781], + [9.153693, 45.499278], + [9.158189, 45.499278], + [9.158189, 45.494781], + [9.153693, 45.494781] ] ] } @@ -3805,20 +3805,20 @@ { "type": "Feature", "properties": { - "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.167519, 45.499278], - [9.167519, 45.503774], - [9.173927, 45.503774], - [9.173927, 45.499278], - [9.167519, 45.499278] + [9.153693, 45.499278], + [9.153693, 45.503774], + [9.158189, 45.503774], + [9.158189, 45.499278], + [9.153693, 45.499278] ] ] } @@ -3827,19 +3827,19 @@ "type": "Feature", "properties": { "value": 24, - "stroke": "#85c4ff", - "fill": "#85c4ff", + "stroke": "#7ac0ff", + "fill": "#7ac0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.167519, 45.503774], - [9.167519, 45.508271], - [9.173927, 45.508271], - [9.173927, 45.503774], - [9.167519, 45.503774] + [9.153693, 45.503774], + [9.153693, 45.508271], + [9.158189, 45.508271], + [9.158189, 45.503774], + [9.153693, 45.503774] ] ] } @@ -3848,19 +3848,19 @@ "type": "Feature", "properties": { "value": 26, - "stroke": "#66b6ff", - "fill": "#66b6ff", + "stroke": "#5cb1ff", + "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.167519, 45.508271], - [9.167519, 45.512768], - [9.173927, 45.512768], - [9.173927, 45.508271], - [9.167519, 45.508271] + [9.153693, 45.508271], + [9.153693, 45.512768], + [9.158189, 45.512768], + [9.158189, 45.508271], + [9.153693, 45.508271] ] ] } @@ -3868,20 +3868,20 @@ { "type": "Feature", "properties": { - "value": 28, - "stroke": "#4daaff", - "fill": "#4daaff", + "value": 27, + "stroke": "#52acff", + "fill": "#52acff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.167519, 45.512768], - [9.167519, 45.517264], - [9.173927, 45.517264], - [9.173927, 45.512768], - [9.167519, 45.512768] + [9.153693, 45.512768], + [9.153693, 45.517264], + [9.158189, 45.517264], + [9.158189, 45.512768], + [9.153693, 45.512768] ] ] } @@ -3889,20 +3889,20 @@ { "type": "Feature", "properties": { - "value": 30, - "stroke": "#2e9bff", - "fill": "#2e9bff", + "value": 28, + "stroke": "#42a5ff", + "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.167519, 45.517264], - [9.167519, 45.521761], - [9.173927, 45.521761], - [9.173927, 45.517264], - [9.167519, 45.517264] + [9.153693, 45.517264], + [9.153693, 45.521761], + [9.158189, 45.521761], + [9.158189, 45.517264], + [9.153693, 45.517264] ] ] } @@ -3910,20 +3910,20 @@ { "type": "Feature", "properties": { - "value": 32, - "stroke": "#148fff", - "fill": "#148fff", + "value": 30, + "stroke": "#2999ff", + "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.167519, 45.521761], - [9.167519, 45.526257], - [9.173927, 45.526257], - [9.173927, 45.521761], - [9.167519, 45.521761] + [9.153693, 45.521761], + [9.153693, 45.526257], + [9.158189, 45.526257], + [9.158189, 45.521761], + [9.153693, 45.521761] ] ] } @@ -3931,20 +3931,20 @@ { "type": "Feature", "properties": { - "value": 34, - "stroke": "#0082fa", - "fill": "#0082fa", + "value": 31, + "stroke": "#1a91ff", + "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.167519, 45.526257], - [9.167519, 45.530754], - [9.173927, 45.530754], - [9.173927, 45.526257], - [9.167519, 45.526257] + [9.153693, 45.526257], + [9.153693, 45.530754], + [9.158189, 45.530754], + [9.158189, 45.526257], + [9.153693, 45.526257] ] ] } @@ -3952,20 +3952,20 @@ { "type": "Feature", "properties": { - "value": 36, - "stroke": "#0072db", - "fill": "#0072db", + "value": 32, + "stroke": "#0f8cff", + "fill": "#0f8cff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.167519, 45.530754], - [9.167519, 45.535251], - [9.173927, 45.535251], - [9.173927, 45.530754], - [9.167519, 45.530754] + [9.153693, 45.530754], + [9.153693, 45.535251], + [9.158189, 45.535251], + [9.158189, 45.530754], + [9.153693, 45.530754] ] ] } @@ -3974,19 +3974,19 @@ "type": "Feature", "properties": { "value": 20, - "stroke": "#b8ddff", - "fill": "#b8ddff", + "stroke": "#add8ff", + "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.173927, 45.440822], - [9.173927, 45.445319], - [9.180336, 45.445319], - [9.180336, 45.440822], - [9.173927, 45.440822] + [9.158189, 45.440822], + [9.158189, 45.445319], + [9.162686, 45.445319], + [9.162686, 45.440822], + [9.158189, 45.440822] ] ] } @@ -3994,20 +3994,20 @@ { "type": "Feature", "properties": { - "value": 20, - "stroke": "#b8ddff", - "fill": "#b8ddff", + "value": 19, + "stroke": "#bddfff", + "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.173927, 45.445319], - [9.173927, 45.449815], - [9.180336, 45.449815], - [9.180336, 45.445319], - [9.173927, 45.445319] + [9.158189, 45.445319], + [9.158189, 45.449815], + [9.162686, 45.449815], + [9.162686, 45.445319], + [9.158189, 45.445319] ] ] } @@ -4015,20 +4015,20 @@ { "type": "Feature", "properties": { - "value": 20, - "stroke": "#b8ddff", - "fill": "#b8ddff", + "value": 19, + "stroke": "#bddfff", + "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.173927, 45.449815], - [9.173927, 45.454312], - [9.180336, 45.454312], - [9.180336, 45.449815], - [9.173927, 45.449815] + [9.158189, 45.449815], + [9.158189, 45.454312], + [9.162686, 45.454312], + [9.162686, 45.449815], + [9.158189, 45.449815] ] ] } @@ -4036,20 +4036,20 @@ { "type": "Feature", "properties": { - "value": 20, - "stroke": "#b8ddff", - "fill": "#b8ddff", + "value": 19, + "stroke": "#bddfff", + "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.173927, 45.454312], - [9.173927, 45.458808], - [9.180336, 45.458808], - [9.180336, 45.454312], - [9.173927, 45.454312] + [9.158189, 45.454312], + [9.158189, 45.458808], + [9.162686, 45.458808], + [9.162686, 45.454312], + [9.158189, 45.454312] ] ] } @@ -4057,20 +4057,20 @@ { "type": "Feature", "properties": { - "value": 20, - "stroke": "#b8ddff", - "fill": "#b8ddff", + "value": 18, + "stroke": "#c7e4ff", + "fill": "#c7e4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.173927, 45.458808], - [9.173927, 45.463305], - [9.180336, 45.463305], - [9.180336, 45.458808], - [9.173927, 45.458808] + [9.158189, 45.458808], + [9.158189, 45.463305], + [9.162686, 45.463305], + [9.162686, 45.458808], + [9.158189, 45.458808] ] ] } @@ -4078,20 +4078,20 @@ { "type": "Feature", "properties": { - "value": 20, - "stroke": "#b8ddff", - "fill": "#b8ddff", + "value": 17, + "stroke": "#d6ebff", + "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.173927, 45.463305], - [9.173927, 45.467802], - [9.180336, 45.467802], - [9.180336, 45.463305], - [9.173927, 45.463305] + [9.158189, 45.463305], + [9.158189, 45.467802], + [9.162686, 45.467802], + [9.162686, 45.463305], + [9.158189, 45.463305] ] ] } @@ -4099,20 +4099,20 @@ { "type": "Feature", "properties": { - "value": 20, - "stroke": "#b8ddff", - "fill": "#b8ddff", + "value": 16, + "stroke": "#e5f3ff", + "fill": "#e5f3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.173927, 45.467802], - [9.173927, 45.472298], - [9.180336, 45.472298], - [9.180336, 45.467802], - [9.173927, 45.467802] + [9.158189, 45.467802], + [9.158189, 45.472298], + [9.162686, 45.472298], + [9.162686, 45.467802], + [9.158189, 45.467802] ] ] } @@ -4120,20 +4120,20 @@ { "type": "Feature", "properties": { - "value": 20, - "stroke": "#b8ddff", - "fill": "#b8ddff", + "value": 16, + "stroke": "#e5f3ff", + "fill": "#e5f3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.173927, 45.472298], - [9.173927, 45.476795], - [9.180336, 45.476795], - [9.180336, 45.472298], - [9.173927, 45.472298] + [9.158189, 45.472298], + [9.158189, 45.476795], + [9.162686, 45.476795], + [9.162686, 45.472298], + [9.158189, 45.472298] ] ] } @@ -4141,20 +4141,20 @@ { "type": "Feature", "properties": { - "value": 20, - "stroke": "#b8ddff", - "fill": "#b8ddff", + "value": 18, + "stroke": "#c7e4ff", + "fill": "#c7e4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.173927, 45.476795], - [9.173927, 45.481291], - [9.180336, 45.481291], - [9.180336, 45.476795], - [9.173927, 45.476795] + [9.158189, 45.476795], + [9.158189, 45.481291], + [9.162686, 45.481291], + [9.162686, 45.476795], + [9.158189, 45.476795] ] ] } @@ -4162,7 +4162,7 @@ { "type": "Feature", "properties": { - "value": 21, + "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 @@ -4171,11 +4171,11 @@ "type": "Polygon", "coordinates": [ [ - [9.173927, 45.481291], - [9.173927, 45.485788], - [9.180336, 45.485788], - [9.180336, 45.481291], - [9.173927, 45.481291] + [9.158189, 45.481291], + [9.158189, 45.485788], + [9.162686, 45.485788], + [9.162686, 45.481291], + [9.158189, 45.481291] ] ] } @@ -4184,19 +4184,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.173927, 45.485788], - [9.173927, 45.490285], - [9.180336, 45.490285], - [9.180336, 45.485788], - [9.173927, 45.485788] + [9.158189, 45.485788], + [9.158189, 45.490285], + [9.162686, 45.490285], + [9.162686, 45.485788], + [9.158189, 45.485788] ] ] } @@ -4205,19 +4205,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.173927, 45.490285], - [9.173927, 45.494781], - [9.180336, 45.494781], - [9.180336, 45.490285], - [9.173927, 45.490285] + [9.158189, 45.490285], + [9.158189, 45.494781], + [9.162686, 45.494781], + [9.162686, 45.490285], + [9.158189, 45.490285] ] ] } @@ -4225,20 +4225,20 @@ { "type": "Feature", "properties": { - "value": 19, - "stroke": "#c7e4ff", - "fill": "#c7e4ff", + "value": 22, + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.173927, 45.494781], - [9.173927, 45.499278], - [9.180336, 45.499278], - [9.180336, 45.494781], - [9.173927, 45.494781] + [9.158189, 45.494781], + [9.158189, 45.499278], + [9.162686, 45.499278], + [9.162686, 45.494781], + [9.158189, 45.494781] ] ] } @@ -4246,20 +4246,20 @@ { "type": "Feature", "properties": { - "value": 20, - "stroke": "#b8ddff", - "fill": "#b8ddff", + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.173927, 45.499278], - [9.173927, 45.503774], - [9.180336, 45.503774], - [9.180336, 45.499278], - [9.173927, 45.499278] + [9.158189, 45.499278], + [9.158189, 45.503774], + [9.162686, 45.503774], + [9.162686, 45.499278], + [9.158189, 45.499278] ] ] } @@ -4268,19 +4268,19 @@ "type": "Feature", "properties": { "value": 24, - "stroke": "#85c4ff", - "fill": "#85c4ff", + "stroke": "#7ac0ff", + "fill": "#7ac0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.173927, 45.503774], - [9.173927, 45.508271], - [9.180336, 45.508271], - [9.180336, 45.503774], - [9.173927, 45.503774] + [9.158189, 45.503774], + [9.158189, 45.508271], + [9.162686, 45.508271], + [9.162686, 45.503774], + [9.158189, 45.503774] ] ] } @@ -4289,19 +4289,19 @@ "type": "Feature", "properties": { "value": 26, - "stroke": "#66b6ff", - "fill": "#66b6ff", + "stroke": "#5cb1ff", + "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.173927, 45.508271], - [9.173927, 45.512768], - [9.180336, 45.512768], - [9.180336, 45.508271], - [9.173927, 45.508271] + [9.158189, 45.508271], + [9.158189, 45.512768], + [9.162686, 45.512768], + [9.162686, 45.508271], + [9.158189, 45.508271] ] ] } @@ -4309,20 +4309,20 @@ { "type": "Feature", "properties": { - "value": 29, - "stroke": "#3da2ff", - "fill": "#3da2ff", + "value": 27, + "stroke": "#52acff", + "fill": "#52acff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.173927, 45.512768], - [9.173927, 45.517264], - [9.180336, 45.517264], - [9.180336, 45.512768], - [9.173927, 45.512768] + [9.158189, 45.512768], + [9.158189, 45.517264], + [9.162686, 45.517264], + [9.162686, 45.512768], + [9.158189, 45.512768] ] ] } @@ -4330,20 +4330,20 @@ { "type": "Feature", "properties": { - "value": 31, - "stroke": "#2496ff", - "fill": "#2496ff", + "value": 29, + "stroke": "#38a0ff", + "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.173927, 45.517264], - [9.173927, 45.521761], - [9.180336, 45.521761], - [9.180336, 45.517264], - [9.173927, 45.517264] + [9.158189, 45.517264], + [9.158189, 45.521761], + [9.162686, 45.521761], + [9.162686, 45.517264], + [9.158189, 45.517264] ] ] } @@ -4351,20 +4351,20 @@ { "type": "Feature", "properties": { - "value": 34, - "stroke": "#0082fa", - "fill": "#0082fa", + "value": 30, + "stroke": "#2999ff", + "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.173927, 45.521761], - [9.173927, 45.526257], - [9.180336, 45.526257], - [9.180336, 45.521761], - [9.173927, 45.521761] + [9.158189, 45.521761], + [9.158189, 45.526257], + [9.162686, 45.526257], + [9.162686, 45.521761], + [9.158189, 45.521761] ] ] } @@ -4372,20 +4372,20 @@ { "type": "Feature", "properties": { - "value": 36, - "stroke": "#0072db", - "fill": "#0072db", + "value": 32, + "stroke": "#0f8cff", + "fill": "#0f8cff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.173927, 45.526257], - [9.173927, 45.530754], - [9.180336, 45.530754], - [9.180336, 45.526257], - [9.173927, 45.526257] + [9.158189, 45.526257], + [9.158189, 45.530754], + [9.162686, 45.530754], + [9.162686, 45.526257], + [9.158189, 45.526257] ] ] } @@ -4393,20 +4393,20 @@ { "type": "Feature", "properties": { - "value": 38, - "stroke": "#0065c2", - "fill": "#0065c2", + "value": 33, + "stroke": "#0085ff", + "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.173927, 45.530754], - [9.173927, 45.535251], - [9.180336, 45.535251], - [9.180336, 45.530754], - [9.173927, 45.530754] + [9.158189, 45.530754], + [9.158189, 45.535251], + [9.162686, 45.535251], + [9.162686, 45.530754], + [9.158189, 45.530754] ] ] } @@ -4414,7 +4414,7 @@ { "type": "Feature", "properties": { - "value": 21, + "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 @@ -4423,11 +4423,11 @@ "type": "Polygon", "coordinates": [ [ - [9.180336, 45.440822], - [9.180336, 45.445319], - [9.186744, 45.445319], - [9.186744, 45.440822], - [9.180336, 45.440822] + [9.162686, 45.440822], + [9.162686, 45.445319], + [9.167182, 45.445319], + [9.167182, 45.440822], + [9.162686, 45.440822] ] ] } @@ -4436,19 +4436,3085 @@ "type": "Feature", "properties": { "value": 20, - "stroke": "#b8ddff", - "fill": "#b8ddff", + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.162686, 45.445319], + [9.162686, 45.449815], + [9.167182, 45.449815], + [9.167182, 45.445319], + [9.162686, 45.445319] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#bddfff", + "fill": "#bddfff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.162686, 45.449815], + [9.162686, 45.454312], + [9.167182, 45.454312], + [9.167182, 45.449815], + [9.162686, 45.449815] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#bddfff", + "fill": "#bddfff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.162686, 45.454312], + [9.162686, 45.458808], + [9.167182, 45.458808], + [9.167182, 45.454312], + [9.162686, 45.454312] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#bddfff", + "fill": "#bddfff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.162686, 45.458808], + [9.162686, 45.463305], + [9.167182, 45.463305], + [9.167182, 45.458808], + [9.162686, 45.458808] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#c7e4ff", + "fill": "#c7e4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.162686, 45.463305], + [9.162686, 45.467802], + [9.167182, 45.467802], + [9.167182, 45.463305], + [9.162686, 45.463305] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#c7e4ff", + "fill": "#c7e4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.162686, 45.467802], + [9.162686, 45.472298], + [9.167182, 45.472298], + [9.167182, 45.467802], + [9.162686, 45.467802] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#c7e4ff", + "fill": "#c7e4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.162686, 45.472298], + [9.162686, 45.476795], + [9.167182, 45.476795], + [9.167182, 45.472298], + [9.162686, 45.472298] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#bddfff", + "fill": "#bddfff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.162686, 45.476795], + [9.162686, 45.481291], + [9.167182, 45.481291], + [9.167182, 45.476795], + [9.162686, 45.476795] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.162686, 45.481291], + [9.162686, 45.485788], + [9.167182, 45.485788], + [9.167182, 45.481291], + [9.162686, 45.481291] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.162686, 45.485788], + [9.162686, 45.490285], + [9.167182, 45.490285], + [9.167182, 45.485788], + [9.162686, 45.485788] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.162686, 45.490285], + [9.162686, 45.494781], + [9.167182, 45.494781], + [9.167182, 45.490285], + [9.162686, 45.490285] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.162686, 45.494781], + [9.162686, 45.499278], + [9.167182, 45.499278], + [9.167182, 45.494781], + [9.162686, 45.494781] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#94ccff", + "fill": "#94ccff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.162686, 45.499278], + [9.162686, 45.503774], + [9.167182, 45.503774], + [9.167182, 45.499278], + [9.162686, 45.499278] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#7ac0ff", + "fill": "#7ac0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.162686, 45.503774], + [9.162686, 45.508271], + [9.167182, 45.508271], + [9.167182, 45.503774], + [9.162686, 45.503774] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.162686, 45.508271], + [9.162686, 45.512768], + [9.167182, 45.512768], + [9.167182, 45.508271], + [9.162686, 45.508271] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#52acff", + "fill": "#52acff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.162686, 45.512768], + [9.162686, 45.517264], + [9.167182, 45.517264], + [9.167182, 45.512768], + [9.162686, 45.512768] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.162686, 45.517264], + [9.162686, 45.521761], + [9.167182, 45.521761], + [9.167182, 45.517264], + [9.162686, 45.517264] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.162686, 45.521761], + [9.162686, 45.526257], + [9.167182, 45.526257], + [9.167182, 45.521761], + [9.162686, 45.521761] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#0085ff", + "fill": "#0085ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.162686, 45.526257], + [9.162686, 45.530754], + [9.167182, 45.530754], + [9.167182, 45.526257], + [9.162686, 45.526257] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.162686, 45.530754], + [9.162686, 45.535251], + [9.167182, 45.535251], + [9.167182, 45.530754], + [9.162686, 45.530754] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.167182, 45.440822], + [9.167182, 45.445319], + [9.171679, 45.445319], + [9.171679, 45.440822], + [9.167182, 45.440822] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.167182, 45.445319], + [9.167182, 45.449815], + [9.171679, 45.449815], + [9.171679, 45.445319], + [9.167182, 45.445319] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.167182, 45.449815], + [9.167182, 45.454312], + [9.171679, 45.454312], + [9.171679, 45.449815], + [9.167182, 45.449815] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#bddfff", + "fill": "#bddfff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.167182, 45.454312], + [9.167182, 45.458808], + [9.171679, 45.458808], + [9.171679, 45.454312], + [9.167182, 45.454312] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#bddfff", + "fill": "#bddfff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.167182, 45.458808], + [9.167182, 45.463305], + [9.171679, 45.463305], + [9.171679, 45.458808], + [9.167182, 45.458808] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#bddfff", + "fill": "#bddfff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.167182, 45.463305], + [9.167182, 45.467802], + [9.171679, 45.467802], + [9.171679, 45.463305], + [9.167182, 45.463305] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#bddfff", + "fill": "#bddfff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.167182, 45.467802], + [9.167182, 45.472298], + [9.171679, 45.472298], + [9.171679, 45.467802], + [9.167182, 45.467802] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#bddfff", + "fill": "#bddfff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.167182, 45.472298], + [9.167182, 45.476795], + [9.171679, 45.476795], + [9.171679, 45.472298], + [9.167182, 45.472298] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#bddfff", + "fill": "#bddfff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.167182, 45.476795], + [9.167182, 45.481291], + [9.171679, 45.481291], + [9.171679, 45.476795], + [9.167182, 45.476795] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.167182, 45.481291], + [9.167182, 45.485788], + [9.171679, 45.485788], + [9.171679, 45.481291], + [9.167182, 45.481291] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.167182, 45.485788], + [9.167182, 45.490285], + [9.171679, 45.490285], + [9.171679, 45.485788], + [9.167182, 45.485788] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.167182, 45.490285], + [9.167182, 45.494781], + [9.171679, 45.494781], + [9.171679, 45.490285], + [9.167182, 45.490285] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.167182, 45.494781], + [9.167182, 45.499278], + [9.171679, 45.499278], + [9.171679, 45.494781], + [9.167182, 45.494781] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.167182, 45.499278], + [9.167182, 45.503774], + [9.171679, 45.503774], + [9.171679, 45.499278], + [9.167182, 45.499278] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#7ac0ff", + "fill": "#7ac0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.167182, 45.503774], + [9.167182, 45.508271], + [9.171679, 45.508271], + [9.171679, 45.503774], + [9.167182, 45.503774] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.167182, 45.508271], + [9.167182, 45.512768], + [9.171679, 45.512768], + [9.171679, 45.508271], + [9.167182, 45.508271] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.167182, 45.512768], + [9.167182, 45.517264], + [9.171679, 45.517264], + [9.171679, 45.512768], + [9.167182, 45.512768] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2999ff", + "fill": "#2999ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.167182, 45.517264], + [9.167182, 45.521761], + [9.171679, 45.521761], + [9.171679, 45.517264], + [9.167182, 45.517264] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.167182, 45.521761], + [9.167182, 45.526257], + [9.171679, 45.526257], + [9.171679, 45.521761], + [9.167182, 45.521761] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.167182, 45.526257], + [9.167182, 45.530754], + [9.171679, 45.530754], + [9.171679, 45.526257], + [9.167182, 45.526257] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0078e6", + "fill": "#0078e6", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.167182, 45.530754], + [9.167182, 45.535251], + [9.171679, 45.535251], + [9.171679, 45.530754], + [9.167182, 45.530754] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.171679, 45.440822], + [9.171679, 45.445319], + [9.176176, 45.445319], + [9.176176, 45.440822], + [9.171679, 45.440822] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.171679, 45.445319], + [9.171679, 45.449815], + [9.176176, 45.449815], + [9.176176, 45.445319], + [9.171679, 45.445319] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.171679, 45.449815], + [9.171679, 45.454312], + [9.176176, 45.454312], + [9.176176, 45.449815], + [9.171679, 45.449815] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.171679, 45.454312], + [9.171679, 45.458808], + [9.176176, 45.458808], + [9.176176, 45.454312], + [9.171679, 45.454312] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#bddfff", + "fill": "#bddfff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.171679, 45.458808], + [9.171679, 45.463305], + [9.176176, 45.463305], + [9.176176, 45.458808], + [9.171679, 45.458808] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#bddfff", + "fill": "#bddfff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.171679, 45.463305], + [9.171679, 45.467802], + [9.176176, 45.467802], + [9.176176, 45.463305], + [9.171679, 45.463305] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#bddfff", + "fill": "#bddfff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.171679, 45.467802], + [9.171679, 45.472298], + [9.176176, 45.472298], + [9.176176, 45.467802], + [9.171679, 45.467802] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#bddfff", + "fill": "#bddfff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.171679, 45.472298], + [9.171679, 45.476795], + [9.176176, 45.476795], + [9.176176, 45.472298], + [9.171679, 45.472298] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.171679, 45.476795], + [9.171679, 45.481291], + [9.176176, 45.481291], + [9.176176, 45.476795], + [9.171679, 45.476795] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.171679, 45.481291], + [9.171679, 45.485788], + [9.176176, 45.485788], + [9.176176, 45.481291], + [9.171679, 45.481291] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.171679, 45.485788], + [9.171679, 45.490285], + [9.176176, 45.490285], + [9.176176, 45.485788], + [9.171679, 45.485788] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.171679, 45.490285], + [9.171679, 45.494781], + [9.176176, 45.494781], + [9.176176, 45.490285], + [9.171679, 45.490285] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#bddfff", + "fill": "#bddfff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.171679, 45.494781], + [9.171679, 45.499278], + [9.176176, 45.499278], + [9.176176, 45.494781], + [9.171679, 45.494781] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.171679, 45.499278], + [9.171679, 45.503774], + [9.176176, 45.503774], + [9.176176, 45.499278], + [9.171679, 45.499278] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.171679, 45.503774], + [9.171679, 45.508271], + [9.176176, 45.508271], + [9.176176, 45.503774], + [9.171679, 45.503774] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.171679, 45.508271], + [9.171679, 45.512768], + [9.176176, 45.512768], + [9.176176, 45.508271], + [9.171679, 45.508271] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.171679, 45.512768], + [9.171679, 45.517264], + [9.176176, 45.517264], + [9.176176, 45.512768], + [9.171679, 45.512768] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.171679, 45.517264], + [9.171679, 45.521761], + [9.176176, 45.521761], + [9.176176, 45.517264], + [9.171679, 45.517264] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#0085ff", + "fill": "#0085ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.171679, 45.521761], + [9.171679, 45.526257], + [9.176176, 45.526257], + [9.176176, 45.521761], + [9.171679, 45.521761] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0078e6", + "fill": "#0078e6", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.171679, 45.526257], + [9.171679, 45.530754], + [9.176176, 45.530754], + [9.176176, 45.526257], + [9.171679, 45.526257] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#0068c7", + "fill": "#0068c7", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.171679, 45.530754], + [9.171679, 45.535251], + [9.176176, 45.535251], + [9.176176, 45.530754], + [9.171679, 45.530754] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176176, 45.440822], + [9.176176, 45.445319], + [9.180672, 45.445319], + [9.180672, 45.440822], + [9.176176, 45.440822] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176176, 45.445319], + [9.176176, 45.449815], + [9.180672, 45.449815], + [9.180672, 45.445319], + [9.176176, 45.445319] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176176, 45.449815], + [9.176176, 45.454312], + [9.180672, 45.454312], + [9.180672, 45.449815], + [9.176176, 45.449815] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176176, 45.454312], + [9.176176, 45.458808], + [9.180672, 45.458808], + [9.180672, 45.454312], + [9.176176, 45.454312] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176176, 45.458808], + [9.176176, 45.463305], + [9.180672, 45.463305], + [9.180672, 45.458808], + [9.176176, 45.458808] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176176, 45.463305], + [9.176176, 45.467802], + [9.180672, 45.467802], + [9.180672, 45.463305], + [9.176176, 45.463305] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176176, 45.467802], + [9.176176, 45.472298], + [9.180672, 45.472298], + [9.180672, 45.467802], + [9.176176, 45.467802] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176176, 45.472298], + [9.176176, 45.476795], + [9.180672, 45.476795], + [9.180672, 45.472298], + [9.176176, 45.472298] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176176, 45.476795], + [9.176176, 45.481291], + [9.180672, 45.481291], + [9.180672, 45.476795], + [9.176176, 45.476795] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176176, 45.481291], + [9.176176, 45.485788], + [9.180672, 45.485788], + [9.180672, 45.481291], + [9.176176, 45.481291] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176176, 45.485788], + [9.176176, 45.490285], + [9.180672, 45.490285], + [9.180672, 45.485788], + [9.176176, 45.485788] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176176, 45.490285], + [9.176176, 45.494781], + [9.180672, 45.494781], + [9.180672, 45.490285], + [9.176176, 45.490285] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176176, 45.494781], + [9.176176, 45.499278], + [9.180672, 45.499278], + [9.180672, 45.494781], + [9.176176, 45.494781] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176176, 45.499278], + [9.176176, 45.503774], + [9.180672, 45.503774], + [9.180672, 45.499278], + [9.176176, 45.499278] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#7ac0ff", + "fill": "#7ac0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176176, 45.503774], + [9.176176, 45.508271], + [9.180672, 45.508271], + [9.180672, 45.503774], + [9.176176, 45.503774] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176176, 45.508271], + [9.176176, 45.512768], + [9.180672, 45.512768], + [9.180672, 45.508271], + [9.176176, 45.508271] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176176, 45.512768], + [9.176176, 45.517264], + [9.180672, 45.517264], + [9.180672, 45.512768], + [9.176176, 45.512768] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176176, 45.517264], + [9.176176, 45.521761], + [9.180672, 45.521761], + [9.180672, 45.517264], + [9.176176, 45.517264] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176176, 45.521761], + [9.176176, 45.526257], + [9.180672, 45.526257], + [9.180672, 45.521761], + [9.176176, 45.521761] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#0068c7", + "fill": "#0068c7", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176176, 45.526257], + [9.176176, 45.530754], + [9.180672, 45.530754], + [9.180672, 45.526257], + [9.176176, 45.526257] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 39, + "stroke": "#005aad", + "fill": "#005aad", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176176, 45.530754], + [9.176176, 45.535251], + [9.180672, 45.535251], + [9.180672, 45.530754], + [9.176176, 45.530754] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.180672, 45.440822], + [9.180672, 45.445319], + [9.185169, 45.445319], + [9.185169, 45.440822], + [9.180672, 45.440822] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.180672, 45.445319], + [9.180672, 45.449815], + [9.185169, 45.449815], + [9.185169, 45.445319], + [9.180672, 45.445319] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.180672, 45.449815], + [9.180672, 45.454312], + [9.185169, 45.454312], + [9.185169, 45.449815], + [9.180672, 45.449815] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.180672, 45.454312], + [9.180672, 45.458808], + [9.185169, 45.458808], + [9.185169, 45.454312], + [9.180672, 45.454312] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.180672, 45.458808], + [9.180672, 45.463305], + [9.185169, 45.463305], + [9.185169, 45.458808], + [9.180672, 45.458808] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.180672, 45.463305], + [9.180672, 45.467802], + [9.185169, 45.467802], + [9.185169, 45.463305], + [9.180672, 45.463305] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.180672, 45.467802], + [9.180672, 45.472298], + [9.185169, 45.472298], + [9.185169, 45.467802], + [9.180672, 45.467802] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.180672, 45.472298], + [9.180672, 45.476795], + [9.185169, 45.476795], + [9.185169, 45.472298], + [9.180672, 45.472298] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.180672, 45.476795], + [9.180672, 45.481291], + [9.185169, 45.481291], + [9.185169, 45.476795], + [9.180672, 45.476795] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.180672, 45.481291], + [9.180672, 45.485788], + [9.185169, 45.485788], + [9.185169, 45.481291], + [9.180672, 45.481291] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.180672, 45.485788], + [9.180672, 45.490285], + [9.185169, 45.490285], + [9.185169, 45.485788], + [9.180672, 45.485788] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.180672, 45.490285], + [9.180672, 45.494781], + [9.185169, 45.494781], + [9.185169, 45.490285], + [9.180672, 45.490285] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.180672, 45.494781], + [9.180672, 45.499278], + [9.185169, 45.499278], + [9.185169, 45.494781], + [9.180672, 45.494781] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#94ccff", + "fill": "#94ccff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.180672, 45.499278], + [9.180672, 45.503774], + [9.185169, 45.503774], + [9.185169, 45.499278], + [9.180672, 45.499278] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#7ac0ff", + "fill": "#7ac0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.180672, 45.503774], + [9.180672, 45.508271], + [9.185169, 45.508271], + [9.185169, 45.503774], + [9.180672, 45.503774] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#52acff", + "fill": "#52acff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.180672, 45.508271], + [9.180672, 45.512768], + [9.185169, 45.512768], + [9.185169, 45.508271], + [9.180672, 45.508271] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.180672, 45.512768], + [9.180672, 45.517264], + [9.185169, 45.517264], + [9.185169, 45.512768], + [9.180672, 45.512768] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.180672, 45.517264], + [9.180672, 45.521761], + [9.185169, 45.521761], + [9.185169, 45.517264], + [9.180672, 45.517264] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0078e6", + "fill": "#0078e6", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.180672, 45.521761], + [9.180672, 45.526257], + [9.185169, 45.526257], + [9.185169, 45.521761], + [9.180672, 45.521761] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 39, + "stroke": "#005aad", + "fill": "#005aad", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.180672, 45.526257], + [9.180672, 45.530754], + [9.185169, 45.530754], + [9.185169, 45.526257], + [9.180672, 45.526257] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 42, + "stroke": "#004585", + "fill": "#004585", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.180672, 45.530754], + [9.180672, 45.535251], + [9.185169, 45.535251], + [9.185169, 45.530754], + [9.180672, 45.530754] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185169, 45.440822], + [9.185169, 45.445319], + [9.189665, 45.445319], + [9.189665, 45.440822], + [9.185169, 45.440822] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185169, 45.445319], + [9.185169, 45.449815], + [9.189665, 45.449815], + [9.189665, 45.445319], + [9.185169, 45.445319] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185169, 45.449815], + [9.185169, 45.454312], + [9.189665, 45.454312], + [9.189665, 45.449815], + [9.185169, 45.449815] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185169, 45.454312], + [9.185169, 45.458808], + [9.189665, 45.458808], + [9.189665, 45.454312], + [9.185169, 45.454312] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185169, 45.458808], + [9.185169, 45.463305], + [9.189665, 45.463305], + [9.189665, 45.458808], + [9.185169, 45.458808] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185169, 45.463305], + [9.185169, 45.467802], + [9.189665, 45.467802], + [9.189665, 45.463305], + [9.185169, 45.463305] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185169, 45.467802], + [9.185169, 45.472298], + [9.189665, 45.472298], + [9.189665, 45.467802], + [9.185169, 45.467802] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185169, 45.472298], + [9.185169, 45.476795], + [9.189665, 45.476795], + [9.189665, 45.472298], + [9.185169, 45.472298] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185169, 45.476795], + [9.185169, 45.481291], + [9.189665, 45.481291], + [9.189665, 45.476795], + [9.185169, 45.476795] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185169, 45.481291], + [9.185169, 45.485788], + [9.189665, 45.485788], + [9.189665, 45.481291], + [9.185169, 45.481291] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#94ccff", + "fill": "#94ccff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185169, 45.485788], + [9.185169, 45.490285], + [9.189665, 45.490285], + [9.189665, 45.485788], + [9.185169, 45.485788] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#94ccff", + "fill": "#94ccff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185169, 45.490285], + [9.185169, 45.494781], + [9.189665, 45.494781], + [9.189665, 45.490285], + [9.185169, 45.490285] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#94ccff", + "fill": "#94ccff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185169, 45.494781], + [9.185169, 45.499278], + [9.189665, 45.499278], + [9.189665, 45.494781], + [9.185169, 45.494781] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185169, 45.499278], + [9.185169, 45.503774], + [9.189665, 45.503774], + [9.189665, 45.499278], + [9.185169, 45.499278] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185169, 45.503774], + [9.185169, 45.508271], + [9.189665, 45.508271], + [9.189665, 45.503774], + [9.185169, 45.503774] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#52acff", + "fill": "#52acff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185169, 45.508271], + [9.185169, 45.512768], + [9.189665, 45.512768], + [9.189665, 45.508271], + [9.185169, 45.508271] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2999ff", + "fill": "#2999ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185169, 45.512768], + [9.185169, 45.517264], + [9.189665, 45.517264], + [9.189665, 45.512768], + [9.185169, 45.512768] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#0085ff", + "fill": "#0085ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185169, 45.517264], + [9.185169, 45.521761], + [9.189665, 45.521761], + [9.189665, 45.517264], + [9.185169, 45.517264] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0070d6", + "fill": "#0070d6", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185169, 45.521761], + [9.185169, 45.526257], + [9.189665, 45.526257], + [9.189665, 45.521761], + [9.185169, 45.521761] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 40, + "stroke": "#0055a3", + "fill": "#0055a3", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185169, 45.526257], + [9.185169, 45.530754], + [9.189665, 45.530754], + [9.189665, 45.526257], + [9.185169, 45.526257] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 46, + "stroke": "#002b52", + "fill": "#002b52", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185169, 45.530754], + [9.185169, 45.535251], + [9.189665, 45.535251], + [9.189665, 45.530754], + [9.185169, 45.530754] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.189665, 45.440822], + [9.189665, 45.445319], + [9.194162, 45.445319], + [9.194162, 45.440822], + [9.189665, 45.440822] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.189665, 45.445319], + [9.189665, 45.449815], + [9.194162, 45.449815], + [9.194162, 45.445319], + [9.189665, 45.445319] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.189665, 45.449815], + [9.189665, 45.454312], + [9.194162, 45.454312], + [9.194162, 45.449815], + [9.189665, 45.449815] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.189665, 45.454312], + [9.189665, 45.458808], + [9.194162, 45.458808], + [9.194162, 45.454312], + [9.189665, 45.454312] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.189665, 45.458808], + [9.189665, 45.463305], + [9.194162, 45.463305], + [9.194162, 45.458808], + [9.189665, 45.458808] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.189665, 45.463305], + [9.189665, 45.467802], + [9.194162, 45.467802], + [9.194162, 45.463305], + [9.189665, 45.463305] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.189665, 45.467802], + [9.189665, 45.472298], + [9.194162, 45.472298], + [9.194162, 45.467802], + [9.189665, 45.467802] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.189665, 45.472298], + [9.189665, 45.476795], + [9.194162, 45.476795], + [9.194162, 45.472298], + [9.189665, 45.472298] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.189665, 45.476795], + [9.189665, 45.481291], + [9.194162, 45.481291], + [9.194162, 45.476795], + [9.189665, 45.476795] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#94ccff", + "fill": "#94ccff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.189665, 45.481291], + [9.189665, 45.485788], + [9.194162, 45.485788], + [9.194162, 45.481291], + [9.189665, 45.481291] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#94ccff", + "fill": "#94ccff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.189665, 45.485788], + [9.189665, 45.490285], + [9.194162, 45.490285], + [9.194162, 45.485788], + [9.189665, 45.485788] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#94ccff", + "fill": "#94ccff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.189665, 45.490285], + [9.189665, 45.494781], + [9.194162, 45.494781], + [9.194162, 45.490285], + [9.189665, 45.490285] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.189665, 45.494781], + [9.189665, 45.499278], + [9.194162, 45.499278], + [9.194162, 45.494781], + [9.189665, 45.494781] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#7ac0ff", + "fill": "#7ac0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.189665, 45.499278], + [9.189665, 45.503774], + [9.194162, 45.503774], + [9.194162, 45.499278], + [9.189665, 45.499278] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.189665, 45.503774], + [9.189665, 45.508271], + [9.194162, 45.508271], + [9.194162, 45.503774], + [9.189665, 45.503774] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.189665, 45.508271], + [9.189665, 45.512768], + [9.194162, 45.512768], + [9.194162, 45.508271], + [9.189665, 45.508271] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2999ff", + "fill": "#2999ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.189665, 45.512768], + [9.189665, 45.517264], + [9.194162, 45.517264], + [9.194162, 45.512768], + [9.189665, 45.512768] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#0085ff", + "fill": "#0085ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.189665, 45.517264], + [9.189665, 45.521761], + [9.194162, 45.521761], + [9.194162, 45.517264], + [9.189665, 45.517264] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#0068c7", + "fill": "#0068c7", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.189665, 45.521761], + [9.189665, 45.526257], + [9.194162, 45.526257], + [9.194162, 45.521761], + [9.189665, 45.521761] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 42, + "stroke": "#004585", + "fill": "#004585", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.189665, 45.526257], + [9.189665, 45.530754], + [9.194162, 45.530754], + [9.194162, 45.526257], + [9.189665, 45.526257] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 50, + "stroke": "#000d1a", + "fill": "#000d1a", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.189665, 45.530754], + [9.189665, 45.535251], + [9.194162, 45.535251], + [9.194162, 45.530754], + [9.189665, 45.530754] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.180336, 45.445319], - [9.180336, 45.449815], - [9.186744, 45.449815], - [9.186744, 45.445319], - [9.180336, 45.445319] + [9.194162, 45.440822], + [9.194162, 45.445319], + [9.198659, 45.445319], + [9.198659, 45.440822], + [9.194162, 45.440822] ] ] } @@ -4456,20 +7522,20 @@ { "type": "Feature", "properties": { - "value": 20, - "stroke": "#b8ddff", - "fill": "#b8ddff", + "value": 21, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.180336, 45.449815], - [9.180336, 45.454312], - [9.186744, 45.454312], - [9.186744, 45.449815], - [9.180336, 45.449815] + [9.194162, 45.445319], + [9.194162, 45.449815], + [9.198659, 45.449815], + [9.198659, 45.445319], + [9.194162, 45.445319] ] ] } @@ -4477,20 +7543,20 @@ { "type": "Feature", "properties": { - "value": 20, - "stroke": "#b8ddff", - "fill": "#b8ddff", + "value": 21, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.180336, 45.454312], - [9.180336, 45.458808], - [9.186744, 45.458808], - [9.186744, 45.454312], - [9.180336, 45.454312] + [9.194162, 45.449815], + [9.194162, 45.454312], + [9.198659, 45.454312], + [9.198659, 45.449815], + [9.194162, 45.449815] ] ] } @@ -4498,20 +7564,20 @@ { "type": "Feature", "properties": { - "value": 20, - "stroke": "#b8ddff", - "fill": "#b8ddff", + "value": 21, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.180336, 45.458808], - [9.180336, 45.463305], - [9.186744, 45.463305], - [9.186744, 45.458808], - [9.180336, 45.458808] + [9.194162, 45.454312], + [9.194162, 45.458808], + [9.198659, 45.458808], + [9.198659, 45.454312], + [9.194162, 45.454312] ] ] } @@ -4519,20 +7585,20 @@ { "type": "Feature", "properties": { - "value": 20, - "stroke": "#b8ddff", - "fill": "#b8ddff", + "value": 21, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.180336, 45.463305], - [9.180336, 45.467802], - [9.186744, 45.467802], - [9.186744, 45.463305], - [9.180336, 45.463305] + [9.194162, 45.458808], + [9.194162, 45.463305], + [9.198659, 45.463305], + [9.198659, 45.458808], + [9.194162, 45.458808] ] ] } @@ -4540,20 +7606,20 @@ { "type": "Feature", "properties": { - "value": 20, - "stroke": "#b8ddff", - "fill": "#b8ddff", + "value": 21, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.180336, 45.467802], - [9.180336, 45.472298], - [9.186744, 45.472298], - [9.186744, 45.467802], - [9.180336, 45.467802] + [9.194162, 45.463305], + [9.194162, 45.467802], + [9.198659, 45.467802], + [9.198659, 45.463305], + [9.194162, 45.463305] ] ] } @@ -4561,20 +7627,20 @@ { "type": "Feature", "properties": { - "value": 20, - "stroke": "#b8ddff", - "fill": "#b8ddff", + "value": 21, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.180336, 45.472298], - [9.180336, 45.476795], - [9.186744, 45.476795], - [9.186744, 45.472298], - [9.180336, 45.472298] + [9.194162, 45.467802], + [9.194162, 45.472298], + [9.198659, 45.472298], + [9.198659, 45.467802], + [9.194162, 45.467802] ] ] } @@ -4583,19 +7649,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.180336, 45.476795], - [9.180336, 45.481291], - [9.186744, 45.481291], - [9.186744, 45.476795], - [9.180336, 45.476795] + [9.194162, 45.472298], + [9.194162, 45.476795], + [9.198659, 45.476795], + [9.198659, 45.472298], + [9.194162, 45.472298] ] ] } @@ -4604,19 +7670,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.180336, 45.481291], - [9.180336, 45.485788], - [9.186744, 45.485788], - [9.186744, 45.481291], - [9.180336, 45.481291] + [9.194162, 45.476795], + [9.194162, 45.481291], + [9.198659, 45.481291], + [9.198659, 45.476795], + [9.194162, 45.476795] ] ] } @@ -4624,20 +7690,20 @@ { "type": "Feature", "properties": { - "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "value": 22, + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.180336, 45.485788], - [9.180336, 45.490285], - [9.186744, 45.490285], - [9.186744, 45.485788], - [9.180336, 45.485788] + [9.194162, 45.481291], + [9.194162, 45.485788], + [9.198659, 45.485788], + [9.198659, 45.481291], + [9.194162, 45.481291] ] ] } @@ -4645,20 +7711,20 @@ { "type": "Feature", "properties": { - "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "value": 22, + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.180336, 45.490285], - [9.180336, 45.494781], - [9.186744, 45.494781], - [9.186744, 45.490285], - [9.180336, 45.490285] + [9.194162, 45.485788], + [9.194162, 45.490285], + [9.198659, 45.490285], + [9.198659, 45.485788], + [9.194162, 45.485788] ] ] } @@ -4666,20 +7732,20 @@ { "type": "Feature", "properties": { - "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.180336, 45.494781], - [9.180336, 45.499278], - [9.186744, 45.499278], - [9.186744, 45.494781], - [9.180336, 45.494781] + [9.194162, 45.490285], + [9.194162, 45.494781], + [9.198659, 45.494781], + [9.198659, 45.490285], + [9.194162, 45.490285] ] ] } @@ -4688,19 +7754,19 @@ "type": "Feature", "properties": { "value": 23, - "stroke": "#8fc9ff", - "fill": "#8fc9ff", + "stroke": "#85c4ff", + "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.180336, 45.499278], - [9.180336, 45.503774], - [9.186744, 45.503774], - [9.186744, 45.499278], - [9.180336, 45.499278] + [9.194162, 45.494781], + [9.194162, 45.499278], + [9.198659, 45.499278], + [9.198659, 45.494781], + [9.194162, 45.494781] ] ] } @@ -4709,19 +7775,19 @@ "type": "Feature", "properties": { "value": 25, - "stroke": "#75bdff", - "fill": "#75bdff", + "stroke": "#6bb8ff", + "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.180336, 45.503774], - [9.180336, 45.508271], - [9.186744, 45.508271], - [9.186744, 45.503774], - [9.180336, 45.503774] + [9.194162, 45.499278], + [9.194162, 45.503774], + [9.198659, 45.503774], + [9.198659, 45.499278], + [9.194162, 45.499278] ] ] } @@ -4729,7 +7795,7 @@ { "type": "Feature", "properties": { - "value": 27, + "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 @@ -4738,11 +7804,11 @@ "type": "Polygon", "coordinates": [ [ - [9.180336, 45.508271], - [9.180336, 45.512768], - [9.186744, 45.512768], - [9.186744, 45.508271], - [9.180336, 45.508271] + [9.194162, 45.503774], + [9.194162, 45.508271], + [9.198659, 45.508271], + [9.198659, 45.503774], + [9.194162, 45.503774] ] ] } @@ -4750,20 +7816,20 @@ { "type": "Feature", "properties": { - "value": 29, - "stroke": "#3da2ff", - "fill": "#3da2ff", + "value": 28, + "stroke": "#42a5ff", + "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.180336, 45.512768], - [9.180336, 45.517264], - [9.186744, 45.517264], - [9.186744, 45.512768], - [9.180336, 45.512768] + [9.194162, 45.508271], + [9.194162, 45.512768], + [9.198659, 45.512768], + [9.198659, 45.508271], + [9.194162, 45.508271] ] ] } @@ -4771,20 +7837,20 @@ { "type": "Feature", "properties": { - "value": 32, - "stroke": "#148fff", - "fill": "#148fff", + "value": 30, + "stroke": "#2999ff", + "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.180336, 45.517264], - [9.180336, 45.521761], - [9.186744, 45.521761], - [9.186744, 45.517264], - [9.180336, 45.517264] + [9.194162, 45.512768], + [9.194162, 45.517264], + [9.198659, 45.517264], + [9.198659, 45.512768], + [9.194162, 45.512768] ] ] } @@ -4792,20 +7858,20 @@ { "type": "Feature", "properties": { - "value": 35, - "stroke": "#007aeb", - "fill": "#007aeb", + "value": 33, + "stroke": "#0085ff", + "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.180336, 45.521761], - [9.180336, 45.526257], - [9.186744, 45.526257], - [9.186744, 45.521761], - [9.180336, 45.521761] + [9.194162, 45.517264], + [9.194162, 45.521761], + [9.198659, 45.521761], + [9.198659, 45.517264], + [9.194162, 45.517264] ] ] } @@ -4813,20 +7879,20 @@ { "type": "Feature", "properties": { - "value": 39, - "stroke": "#005db3", - "fill": "#005db3", + "value": 37, + "stroke": "#0068c7", + "fill": "#0068c7", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.180336, 45.526257], - [9.180336, 45.530754], - [9.186744, 45.530754], - [9.186744, 45.526257], - [9.180336, 45.526257] + [9.194162, 45.521761], + [9.194162, 45.526257], + [9.198659, 45.526257], + [9.198659, 45.521761], + [9.194162, 45.521761] ] ] } @@ -4835,19 +7901,19 @@ "type": "Feature", "properties": { "value": 42, - "stroke": "#00488a", - "fill": "#00488a", + "stroke": "#004585", + "fill": "#004585", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.180336, 45.530754], - [9.180336, 45.535251], - [9.186744, 45.535251], - [9.186744, 45.530754], - [9.180336, 45.530754] + [9.194162, 45.526257], + [9.194162, 45.530754], + [9.198659, 45.530754], + [9.198659, 45.526257], + [9.194162, 45.526257] ] ] } @@ -4855,20 +7921,20 @@ { "type": "Feature", "properties": { - "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "value": 52, + "stroke": "#000000", + "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.186744, 45.440822], - [9.186744, 45.445319], - [9.193153, 45.445319], - [9.193153, 45.440822], - [9.186744, 45.440822] + [9.194162, 45.530754], + [9.194162, 45.535251], + [9.198659, 45.535251], + [9.198659, 45.530754], + [9.194162, 45.530754] ] ] } @@ -4877,19 +7943,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.186744, 45.445319], - [9.186744, 45.449815], - [9.193153, 45.449815], - [9.193153, 45.445319], - [9.186744, 45.445319] + [9.198659, 45.440822], + [9.198659, 45.445319], + [9.203155, 45.445319], + [9.203155, 45.440822], + [9.198659, 45.440822] ] ] } @@ -4898,19 +7964,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.186744, 45.449815], - [9.186744, 45.454312], - [9.193153, 45.454312], - [9.193153, 45.449815], - [9.186744, 45.449815] + [9.198659, 45.445319], + [9.198659, 45.449815], + [9.203155, 45.449815], + [9.203155, 45.445319], + [9.198659, 45.445319] ] ] } @@ -4919,19 +7985,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.186744, 45.454312], - [9.186744, 45.458808], - [9.193153, 45.458808], - [9.193153, 45.454312], - [9.186744, 45.454312] + [9.198659, 45.449815], + [9.198659, 45.454312], + [9.203155, 45.454312], + [9.203155, 45.449815], + [9.198659, 45.449815] ] ] } @@ -4940,19 +8006,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.186744, 45.458808], - [9.186744, 45.463305], - [9.193153, 45.463305], - [9.193153, 45.458808], - [9.186744, 45.458808] + [9.198659, 45.454312], + [9.198659, 45.458808], + [9.203155, 45.458808], + [9.203155, 45.454312], + [9.198659, 45.454312] ] ] } @@ -4961,19 +8027,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.186744, 45.463305], - [9.186744, 45.467802], - [9.193153, 45.467802], - [9.193153, 45.463305], - [9.186744, 45.463305] + [9.198659, 45.458808], + [9.198659, 45.463305], + [9.203155, 45.463305], + [9.203155, 45.458808], + [9.198659, 45.458808] ] ] } @@ -4982,19 +8048,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.186744, 45.467802], - [9.186744, 45.472298], - [9.193153, 45.472298], - [9.193153, 45.467802], - [9.186744, 45.467802] + [9.198659, 45.463305], + [9.198659, 45.467802], + [9.203155, 45.467802], + [9.203155, 45.463305], + [9.198659, 45.463305] ] ] } @@ -5003,19 +8069,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.186744, 45.472298], - [9.186744, 45.476795], - [9.193153, 45.476795], - [9.193153, 45.472298], - [9.186744, 45.472298] + [9.198659, 45.467802], + [9.198659, 45.472298], + [9.203155, 45.472298], + [9.203155, 45.467802], + [9.198659, 45.467802] ] ] } @@ -5024,19 +8090,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.186744, 45.476795], - [9.186744, 45.481291], - [9.193153, 45.481291], - [9.193153, 45.476795], - [9.186744, 45.476795] + [9.198659, 45.472298], + [9.198659, 45.476795], + [9.203155, 45.476795], + [9.203155, 45.472298], + [9.198659, 45.472298] ] ] } @@ -5044,20 +8110,20 @@ { "type": "Feature", "properties": { - "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "value": 22, + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.186744, 45.481291], - [9.186744, 45.485788], - [9.193153, 45.485788], - [9.193153, 45.481291], - [9.186744, 45.481291] + [9.198659, 45.476795], + [9.198659, 45.481291], + [9.203155, 45.481291], + [9.203155, 45.476795], + [9.198659, 45.476795] ] ] } @@ -5066,19 +8132,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.186744, 45.485788], - [9.186744, 45.490285], - [9.193153, 45.490285], - [9.193153, 45.485788], - [9.186744, 45.485788] + [9.198659, 45.481291], + [9.198659, 45.485788], + [9.203155, 45.485788], + [9.203155, 45.481291], + [9.198659, 45.481291] ] ] } @@ -5087,19 +8153,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.186744, 45.490285], - [9.186744, 45.494781], - [9.193153, 45.494781], - [9.193153, 45.490285], - [9.186744, 45.490285] + [9.198659, 45.485788], + [9.198659, 45.490285], + [9.203155, 45.490285], + [9.203155, 45.485788], + [9.198659, 45.485788] ] ] } @@ -5108,19 +8174,19 @@ "type": "Feature", "properties": { "value": 23, - "stroke": "#8fc9ff", - "fill": "#8fc9ff", + "stroke": "#85c4ff", + "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.186744, 45.494781], - [9.186744, 45.499278], - [9.193153, 45.499278], - [9.193153, 45.494781], - [9.186744, 45.494781] + [9.198659, 45.490285], + [9.198659, 45.494781], + [9.203155, 45.494781], + [9.203155, 45.490285], + [9.198659, 45.490285] ] ] } @@ -5129,19 +8195,19 @@ "type": "Feature", "properties": { "value": 24, - "stroke": "#85c4ff", - "fill": "#85c4ff", + "stroke": "#7ac0ff", + "fill": "#7ac0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.186744, 45.499278], - [9.186744, 45.503774], - [9.193153, 45.503774], - [9.193153, 45.499278], - [9.186744, 45.499278] + [9.198659, 45.494781], + [9.198659, 45.499278], + [9.203155, 45.499278], + [9.203155, 45.494781], + [9.198659, 45.494781] ] ] } @@ -5150,19 +8216,40 @@ "type": "Feature", "properties": { "value": 25, - "stroke": "#75bdff", - "fill": "#75bdff", + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.198659, 45.499278], + [9.198659, 45.503774], + [9.203155, 45.503774], + [9.203155, 45.499278], + [9.198659, 45.499278] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.186744, 45.503774], - [9.186744, 45.508271], - [9.193153, 45.508271], - [9.193153, 45.503774], - [9.186744, 45.503774] + [9.198659, 45.503774], + [9.198659, 45.508271], + [9.203155, 45.508271], + [9.203155, 45.503774], + [9.198659, 45.503774] ] ] } @@ -5171,19 +8258,19 @@ "type": "Feature", "properties": { "value": 28, - "stroke": "#4daaff", - "fill": "#4daaff", + "stroke": "#42a5ff", + "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.186744, 45.508271], - [9.186744, 45.512768], - [9.193153, 45.512768], - [9.193153, 45.508271], - [9.186744, 45.508271] + [9.198659, 45.508271], + [9.198659, 45.512768], + [9.203155, 45.512768], + [9.203155, 45.508271], + [9.198659, 45.508271] ] ] } @@ -5192,19 +8279,19 @@ "type": "Feature", "properties": { "value": 30, - "stroke": "#2e9bff", - "fill": "#2e9bff", + "stroke": "#2999ff", + "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.186744, 45.512768], - [9.186744, 45.517264], - [9.193153, 45.517264], - [9.193153, 45.512768], - [9.186744, 45.512768] + [9.198659, 45.512768], + [9.198659, 45.517264], + [9.203155, 45.517264], + [9.203155, 45.512768], + [9.198659, 45.512768] ] ] } @@ -5213,19 +8300,19 @@ "type": "Feature", "properties": { "value": 33, - "stroke": "#0587ff", - "fill": "#0587ff", + "stroke": "#0085ff", + "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.186744, 45.517264], - [9.186744, 45.521761], - [9.193153, 45.521761], - [9.193153, 45.517264], - [9.186744, 45.517264] + [9.198659, 45.517264], + [9.198659, 45.521761], + [9.203155, 45.521761], + [9.203155, 45.517264], + [9.198659, 45.517264] ] ] } @@ -5234,19 +8321,19 @@ "type": "Feature", "properties": { "value": 37, - "stroke": "#006dd1", - "fill": "#006dd1", + "stroke": "#0068c7", + "fill": "#0068c7", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.186744, 45.521761], - [9.186744, 45.526257], - [9.193153, 45.526257], - [9.193153, 45.521761], - [9.186744, 45.521761] + [9.198659, 45.521761], + [9.198659, 45.526257], + [9.203155, 45.526257], + [9.203155, 45.521761], + [9.198659, 45.521761] ] ] } @@ -5254,20 +8341,20 @@ { "type": "Feature", "properties": { - "value": 41, - "stroke": "#005099", - "fill": "#005099", + "value": 42, + "stroke": "#004585", + "fill": "#004585", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.186744, 45.526257], - [9.186744, 45.530754], - [9.193153, 45.530754], - [9.193153, 45.526257], - [9.186744, 45.526257] + [9.198659, 45.526257], + [9.198659, 45.530754], + [9.203155, 45.530754], + [9.203155, 45.526257], + [9.198659, 45.526257] ] ] } @@ -5284,11 +8371,11 @@ "type": "Polygon", "coordinates": [ [ - [9.186744, 45.530754], - [9.186744, 45.535251], - [9.193153, 45.535251], - [9.193153, 45.530754], - [9.186744, 45.530754] + [9.198659, 45.530754], + [9.198659, 45.535251], + [9.203155, 45.535251], + [9.203155, 45.530754], + [9.198659, 45.530754] ] ] } @@ -5297,19 +8384,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.193153, 45.440822], - [9.193153, 45.445319], - [9.199561, 45.445319], - [9.199561, 45.440822], - [9.193153, 45.440822] + [9.203155, 45.440822], + [9.203155, 45.445319], + [9.207652, 45.445319], + [9.207652, 45.440822], + [9.203155, 45.440822] ] ] } @@ -5318,19 +8405,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.193153, 45.445319], - [9.193153, 45.449815], - [9.199561, 45.449815], - [9.199561, 45.445319], - [9.193153, 45.445319] + [9.203155, 45.445319], + [9.203155, 45.449815], + [9.207652, 45.449815], + [9.207652, 45.445319], + [9.203155, 45.445319] ] ] } @@ -5339,19 +8426,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.193153, 45.449815], - [9.193153, 45.454312], - [9.199561, 45.454312], - [9.199561, 45.449815], - [9.193153, 45.449815] + [9.203155, 45.449815], + [9.203155, 45.454312], + [9.207652, 45.454312], + [9.207652, 45.449815], + [9.203155, 45.449815] ] ] } @@ -5360,19 +8447,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.193153, 45.454312], - [9.193153, 45.458808], - [9.199561, 45.458808], - [9.199561, 45.454312], - [9.193153, 45.454312] + [9.203155, 45.454312], + [9.203155, 45.458808], + [9.207652, 45.458808], + [9.207652, 45.454312], + [9.203155, 45.454312] ] ] } @@ -5381,19 +8468,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.193153, 45.458808], - [9.193153, 45.463305], - [9.199561, 45.463305], - [9.199561, 45.458808], - [9.193153, 45.458808] + [9.203155, 45.458808], + [9.203155, 45.463305], + [9.207652, 45.463305], + [9.207652, 45.458808], + [9.203155, 45.458808] ] ] } @@ -5402,19 +8489,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.193153, 45.463305], - [9.193153, 45.467802], - [9.199561, 45.467802], - [9.199561, 45.463305], - [9.193153, 45.463305] + [9.203155, 45.463305], + [9.203155, 45.467802], + [9.207652, 45.467802], + [9.207652, 45.463305], + [9.203155, 45.463305] ] ] } @@ -5423,19 +8510,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.193153, 45.467802], - [9.193153, 45.472298], - [9.199561, 45.472298], - [9.199561, 45.467802], - [9.193153, 45.467802] + [9.203155, 45.467802], + [9.203155, 45.472298], + [9.207652, 45.472298], + [9.207652, 45.467802], + [9.203155, 45.467802] ] ] } @@ -5443,20 +8530,20 @@ { "type": "Feature", "properties": { - "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "value": 22, + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.193153, 45.472298], - [9.193153, 45.476795], - [9.199561, 45.476795], - [9.199561, 45.472298], - [9.193153, 45.472298] + [9.203155, 45.472298], + [9.203155, 45.476795], + [9.207652, 45.476795], + [9.207652, 45.472298], + [9.203155, 45.472298] ] ] } @@ -5464,20 +8551,20 @@ { "type": "Feature", "properties": { - "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "value": 22, + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.193153, 45.476795], - [9.193153, 45.481291], - [9.199561, 45.481291], - [9.199561, 45.476795], - [9.193153, 45.476795] + [9.203155, 45.476795], + [9.203155, 45.481291], + [9.207652, 45.481291], + [9.207652, 45.476795], + [9.203155, 45.476795] ] ] } @@ -5486,19 +8573,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.193153, 45.481291], - [9.193153, 45.485788], - [9.199561, 45.485788], - [9.199561, 45.481291], - [9.193153, 45.481291] + [9.203155, 45.481291], + [9.203155, 45.485788], + [9.207652, 45.485788], + [9.207652, 45.481291], + [9.203155, 45.481291] ] ] } @@ -5507,19 +8594,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.193153, 45.485788], - [9.193153, 45.490285], - [9.199561, 45.490285], - [9.199561, 45.485788], - [9.193153, 45.485788] + [9.203155, 45.485788], + [9.203155, 45.490285], + [9.207652, 45.490285], + [9.207652, 45.485788], + [9.203155, 45.485788] ] ] } @@ -5528,19 +8615,19 @@ "type": "Feature", "properties": { "value": 23, - "stroke": "#8fc9ff", - "fill": "#8fc9ff", + "stroke": "#85c4ff", + "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.193153, 45.490285], - [9.193153, 45.494781], - [9.199561, 45.494781], - [9.199561, 45.490285], - [9.193153, 45.490285] + [9.203155, 45.490285], + [9.203155, 45.494781], + [9.207652, 45.494781], + [9.207652, 45.490285], + [9.203155, 45.490285] ] ] } @@ -5548,20 +8635,20 @@ { "type": "Feature", "properties": { - "value": 23, - "stroke": "#8fc9ff", - "fill": "#8fc9ff", + "value": 24, + "stroke": "#7ac0ff", + "fill": "#7ac0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.193153, 45.494781], - [9.193153, 45.499278], - [9.199561, 45.499278], - [9.199561, 45.494781], - [9.193153, 45.494781] + [9.203155, 45.494781], + [9.203155, 45.499278], + [9.207652, 45.499278], + [9.207652, 45.494781], + [9.203155, 45.494781] ] ] } @@ -5570,19 +8657,19 @@ "type": "Feature", "properties": { "value": 25, - "stroke": "#75bdff", - "fill": "#75bdff", + "stroke": "#6bb8ff", + "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.193153, 45.499278], - [9.193153, 45.503774], - [9.199561, 45.503774], - [9.199561, 45.499278], - [9.193153, 45.499278] + [9.203155, 45.499278], + [9.203155, 45.503774], + [9.207652, 45.503774], + [9.207652, 45.499278], + [9.203155, 45.499278] ] ] } @@ -5591,19 +8678,19 @@ "type": "Feature", "properties": { "value": 26, - "stroke": "#66b6ff", - "fill": "#66b6ff", + "stroke": "#5cb1ff", + "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.193153, 45.503774], - [9.193153, 45.508271], - [9.199561, 45.508271], - [9.199561, 45.503774], - [9.193153, 45.503774] + [9.203155, 45.503774], + [9.203155, 45.508271], + [9.207652, 45.508271], + [9.207652, 45.503774], + [9.203155, 45.503774] ] ] } @@ -5612,19 +8699,19 @@ "type": "Feature", "properties": { "value": 28, - "stroke": "#4daaff", - "fill": "#4daaff", + "stroke": "#42a5ff", + "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.193153, 45.508271], - [9.193153, 45.512768], - [9.199561, 45.512768], - [9.199561, 45.508271], - [9.193153, 45.508271] + [9.203155, 45.508271], + [9.203155, 45.512768], + [9.207652, 45.512768], + [9.207652, 45.508271], + [9.203155, 45.508271] ] ] } @@ -5633,19 +8720,19 @@ "type": "Feature", "properties": { "value": 30, - "stroke": "#2e9bff", - "fill": "#2e9bff", + "stroke": "#2999ff", + "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.193153, 45.512768], - [9.193153, 45.517264], - [9.199561, 45.517264], - [9.199561, 45.512768], - [9.193153, 45.512768] + [9.203155, 45.512768], + [9.203155, 45.517264], + [9.207652, 45.517264], + [9.207652, 45.512768], + [9.203155, 45.512768] ] ] } @@ -5654,19 +8741,19 @@ "type": "Feature", "properties": { "value": 33, - "stroke": "#0587ff", - "fill": "#0587ff", + "stroke": "#0085ff", + "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.193153, 45.517264], - [9.193153, 45.521761], - [9.199561, 45.521761], - [9.199561, 45.517264], - [9.193153, 45.517264] + [9.203155, 45.517264], + [9.203155, 45.521761], + [9.207652, 45.521761], + [9.207652, 45.517264], + [9.203155, 45.517264] ] ] } @@ -5674,20 +8761,20 @@ { "type": "Feature", "properties": { - "value": 37, - "stroke": "#006dd1", - "fill": "#006dd1", + "value": 36, + "stroke": "#0070d6", + "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.193153, 45.521761], - [9.193153, 45.526257], - [9.199561, 45.526257], - [9.199561, 45.521761], - [9.193153, 45.521761] + [9.203155, 45.521761], + [9.203155, 45.526257], + [9.207652, 45.526257], + [9.207652, 45.521761], + [9.203155, 45.521761] ] ] } @@ -5695,20 +8782,20 @@ { "type": "Feature", "properties": { - "value": 42, - "stroke": "#00488a", - "fill": "#00488a", + "value": 40, + "stroke": "#0055a3", + "fill": "#0055a3", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.193153, 45.526257], - [9.193153, 45.530754], - [9.199561, 45.530754], - [9.199561, 45.526257], - [9.193153, 45.526257] + [9.203155, 45.526257], + [9.203155, 45.530754], + [9.207652, 45.530754], + [9.207652, 45.526257], + [9.203155, 45.526257] ] ] } @@ -5716,20 +8803,20 @@ { "type": "Feature", "properties": { - "value": 52, - "stroke": "#000000", - "fill": "#000000", + "value": 44, + "stroke": "#00386b", + "fill": "#00386b", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.193153, 45.530754], - [9.193153, 45.535251], - [9.199561, 45.535251], - [9.199561, 45.530754], - [9.193153, 45.530754] + [9.203155, 45.530754], + [9.203155, 45.535251], + [9.207652, 45.535251], + [9.207652, 45.530754], + [9.203155, 45.530754] ] ] } @@ -5737,20 +8824,20 @@ { "type": "Feature", "properties": { - "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "value": 22, + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.199561, 45.440822], - [9.199561, 45.445319], - [9.20597, 45.445319], - [9.20597, 45.440822], - [9.199561, 45.440822] + [9.207652, 45.440822], + [9.207652, 45.445319], + [9.212148, 45.445319], + [9.212148, 45.440822], + [9.207652, 45.440822] ] ] } @@ -5758,20 +8845,20 @@ { "type": "Feature", "properties": { - "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "value": 22, + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.199561, 45.445319], - [9.199561, 45.449815], - [9.20597, 45.449815], - [9.20597, 45.445319], - [9.199561, 45.445319] + [9.207652, 45.445319], + [9.207652, 45.449815], + [9.212148, 45.449815], + [9.212148, 45.445319], + [9.207652, 45.445319] ] ] } @@ -5780,19 +8867,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.199561, 45.449815], - [9.199561, 45.454312], - [9.20597, 45.454312], - [9.20597, 45.449815], - [9.199561, 45.449815] + [9.207652, 45.449815], + [9.207652, 45.454312], + [9.212148, 45.454312], + [9.212148, 45.449815], + [9.207652, 45.449815] ] ] } @@ -5801,19 +8888,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.199561, 45.454312], - [9.199561, 45.458808], - [9.20597, 45.458808], - [9.20597, 45.454312], - [9.199561, 45.454312] + [9.207652, 45.454312], + [9.207652, 45.458808], + [9.212148, 45.458808], + [9.212148, 45.454312], + [9.207652, 45.454312] ] ] } @@ -5822,19 +8909,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.199561, 45.458808], - [9.199561, 45.463305], - [9.20597, 45.463305], - [9.20597, 45.458808], - [9.199561, 45.458808] + [9.207652, 45.458808], + [9.207652, 45.463305], + [9.212148, 45.463305], + [9.212148, 45.458808], + [9.207652, 45.458808] ] ] } @@ -5843,19 +8930,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.199561, 45.463305], - [9.199561, 45.467802], - [9.20597, 45.467802], - [9.20597, 45.463305], - [9.199561, 45.463305] + [9.207652, 45.463305], + [9.207652, 45.467802], + [9.212148, 45.467802], + [9.212148, 45.463305], + [9.207652, 45.463305] ] ] } @@ -5863,20 +8950,20 @@ { "type": "Feature", "properties": { - "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "value": 22, + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.199561, 45.467802], - [9.199561, 45.472298], - [9.20597, 45.472298], - [9.20597, 45.467802], - [9.199561, 45.467802] + [9.207652, 45.467802], + [9.207652, 45.472298], + [9.212148, 45.472298], + [9.212148, 45.467802], + [9.207652, 45.467802] ] ] } @@ -5884,20 +8971,20 @@ { "type": "Feature", "properties": { - "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "value": 22, + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.199561, 45.472298], - [9.199561, 45.476795], - [9.20597, 45.476795], - [9.20597, 45.472298], - [9.199561, 45.472298] + [9.207652, 45.472298], + [9.207652, 45.476795], + [9.212148, 45.476795], + [9.212148, 45.472298], + [9.207652, 45.472298] ] ] } @@ -5906,19 +8993,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.199561, 45.476795], - [9.199561, 45.481291], - [9.20597, 45.481291], - [9.20597, 45.476795], - [9.199561, 45.476795] + [9.207652, 45.476795], + [9.207652, 45.481291], + [9.212148, 45.481291], + [9.212148, 45.476795], + [9.207652, 45.476795] ] ] } @@ -5927,19 +9014,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.199561, 45.481291], - [9.199561, 45.485788], - [9.20597, 45.485788], - [9.20597, 45.481291], - [9.199561, 45.481291] + [9.207652, 45.481291], + [9.207652, 45.485788], + [9.212148, 45.485788], + [9.212148, 45.481291], + [9.207652, 45.481291] ] ] } @@ -5948,19 +9035,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.199561, 45.485788], - [9.199561, 45.490285], - [9.20597, 45.490285], - [9.20597, 45.485788], - [9.199561, 45.485788] + [9.207652, 45.485788], + [9.207652, 45.490285], + [9.212148, 45.490285], + [9.212148, 45.485788], + [9.207652, 45.485788] ] ] } @@ -5969,19 +9056,19 @@ "type": "Feature", "properties": { "value": 23, - "stroke": "#8fc9ff", - "fill": "#8fc9ff", + "stroke": "#85c4ff", + "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.199561, 45.490285], - [9.199561, 45.494781], - [9.20597, 45.494781], - [9.20597, 45.490285], - [9.199561, 45.490285] + [9.207652, 45.490285], + [9.207652, 45.494781], + [9.212148, 45.494781], + [9.212148, 45.490285], + [9.207652, 45.490285] ] ] } @@ -5990,19 +9077,19 @@ "type": "Feature", "properties": { "value": 24, - "stroke": "#85c4ff", - "fill": "#85c4ff", + "stroke": "#7ac0ff", + "fill": "#7ac0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.199561, 45.494781], - [9.199561, 45.499278], - [9.20597, 45.499278], - [9.20597, 45.494781], - [9.199561, 45.494781] + [9.207652, 45.494781], + [9.207652, 45.499278], + [9.212148, 45.499278], + [9.212148, 45.494781], + [9.207652, 45.494781] ] ] } @@ -6011,19 +9098,19 @@ "type": "Feature", "properties": { "value": 25, - "stroke": "#75bdff", - "fill": "#75bdff", + "stroke": "#6bb8ff", + "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.199561, 45.499278], - [9.199561, 45.503774], - [9.20597, 45.503774], - [9.20597, 45.499278], - [9.199561, 45.499278] + [9.207652, 45.499278], + [9.207652, 45.503774], + [9.212148, 45.503774], + [9.212148, 45.499278], + [9.207652, 45.499278] ] ] } @@ -6032,19 +9119,19 @@ "type": "Feature", "properties": { "value": 26, - "stroke": "#66b6ff", - "fill": "#66b6ff", + "stroke": "#5cb1ff", + "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.199561, 45.503774], - [9.199561, 45.508271], - [9.20597, 45.508271], - [9.20597, 45.503774], - [9.199561, 45.503774] + [9.207652, 45.503774], + [9.207652, 45.508271], + [9.212148, 45.508271], + [9.212148, 45.503774], + [9.207652, 45.503774] ] ] } @@ -6053,19 +9140,19 @@ "type": "Feature", "properties": { "value": 28, - "stroke": "#4daaff", - "fill": "#4daaff", + "stroke": "#42a5ff", + "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.199561, 45.508271], - [9.199561, 45.512768], - [9.20597, 45.512768], - [9.20597, 45.508271], - [9.199561, 45.508271] + [9.207652, 45.508271], + [9.207652, 45.512768], + [9.212148, 45.512768], + [9.212148, 45.508271], + [9.207652, 45.508271] ] ] } @@ -6074,19 +9161,19 @@ "type": "Feature", "properties": { "value": 30, - "stroke": "#2e9bff", - "fill": "#2e9bff", + "stroke": "#2999ff", + "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.199561, 45.512768], - [9.199561, 45.517264], - [9.20597, 45.517264], - [9.20597, 45.512768], - [9.199561, 45.512768] + [9.207652, 45.512768], + [9.207652, 45.517264], + [9.212148, 45.517264], + [9.212148, 45.512768], + [9.207652, 45.512768] ] ] } @@ -6094,20 +9181,20 @@ { "type": "Feature", "properties": { - "value": 33, - "stroke": "#0587ff", - "fill": "#0587ff", + "value": 32, + "stroke": "#0f8cff", + "fill": "#0f8cff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.199561, 45.517264], - [9.199561, 45.521761], - [9.20597, 45.521761], - [9.20597, 45.517264], - [9.199561, 45.517264] + [9.207652, 45.517264], + [9.207652, 45.521761], + [9.212148, 45.521761], + [9.212148, 45.517264], + [9.207652, 45.517264] ] ] } @@ -6115,20 +9202,20 @@ { "type": "Feature", "properties": { - "value": 37, - "stroke": "#006dd1", - "fill": "#006dd1", + "value": 35, + "stroke": "#0078e6", + "fill": "#0078e6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.199561, 45.521761], - [9.199561, 45.526257], - [9.20597, 45.526257], - [9.20597, 45.521761], - [9.199561, 45.521761] + [9.207652, 45.521761], + [9.207652, 45.526257], + [9.212148, 45.526257], + [9.212148, 45.521761], + [9.207652, 45.521761] ] ] } @@ -6136,20 +9223,20 @@ { "type": "Feature", "properties": { - "value": 41, - "stroke": "#005099", - "fill": "#005099", + "value": 38, + "stroke": "#0062bd", + "fill": "#0062bd", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.199561, 45.526257], - [9.199561, 45.530754], - [9.20597, 45.530754], - [9.20597, 45.526257], - [9.199561, 45.526257] + [9.207652, 45.526257], + [9.207652, 45.530754], + [9.212148, 45.530754], + [9.212148, 45.526257], + [9.207652, 45.526257] ] ] } @@ -6157,20 +9244,20 @@ { "type": "Feature", "properties": { - "value": 46, - "stroke": "#002b52", - "fill": "#002b52", + "value": 41, + "stroke": "#004d94", + "fill": "#004d94", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.199561, 45.530754], - [9.199561, 45.535251], - [9.20597, 45.535251], - [9.20597, 45.530754], - [9.199561, 45.530754] + [9.207652, 45.530754], + [9.207652, 45.535251], + [9.212148, 45.535251], + [9.212148, 45.530754], + [9.207652, 45.530754] ] ] } @@ -6179,19 +9266,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.20597, 45.440822], - [9.20597, 45.445319], - [9.212378, 45.445319], - [9.212378, 45.440822], - [9.20597, 45.440822] + [9.212148, 45.440822], + [9.212148, 45.445319], + [9.216645, 45.445319], + [9.216645, 45.440822], + [9.212148, 45.440822] ] ] } @@ -6199,20 +9286,20 @@ { "type": "Feature", "properties": { - "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "value": 22, + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.20597, 45.445319], - [9.20597, 45.449815], - [9.212378, 45.449815], - [9.212378, 45.445319], - [9.20597, 45.445319] + [9.212148, 45.445319], + [9.212148, 45.449815], + [9.216645, 45.449815], + [9.216645, 45.445319], + [9.212148, 45.445319] ] ] } @@ -6220,20 +9307,20 @@ { "type": "Feature", "properties": { - "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "value": 22, + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.20597, 45.449815], - [9.20597, 45.454312], - [9.212378, 45.454312], - [9.212378, 45.449815], - [9.20597, 45.449815] + [9.212148, 45.449815], + [9.212148, 45.454312], + [9.216645, 45.454312], + [9.216645, 45.449815], + [9.212148, 45.449815] ] ] } @@ -6241,20 +9328,20 @@ { "type": "Feature", "properties": { - "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "value": 22, + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.20597, 45.454312], - [9.20597, 45.458808], - [9.212378, 45.458808], - [9.212378, 45.454312], - [9.20597, 45.454312] + [9.212148, 45.454312], + [9.212148, 45.458808], + [9.216645, 45.458808], + [9.216645, 45.454312], + [9.212148, 45.454312] ] ] } @@ -6262,20 +9349,20 @@ { "type": "Feature", "properties": { - "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "value": 22, + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.20597, 45.458808], - [9.20597, 45.463305], - [9.212378, 45.463305], - [9.212378, 45.458808], - [9.20597, 45.458808] + [9.212148, 45.458808], + [9.212148, 45.463305], + [9.216645, 45.463305], + [9.216645, 45.458808], + [9.212148, 45.458808] ] ] } @@ -6283,20 +9370,20 @@ { "type": "Feature", "properties": { - "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "value": 22, + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.20597, 45.463305], - [9.20597, 45.467802], - [9.212378, 45.467802], - [9.212378, 45.463305], - [9.20597, 45.463305] + [9.212148, 45.463305], + [9.212148, 45.467802], + [9.216645, 45.467802], + [9.216645, 45.463305], + [9.212148, 45.463305] ] ] } @@ -6305,19 +9392,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.20597, 45.467802], - [9.20597, 45.472298], - [9.212378, 45.472298], - [9.212378, 45.467802], - [9.20597, 45.467802] + [9.212148, 45.467802], + [9.212148, 45.472298], + [9.216645, 45.472298], + [9.216645, 45.467802], + [9.212148, 45.467802] ] ] } @@ -6326,19 +9413,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.20597, 45.472298], - [9.20597, 45.476795], - [9.212378, 45.476795], - [9.212378, 45.472298], - [9.20597, 45.472298] + [9.212148, 45.472298], + [9.212148, 45.476795], + [9.216645, 45.476795], + [9.216645, 45.472298], + [9.212148, 45.472298] ] ] } @@ -6347,19 +9434,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.20597, 45.476795], - [9.20597, 45.481291], - [9.212378, 45.481291], - [9.212378, 45.476795], - [9.20597, 45.476795] + [9.212148, 45.476795], + [9.212148, 45.481291], + [9.216645, 45.481291], + [9.216645, 45.476795], + [9.212148, 45.476795] ] ] } @@ -6368,19 +9455,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.20597, 45.481291], - [9.20597, 45.485788], - [9.212378, 45.485788], - [9.212378, 45.481291], - [9.20597, 45.481291] + [9.212148, 45.481291], + [9.212148, 45.485788], + [9.216645, 45.485788], + [9.216645, 45.481291], + [9.212148, 45.481291] ] ] } @@ -6389,19 +9476,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.20597, 45.485788], - [9.20597, 45.490285], - [9.212378, 45.490285], - [9.212378, 45.485788], - [9.20597, 45.485788] + [9.212148, 45.485788], + [9.212148, 45.490285], + [9.216645, 45.490285], + [9.216645, 45.485788], + [9.212148, 45.485788] ] ] } @@ -6409,20 +9496,20 @@ { "type": "Feature", "properties": { - "value": 23, - "stroke": "#8fc9ff", - "fill": "#8fc9ff", + "value": 22, + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.20597, 45.490285], - [9.20597, 45.494781], - [9.212378, 45.494781], - [9.212378, 45.490285], - [9.20597, 45.490285] + [9.212148, 45.490285], + [9.212148, 45.494781], + [9.216645, 45.494781], + [9.216645, 45.490285], + [9.212148, 45.490285] ] ] } @@ -6430,7 +9517,7 @@ { "type": "Feature", "properties": { - "value": 24, + "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 @@ -6439,11 +9526,11 @@ "type": "Polygon", "coordinates": [ [ - [9.20597, 45.494781], - [9.20597, 45.499278], - [9.212378, 45.499278], - [9.212378, 45.494781], - [9.20597, 45.494781] + [9.212148, 45.494781], + [9.212148, 45.499278], + [9.216645, 45.499278], + [9.216645, 45.494781], + [9.212148, 45.494781] ] ] } @@ -6451,20 +9538,20 @@ { "type": "Feature", "properties": { - "value": 25, - "stroke": "#75bdff", - "fill": "#75bdff", + "value": 24, + "stroke": "#7ac0ff", + "fill": "#7ac0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.20597, 45.499278], - [9.20597, 45.503774], - [9.212378, 45.503774], - [9.212378, 45.499278], - [9.20597, 45.499278] + [9.212148, 45.499278], + [9.212148, 45.503774], + [9.216645, 45.503774], + [9.216645, 45.499278], + [9.212148, 45.499278] ] ] } @@ -6473,19 +9560,19 @@ "type": "Feature", "properties": { "value": 26, - "stroke": "#66b6ff", - "fill": "#66b6ff", + "stroke": "#5cb1ff", + "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.20597, 45.503774], - [9.20597, 45.508271], - [9.212378, 45.508271], - [9.212378, 45.503774], - [9.20597, 45.503774] + [9.212148, 45.503774], + [9.212148, 45.508271], + [9.216645, 45.508271], + [9.216645, 45.503774], + [9.212148, 45.503774] ] ] } @@ -6494,19 +9581,19 @@ "type": "Feature", "properties": { "value": 28, - "stroke": "#4daaff", - "fill": "#4daaff", + "stroke": "#42a5ff", + "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.20597, 45.508271], - [9.20597, 45.512768], - [9.212378, 45.512768], - [9.212378, 45.508271], - [9.20597, 45.508271] + [9.212148, 45.508271], + [9.212148, 45.512768], + [9.216645, 45.512768], + [9.216645, 45.508271], + [9.212148, 45.508271] ] ] } @@ -6515,19 +9602,19 @@ "type": "Feature", "properties": { "value": 30, - "stroke": "#2e9bff", - "fill": "#2e9bff", + "stroke": "#2999ff", + "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.20597, 45.512768], - [9.20597, 45.517264], - [9.212378, 45.517264], - [9.212378, 45.512768], - [9.20597, 45.512768] + [9.212148, 45.512768], + [9.212148, 45.517264], + [9.216645, 45.517264], + [9.216645, 45.512768], + [9.212148, 45.512768] ] ] } @@ -6536,19 +9623,19 @@ "type": "Feature", "properties": { "value": 32, - "stroke": "#148fff", - "fill": "#148fff", + "stroke": "#0f8cff", + "fill": "#0f8cff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.20597, 45.517264], - [9.20597, 45.521761], - [9.212378, 45.521761], - [9.212378, 45.517264], - [9.20597, 45.517264] + [9.212148, 45.517264], + [9.212148, 45.521761], + [9.216645, 45.521761], + [9.216645, 45.517264], + [9.212148, 45.517264] ] ] } @@ -6556,20 +9643,20 @@ { "type": "Feature", "properties": { - "value": 35, - "stroke": "#007aeb", - "fill": "#007aeb", + "value": 34, + "stroke": "#007df0", + "fill": "#007df0", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.20597, 45.521761], - [9.20597, 45.526257], - [9.212378, 45.526257], - [9.212378, 45.521761], - [9.20597, 45.521761] + [9.212148, 45.521761], + [9.212148, 45.526257], + [9.216645, 45.526257], + [9.216645, 45.521761], + [9.212148, 45.521761] ] ] } @@ -6577,20 +9664,20 @@ { "type": "Feature", "properties": { - "value": 38, - "stroke": "#0065c2", - "fill": "#0065c2", + "value": 36, + "stroke": "#0070d6", + "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.20597, 45.526257], - [9.20597, 45.530754], - [9.212378, 45.530754], - [9.212378, 45.526257], - [9.20597, 45.526257] + [9.212148, 45.526257], + [9.212148, 45.530754], + [9.216645, 45.530754], + [9.216645, 45.526257], + [9.212148, 45.526257] ] ] } @@ -6598,20 +9685,20 @@ { "type": "Feature", "properties": { - "value": 41, - "stroke": "#005099", - "fill": "#005099", + "value": 38, + "stroke": "#0062bd", + "fill": "#0062bd", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.20597, 45.530754], - [9.20597, 45.535251], - [9.212378, 45.535251], - [9.212378, 45.530754], - [9.20597, 45.530754] + [9.212148, 45.530754], + [9.212148, 45.535251], + [9.216645, 45.535251], + [9.216645, 45.530754], + [9.212148, 45.530754] ] ] } @@ -6620,19 +9707,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.212378, 45.440822], - [9.212378, 45.445319], - [9.218787, 45.445319], - [9.218787, 45.440822], - [9.212378, 45.440822] + [9.216645, 45.440822], + [9.216645, 45.445319], + [9.221142, 45.445319], + [9.221142, 45.440822], + [9.216645, 45.440822] ] ] } @@ -6641,19 +9728,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.212378, 45.445319], - [9.212378, 45.449815], - [9.218787, 45.449815], - [9.218787, 45.445319], - [9.212378, 45.445319] + [9.216645, 45.445319], + [9.216645, 45.449815], + [9.221142, 45.449815], + [9.221142, 45.445319], + [9.216645, 45.445319] ] ] } @@ -6662,19 +9749,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.212378, 45.449815], - [9.212378, 45.454312], - [9.218787, 45.454312], - [9.218787, 45.449815], - [9.212378, 45.449815] + [9.216645, 45.449815], + [9.216645, 45.454312], + [9.221142, 45.454312], + [9.221142, 45.449815], + [9.216645, 45.449815] ] ] } @@ -6683,19 +9770,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.212378, 45.454312], - [9.212378, 45.458808], - [9.218787, 45.458808], - [9.218787, 45.454312], - [9.212378, 45.454312] + [9.216645, 45.454312], + [9.216645, 45.458808], + [9.221142, 45.458808], + [9.221142, 45.454312], + [9.216645, 45.454312] ] ] } @@ -6704,19 +9791,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.212378, 45.458808], - [9.212378, 45.463305], - [9.218787, 45.463305], - [9.218787, 45.458808], - [9.212378, 45.458808] + [9.216645, 45.458808], + [9.216645, 45.463305], + [9.221142, 45.463305], + [9.221142, 45.458808], + [9.216645, 45.458808] ] ] } @@ -6725,19 +9812,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.212378, 45.463305], - [9.212378, 45.467802], - [9.218787, 45.467802], - [9.218787, 45.463305], - [9.212378, 45.463305] + [9.216645, 45.463305], + [9.216645, 45.467802], + [9.221142, 45.467802], + [9.221142, 45.463305], + [9.216645, 45.463305] ] ] } @@ -6746,19 +9833,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.212378, 45.467802], - [9.212378, 45.472298], - [9.218787, 45.472298], - [9.218787, 45.467802], - [9.212378, 45.467802] + [9.216645, 45.467802], + [9.216645, 45.472298], + [9.221142, 45.472298], + [9.221142, 45.467802], + [9.216645, 45.467802] ] ] } @@ -6767,19 +9854,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.212378, 45.472298], - [9.212378, 45.476795], - [9.218787, 45.476795], - [9.218787, 45.472298], - [9.212378, 45.472298] + [9.216645, 45.472298], + [9.216645, 45.476795], + [9.221142, 45.476795], + [9.221142, 45.472298], + [9.216645, 45.472298] ] ] } @@ -6787,20 +9874,20 @@ { "type": "Feature", "properties": { - "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "value": 21, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.212378, 45.476795], - [9.212378, 45.481291], - [9.218787, 45.481291], - [9.218787, 45.476795], - [9.212378, 45.476795] + [9.216645, 45.476795], + [9.216645, 45.481291], + [9.221142, 45.481291], + [9.221142, 45.476795], + [9.216645, 45.476795] ] ] } @@ -6808,20 +9895,20 @@ { "type": "Feature", "properties": { - "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "value": 21, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.212378, 45.481291], - [9.212378, 45.485788], - [9.218787, 45.485788], - [9.218787, 45.481291], - [9.212378, 45.481291] + [9.216645, 45.481291], + [9.216645, 45.485788], + [9.221142, 45.485788], + [9.221142, 45.481291], + [9.216645, 45.481291] ] ] } @@ -6829,20 +9916,20 @@ { "type": "Feature", "properties": { - "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "value": 21, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.212378, 45.485788], - [9.212378, 45.490285], - [9.218787, 45.490285], - [9.218787, 45.485788], - [9.212378, 45.485788] + [9.216645, 45.485788], + [9.216645, 45.490285], + [9.221142, 45.490285], + [9.221142, 45.485788], + [9.216645, 45.485788] ] ] } @@ -6850,20 +9937,20 @@ { "type": "Feature", "properties": { - "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "value": 21, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.212378, 45.490285], - [9.212378, 45.494781], - [9.218787, 45.494781], - [9.218787, 45.490285], - [9.212378, 45.490285] + [9.216645, 45.490285], + [9.216645, 45.494781], + [9.221142, 45.494781], + [9.221142, 45.490285], + [9.216645, 45.490285] ] ] } @@ -6872,19 +9959,19 @@ "type": "Feature", "properties": { "value": 23, - "stroke": "#8fc9ff", - "fill": "#8fc9ff", + "stroke": "#85c4ff", + "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.212378, 45.494781], - [9.212378, 45.499278], - [9.218787, 45.499278], - [9.218787, 45.494781], - [9.212378, 45.494781] + [9.216645, 45.494781], + [9.216645, 45.499278], + [9.221142, 45.499278], + [9.221142, 45.494781], + [9.216645, 45.494781] ] ] } @@ -6893,19 +9980,19 @@ "type": "Feature", "properties": { "value": 24, - "stroke": "#85c4ff", - "fill": "#85c4ff", + "stroke": "#7ac0ff", + "fill": "#7ac0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.212378, 45.499278], - [9.212378, 45.503774], - [9.218787, 45.503774], - [9.218787, 45.499278], - [9.212378, 45.499278] + [9.216645, 45.499278], + [9.216645, 45.503774], + [9.221142, 45.503774], + [9.221142, 45.499278], + [9.216645, 45.499278] ] ] } @@ -6914,19 +10001,19 @@ "type": "Feature", "properties": { "value": 26, - "stroke": "#66b6ff", - "fill": "#66b6ff", + "stroke": "#5cb1ff", + "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.212378, 45.503774], - [9.212378, 45.508271], - [9.218787, 45.508271], - [9.218787, 45.503774], - [9.212378, 45.503774] + [9.216645, 45.503774], + [9.216645, 45.508271], + [9.221142, 45.508271], + [9.221142, 45.503774], + [9.216645, 45.503774] ] ] } @@ -6934,20 +10021,20 @@ { "type": "Feature", "properties": { - "value": 28, - "stroke": "#4daaff", - "fill": "#4daaff", + "value": 27, + "stroke": "#52acff", + "fill": "#52acff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.212378, 45.508271], - [9.212378, 45.512768], - [9.218787, 45.512768], - [9.218787, 45.508271], - [9.212378, 45.508271] + [9.216645, 45.508271], + [9.216645, 45.512768], + [9.221142, 45.512768], + [9.221142, 45.508271], + [9.216645, 45.508271] ] ] } @@ -6955,20 +10042,20 @@ { "type": "Feature", "properties": { - "value": 30, - "stroke": "#2e9bff", - "fill": "#2e9bff", + "value": 29, + "stroke": "#38a0ff", + "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.212378, 45.512768], - [9.212378, 45.517264], - [9.218787, 45.517264], - [9.218787, 45.512768], - [9.212378, 45.512768] + [9.216645, 45.512768], + [9.216645, 45.517264], + [9.221142, 45.517264], + [9.221142, 45.512768], + [9.216645, 45.512768] ] ] } @@ -6976,20 +10063,20 @@ { "type": "Feature", "properties": { - "value": 32, - "stroke": "#148fff", - "fill": "#148fff", + "value": 31, + "stroke": "#1a91ff", + "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.212378, 45.517264], - [9.212378, 45.521761], - [9.218787, 45.521761], - [9.218787, 45.517264], - [9.212378, 45.517264] + [9.216645, 45.517264], + [9.216645, 45.521761], + [9.221142, 45.521761], + [9.221142, 45.517264], + [9.216645, 45.517264] ] ] } @@ -6997,20 +10084,20 @@ { "type": "Feature", "properties": { - "value": 34, - "stroke": "#0082fa", - "fill": "#0082fa", + "value": 33, + "stroke": "#0085ff", + "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.212378, 45.521761], - [9.212378, 45.526257], - [9.218787, 45.526257], - [9.218787, 45.521761], - [9.212378, 45.521761] + [9.216645, 45.521761], + [9.216645, 45.526257], + [9.221142, 45.526257], + [9.221142, 45.521761], + [9.216645, 45.521761] ] ] } @@ -7018,20 +10105,20 @@ { "type": "Feature", "properties": { - "value": 36, - "stroke": "#0072db", - "fill": "#0072db", + "value": 35, + "stroke": "#0078e6", + "fill": "#0078e6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.212378, 45.526257], - [9.212378, 45.530754], - [9.218787, 45.530754], - [9.218787, 45.526257], - [9.212378, 45.526257] + [9.216645, 45.526257], + [9.216645, 45.530754], + [9.221142, 45.530754], + [9.221142, 45.526257], + [9.216645, 45.526257] ] ] } @@ -7039,20 +10126,20 @@ { "type": "Feature", "properties": { - "value": 38, - "stroke": "#0065c2", - "fill": "#0065c2", + "value": 37, + "stroke": "#0068c7", + "fill": "#0068c7", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.212378, 45.530754], - [9.212378, 45.535251], - [9.218787, 45.535251], - [9.218787, 45.530754], - [9.212378, 45.530754] + [9.216645, 45.530754], + [9.216645, 45.535251], + [9.221142, 45.535251], + [9.221142, 45.530754], + [9.216645, 45.530754] ] ] } @@ -7061,19 +10148,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.218787, 45.440822], - [9.218787, 45.445319], - [9.225195, 45.445319], - [9.225195, 45.440822], - [9.218787, 45.440822] + [9.221142, 45.440822], + [9.221142, 45.445319], + [9.225638, 45.445319], + [9.225638, 45.440822], + [9.221142, 45.440822] ] ] } @@ -7082,19 +10169,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.218787, 45.445319], - [9.218787, 45.449815], - [9.225195, 45.449815], - [9.225195, 45.445319], - [9.218787, 45.445319] + [9.221142, 45.445319], + [9.221142, 45.449815], + [9.225638, 45.449815], + [9.225638, 45.445319], + [9.221142, 45.445319] ] ] } @@ -7103,19 +10190,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.218787, 45.449815], - [9.218787, 45.454312], - [9.225195, 45.454312], - [9.225195, 45.449815], - [9.218787, 45.449815] + [9.221142, 45.449815], + [9.221142, 45.454312], + [9.225638, 45.454312], + [9.225638, 45.449815], + [9.221142, 45.449815] ] ] } @@ -7124,19 +10211,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.218787, 45.454312], - [9.218787, 45.458808], - [9.225195, 45.458808], - [9.225195, 45.454312], - [9.218787, 45.454312] + [9.221142, 45.454312], + [9.221142, 45.458808], + [9.225638, 45.458808], + [9.225638, 45.454312], + [9.221142, 45.454312] ] ] } @@ -7145,19 +10232,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.218787, 45.458808], - [9.218787, 45.463305], - [9.225195, 45.463305], - [9.225195, 45.458808], - [9.218787, 45.458808] + [9.221142, 45.458808], + [9.221142, 45.463305], + [9.225638, 45.463305], + [9.225638, 45.458808], + [9.221142, 45.458808] ] ] } @@ -7166,19 +10253,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.218787, 45.463305], - [9.218787, 45.467802], - [9.225195, 45.467802], - [9.225195, 45.463305], - [9.218787, 45.463305] + [9.221142, 45.463305], + [9.221142, 45.467802], + [9.225638, 45.467802], + [9.225638, 45.463305], + [9.221142, 45.463305] ] ] } @@ -7187,19 +10274,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.218787, 45.467802], - [9.218787, 45.472298], - [9.225195, 45.472298], - [9.225195, 45.467802], - [9.218787, 45.467802] + [9.221142, 45.467802], + [9.221142, 45.472298], + [9.225638, 45.472298], + [9.225638, 45.467802], + [9.221142, 45.467802] ] ] } @@ -7208,19 +10295,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.218787, 45.472298], - [9.218787, 45.476795], - [9.225195, 45.476795], - [9.225195, 45.472298], - [9.218787, 45.472298] + [9.221142, 45.472298], + [9.221142, 45.476795], + [9.225638, 45.476795], + [9.225638, 45.472298], + [9.221142, 45.472298] ] ] } @@ -7229,19 +10316,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.218787, 45.476795], - [9.218787, 45.481291], - [9.225195, 45.481291], - [9.225195, 45.476795], - [9.218787, 45.476795] + [9.221142, 45.476795], + [9.221142, 45.481291], + [9.225638, 45.481291], + [9.225638, 45.476795], + [9.221142, 45.476795] ] ] } @@ -7250,19 +10337,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.218787, 45.481291], - [9.218787, 45.485788], - [9.225195, 45.485788], - [9.225195, 45.481291], - [9.218787, 45.481291] + [9.221142, 45.481291], + [9.221142, 45.485788], + [9.225638, 45.485788], + [9.225638, 45.481291], + [9.221142, 45.481291] ] ] } @@ -7270,7 +10357,7 @@ { "type": "Feature", "properties": { - "value": 21, + "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 @@ -7279,11 +10366,11 @@ "type": "Polygon", "coordinates": [ [ - [9.218787, 45.485788], - [9.218787, 45.490285], - [9.225195, 45.490285], - [9.225195, 45.485788], - [9.218787, 45.485788] + [9.221142, 45.485788], + [9.221142, 45.490285], + [9.225638, 45.490285], + [9.225638, 45.485788], + [9.221142, 45.485788] ] ] } @@ -7291,7 +10378,7 @@ { "type": "Feature", "properties": { - "value": 21, + "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 @@ -7300,11 +10387,11 @@ "type": "Polygon", "coordinates": [ [ - [9.218787, 45.490285], - [9.218787, 45.494781], - [9.225195, 45.494781], - [9.225195, 45.490285], - [9.218787, 45.490285] + [9.221142, 45.490285], + [9.221142, 45.494781], + [9.225638, 45.494781], + [9.225638, 45.490285], + [9.221142, 45.490285] ] ] } @@ -7313,19 +10400,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.218787, 45.494781], - [9.218787, 45.499278], - [9.225195, 45.499278], - [9.225195, 45.494781], - [9.218787, 45.494781] + [9.221142, 45.494781], + [9.221142, 45.499278], + [9.225638, 45.499278], + [9.225638, 45.494781], + [9.221142, 45.494781] ] ] } @@ -7334,19 +10421,19 @@ "type": "Feature", "properties": { "value": 24, - "stroke": "#85c4ff", - "fill": "#85c4ff", + "stroke": "#7ac0ff", + "fill": "#7ac0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.218787, 45.499278], - [9.218787, 45.503774], - [9.225195, 45.503774], - [9.225195, 45.499278], - [9.218787, 45.499278] + [9.221142, 45.499278], + [9.221142, 45.503774], + [9.225638, 45.503774], + [9.225638, 45.499278], + [9.221142, 45.499278] ] ] } @@ -7355,19 +10442,19 @@ "type": "Feature", "properties": { "value": 25, - "stroke": "#75bdff", - "fill": "#75bdff", + "stroke": "#6bb8ff", + "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.218787, 45.503774], - [9.218787, 45.508271], - [9.225195, 45.508271], - [9.225195, 45.503774], - [9.218787, 45.503774] + [9.221142, 45.503774], + [9.221142, 45.508271], + [9.225638, 45.508271], + [9.225638, 45.503774], + [9.221142, 45.503774] ] ] } @@ -7376,19 +10463,19 @@ "type": "Feature", "properties": { "value": 27, - "stroke": "#5cb1ff", - "fill": "#5cb1ff", + "stroke": "#52acff", + "fill": "#52acff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.218787, 45.508271], - [9.218787, 45.512768], - [9.225195, 45.512768], - [9.225195, 45.508271], - [9.218787, 45.508271] + [9.221142, 45.508271], + [9.221142, 45.512768], + [9.225638, 45.512768], + [9.225638, 45.508271], + [9.221142, 45.508271] ] ] } @@ -7397,19 +10484,19 @@ "type": "Feature", "properties": { "value": 29, - "stroke": "#3da2ff", - "fill": "#3da2ff", + "stroke": "#38a0ff", + "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.218787, 45.512768], - [9.218787, 45.517264], - [9.225195, 45.517264], - [9.225195, 45.512768], - [9.218787, 45.512768] + [9.221142, 45.512768], + [9.221142, 45.517264], + [9.225638, 45.517264], + [9.225638, 45.512768], + [9.221142, 45.512768] ] ] } @@ -7417,20 +10504,20 @@ { "type": "Feature", "properties": { - "value": 31, - "stroke": "#2496ff", - "fill": "#2496ff", + "value": 30, + "stroke": "#2999ff", + "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.218787, 45.517264], - [9.218787, 45.521761], - [9.225195, 45.521761], - [9.225195, 45.517264], - [9.218787, 45.517264] + [9.221142, 45.517264], + [9.221142, 45.521761], + [9.225638, 45.521761], + [9.225638, 45.517264], + [9.221142, 45.517264] ] ] } @@ -7439,19 +10526,19 @@ "type": "Feature", "properties": { "value": 32, - "stroke": "#148fff", - "fill": "#148fff", + "stroke": "#0f8cff", + "fill": "#0f8cff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.218787, 45.521761], - [9.218787, 45.526257], - [9.225195, 45.526257], - [9.225195, 45.521761], - [9.218787, 45.521761] + [9.221142, 45.521761], + [9.221142, 45.526257], + [9.225638, 45.526257], + [9.225638, 45.521761], + [9.221142, 45.521761] ] ] } @@ -7460,19 +10547,19 @@ "type": "Feature", "properties": { "value": 34, - "stroke": "#0082fa", - "fill": "#0082fa", + "stroke": "#007df0", + "fill": "#007df0", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.218787, 45.526257], - [9.218787, 45.530754], - [9.225195, 45.530754], - [9.225195, 45.526257], - [9.218787, 45.526257] + [9.221142, 45.526257], + [9.221142, 45.530754], + [9.225638, 45.530754], + [9.225638, 45.526257], + [9.221142, 45.526257] ] ] } @@ -7480,20 +10567,20 @@ { "type": "Feature", "properties": { - "value": 36, - "stroke": "#0072db", - "fill": "#0072db", + "value": 35, + "stroke": "#0078e6", + "fill": "#0078e6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.218787, 45.530754], - [9.218787, 45.535251], - [9.225195, 45.535251], - [9.225195, 45.530754], - [9.218787, 45.530754] + [9.221142, 45.530754], + [9.221142, 45.535251], + [9.225638, 45.535251], + [9.225638, 45.530754], + [9.221142, 45.530754] ] ] } @@ -7502,19 +10589,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.225195, 45.440822], - [9.225195, 45.445319], - [9.231603, 45.445319], - [9.231603, 45.440822], - [9.225195, 45.440822] + [9.225638, 45.440822], + [9.225638, 45.445319], + [9.230135, 45.445319], + [9.230135, 45.440822], + [9.225638, 45.440822] ] ] } @@ -7523,19 +10610,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.225195, 45.445319], - [9.225195, 45.449815], - [9.231603, 45.449815], - [9.231603, 45.445319], - [9.225195, 45.445319] + [9.225638, 45.445319], + [9.225638, 45.449815], + [9.230135, 45.449815], + [9.230135, 45.445319], + [9.225638, 45.445319] ] ] } @@ -7544,19 +10631,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.225195, 45.449815], - [9.225195, 45.454312], - [9.231603, 45.454312], - [9.231603, 45.449815], - [9.225195, 45.449815] + [9.225638, 45.449815], + [9.225638, 45.454312], + [9.230135, 45.454312], + [9.230135, 45.449815], + [9.225638, 45.449815] ] ] } @@ -7565,19 +10652,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.225195, 45.454312], - [9.225195, 45.458808], - [9.231603, 45.458808], - [9.231603, 45.454312], - [9.225195, 45.454312] + [9.225638, 45.454312], + [9.225638, 45.458808], + [9.230135, 45.458808], + [9.230135, 45.454312], + [9.225638, 45.454312] ] ] } @@ -7586,19 +10673,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.225195, 45.458808], - [9.225195, 45.463305], - [9.231603, 45.463305], - [9.231603, 45.458808], - [9.225195, 45.458808] + [9.225638, 45.458808], + [9.225638, 45.463305], + [9.230135, 45.463305], + [9.230135, 45.458808], + [9.225638, 45.458808] ] ] } @@ -7607,19 +10694,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.225195, 45.463305], - [9.225195, 45.467802], - [9.231603, 45.467802], - [9.231603, 45.463305], - [9.225195, 45.463305] + [9.225638, 45.463305], + [9.225638, 45.467802], + [9.230135, 45.467802], + [9.230135, 45.463305], + [9.225638, 45.463305] ] ] } @@ -7628,19 +10715,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.225195, 45.467802], - [9.225195, 45.472298], - [9.231603, 45.472298], - [9.231603, 45.467802], - [9.225195, 45.467802] + [9.225638, 45.467802], + [9.225638, 45.472298], + [9.230135, 45.472298], + [9.230135, 45.467802], + [9.225638, 45.467802] ] ] } @@ -7649,19 +10736,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#9ed1ff", - "fill": "#9ed1ff", + "stroke": "#94ccff", + "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.225195, 45.472298], - [9.225195, 45.476795], - [9.231603, 45.476795], - [9.231603, 45.472298], - [9.225195, 45.472298] + [9.225638, 45.472298], + [9.225638, 45.476795], + [9.230135, 45.476795], + [9.230135, 45.472298], + [9.225638, 45.472298] ] ] } @@ -7670,19 +10757,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.225195, 45.476795], - [9.225195, 45.481291], - [9.231603, 45.481291], - [9.231603, 45.476795], - [9.225195, 45.476795] + [9.225638, 45.476795], + [9.225638, 45.481291], + [9.230135, 45.481291], + [9.230135, 45.476795], + [9.225638, 45.476795] ] ] } @@ -7691,19 +10778,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.225195, 45.481291], - [9.225195, 45.485788], - [9.231603, 45.485788], - [9.231603, 45.481291], - [9.225195, 45.481291] + [9.225638, 45.481291], + [9.225638, 45.485788], + [9.230135, 45.485788], + [9.230135, 45.481291], + [9.225638, 45.481291] ] ] } @@ -7712,19 +10799,19 @@ "type": "Feature", "properties": { "value": 19, - "stroke": "#c7e4ff", - "fill": "#c7e4ff", + "stroke": "#bddfff", + "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.225195, 45.485788], - [9.225195, 45.490285], - [9.231603, 45.490285], - [9.231603, 45.485788], - [9.225195, 45.485788] + [9.225638, 45.485788], + [9.225638, 45.490285], + [9.230135, 45.490285], + [9.230135, 45.485788], + [9.225638, 45.485788] ] ] } @@ -7732,20 +10819,20 @@ { "type": "Feature", "properties": { - "value": 17, - "stroke": "#e5f3ff", - "fill": "#e5f3ff", + "value": 18, + "stroke": "#c7e4ff", + "fill": "#c7e4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.225195, 45.490285], - [9.225195, 45.494781], - [9.231603, 45.494781], - [9.231603, 45.490285], - [9.225195, 45.490285] + [9.225638, 45.490285], + [9.225638, 45.494781], + [9.230135, 45.494781], + [9.230135, 45.490285], + [9.225638, 45.490285] ] ] } @@ -7754,19 +10841,19 @@ "type": "Feature", "properties": { "value": 21, - "stroke": "#add8ff", - "fill": "#add8ff", + "stroke": "#a3d3ff", + "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.225195, 45.494781], - [9.225195, 45.499278], - [9.231603, 45.499278], - [9.231603, 45.494781], - [9.225195, 45.494781] + [9.225638, 45.494781], + [9.225638, 45.499278], + [9.230135, 45.499278], + [9.230135, 45.494781], + [9.225638, 45.494781] ] ] } @@ -7775,19 +10862,19 @@ "type": "Feature", "properties": { "value": 23, - "stroke": "#8fc9ff", - "fill": "#8fc9ff", + "stroke": "#85c4ff", + "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.225195, 45.499278], - [9.225195, 45.503774], - [9.231603, 45.503774], - [9.231603, 45.499278], - [9.225195, 45.499278] + [9.225638, 45.499278], + [9.225638, 45.503774], + [9.230135, 45.503774], + [9.230135, 45.499278], + [9.225638, 45.499278] ] ] } @@ -7796,19 +10883,19 @@ "type": "Feature", "properties": { "value": 25, - "stroke": "#75bdff", - "fill": "#75bdff", + "stroke": "#6bb8ff", + "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.225195, 45.503774], - [9.225195, 45.508271], - [9.231603, 45.508271], - [9.231603, 45.503774], - [9.225195, 45.503774] + [9.225638, 45.503774], + [9.225638, 45.508271], + [9.230135, 45.508271], + [9.230135, 45.503774], + [9.225638, 45.503774] ] ] } @@ -7817,19 +10904,19 @@ "type": "Feature", "properties": { "value": 27, - "stroke": "#5cb1ff", - "fill": "#5cb1ff", + "stroke": "#52acff", + "fill": "#52acff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.225195, 45.508271], - [9.225195, 45.512768], - [9.231603, 45.512768], - [9.231603, 45.508271], - [9.225195, 45.508271] + [9.225638, 45.508271], + [9.225638, 45.512768], + [9.230135, 45.512768], + [9.230135, 45.508271], + [9.225638, 45.508271] ] ] } @@ -7838,19 +10925,19 @@ "type": "Feature", "properties": { "value": 28, - "stroke": "#4daaff", - "fill": "#4daaff", + "stroke": "#42a5ff", + "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.225195, 45.512768], - [9.225195, 45.517264], - [9.231603, 45.517264], - [9.231603, 45.512768], - [9.225195, 45.512768] + [9.225638, 45.512768], + [9.225638, 45.517264], + [9.230135, 45.517264], + [9.230135, 45.512768], + [9.225638, 45.512768] ] ] } @@ -7859,19 +10946,19 @@ "type": "Feature", "properties": { "value": 30, - "stroke": "#2e9bff", - "fill": "#2e9bff", + "stroke": "#2999ff", + "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.225195, 45.517264], - [9.225195, 45.521761], - [9.231603, 45.521761], - [9.231603, 45.517264], - [9.225195, 45.517264] + [9.225638, 45.517264], + [9.225638, 45.521761], + [9.230135, 45.521761], + [9.230135, 45.517264], + [9.225638, 45.517264] ] ] } @@ -7880,19 +10967,19 @@ "type": "Feature", "properties": { "value": 31, - "stroke": "#2496ff", - "fill": "#2496ff", + "stroke": "#1a91ff", + "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.225195, 45.521761], - [9.225195, 45.526257], - [9.231603, 45.526257], - [9.231603, 45.521761], - [9.225195, 45.521761] + [9.225638, 45.521761], + [9.225638, 45.526257], + [9.230135, 45.526257], + [9.230135, 45.521761], + [9.225638, 45.521761] ] ] } @@ -7901,19 +10988,19 @@ "type": "Feature", "properties": { "value": 33, - "stroke": "#0587ff", - "fill": "#0587ff", + "stroke": "#0085ff", + "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.225195, 45.526257], - [9.225195, 45.530754], - [9.231603, 45.530754], - [9.231603, 45.526257], - [9.225195, 45.526257] + [9.225638, 45.526257], + [9.225638, 45.530754], + [9.230135, 45.530754], + [9.230135, 45.526257], + [9.225638, 45.526257] ] ] } @@ -7922,19 +11009,19 @@ "type": "Feature", "properties": { "value": 34, - "stroke": "#0082fa", - "fill": "#0082fa", + "stroke": "#007df0", + "fill": "#007df0", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.225195, 45.530754], - [9.225195, 45.535251], - [9.231603, 45.535251], - [9.231603, 45.530754], - [9.225195, 45.530754] + [9.225638, 45.530754], + [9.225638, 45.535251], + [9.230135, 45.535251], + [9.230135, 45.530754], + [9.225638, 45.530754] ] ] } diff --git a/packages/turf-interpolate/test/out/data-weight-2.geojson b/packages/turf-interpolate/test/out/data-weight-2.geojson index 51e374326b..251f9d94d2 100644 --- a/packages/turf-interpolate/test/out/data-weight-2.geojson +++ b/packages/turf-interpolate/test/out/data-weight-2.geojson @@ -13,11 +13,11 @@ "type": "Polygon", "coordinates": [ [ - [9.12236, 45.444617], - [9.12236, 45.45909], - [9.142987, 45.45909], - [9.142987, 45.444617], - [9.12236, 45.444617] + [9.123271, 45.444617], + [9.123271, 45.45909], + [9.137744, 45.45909], + [9.137744, 45.444617], + [9.123271, 45.444617] ] ] } @@ -34,11 +34,11 @@ "type": "Polygon", "coordinates": [ [ - [9.12236, 45.45909], - [9.12236, 45.473563], - [9.142987, 45.473563], - [9.142987, 45.45909], - [9.12236, 45.45909] + [9.123271, 45.45909], + [9.123271, 45.473563], + [9.137744, 45.473563], + [9.137744, 45.45909], + [9.123271, 45.45909] ] ] } @@ -46,20 +46,20 @@ { "type": "Feature", "properties": { - "value": 9, - "stroke": "#e0f0ff", - "fill": "#e0f0ff", + "value": 10, + "stroke": "#dbeeff", + "fill": "#dbeeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.12236, 45.473563], - [9.12236, 45.488036], - [9.142987, 45.488036], - [9.142987, 45.473563], - [9.12236, 45.473563] + [9.123271, 45.473563], + [9.123271, 45.488036], + [9.137744, 45.488036], + [9.137744, 45.473563], + [9.123271, 45.473563] ] ] } @@ -76,11 +76,11 @@ "type": "Polygon", "coordinates": [ [ - [9.12236, 45.488036], - [9.12236, 45.502509], - [9.142987, 45.502509], - [9.142987, 45.488036], - [9.12236, 45.488036] + [9.123271, 45.488036], + [9.123271, 45.502509], + [9.137744, 45.502509], + [9.137744, 45.488036], + [9.123271, 45.488036] ] ] } @@ -89,19 +89,19 @@ "type": "Feature", "properties": { "value": 22, - "stroke": "#85c4ff", - "fill": "#85c4ff", + "stroke": "#80c2ff", + "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.12236, 45.502509], - [9.12236, 45.516983], - [9.142987, 45.516983], - [9.142987, 45.502509], - [9.12236, 45.502509] + [9.123271, 45.502509], + [9.123271, 45.516983], + [9.137744, 45.516983], + [9.137744, 45.502509], + [9.123271, 45.502509] ] ] } @@ -118,11 +118,11 @@ "type": "Polygon", "coordinates": [ [ - [9.12236, 45.516983], - [9.12236, 45.531456], - [9.142987, 45.531456], - [9.142987, 45.516983], - [9.12236, 45.516983] + [9.123271, 45.516983], + [9.123271, 45.531456], + [9.137744, 45.531456], + [9.137744, 45.516983], + [9.123271, 45.516983] ] ] } @@ -139,11 +139,137 @@ "type": "Polygon", "coordinates": [ [ - [9.142987, 45.444617], - [9.142987, 45.45909], - [9.163614, 45.45909], - [9.163614, 45.444617], - [9.142987, 45.444617] + [9.137744, 45.444617], + [9.137744, 45.45909], + [9.152218, 45.45909], + [9.152218, 45.444617], + [9.137744, 45.444617] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 6, + "stroke": "#fafdff", + "fill": "#fafdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.137744, 45.45909], + [9.137744, 45.473563], + [9.152218, 45.473563], + [9.152218, 45.45909], + [9.137744, 45.45909] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 7, + "stroke": "#f0f8ff", + "fill": "#f0f8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.137744, 45.473563], + [9.137744, 45.488036], + [9.152218, 45.488036], + [9.152218, 45.473563], + [9.137744, 45.473563] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 14, + "stroke": "#bddfff", + "fill": "#bddfff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.137744, 45.488036], + [9.137744, 45.502509], + [9.152218, 45.502509], + [9.152218, 45.488036], + [9.137744, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#80c2ff", + "fill": "#80c2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.137744, 45.502509], + [9.137744, 45.516983], + [9.152218, 45.516983], + [9.152218, 45.502509], + [9.137744, 45.502509] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.137744, 45.516983], + [9.137744, 45.531456], + [9.152218, 45.531456], + [9.152218, 45.516983], + [9.137744, 45.516983] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 8, + "stroke": "#ebf5ff", + "fill": "#ebf5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.152218, 45.444617], + [9.152218, 45.45909], + [9.166691, 45.45909], + [9.166691, 45.444617], + [9.152218, 45.444617] ] ] } @@ -160,11 +286,11 @@ "type": "Polygon", "coordinates": [ [ - [9.142987, 45.45909], - [9.142987, 45.473563], - [9.163614, 45.473563], - [9.163614, 45.45909], - [9.142987, 45.45909] + [9.152218, 45.45909], + [9.152218, 45.473563], + [9.166691, 45.473563], + [9.166691, 45.45909], + [9.152218, 45.45909] ] ] } @@ -172,20 +298,20 @@ { "type": "Feature", "properties": { - "value": 6, - "stroke": "#fafdff", - "fill": "#fafdff", + "value": 7, + "stroke": "#f0f8ff", + "fill": "#f0f8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.142987, 45.473563], - [9.142987, 45.488036], - [9.163614, 45.488036], - [9.163614, 45.473563], - [9.142987, 45.473563] + [9.152218, 45.473563], + [9.152218, 45.488036], + [9.166691, 45.488036], + [9.166691, 45.473563], + [9.152218, 45.473563] ] ] } @@ -193,20 +319,20 @@ { "type": "Feature", "properties": { - "value": 13, - "stroke": "#c7e4ff", - "fill": "#c7e4ff", + "value": 12, + "stroke": "#cce7ff", + "fill": "#cce7ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.142987, 45.488036], - [9.142987, 45.502509], - [9.163614, 45.502509], - [9.163614, 45.488036], - [9.142987, 45.488036] + [9.152218, 45.488036], + [9.152218, 45.502509], + [9.166691, 45.502509], + [9.166691, 45.488036], + [9.152218, 45.488036] ] ] } @@ -214,20 +340,20 @@ { "type": "Feature", "properties": { - "value": 21, - "stroke": "#8ac7ff", - "fill": "#8ac7ff", + "value": 20, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.142987, 45.502509], - [9.142987, 45.516983], - [9.163614, 45.516983], - [9.163614, 45.502509], - [9.142987, 45.502509] + [9.152218, 45.502509], + [9.152218, 45.516983], + [9.166691, 45.516983], + [9.166691, 45.502509], + [9.152218, 45.502509] ] ] } @@ -235,20 +361,20 @@ { "type": "Feature", "properties": { - "value": 39, - "stroke": "#0587ff", - "fill": "#0587ff", + "value": 42, + "stroke": "#007aeb", + "fill": "#007aeb", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.142987, 45.516983], - [9.142987, 45.531456], - [9.163614, 45.531456], - [9.163614, 45.516983], - [9.142987, 45.516983] + [9.152218, 45.516983], + [9.152218, 45.531456], + [9.166691, 45.531456], + [9.166691, 45.516983], + [9.152218, 45.516983] ] ] } @@ -265,11 +391,11 @@ "type": "Polygon", "coordinates": [ [ - [9.163614, 45.444617], - [9.163614, 45.45909], - [9.184241, 45.45909], - [9.184241, 45.444617], - [9.163614, 45.444617] + [9.166691, 45.444617], + [9.166691, 45.45909], + [9.181164, 45.45909], + [9.181164, 45.444617], + [9.166691, 45.444617] ] ] } @@ -286,11 +412,11 @@ "type": "Polygon", "coordinates": [ [ - [9.163614, 45.45909], - [9.163614, 45.473563], - [9.184241, 45.473563], - [9.184241, 45.45909], - [9.163614, 45.45909] + [9.166691, 45.45909], + [9.166691, 45.473563], + [9.181164, 45.473563], + [9.181164, 45.45909], + [9.166691, 45.45909] ] ] } @@ -307,11 +433,11 @@ "type": "Polygon", "coordinates": [ [ - [9.163614, 45.473563], - [9.163614, 45.488036], - [9.184241, 45.488036], - [9.184241, 45.473563], - [9.163614, 45.473563] + [9.166691, 45.473563], + [9.166691, 45.488036], + [9.181164, 45.488036], + [9.181164, 45.473563], + [9.166691, 45.473563] ] ] } @@ -328,11 +454,11 @@ "type": "Polygon", "coordinates": [ [ - [9.163614, 45.488036], - [9.163614, 45.502509], - [9.184241, 45.502509], - [9.184241, 45.488036], - [9.163614, 45.488036] + [9.166691, 45.488036], + [9.166691, 45.502509], + [9.181164, 45.502509], + [9.181164, 45.488036], + [9.166691, 45.488036] ] ] } @@ -349,11 +475,11 @@ "type": "Polygon", "coordinates": [ [ - [9.163614, 45.502509], - [9.163614, 45.516983], - [9.184241, 45.516983], - [9.184241, 45.502509], - [9.163614, 45.502509] + [9.166691, 45.502509], + [9.166691, 45.516983], + [9.181164, 45.516983], + [9.181164, 45.502509], + [9.166691, 45.502509] ] ] } @@ -362,19 +488,19 @@ "type": "Feature", "properties": { "value": 55, - "stroke": "#004d94", - "fill": "#004d94", + "stroke": "#004a8f", + "fill": "#004a8f", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.163614, 45.516983], - [9.163614, 45.531456], - [9.184241, 45.531456], - [9.184241, 45.516983], - [9.163614, 45.516983] + [9.166691, 45.516983], + [9.166691, 45.531456], + [9.181164, 45.531456], + [9.181164, 45.516983], + [9.166691, 45.516983] ] ] } @@ -382,20 +508,41 @@ { "type": "Feature", "properties": { - "value": 12, - "stroke": "#cce7ff", - "fill": "#cce7ff", + "value": 11, + "stroke": "#d1e9ff", + "fill": "#d1e9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.184241, 45.444617], - [9.184241, 45.45909], - [9.204868, 45.45909], - [9.204868, 45.444617], - [9.184241, 45.444617] + [9.181164, 45.444617], + [9.181164, 45.45909], + [9.195637, 45.45909], + [9.195637, 45.444617], + [9.181164, 45.444617] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 11, + "stroke": "#d1e9ff", + "fill": "#d1e9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.181164, 45.45909], + [9.181164, 45.473563], + [9.195637, 45.473563], + [9.195637, 45.45909], + [9.181164, 45.45909] ] ] } @@ -412,11 +559,11 @@ "type": "Polygon", "coordinates": [ [ - [9.184241, 45.45909], - [9.184241, 45.473563], - [9.204868, 45.473563], - [9.204868, 45.45909], - [9.184241, 45.45909] + [9.181164, 45.473563], + [9.181164, 45.488036], + [9.195637, 45.488036], + [9.195637, 45.473563], + [9.181164, 45.473563] ] ] } @@ -425,19 +572,19 @@ "type": "Feature", "properties": { "value": 13, - "stroke": "#c7e4ff", - "fill": "#c7e4ff", + "stroke": "#c2e2ff", + "fill": "#c2e2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.184241, 45.473563], - [9.184241, 45.488036], - [9.204868, 45.488036], - [9.204868, 45.473563], - [9.184241, 45.473563] + [9.181164, 45.488036], + [9.181164, 45.502509], + [9.195637, 45.502509], + [9.195637, 45.488036], + [9.181164, 45.488036] ] ] } @@ -445,20 +592,62 @@ { "type": "Feature", "properties": { - "value": 15, - "stroke": "#b8ddff", - "fill": "#b8ddff", + "value": 24, + "stroke": "#70bbff", + "fill": "#70bbff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.181164, 45.502509], + [9.181164, 45.516983], + [9.195637, 45.516983], + [9.195637, 45.502509], + [9.181164, 45.502509] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 72, + "stroke": "#00080f", + "fill": "#00080f", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.181164, 45.516983], + [9.181164, 45.531456], + [9.195637, 45.531456], + [9.195637, 45.516983], + [9.181164, 45.516983] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 13, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.184241, 45.488036], - [9.184241, 45.502509], - [9.204868, 45.502509], - [9.204868, 45.488036], - [9.184241, 45.488036] + [9.195637, 45.444617], + [9.195637, 45.45909], + [9.21011, 45.45909], + [9.21011, 45.444617], + [9.195637, 45.444617] ] ] } @@ -466,20 +655,20 @@ { "type": "Feature", "properties": { - "value": 28, - "stroke": "#57aeff", - "fill": "#57aeff", + "value": 13, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.184241, 45.502509], - [9.184241, 45.516983], - [9.204868, 45.516983], - [9.204868, 45.502509], - [9.184241, 45.502509] + [9.195637, 45.45909], + [9.195637, 45.473563], + [9.21011, 45.473563], + [9.21011, 45.45909], + [9.195637, 45.45909] ] ] } @@ -487,7 +676,70 @@ { "type": "Feature", "properties": { - "value": 75, + "value": 13, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.195637, 45.473563], + [9.195637, 45.488036], + [9.21011, 45.488036], + [9.21011, 45.473563], + [9.195637, 45.473563] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 16, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.195637, 45.488036], + [9.195637, 45.502509], + [9.21011, 45.502509], + [9.21011, 45.488036], + [9.195637, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.195637, 45.502509], + [9.195637, 45.516983], + [9.21011, 45.516983], + [9.21011, 45.502509], + [9.195637, 45.502509] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 74, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 @@ -496,11 +748,11 @@ "type": "Polygon", "coordinates": [ [ - [9.184241, 45.516983], - [9.184241, 45.531456], - [9.204868, 45.531456], - [9.204868, 45.516983], - [9.184241, 45.516983] + [9.195637, 45.516983], + [9.195637, 45.531456], + [9.21011, 45.531456], + [9.21011, 45.516983], + [9.195637, 45.516983] ] ] } @@ -517,11 +769,11 @@ "type": "Polygon", "coordinates": [ [ - [9.204868, 45.444617], - [9.204868, 45.45909], - [9.225494, 45.45909], - [9.225494, 45.444617], - [9.204868, 45.444617] + [9.21011, 45.444617], + [9.21011, 45.45909], + [9.224583, 45.45909], + [9.224583, 45.444617], + [9.21011, 45.444617] ] ] } @@ -530,19 +782,19 @@ "type": "Feature", "properties": { "value": 13, - "stroke": "#c7e4ff", - "fill": "#c7e4ff", + "stroke": "#c2e2ff", + "fill": "#c2e2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.204868, 45.45909], - [9.204868, 45.473563], - [9.225494, 45.473563], - [9.225494, 45.45909], - [9.204868, 45.45909] + [9.21011, 45.45909], + [9.21011, 45.473563], + [9.224583, 45.473563], + [9.224583, 45.45909], + [9.21011, 45.45909] ] ] } @@ -559,11 +811,11 @@ "type": "Polygon", "coordinates": [ [ - [9.204868, 45.473563], - [9.204868, 45.488036], - [9.225494, 45.488036], - [9.225494, 45.473563], - [9.204868, 45.473563] + [9.21011, 45.473563], + [9.21011, 45.488036], + [9.224583, 45.488036], + [9.224583, 45.473563], + [9.21011, 45.473563] ] ] } @@ -571,20 +823,20 @@ { "type": "Feature", "properties": { - "value": 12, - "stroke": "#cce7ff", - "fill": "#cce7ff", + "value": 11, + "stroke": "#d1e9ff", + "fill": "#d1e9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.204868, 45.488036], - [9.204868, 45.502509], - [9.225494, 45.502509], - [9.225494, 45.488036], - [9.204868, 45.488036] + [9.21011, 45.488036], + [9.21011, 45.502509], + [9.224583, 45.502509], + [9.224583, 45.488036], + [9.21011, 45.488036] ] ] } @@ -592,20 +844,20 @@ { "type": "Feature", "properties": { - "value": 27, - "stroke": "#61b3ff", - "fill": "#61b3ff", + "value": 26, + "stroke": "#66b6ff", + "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.204868, 45.502509], - [9.204868, 45.516983], - [9.225494, 45.516983], - [9.225494, 45.502509], - [9.204868, 45.502509] + [9.21011, 45.502509], + [9.21011, 45.516983], + [9.224583, 45.516983], + [9.224583, 45.502509], + [9.21011, 45.502509] ] ] } @@ -613,20 +865,20 @@ { "type": "Feature", "properties": { - "value": 62, - "stroke": "#003361", - "fill": "#003361", + "value": 60, + "stroke": "#003566", + "fill": "#003566", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ - [9.204868, 45.516983], - [9.204868, 45.531456], - [9.225494, 45.531456], - [9.225494, 45.516983], - [9.204868, 45.516983] + [9.21011, 45.516983], + [9.21011, 45.531456], + [9.224583, 45.531456], + [9.224583, 45.516983], + [9.21011, 45.516983] ] ] } From 9c6ee3a2da0e25dbb482efc73a0cb67e85c055b2 Mon Sep 17 00:00:00 2001 From: Matt Fedderly Date: Wed, 4 Aug 2021 15:58:56 -0400 Subject: [PATCH 9/9] update @turf/square-grid test output --- .../test/out/big-bbox.geojson | 5460 +-- .../test/out/fiji-10-miles.geojson | 200 +- .../test/out/issue-1215.geojson | 28084 ++++++++-------- .../test/out/london-20-miles.geojson | 30 +- .../test/out/piedemont-mask.geojson | 1200 +- .../test/out/properties.geojson | 470 +- .../test/out/resolute.geojson | 190 +- 7 files changed, 17785 insertions(+), 17849 deletions(-) diff --git a/packages/turf-square-grid/test/out/big-bbox.geojson b/packages/turf-square-grid/test/out/big-bbox.geojson index d22cbc1226..d297de02c9 100644 --- a/packages/turf-square-grid/test/out/big-bbox.geojson +++ b/packages/turf-square-grid/test/out/big-bbox.geojson @@ -8,11 +8,11 @@ "type": "Polygon", "coordinates": [ [ - [-219.12199, -77.044217], - [-219.12199, -69.816084], - [-211.893856, -69.816084], - [-211.893856, -77.044217], - [-219.12199, -77.044217] + [-219.231779, -77.132893], + [-219.231779, -69.896314], + [-211.9952, -69.896314], + [-211.9952, -77.132893], + [-219.231779, -77.132893] ] ] } @@ -24,11 +24,11 @@ "type": "Polygon", "coordinates": [ [ - [-219.12199, -69.816084], - [-219.12199, -62.58795], - [-211.893856, -62.58795], - [-211.893856, -69.816084], - [-219.12199, -69.816084] + [-219.231779, -69.896314], + [-219.231779, -62.659735], + [-211.9952, -62.659735], + [-211.9952, -69.896314], + [-219.231779, -69.896314] ] ] } @@ -40,11 +40,11 @@ "type": "Polygon", "coordinates": [ [ - [-219.12199, -62.58795], - [-219.12199, -55.359816], - [-211.893856, -55.359816], - [-211.893856, -62.58795], - [-219.12199, -62.58795] + [-219.231779, -62.659735], + [-219.231779, -55.423156], + [-211.9952, -55.423156], + [-211.9952, -62.659735], + [-219.231779, -62.659735] ] ] } @@ -56,11 +56,11 @@ "type": "Polygon", "coordinates": [ [ - [-219.12199, -55.359816], - [-219.12199, -48.131682], - [-211.893856, -48.131682], - [-211.893856, -55.359816], - [-219.12199, -55.359816] + [-219.231779, -55.423156], + [-219.231779, -48.186577], + [-211.9952, -48.186577], + [-211.9952, -55.423156], + [-219.231779, -55.423156] ] ] } @@ -72,11 +72,11 @@ "type": "Polygon", "coordinates": [ [ - [-219.12199, -48.131682], - [-219.12199, -40.903548], - [-211.893856, -40.903548], - [-211.893856, -48.131682], - [-219.12199, -48.131682] + [-219.231779, -48.186577], + [-219.231779, -40.949997], + [-211.9952, -40.949997], + [-211.9952, -48.186577], + [-219.231779, -48.186577] ] ] } @@ -88,11 +88,11 @@ "type": "Polygon", "coordinates": [ [ - [-219.12199, -40.903548], - [-219.12199, -33.675414], - [-211.893856, -33.675414], - [-211.893856, -40.903548], - [-219.12199, -40.903548] + [-219.231779, -40.949997], + [-219.231779, -33.713418], + [-211.9952, -33.713418], + [-211.9952, -40.949997], + [-219.231779, -40.949997] ] ] } @@ -104,11 +104,11 @@ "type": "Polygon", "coordinates": [ [ - [-219.12199, -33.675414], - [-219.12199, -26.44728], - [-211.893856, -26.44728], - [-211.893856, -33.675414], - [-219.12199, -33.675414] + [-219.231779, -33.713418], + [-219.231779, -26.476839], + [-211.9952, -26.476839], + [-211.9952, -33.713418], + [-219.231779, -33.713418] ] ] } @@ -120,11 +120,11 @@ "type": "Polygon", "coordinates": [ [ - [-219.12199, -26.44728], - [-219.12199, -19.219147], - [-211.893856, -19.219147], - [-211.893856, -26.44728], - [-219.12199, -26.44728] + [-219.231779, -26.476839], + [-219.231779, -19.24026], + [-211.9952, -19.24026], + [-211.9952, -26.476839], + [-219.231779, -26.476839] ] ] } @@ -136,11 +136,11 @@ "type": "Polygon", "coordinates": [ [ - [-219.12199, -19.219147], - [-219.12199, -11.991013], - [-211.893856, -11.991013], - [-211.893856, -19.219147], - [-219.12199, -19.219147] + [-219.231779, -19.24026], + [-219.231779, -12.003681], + [-211.9952, -12.003681], + [-211.9952, -19.24026], + [-219.231779, -19.24026] ] ] } @@ -152,11 +152,11 @@ "type": "Polygon", "coordinates": [ [ - [-219.12199, -11.991013], - [-219.12199, -4.762879], - [-211.893856, -4.762879], - [-211.893856, -11.991013], - [-219.12199, -11.991013] + [-219.231779, -12.003681], + [-219.231779, -4.767102], + [-211.9952, -4.767102], + [-211.9952, -12.003681], + [-219.231779, -12.003681] ] ] } @@ -168,11 +168,11 @@ "type": "Polygon", "coordinates": [ [ - [-219.12199, -4.762879], - [-219.12199, 2.465255], - [-211.893856, 2.465255], - [-211.893856, -4.762879], - [-219.12199, -4.762879] + [-219.231779, -4.767102], + [-219.231779, 2.469478], + [-211.9952, 2.469478], + [-211.9952, -4.767102], + [-219.231779, -4.767102] ] ] } @@ -184,11 +184,11 @@ "type": "Polygon", "coordinates": [ [ - [-219.12199, 2.465255], - [-219.12199, 9.693389], - [-211.893856, 9.693389], - [-211.893856, 2.465255], - [-219.12199, 2.465255] + [-219.231779, 2.469478], + [-219.231779, 9.706057], + [-211.9952, 9.706057], + [-211.9952, 2.469478], + [-219.231779, 2.469478] ] ] } @@ -200,11 +200,11 @@ "type": "Polygon", "coordinates": [ [ - [-219.12199, 9.693389], - [-219.12199, 16.921523], - [-211.893856, 16.921523], - [-211.893856, 9.693389], - [-219.12199, 9.693389] + [-219.231779, 9.706057], + [-219.231779, 16.942636], + [-211.9952, 16.942636], + [-211.9952, 9.706057], + [-219.231779, 9.706057] ] ] } @@ -216,11 +216,11 @@ "type": "Polygon", "coordinates": [ [ - [-219.12199, 16.921523], - [-219.12199, 24.149656], - [-211.893856, 24.149656], - [-211.893856, 16.921523], - [-219.12199, 16.921523] + [-219.231779, 16.942636], + [-219.231779, 24.179215], + [-211.9952, 24.179215], + [-211.9952, 16.942636], + [-219.231779, 16.942636] ] ] } @@ -232,11 +232,11 @@ "type": "Polygon", "coordinates": [ [ - [-219.12199, 24.149656], - [-219.12199, 31.37779], - [-211.893856, 31.37779], - [-211.893856, 24.149656], - [-219.12199, 24.149656] + [-219.231779, 24.179215], + [-219.231779, 31.415794], + [-211.9952, 31.415794], + [-211.9952, 24.179215], + [-219.231779, 24.179215] ] ] } @@ -248,11 +248,11 @@ "type": "Polygon", "coordinates": [ [ - [-219.12199, 31.37779], - [-219.12199, 38.605924], - [-211.893856, 38.605924], - [-211.893856, 31.37779], - [-219.12199, 31.37779] + [-219.231779, 31.415794], + [-219.231779, 38.652373], + [-211.9952, 38.652373], + [-211.9952, 31.415794], + [-219.231779, 31.415794] ] ] } @@ -264,11 +264,11 @@ "type": "Polygon", "coordinates": [ [ - [-219.12199, 38.605924], - [-219.12199, 45.834058], - [-211.893856, 45.834058], - [-211.893856, 38.605924], - [-219.12199, 38.605924] + [-219.231779, 38.652373], + [-219.231779, 45.888952], + [-211.9952, 45.888952], + [-211.9952, 38.652373], + [-219.231779, 38.652373] ] ] } @@ -280,11 +280,11 @@ "type": "Polygon", "coordinates": [ [ - [-219.12199, 45.834058], - [-219.12199, 53.062192], - [-211.893856, 53.062192], - [-211.893856, 45.834058], - [-219.12199, 45.834058] + [-219.231779, 45.888952], + [-219.231779, 53.125532], + [-211.9952, 53.125532], + [-211.9952, 45.888952], + [-219.231779, 45.888952] ] ] } @@ -296,11 +296,11 @@ "type": "Polygon", "coordinates": [ [ - [-219.12199, 53.062192], - [-219.12199, 60.290326], - [-211.893856, 60.290326], - [-211.893856, 53.062192], - [-219.12199, 53.062192] + [-219.231779, 53.125532], + [-219.231779, 60.362111], + [-211.9952, 60.362111], + [-211.9952, 53.125532], + [-219.231779, 53.125532] ] ] } @@ -312,11 +312,11 @@ "type": "Polygon", "coordinates": [ [ - [-219.12199, 60.290326], - [-219.12199, 67.518459], - [-211.893856, 67.518459], - [-211.893856, 60.290326], - [-219.12199, 60.290326] + [-219.231779, 60.362111], + [-219.231779, 67.59869], + [-211.9952, 67.59869], + [-211.9952, 60.362111], + [-219.231779, 60.362111] ] ] } @@ -328,11 +328,11 @@ "type": "Polygon", "coordinates": [ [ - [-219.12199, 67.518459], - [-219.12199, 74.746593], - [-211.893856, 74.746593], - [-211.893856, 67.518459], - [-219.12199, 67.518459] + [-219.231779, 67.59869], + [-219.231779, 74.835269], + [-211.9952, 74.835269], + [-211.9952, 67.59869], + [-219.231779, 67.59869] ] ] } @@ -344,11 +344,11 @@ "type": "Polygon", "coordinates": [ [ - [-211.893856, -77.044217], - [-211.893856, -69.816084], - [-204.665722, -69.816084], - [-204.665722, -77.044217], - [-211.893856, -77.044217] + [-211.9952, -77.132893], + [-211.9952, -69.896314], + [-204.758621, -69.896314], + [-204.758621, -77.132893], + [-211.9952, -77.132893] ] ] } @@ -360,11 +360,11 @@ "type": "Polygon", "coordinates": [ [ - [-211.893856, -69.816084], - [-211.893856, -62.58795], - [-204.665722, -62.58795], - [-204.665722, -69.816084], - [-211.893856, -69.816084] + [-211.9952, -69.896314], + [-211.9952, -62.659735], + [-204.758621, -62.659735], + [-204.758621, -69.896314], + [-211.9952, -69.896314] ] ] } @@ -376,11 +376,11 @@ "type": "Polygon", "coordinates": [ [ - [-211.893856, -62.58795], - [-211.893856, -55.359816], - [-204.665722, -55.359816], - [-204.665722, -62.58795], - [-211.893856, -62.58795] + [-211.9952, -62.659735], + [-211.9952, -55.423156], + [-204.758621, -55.423156], + [-204.758621, -62.659735], + [-211.9952, -62.659735] ] ] } @@ -392,11 +392,11 @@ "type": "Polygon", "coordinates": [ [ - [-211.893856, -55.359816], - [-211.893856, -48.131682], - [-204.665722, -48.131682], - [-204.665722, -55.359816], - [-211.893856, -55.359816] + [-211.9952, -55.423156], + [-211.9952, -48.186577], + [-204.758621, -48.186577], + [-204.758621, -55.423156], + [-211.9952, -55.423156] ] ] } @@ -408,11 +408,11 @@ "type": "Polygon", "coordinates": [ [ - [-211.893856, -48.131682], - [-211.893856, -40.903548], - [-204.665722, -40.903548], - [-204.665722, -48.131682], - [-211.893856, -48.131682] + [-211.9952, -48.186577], + [-211.9952, -40.949997], + [-204.758621, -40.949997], + [-204.758621, -48.186577], + [-211.9952, -48.186577] ] ] } @@ -424,11 +424,11 @@ "type": "Polygon", "coordinates": [ [ - [-211.893856, -40.903548], - [-211.893856, -33.675414], - [-204.665722, -33.675414], - [-204.665722, -40.903548], - [-211.893856, -40.903548] + [-211.9952, -40.949997], + [-211.9952, -33.713418], + [-204.758621, -33.713418], + [-204.758621, -40.949997], + [-211.9952, -40.949997] ] ] } @@ -440,11 +440,11 @@ "type": "Polygon", "coordinates": [ [ - [-211.893856, -33.675414], - [-211.893856, -26.44728], - [-204.665722, -26.44728], - [-204.665722, -33.675414], - [-211.893856, -33.675414] + [-211.9952, -33.713418], + [-211.9952, -26.476839], + [-204.758621, -26.476839], + [-204.758621, -33.713418], + [-211.9952, -33.713418] ] ] } @@ -456,11 +456,11 @@ "type": "Polygon", "coordinates": [ [ - [-211.893856, -26.44728], - [-211.893856, -19.219147], - [-204.665722, -19.219147], - [-204.665722, -26.44728], - [-211.893856, -26.44728] + [-211.9952, -26.476839], + [-211.9952, -19.24026], + [-204.758621, -19.24026], + [-204.758621, -26.476839], + [-211.9952, -26.476839] ] ] } @@ -472,11 +472,11 @@ "type": "Polygon", "coordinates": [ [ - [-211.893856, -19.219147], - [-211.893856, -11.991013], - [-204.665722, -11.991013], - [-204.665722, -19.219147], - [-211.893856, -19.219147] + [-211.9952, -19.24026], + [-211.9952, -12.003681], + [-204.758621, -12.003681], + [-204.758621, -19.24026], + [-211.9952, -19.24026] ] ] } @@ -488,11 +488,11 @@ "type": "Polygon", "coordinates": [ [ - [-211.893856, -11.991013], - [-211.893856, -4.762879], - [-204.665722, -4.762879], - [-204.665722, -11.991013], - [-211.893856, -11.991013] + [-211.9952, -12.003681], + [-211.9952, -4.767102], + [-204.758621, -4.767102], + [-204.758621, -12.003681], + [-211.9952, -12.003681] ] ] } @@ -504,11 +504,11 @@ "type": "Polygon", "coordinates": [ [ - [-211.893856, -4.762879], - [-211.893856, 2.465255], - [-204.665722, 2.465255], - [-204.665722, -4.762879], - [-211.893856, -4.762879] + [-211.9952, -4.767102], + [-211.9952, 2.469478], + [-204.758621, 2.469478], + [-204.758621, -4.767102], + [-211.9952, -4.767102] ] ] } @@ -520,11 +520,11 @@ "type": "Polygon", "coordinates": [ [ - [-211.893856, 2.465255], - [-211.893856, 9.693389], - [-204.665722, 9.693389], - [-204.665722, 2.465255], - [-211.893856, 2.465255] + [-211.9952, 2.469478], + [-211.9952, 9.706057], + [-204.758621, 9.706057], + [-204.758621, 2.469478], + [-211.9952, 2.469478] ] ] } @@ -536,11 +536,11 @@ "type": "Polygon", "coordinates": [ [ - [-211.893856, 9.693389], - [-211.893856, 16.921523], - [-204.665722, 16.921523], - [-204.665722, 9.693389], - [-211.893856, 9.693389] + [-211.9952, 9.706057], + [-211.9952, 16.942636], + [-204.758621, 16.942636], + [-204.758621, 9.706057], + [-211.9952, 9.706057] ] ] } @@ -552,11 +552,11 @@ "type": "Polygon", "coordinates": [ [ - [-211.893856, 16.921523], - [-211.893856, 24.149656], - [-204.665722, 24.149656], - [-204.665722, 16.921523], - [-211.893856, 16.921523] + [-211.9952, 16.942636], + [-211.9952, 24.179215], + [-204.758621, 24.179215], + [-204.758621, 16.942636], + [-211.9952, 16.942636] ] ] } @@ -568,11 +568,11 @@ "type": "Polygon", "coordinates": [ [ - [-211.893856, 24.149656], - [-211.893856, 31.37779], - [-204.665722, 31.37779], - [-204.665722, 24.149656], - [-211.893856, 24.149656] + [-211.9952, 24.179215], + [-211.9952, 31.415794], + [-204.758621, 31.415794], + [-204.758621, 24.179215], + [-211.9952, 24.179215] ] ] } @@ -584,11 +584,11 @@ "type": "Polygon", "coordinates": [ [ - [-211.893856, 31.37779], - [-211.893856, 38.605924], - [-204.665722, 38.605924], - [-204.665722, 31.37779], - [-211.893856, 31.37779] + [-211.9952, 31.415794], + [-211.9952, 38.652373], + [-204.758621, 38.652373], + [-204.758621, 31.415794], + [-211.9952, 31.415794] ] ] } @@ -600,11 +600,11 @@ "type": "Polygon", "coordinates": [ [ - [-211.893856, 38.605924], - [-211.893856, 45.834058], - [-204.665722, 45.834058], - [-204.665722, 38.605924], - [-211.893856, 38.605924] + [-211.9952, 38.652373], + [-211.9952, 45.888952], + [-204.758621, 45.888952], + [-204.758621, 38.652373], + [-211.9952, 38.652373] ] ] } @@ -616,11 +616,11 @@ "type": "Polygon", "coordinates": [ [ - [-211.893856, 45.834058], - [-211.893856, 53.062192], - [-204.665722, 53.062192], - [-204.665722, 45.834058], - [-211.893856, 45.834058] + [-211.9952, 45.888952], + [-211.9952, 53.125532], + [-204.758621, 53.125532], + [-204.758621, 45.888952], + [-211.9952, 45.888952] ] ] } @@ -632,11 +632,11 @@ "type": "Polygon", "coordinates": [ [ - [-211.893856, 53.062192], - [-211.893856, 60.290326], - [-204.665722, 60.290326], - [-204.665722, 53.062192], - [-211.893856, 53.062192] + [-211.9952, 53.125532], + [-211.9952, 60.362111], + [-204.758621, 60.362111], + [-204.758621, 53.125532], + [-211.9952, 53.125532] ] ] } @@ -648,11 +648,11 @@ "type": "Polygon", "coordinates": [ [ - [-211.893856, 60.290326], - [-211.893856, 67.518459], - [-204.665722, 67.518459], - [-204.665722, 60.290326], - [-211.893856, 60.290326] + [-211.9952, 60.362111], + [-211.9952, 67.59869], + [-204.758621, 67.59869], + [-204.758621, 60.362111], + [-211.9952, 60.362111] ] ] } @@ -664,11 +664,11 @@ "type": "Polygon", "coordinates": [ [ - [-211.893856, 67.518459], - [-211.893856, 74.746593], - [-204.665722, 74.746593], - [-204.665722, 67.518459], - [-211.893856, 67.518459] + [-211.9952, 67.59869], + [-211.9952, 74.835269], + [-204.758621, 74.835269], + [-204.758621, 67.59869], + [-211.9952, 67.59869] ] ] } @@ -680,11 +680,11 @@ "type": "Polygon", "coordinates": [ [ - [-204.665722, -77.044217], - [-204.665722, -69.816084], - [-197.437588, -69.816084], - [-197.437588, -77.044217], - [-204.665722, -77.044217] + [-204.758621, -77.132893], + [-204.758621, -69.896314], + [-197.522042, -69.896314], + [-197.522042, -77.132893], + [-204.758621, -77.132893] ] ] } @@ -696,11 +696,11 @@ "type": "Polygon", "coordinates": [ [ - [-204.665722, -69.816084], - [-204.665722, -62.58795], - [-197.437588, -62.58795], - [-197.437588, -69.816084], - [-204.665722, -69.816084] + [-204.758621, -69.896314], + [-204.758621, -62.659735], + [-197.522042, -62.659735], + [-197.522042, -69.896314], + [-204.758621, -69.896314] ] ] } @@ -712,11 +712,11 @@ "type": "Polygon", "coordinates": [ [ - [-204.665722, -62.58795], - [-204.665722, -55.359816], - [-197.437588, -55.359816], - [-197.437588, -62.58795], - [-204.665722, -62.58795] + [-204.758621, -62.659735], + [-204.758621, -55.423156], + [-197.522042, -55.423156], + [-197.522042, -62.659735], + [-204.758621, -62.659735] ] ] } @@ -728,11 +728,11 @@ "type": "Polygon", "coordinates": [ [ - [-204.665722, -55.359816], - [-204.665722, -48.131682], - [-197.437588, -48.131682], - [-197.437588, -55.359816], - [-204.665722, -55.359816] + [-204.758621, -55.423156], + [-204.758621, -48.186577], + [-197.522042, -48.186577], + [-197.522042, -55.423156], + [-204.758621, -55.423156] ] ] } @@ -744,11 +744,11 @@ "type": "Polygon", "coordinates": [ [ - [-204.665722, -48.131682], - [-204.665722, -40.903548], - [-197.437588, -40.903548], - [-197.437588, -48.131682], - [-204.665722, -48.131682] + [-204.758621, -48.186577], + [-204.758621, -40.949997], + [-197.522042, -40.949997], + [-197.522042, -48.186577], + [-204.758621, -48.186577] ] ] } @@ -760,11 +760,11 @@ "type": "Polygon", "coordinates": [ [ - [-204.665722, -40.903548], - [-204.665722, -33.675414], - [-197.437588, -33.675414], - [-197.437588, -40.903548], - [-204.665722, -40.903548] + [-204.758621, -40.949997], + [-204.758621, -33.713418], + [-197.522042, -33.713418], + [-197.522042, -40.949997], + [-204.758621, -40.949997] ] ] } @@ -776,11 +776,11 @@ "type": "Polygon", "coordinates": [ [ - [-204.665722, -33.675414], - [-204.665722, -26.44728], - [-197.437588, -26.44728], - [-197.437588, -33.675414], - [-204.665722, -33.675414] + [-204.758621, -33.713418], + [-204.758621, -26.476839], + [-197.522042, -26.476839], + [-197.522042, -33.713418], + [-204.758621, -33.713418] ] ] } @@ -792,11 +792,11 @@ "type": "Polygon", "coordinates": [ [ - [-204.665722, -26.44728], - [-204.665722, -19.219147], - [-197.437588, -19.219147], - [-197.437588, -26.44728], - [-204.665722, -26.44728] + [-204.758621, -26.476839], + [-204.758621, -19.24026], + [-197.522042, -19.24026], + [-197.522042, -26.476839], + [-204.758621, -26.476839] ] ] } @@ -808,11 +808,11 @@ "type": "Polygon", "coordinates": [ [ - [-204.665722, -19.219147], - [-204.665722, -11.991013], - [-197.437588, -11.991013], - [-197.437588, -19.219147], - [-204.665722, -19.219147] + [-204.758621, -19.24026], + [-204.758621, -12.003681], + [-197.522042, -12.003681], + [-197.522042, -19.24026], + [-204.758621, -19.24026] ] ] } @@ -824,11 +824,11 @@ "type": "Polygon", "coordinates": [ [ - [-204.665722, -11.991013], - [-204.665722, -4.762879], - [-197.437588, -4.762879], - [-197.437588, -11.991013], - [-204.665722, -11.991013] + [-204.758621, -12.003681], + [-204.758621, -4.767102], + [-197.522042, -4.767102], + [-197.522042, -12.003681], + [-204.758621, -12.003681] ] ] } @@ -840,11 +840,11 @@ "type": "Polygon", "coordinates": [ [ - [-204.665722, -4.762879], - [-204.665722, 2.465255], - [-197.437588, 2.465255], - [-197.437588, -4.762879], - [-204.665722, -4.762879] + [-204.758621, -4.767102], + [-204.758621, 2.469478], + [-197.522042, 2.469478], + [-197.522042, -4.767102], + [-204.758621, -4.767102] ] ] } @@ -856,11 +856,11 @@ "type": "Polygon", "coordinates": [ [ - [-204.665722, 2.465255], - [-204.665722, 9.693389], - [-197.437588, 9.693389], - [-197.437588, 2.465255], - [-204.665722, 2.465255] + [-204.758621, 2.469478], + [-204.758621, 9.706057], + [-197.522042, 9.706057], + [-197.522042, 2.469478], + [-204.758621, 2.469478] ] ] } @@ -872,11 +872,11 @@ "type": "Polygon", "coordinates": [ [ - [-204.665722, 9.693389], - [-204.665722, 16.921523], - [-197.437588, 16.921523], - [-197.437588, 9.693389], - [-204.665722, 9.693389] + [-204.758621, 9.706057], + [-204.758621, 16.942636], + [-197.522042, 16.942636], + [-197.522042, 9.706057], + [-204.758621, 9.706057] ] ] } @@ -888,11 +888,11 @@ "type": "Polygon", "coordinates": [ [ - [-204.665722, 16.921523], - [-204.665722, 24.149656], - [-197.437588, 24.149656], - [-197.437588, 16.921523], - [-204.665722, 16.921523] + [-204.758621, 16.942636], + [-204.758621, 24.179215], + [-197.522042, 24.179215], + [-197.522042, 16.942636], + [-204.758621, 16.942636] ] ] } @@ -904,11 +904,11 @@ "type": "Polygon", "coordinates": [ [ - [-204.665722, 24.149656], - [-204.665722, 31.37779], - [-197.437588, 31.37779], - [-197.437588, 24.149656], - [-204.665722, 24.149656] + [-204.758621, 24.179215], + [-204.758621, 31.415794], + [-197.522042, 31.415794], + [-197.522042, 24.179215], + [-204.758621, 24.179215] ] ] } @@ -920,11 +920,11 @@ "type": "Polygon", "coordinates": [ [ - [-204.665722, 31.37779], - [-204.665722, 38.605924], - [-197.437588, 38.605924], - [-197.437588, 31.37779], - [-204.665722, 31.37779] + [-204.758621, 31.415794], + [-204.758621, 38.652373], + [-197.522042, 38.652373], + [-197.522042, 31.415794], + [-204.758621, 31.415794] ] ] } @@ -936,11 +936,11 @@ "type": "Polygon", "coordinates": [ [ - [-204.665722, 38.605924], - [-204.665722, 45.834058], - [-197.437588, 45.834058], - [-197.437588, 38.605924], - [-204.665722, 38.605924] + [-204.758621, 38.652373], + [-204.758621, 45.888952], + [-197.522042, 45.888952], + [-197.522042, 38.652373], + [-204.758621, 38.652373] ] ] } @@ -952,11 +952,11 @@ "type": "Polygon", "coordinates": [ [ - [-204.665722, 45.834058], - [-204.665722, 53.062192], - [-197.437588, 53.062192], - [-197.437588, 45.834058], - [-204.665722, 45.834058] + [-204.758621, 45.888952], + [-204.758621, 53.125532], + [-197.522042, 53.125532], + [-197.522042, 45.888952], + [-204.758621, 45.888952] ] ] } @@ -968,11 +968,11 @@ "type": "Polygon", "coordinates": [ [ - [-204.665722, 53.062192], - [-204.665722, 60.290326], - [-197.437588, 60.290326], - [-197.437588, 53.062192], - [-204.665722, 53.062192] + [-204.758621, 53.125532], + [-204.758621, 60.362111], + [-197.522042, 60.362111], + [-197.522042, 53.125532], + [-204.758621, 53.125532] ] ] } @@ -984,11 +984,11 @@ "type": "Polygon", "coordinates": [ [ - [-204.665722, 60.290326], - [-204.665722, 67.518459], - [-197.437588, 67.518459], - [-197.437588, 60.290326], - [-204.665722, 60.290326] + [-204.758621, 60.362111], + [-204.758621, 67.59869], + [-197.522042, 67.59869], + [-197.522042, 60.362111], + [-204.758621, 60.362111] ] ] } @@ -1000,11 +1000,11 @@ "type": "Polygon", "coordinates": [ [ - [-204.665722, 67.518459], - [-204.665722, 74.746593], - [-197.437588, 74.746593], - [-197.437588, 67.518459], - [-204.665722, 67.518459] + [-204.758621, 67.59869], + [-204.758621, 74.835269], + [-197.522042, 74.835269], + [-197.522042, 67.59869], + [-204.758621, 67.59869] ] ] } @@ -1016,11 +1016,11 @@ "type": "Polygon", "coordinates": [ [ - [-197.437588, -77.044217], - [-197.437588, -69.816084], - [-190.209455, -69.816084], - [-190.209455, -77.044217], - [-197.437588, -77.044217] + [-197.522042, -77.132893], + [-197.522042, -69.896314], + [-190.285462, -69.896314], + [-190.285462, -77.132893], + [-197.522042, -77.132893] ] ] } @@ -1032,11 +1032,11 @@ "type": "Polygon", "coordinates": [ [ - [-197.437588, -69.816084], - [-197.437588, -62.58795], - [-190.209455, -62.58795], - [-190.209455, -69.816084], - [-197.437588, -69.816084] + [-197.522042, -69.896314], + [-197.522042, -62.659735], + [-190.285462, -62.659735], + [-190.285462, -69.896314], + [-197.522042, -69.896314] ] ] } @@ -1048,11 +1048,11 @@ "type": "Polygon", "coordinates": [ [ - [-197.437588, -62.58795], - [-197.437588, -55.359816], - [-190.209455, -55.359816], - [-190.209455, -62.58795], - [-197.437588, -62.58795] + [-197.522042, -62.659735], + [-197.522042, -55.423156], + [-190.285462, -55.423156], + [-190.285462, -62.659735], + [-197.522042, -62.659735] ] ] } @@ -1064,11 +1064,11 @@ "type": "Polygon", "coordinates": [ [ - [-197.437588, -55.359816], - [-197.437588, -48.131682], - [-190.209455, -48.131682], - [-190.209455, -55.359816], - [-197.437588, -55.359816] + [-197.522042, -55.423156], + [-197.522042, -48.186577], + [-190.285462, -48.186577], + [-190.285462, -55.423156], + [-197.522042, -55.423156] ] ] } @@ -1080,11 +1080,11 @@ "type": "Polygon", "coordinates": [ [ - [-197.437588, -48.131682], - [-197.437588, -40.903548], - [-190.209455, -40.903548], - [-190.209455, -48.131682], - [-197.437588, -48.131682] + [-197.522042, -48.186577], + [-197.522042, -40.949997], + [-190.285462, -40.949997], + [-190.285462, -48.186577], + [-197.522042, -48.186577] ] ] } @@ -1096,11 +1096,11 @@ "type": "Polygon", "coordinates": [ [ - [-197.437588, -40.903548], - [-197.437588, -33.675414], - [-190.209455, -33.675414], - [-190.209455, -40.903548], - [-197.437588, -40.903548] + [-197.522042, -40.949997], + [-197.522042, -33.713418], + [-190.285462, -33.713418], + [-190.285462, -40.949997], + [-197.522042, -40.949997] ] ] } @@ -1112,11 +1112,11 @@ "type": "Polygon", "coordinates": [ [ - [-197.437588, -33.675414], - [-197.437588, -26.44728], - [-190.209455, -26.44728], - [-190.209455, -33.675414], - [-197.437588, -33.675414] + [-197.522042, -33.713418], + [-197.522042, -26.476839], + [-190.285462, -26.476839], + [-190.285462, -33.713418], + [-197.522042, -33.713418] ] ] } @@ -1128,11 +1128,11 @@ "type": "Polygon", "coordinates": [ [ - [-197.437588, -26.44728], - [-197.437588, -19.219147], - [-190.209455, -19.219147], - [-190.209455, -26.44728], - [-197.437588, -26.44728] + [-197.522042, -26.476839], + [-197.522042, -19.24026], + [-190.285462, -19.24026], + [-190.285462, -26.476839], + [-197.522042, -26.476839] ] ] } @@ -1144,11 +1144,11 @@ "type": "Polygon", "coordinates": [ [ - [-197.437588, -19.219147], - [-197.437588, -11.991013], - [-190.209455, -11.991013], - [-190.209455, -19.219147], - [-197.437588, -19.219147] + [-197.522042, -19.24026], + [-197.522042, -12.003681], + [-190.285462, -12.003681], + [-190.285462, -19.24026], + [-197.522042, -19.24026] ] ] } @@ -1160,11 +1160,11 @@ "type": "Polygon", "coordinates": [ [ - [-197.437588, -11.991013], - [-197.437588, -4.762879], - [-190.209455, -4.762879], - [-190.209455, -11.991013], - [-197.437588, -11.991013] + [-197.522042, -12.003681], + [-197.522042, -4.767102], + [-190.285462, -4.767102], + [-190.285462, -12.003681], + [-197.522042, -12.003681] ] ] } @@ -1176,11 +1176,11 @@ "type": "Polygon", "coordinates": [ [ - [-197.437588, -4.762879], - [-197.437588, 2.465255], - [-190.209455, 2.465255], - [-190.209455, -4.762879], - [-197.437588, -4.762879] + [-197.522042, -4.767102], + [-197.522042, 2.469478], + [-190.285462, 2.469478], + [-190.285462, -4.767102], + [-197.522042, -4.767102] ] ] } @@ -1192,11 +1192,11 @@ "type": "Polygon", "coordinates": [ [ - [-197.437588, 2.465255], - [-197.437588, 9.693389], - [-190.209455, 9.693389], - [-190.209455, 2.465255], - [-197.437588, 2.465255] + [-197.522042, 2.469478], + [-197.522042, 9.706057], + [-190.285462, 9.706057], + [-190.285462, 2.469478], + [-197.522042, 2.469478] ] ] } @@ -1208,11 +1208,11 @@ "type": "Polygon", "coordinates": [ [ - [-197.437588, 9.693389], - [-197.437588, 16.921523], - [-190.209455, 16.921523], - [-190.209455, 9.693389], - [-197.437588, 9.693389] + [-197.522042, 9.706057], + [-197.522042, 16.942636], + [-190.285462, 16.942636], + [-190.285462, 9.706057], + [-197.522042, 9.706057] ] ] } @@ -1224,11 +1224,11 @@ "type": "Polygon", "coordinates": [ [ - [-197.437588, 16.921523], - [-197.437588, 24.149656], - [-190.209455, 24.149656], - [-190.209455, 16.921523], - [-197.437588, 16.921523] + [-197.522042, 16.942636], + [-197.522042, 24.179215], + [-190.285462, 24.179215], + [-190.285462, 16.942636], + [-197.522042, 16.942636] ] ] } @@ -1240,11 +1240,11 @@ "type": "Polygon", "coordinates": [ [ - [-197.437588, 24.149656], - [-197.437588, 31.37779], - [-190.209455, 31.37779], - [-190.209455, 24.149656], - [-197.437588, 24.149656] + [-197.522042, 24.179215], + [-197.522042, 31.415794], + [-190.285462, 31.415794], + [-190.285462, 24.179215], + [-197.522042, 24.179215] ] ] } @@ -1256,11 +1256,11 @@ "type": "Polygon", "coordinates": [ [ - [-197.437588, 31.37779], - [-197.437588, 38.605924], - [-190.209455, 38.605924], - [-190.209455, 31.37779], - [-197.437588, 31.37779] + [-197.522042, 31.415794], + [-197.522042, 38.652373], + [-190.285462, 38.652373], + [-190.285462, 31.415794], + [-197.522042, 31.415794] ] ] } @@ -1272,11 +1272,11 @@ "type": "Polygon", "coordinates": [ [ - [-197.437588, 38.605924], - [-197.437588, 45.834058], - [-190.209455, 45.834058], - [-190.209455, 38.605924], - [-197.437588, 38.605924] + [-197.522042, 38.652373], + [-197.522042, 45.888952], + [-190.285462, 45.888952], + [-190.285462, 38.652373], + [-197.522042, 38.652373] ] ] } @@ -1288,11 +1288,11 @@ "type": "Polygon", "coordinates": [ [ - [-197.437588, 45.834058], - [-197.437588, 53.062192], - [-190.209455, 53.062192], - [-190.209455, 45.834058], - [-197.437588, 45.834058] + [-197.522042, 45.888952], + [-197.522042, 53.125532], + [-190.285462, 53.125532], + [-190.285462, 45.888952], + [-197.522042, 45.888952] ] ] } @@ -1304,11 +1304,11 @@ "type": "Polygon", "coordinates": [ [ - [-197.437588, 53.062192], - [-197.437588, 60.290326], - [-190.209455, 60.290326], - [-190.209455, 53.062192], - [-197.437588, 53.062192] + [-197.522042, 53.125532], + [-197.522042, 60.362111], + [-190.285462, 60.362111], + [-190.285462, 53.125532], + [-197.522042, 53.125532] ] ] } @@ -1320,11 +1320,11 @@ "type": "Polygon", "coordinates": [ [ - [-197.437588, 60.290326], - [-197.437588, 67.518459], - [-190.209455, 67.518459], - [-190.209455, 60.290326], - [-197.437588, 60.290326] + [-197.522042, 60.362111], + [-197.522042, 67.59869], + [-190.285462, 67.59869], + [-190.285462, 60.362111], + [-197.522042, 60.362111] ] ] } @@ -1336,11 +1336,11 @@ "type": "Polygon", "coordinates": [ [ - [-197.437588, 67.518459], - [-197.437588, 74.746593], - [-190.209455, 74.746593], - [-190.209455, 67.518459], - [-197.437588, 67.518459] + [-197.522042, 67.59869], + [-197.522042, 74.835269], + [-190.285462, 74.835269], + [-190.285462, 67.59869], + [-197.522042, 67.59869] ] ] } @@ -1352,11 +1352,11 @@ "type": "Polygon", "coordinates": [ [ - [-190.209455, -77.044217], - [-190.209455, -69.816084], - [-182.981321, -69.816084], - [-182.981321, -77.044217], - [-190.209455, -77.044217] + [-190.285462, -77.132893], + [-190.285462, -69.896314], + [-183.048883, -69.896314], + [-183.048883, -77.132893], + [-190.285462, -77.132893] ] ] } @@ -1368,11 +1368,11 @@ "type": "Polygon", "coordinates": [ [ - [-190.209455, -69.816084], - [-190.209455, -62.58795], - [-182.981321, -62.58795], - [-182.981321, -69.816084], - [-190.209455, -69.816084] + [-190.285462, -69.896314], + [-190.285462, -62.659735], + [-183.048883, -62.659735], + [-183.048883, -69.896314], + [-190.285462, -69.896314] ] ] } @@ -1384,11 +1384,11 @@ "type": "Polygon", "coordinates": [ [ - [-190.209455, -62.58795], - [-190.209455, -55.359816], - [-182.981321, -55.359816], - [-182.981321, -62.58795], - [-190.209455, -62.58795] + [-190.285462, -62.659735], + [-190.285462, -55.423156], + [-183.048883, -55.423156], + [-183.048883, -62.659735], + [-190.285462, -62.659735] ] ] } @@ -1400,11 +1400,11 @@ "type": "Polygon", "coordinates": [ [ - [-190.209455, -55.359816], - [-190.209455, -48.131682], - [-182.981321, -48.131682], - [-182.981321, -55.359816], - [-190.209455, -55.359816] + [-190.285462, -55.423156], + [-190.285462, -48.186577], + [-183.048883, -48.186577], + [-183.048883, -55.423156], + [-190.285462, -55.423156] ] ] } @@ -1416,11 +1416,11 @@ "type": "Polygon", "coordinates": [ [ - [-190.209455, -48.131682], - [-190.209455, -40.903548], - [-182.981321, -40.903548], - [-182.981321, -48.131682], - [-190.209455, -48.131682] + [-190.285462, -48.186577], + [-190.285462, -40.949997], + [-183.048883, -40.949997], + [-183.048883, -48.186577], + [-190.285462, -48.186577] ] ] } @@ -1432,11 +1432,11 @@ "type": "Polygon", "coordinates": [ [ - [-190.209455, -40.903548], - [-190.209455, -33.675414], - [-182.981321, -33.675414], - [-182.981321, -40.903548], - [-190.209455, -40.903548] + [-190.285462, -40.949997], + [-190.285462, -33.713418], + [-183.048883, -33.713418], + [-183.048883, -40.949997], + [-190.285462, -40.949997] ] ] } @@ -1448,11 +1448,11 @@ "type": "Polygon", "coordinates": [ [ - [-190.209455, -33.675414], - [-190.209455, -26.44728], - [-182.981321, -26.44728], - [-182.981321, -33.675414], - [-190.209455, -33.675414] + [-190.285462, -33.713418], + [-190.285462, -26.476839], + [-183.048883, -26.476839], + [-183.048883, -33.713418], + [-190.285462, -33.713418] ] ] } @@ -1464,11 +1464,11 @@ "type": "Polygon", "coordinates": [ [ - [-190.209455, -26.44728], - [-190.209455, -19.219147], - [-182.981321, -19.219147], - [-182.981321, -26.44728], - [-190.209455, -26.44728] + [-190.285462, -26.476839], + [-190.285462, -19.24026], + [-183.048883, -19.24026], + [-183.048883, -26.476839], + [-190.285462, -26.476839] ] ] } @@ -1480,11 +1480,11 @@ "type": "Polygon", "coordinates": [ [ - [-190.209455, -19.219147], - [-190.209455, -11.991013], - [-182.981321, -11.991013], - [-182.981321, -19.219147], - [-190.209455, -19.219147] + [-190.285462, -19.24026], + [-190.285462, -12.003681], + [-183.048883, -12.003681], + [-183.048883, -19.24026], + [-190.285462, -19.24026] ] ] } @@ -1496,11 +1496,11 @@ "type": "Polygon", "coordinates": [ [ - [-190.209455, -11.991013], - [-190.209455, -4.762879], - [-182.981321, -4.762879], - [-182.981321, -11.991013], - [-190.209455, -11.991013] + [-190.285462, -12.003681], + [-190.285462, -4.767102], + [-183.048883, -4.767102], + [-183.048883, -12.003681], + [-190.285462, -12.003681] ] ] } @@ -1512,11 +1512,11 @@ "type": "Polygon", "coordinates": [ [ - [-190.209455, -4.762879], - [-190.209455, 2.465255], - [-182.981321, 2.465255], - [-182.981321, -4.762879], - [-190.209455, -4.762879] + [-190.285462, -4.767102], + [-190.285462, 2.469478], + [-183.048883, 2.469478], + [-183.048883, -4.767102], + [-190.285462, -4.767102] ] ] } @@ -1528,11 +1528,11 @@ "type": "Polygon", "coordinates": [ [ - [-190.209455, 2.465255], - [-190.209455, 9.693389], - [-182.981321, 9.693389], - [-182.981321, 2.465255], - [-190.209455, 2.465255] + [-190.285462, 2.469478], + [-190.285462, 9.706057], + [-183.048883, 9.706057], + [-183.048883, 2.469478], + [-190.285462, 2.469478] ] ] } @@ -1544,11 +1544,11 @@ "type": "Polygon", "coordinates": [ [ - [-190.209455, 9.693389], - [-190.209455, 16.921523], - [-182.981321, 16.921523], - [-182.981321, 9.693389], - [-190.209455, 9.693389] + [-190.285462, 9.706057], + [-190.285462, 16.942636], + [-183.048883, 16.942636], + [-183.048883, 9.706057], + [-190.285462, 9.706057] ] ] } @@ -1560,11 +1560,11 @@ "type": "Polygon", "coordinates": [ [ - [-190.209455, 16.921523], - [-190.209455, 24.149656], - [-182.981321, 24.149656], - [-182.981321, 16.921523], - [-190.209455, 16.921523] + [-190.285462, 16.942636], + [-190.285462, 24.179215], + [-183.048883, 24.179215], + [-183.048883, 16.942636], + [-190.285462, 16.942636] ] ] } @@ -1576,11 +1576,11 @@ "type": "Polygon", "coordinates": [ [ - [-190.209455, 24.149656], - [-190.209455, 31.37779], - [-182.981321, 31.37779], - [-182.981321, 24.149656], - [-190.209455, 24.149656] + [-190.285462, 24.179215], + [-190.285462, 31.415794], + [-183.048883, 31.415794], + [-183.048883, 24.179215], + [-190.285462, 24.179215] ] ] } @@ -1592,11 +1592,11 @@ "type": "Polygon", "coordinates": [ [ - [-190.209455, 31.37779], - [-190.209455, 38.605924], - [-182.981321, 38.605924], - [-182.981321, 31.37779], - [-190.209455, 31.37779] + [-190.285462, 31.415794], + [-190.285462, 38.652373], + [-183.048883, 38.652373], + [-183.048883, 31.415794], + [-190.285462, 31.415794] ] ] } @@ -1608,11 +1608,11 @@ "type": "Polygon", "coordinates": [ [ - [-190.209455, 38.605924], - [-190.209455, 45.834058], - [-182.981321, 45.834058], - [-182.981321, 38.605924], - [-190.209455, 38.605924] + [-190.285462, 38.652373], + [-190.285462, 45.888952], + [-183.048883, 45.888952], + [-183.048883, 38.652373], + [-190.285462, 38.652373] ] ] } @@ -1624,11 +1624,11 @@ "type": "Polygon", "coordinates": [ [ - [-190.209455, 45.834058], - [-190.209455, 53.062192], - [-182.981321, 53.062192], - [-182.981321, 45.834058], - [-190.209455, 45.834058] + [-190.285462, 45.888952], + [-190.285462, 53.125532], + [-183.048883, 53.125532], + [-183.048883, 45.888952], + [-190.285462, 45.888952] ] ] } @@ -1640,11 +1640,11 @@ "type": "Polygon", "coordinates": [ [ - [-190.209455, 53.062192], - [-190.209455, 60.290326], - [-182.981321, 60.290326], - [-182.981321, 53.062192], - [-190.209455, 53.062192] + [-190.285462, 53.125532], + [-190.285462, 60.362111], + [-183.048883, 60.362111], + [-183.048883, 53.125532], + [-190.285462, 53.125532] ] ] } @@ -1656,11 +1656,11 @@ "type": "Polygon", "coordinates": [ [ - [-190.209455, 60.290326], - [-190.209455, 67.518459], - [-182.981321, 67.518459], - [-182.981321, 60.290326], - [-190.209455, 60.290326] + [-190.285462, 60.362111], + [-190.285462, 67.59869], + [-183.048883, 67.59869], + [-183.048883, 60.362111], + [-190.285462, 60.362111] ] ] } @@ -1672,11 +1672,11 @@ "type": "Polygon", "coordinates": [ [ - [-190.209455, 67.518459], - [-190.209455, 74.746593], - [-182.981321, 74.746593], - [-182.981321, 67.518459], - [-190.209455, 67.518459] + [-190.285462, 67.59869], + [-190.285462, 74.835269], + [-183.048883, 74.835269], + [-183.048883, 67.59869], + [-190.285462, 67.59869] ] ] } @@ -1688,11 +1688,11 @@ "type": "Polygon", "coordinates": [ [ - [-182.981321, -77.044217], - [-182.981321, -69.816084], - [-175.753187, -69.816084], - [-175.753187, -77.044217], - [-182.981321, -77.044217] + [-183.048883, -77.132893], + [-183.048883, -69.896314], + [-175.812304, -69.896314], + [-175.812304, -77.132893], + [-183.048883, -77.132893] ] ] } @@ -1704,11 +1704,11 @@ "type": "Polygon", "coordinates": [ [ - [-182.981321, -69.816084], - [-182.981321, -62.58795], - [-175.753187, -62.58795], - [-175.753187, -69.816084], - [-182.981321, -69.816084] + [-183.048883, -69.896314], + [-183.048883, -62.659735], + [-175.812304, -62.659735], + [-175.812304, -69.896314], + [-183.048883, -69.896314] ] ] } @@ -1720,11 +1720,11 @@ "type": "Polygon", "coordinates": [ [ - [-182.981321, -62.58795], - [-182.981321, -55.359816], - [-175.753187, -55.359816], - [-175.753187, -62.58795], - [-182.981321, -62.58795] + [-183.048883, -62.659735], + [-183.048883, -55.423156], + [-175.812304, -55.423156], + [-175.812304, -62.659735], + [-183.048883, -62.659735] ] ] } @@ -1736,11 +1736,11 @@ "type": "Polygon", "coordinates": [ [ - [-182.981321, -55.359816], - [-182.981321, -48.131682], - [-175.753187, -48.131682], - [-175.753187, -55.359816], - [-182.981321, -55.359816] + [-183.048883, -55.423156], + [-183.048883, -48.186577], + [-175.812304, -48.186577], + [-175.812304, -55.423156], + [-183.048883, -55.423156] ] ] } @@ -1752,11 +1752,11 @@ "type": "Polygon", "coordinates": [ [ - [-182.981321, -48.131682], - [-182.981321, -40.903548], - [-175.753187, -40.903548], - [-175.753187, -48.131682], - [-182.981321, -48.131682] + [-183.048883, -48.186577], + [-183.048883, -40.949997], + [-175.812304, -40.949997], + [-175.812304, -48.186577], + [-183.048883, -48.186577] ] ] } @@ -1768,11 +1768,11 @@ "type": "Polygon", "coordinates": [ [ - [-182.981321, -40.903548], - [-182.981321, -33.675414], - [-175.753187, -33.675414], - [-175.753187, -40.903548], - [-182.981321, -40.903548] + [-183.048883, -40.949997], + [-183.048883, -33.713418], + [-175.812304, -33.713418], + [-175.812304, -40.949997], + [-183.048883, -40.949997] ] ] } @@ -1784,11 +1784,11 @@ "type": "Polygon", "coordinates": [ [ - [-182.981321, -33.675414], - [-182.981321, -26.44728], - [-175.753187, -26.44728], - [-175.753187, -33.675414], - [-182.981321, -33.675414] + [-183.048883, -33.713418], + [-183.048883, -26.476839], + [-175.812304, -26.476839], + [-175.812304, -33.713418], + [-183.048883, -33.713418] ] ] } @@ -1800,11 +1800,11 @@ "type": "Polygon", "coordinates": [ [ - [-182.981321, -26.44728], - [-182.981321, -19.219147], - [-175.753187, -19.219147], - [-175.753187, -26.44728], - [-182.981321, -26.44728] + [-183.048883, -26.476839], + [-183.048883, -19.24026], + [-175.812304, -19.24026], + [-175.812304, -26.476839], + [-183.048883, -26.476839] ] ] } @@ -1816,11 +1816,11 @@ "type": "Polygon", "coordinates": [ [ - [-182.981321, -19.219147], - [-182.981321, -11.991013], - [-175.753187, -11.991013], - [-175.753187, -19.219147], - [-182.981321, -19.219147] + [-183.048883, -19.24026], + [-183.048883, -12.003681], + [-175.812304, -12.003681], + [-175.812304, -19.24026], + [-183.048883, -19.24026] ] ] } @@ -1832,11 +1832,11 @@ "type": "Polygon", "coordinates": [ [ - [-182.981321, -11.991013], - [-182.981321, -4.762879], - [-175.753187, -4.762879], - [-175.753187, -11.991013], - [-182.981321, -11.991013] + [-183.048883, -12.003681], + [-183.048883, -4.767102], + [-175.812304, -4.767102], + [-175.812304, -12.003681], + [-183.048883, -12.003681] ] ] } @@ -1848,11 +1848,11 @@ "type": "Polygon", "coordinates": [ [ - [-182.981321, -4.762879], - [-182.981321, 2.465255], - [-175.753187, 2.465255], - [-175.753187, -4.762879], - [-182.981321, -4.762879] + [-183.048883, -4.767102], + [-183.048883, 2.469478], + [-175.812304, 2.469478], + [-175.812304, -4.767102], + [-183.048883, -4.767102] ] ] } @@ -1864,11 +1864,11 @@ "type": "Polygon", "coordinates": [ [ - [-182.981321, 2.465255], - [-182.981321, 9.693389], - [-175.753187, 9.693389], - [-175.753187, 2.465255], - [-182.981321, 2.465255] + [-183.048883, 2.469478], + [-183.048883, 9.706057], + [-175.812304, 9.706057], + [-175.812304, 2.469478], + [-183.048883, 2.469478] ] ] } @@ -1880,11 +1880,11 @@ "type": "Polygon", "coordinates": [ [ - [-182.981321, 9.693389], - [-182.981321, 16.921523], - [-175.753187, 16.921523], - [-175.753187, 9.693389], - [-182.981321, 9.693389] + [-183.048883, 9.706057], + [-183.048883, 16.942636], + [-175.812304, 16.942636], + [-175.812304, 9.706057], + [-183.048883, 9.706057] ] ] } @@ -1896,11 +1896,11 @@ "type": "Polygon", "coordinates": [ [ - [-182.981321, 16.921523], - [-182.981321, 24.149656], - [-175.753187, 24.149656], - [-175.753187, 16.921523], - [-182.981321, 16.921523] + [-183.048883, 16.942636], + [-183.048883, 24.179215], + [-175.812304, 24.179215], + [-175.812304, 16.942636], + [-183.048883, 16.942636] ] ] } @@ -1912,11 +1912,11 @@ "type": "Polygon", "coordinates": [ [ - [-182.981321, 24.149656], - [-182.981321, 31.37779], - [-175.753187, 31.37779], - [-175.753187, 24.149656], - [-182.981321, 24.149656] + [-183.048883, 24.179215], + [-183.048883, 31.415794], + [-175.812304, 31.415794], + [-175.812304, 24.179215], + [-183.048883, 24.179215] ] ] } @@ -1928,11 +1928,11 @@ "type": "Polygon", "coordinates": [ [ - [-182.981321, 31.37779], - [-182.981321, 38.605924], - [-175.753187, 38.605924], - [-175.753187, 31.37779], - [-182.981321, 31.37779] + [-183.048883, 31.415794], + [-183.048883, 38.652373], + [-175.812304, 38.652373], + [-175.812304, 31.415794], + [-183.048883, 31.415794] ] ] } @@ -1944,11 +1944,11 @@ "type": "Polygon", "coordinates": [ [ - [-182.981321, 38.605924], - [-182.981321, 45.834058], - [-175.753187, 45.834058], - [-175.753187, 38.605924], - [-182.981321, 38.605924] + [-183.048883, 38.652373], + [-183.048883, 45.888952], + [-175.812304, 45.888952], + [-175.812304, 38.652373], + [-183.048883, 38.652373] ] ] } @@ -1960,11 +1960,11 @@ "type": "Polygon", "coordinates": [ [ - [-182.981321, 45.834058], - [-182.981321, 53.062192], - [-175.753187, 53.062192], - [-175.753187, 45.834058], - [-182.981321, 45.834058] + [-183.048883, 45.888952], + [-183.048883, 53.125532], + [-175.812304, 53.125532], + [-175.812304, 45.888952], + [-183.048883, 45.888952] ] ] } @@ -1976,11 +1976,11 @@ "type": "Polygon", "coordinates": [ [ - [-182.981321, 53.062192], - [-182.981321, 60.290326], - [-175.753187, 60.290326], - [-175.753187, 53.062192], - [-182.981321, 53.062192] + [-183.048883, 53.125532], + [-183.048883, 60.362111], + [-175.812304, 60.362111], + [-175.812304, 53.125532], + [-183.048883, 53.125532] ] ] } @@ -1992,11 +1992,11 @@ "type": "Polygon", "coordinates": [ [ - [-182.981321, 60.290326], - [-182.981321, 67.518459], - [-175.753187, 67.518459], - [-175.753187, 60.290326], - [-182.981321, 60.290326] + [-183.048883, 60.362111], + [-183.048883, 67.59869], + [-175.812304, 67.59869], + [-175.812304, 60.362111], + [-183.048883, 60.362111] ] ] } @@ -2008,11 +2008,11 @@ "type": "Polygon", "coordinates": [ [ - [-182.981321, 67.518459], - [-182.981321, 74.746593], - [-175.753187, 74.746593], - [-175.753187, 67.518459], - [-182.981321, 67.518459] + [-183.048883, 67.59869], + [-183.048883, 74.835269], + [-175.812304, 74.835269], + [-175.812304, 67.59869], + [-183.048883, 67.59869] ] ] } @@ -2024,11 +2024,11 @@ "type": "Polygon", "coordinates": [ [ - [-175.753187, -77.044217], - [-175.753187, -69.816084], - [-168.525053, -69.816084], - [-168.525053, -77.044217], - [-175.753187, -77.044217] + [-175.812304, -77.132893], + [-175.812304, -69.896314], + [-168.575725, -69.896314], + [-168.575725, -77.132893], + [-175.812304, -77.132893] ] ] } @@ -2040,11 +2040,11 @@ "type": "Polygon", "coordinates": [ [ - [-175.753187, -69.816084], - [-175.753187, -62.58795], - [-168.525053, -62.58795], - [-168.525053, -69.816084], - [-175.753187, -69.816084] + [-175.812304, -69.896314], + [-175.812304, -62.659735], + [-168.575725, -62.659735], + [-168.575725, -69.896314], + [-175.812304, -69.896314] ] ] } @@ -2056,11 +2056,11 @@ "type": "Polygon", "coordinates": [ [ - [-175.753187, -62.58795], - [-175.753187, -55.359816], - [-168.525053, -55.359816], - [-168.525053, -62.58795], - [-175.753187, -62.58795] + [-175.812304, -62.659735], + [-175.812304, -55.423156], + [-168.575725, -55.423156], + [-168.575725, -62.659735], + [-175.812304, -62.659735] ] ] } @@ -2072,11 +2072,11 @@ "type": "Polygon", "coordinates": [ [ - [-175.753187, -55.359816], - [-175.753187, -48.131682], - [-168.525053, -48.131682], - [-168.525053, -55.359816], - [-175.753187, -55.359816] + [-175.812304, -55.423156], + [-175.812304, -48.186577], + [-168.575725, -48.186577], + [-168.575725, -55.423156], + [-175.812304, -55.423156] ] ] } @@ -2088,11 +2088,11 @@ "type": "Polygon", "coordinates": [ [ - [-175.753187, -48.131682], - [-175.753187, -40.903548], - [-168.525053, -40.903548], - [-168.525053, -48.131682], - [-175.753187, -48.131682] + [-175.812304, -48.186577], + [-175.812304, -40.949997], + [-168.575725, -40.949997], + [-168.575725, -48.186577], + [-175.812304, -48.186577] ] ] } @@ -2104,11 +2104,11 @@ "type": "Polygon", "coordinates": [ [ - [-175.753187, -40.903548], - [-175.753187, -33.675414], - [-168.525053, -33.675414], - [-168.525053, -40.903548], - [-175.753187, -40.903548] + [-175.812304, -40.949997], + [-175.812304, -33.713418], + [-168.575725, -33.713418], + [-168.575725, -40.949997], + [-175.812304, -40.949997] ] ] } @@ -2120,11 +2120,11 @@ "type": "Polygon", "coordinates": [ [ - [-175.753187, -33.675414], - [-175.753187, -26.44728], - [-168.525053, -26.44728], - [-168.525053, -33.675414], - [-175.753187, -33.675414] + [-175.812304, -33.713418], + [-175.812304, -26.476839], + [-168.575725, -26.476839], + [-168.575725, -33.713418], + [-175.812304, -33.713418] ] ] } @@ -2136,11 +2136,11 @@ "type": "Polygon", "coordinates": [ [ - [-175.753187, -26.44728], - [-175.753187, -19.219147], - [-168.525053, -19.219147], - [-168.525053, -26.44728], - [-175.753187, -26.44728] + [-175.812304, -26.476839], + [-175.812304, -19.24026], + [-168.575725, -19.24026], + [-168.575725, -26.476839], + [-175.812304, -26.476839] ] ] } @@ -2152,11 +2152,11 @@ "type": "Polygon", "coordinates": [ [ - [-175.753187, -19.219147], - [-175.753187, -11.991013], - [-168.525053, -11.991013], - [-168.525053, -19.219147], - [-175.753187, -19.219147] + [-175.812304, -19.24026], + [-175.812304, -12.003681], + [-168.575725, -12.003681], + [-168.575725, -19.24026], + [-175.812304, -19.24026] ] ] } @@ -2168,11 +2168,11 @@ "type": "Polygon", "coordinates": [ [ - [-175.753187, -11.991013], - [-175.753187, -4.762879], - [-168.525053, -4.762879], - [-168.525053, -11.991013], - [-175.753187, -11.991013] + [-175.812304, -12.003681], + [-175.812304, -4.767102], + [-168.575725, -4.767102], + [-168.575725, -12.003681], + [-175.812304, -12.003681] ] ] } @@ -2184,11 +2184,11 @@ "type": "Polygon", "coordinates": [ [ - [-175.753187, -4.762879], - [-175.753187, 2.465255], - [-168.525053, 2.465255], - [-168.525053, -4.762879], - [-175.753187, -4.762879] + [-175.812304, -4.767102], + [-175.812304, 2.469478], + [-168.575725, 2.469478], + [-168.575725, -4.767102], + [-175.812304, -4.767102] ] ] } @@ -2200,11 +2200,11 @@ "type": "Polygon", "coordinates": [ [ - [-175.753187, 2.465255], - [-175.753187, 9.693389], - [-168.525053, 9.693389], - [-168.525053, 2.465255], - [-175.753187, 2.465255] + [-175.812304, 2.469478], + [-175.812304, 9.706057], + [-168.575725, 9.706057], + [-168.575725, 2.469478], + [-175.812304, 2.469478] ] ] } @@ -2216,11 +2216,11 @@ "type": "Polygon", "coordinates": [ [ - [-175.753187, 9.693389], - [-175.753187, 16.921523], - [-168.525053, 16.921523], - [-168.525053, 9.693389], - [-175.753187, 9.693389] + [-175.812304, 9.706057], + [-175.812304, 16.942636], + [-168.575725, 16.942636], + [-168.575725, 9.706057], + [-175.812304, 9.706057] ] ] } @@ -2232,11 +2232,11 @@ "type": "Polygon", "coordinates": [ [ - [-175.753187, 16.921523], - [-175.753187, 24.149656], - [-168.525053, 24.149656], - [-168.525053, 16.921523], - [-175.753187, 16.921523] + [-175.812304, 16.942636], + [-175.812304, 24.179215], + [-168.575725, 24.179215], + [-168.575725, 16.942636], + [-175.812304, 16.942636] ] ] } @@ -2248,11 +2248,11 @@ "type": "Polygon", "coordinates": [ [ - [-175.753187, 24.149656], - [-175.753187, 31.37779], - [-168.525053, 31.37779], - [-168.525053, 24.149656], - [-175.753187, 24.149656] + [-175.812304, 24.179215], + [-175.812304, 31.415794], + [-168.575725, 31.415794], + [-168.575725, 24.179215], + [-175.812304, 24.179215] ] ] } @@ -2264,11 +2264,11 @@ "type": "Polygon", "coordinates": [ [ - [-175.753187, 31.37779], - [-175.753187, 38.605924], - [-168.525053, 38.605924], - [-168.525053, 31.37779], - [-175.753187, 31.37779] + [-175.812304, 31.415794], + [-175.812304, 38.652373], + [-168.575725, 38.652373], + [-168.575725, 31.415794], + [-175.812304, 31.415794] ] ] } @@ -2280,11 +2280,11 @@ "type": "Polygon", "coordinates": [ [ - [-175.753187, 38.605924], - [-175.753187, 45.834058], - [-168.525053, 45.834058], - [-168.525053, 38.605924], - [-175.753187, 38.605924] + [-175.812304, 38.652373], + [-175.812304, 45.888952], + [-168.575725, 45.888952], + [-168.575725, 38.652373], + [-175.812304, 38.652373] ] ] } @@ -2296,11 +2296,11 @@ "type": "Polygon", "coordinates": [ [ - [-175.753187, 45.834058], - [-175.753187, 53.062192], - [-168.525053, 53.062192], - [-168.525053, 45.834058], - [-175.753187, 45.834058] + [-175.812304, 45.888952], + [-175.812304, 53.125532], + [-168.575725, 53.125532], + [-168.575725, 45.888952], + [-175.812304, 45.888952] ] ] } @@ -2312,11 +2312,11 @@ "type": "Polygon", "coordinates": [ [ - [-175.753187, 53.062192], - [-175.753187, 60.290326], - [-168.525053, 60.290326], - [-168.525053, 53.062192], - [-175.753187, 53.062192] + [-175.812304, 53.125532], + [-175.812304, 60.362111], + [-168.575725, 60.362111], + [-168.575725, 53.125532], + [-175.812304, 53.125532] ] ] } @@ -2328,11 +2328,11 @@ "type": "Polygon", "coordinates": [ [ - [-175.753187, 60.290326], - [-175.753187, 67.518459], - [-168.525053, 67.518459], - [-168.525053, 60.290326], - [-175.753187, 60.290326] + [-175.812304, 60.362111], + [-175.812304, 67.59869], + [-168.575725, 67.59869], + [-168.575725, 60.362111], + [-175.812304, 60.362111] ] ] } @@ -2344,11 +2344,11 @@ "type": "Polygon", "coordinates": [ [ - [-175.753187, 67.518459], - [-175.753187, 74.746593], - [-168.525053, 74.746593], - [-168.525053, 67.518459], - [-175.753187, 67.518459] + [-175.812304, 67.59869], + [-175.812304, 74.835269], + [-168.575725, 74.835269], + [-168.575725, 67.59869], + [-175.812304, 67.59869] ] ] } @@ -2360,11 +2360,11 @@ "type": "Polygon", "coordinates": [ [ - [-168.525053, -77.044217], - [-168.525053, -69.816084], - [-161.296919, -69.816084], - [-161.296919, -77.044217], - [-168.525053, -77.044217] + [-168.575725, -77.132893], + [-168.575725, -69.896314], + [-161.339146, -69.896314], + [-161.339146, -77.132893], + [-168.575725, -77.132893] ] ] } @@ -2376,11 +2376,11 @@ "type": "Polygon", "coordinates": [ [ - [-168.525053, -69.816084], - [-168.525053, -62.58795], - [-161.296919, -62.58795], - [-161.296919, -69.816084], - [-168.525053, -69.816084] + [-168.575725, -69.896314], + [-168.575725, -62.659735], + [-161.339146, -62.659735], + [-161.339146, -69.896314], + [-168.575725, -69.896314] ] ] } @@ -2392,11 +2392,11 @@ "type": "Polygon", "coordinates": [ [ - [-168.525053, -62.58795], - [-168.525053, -55.359816], - [-161.296919, -55.359816], - [-161.296919, -62.58795], - [-168.525053, -62.58795] + [-168.575725, -62.659735], + [-168.575725, -55.423156], + [-161.339146, -55.423156], + [-161.339146, -62.659735], + [-168.575725, -62.659735] ] ] } @@ -2408,11 +2408,11 @@ "type": "Polygon", "coordinates": [ [ - [-168.525053, -55.359816], - [-168.525053, -48.131682], - [-161.296919, -48.131682], - [-161.296919, -55.359816], - [-168.525053, -55.359816] + [-168.575725, -55.423156], + [-168.575725, -48.186577], + [-161.339146, -48.186577], + [-161.339146, -55.423156], + [-168.575725, -55.423156] ] ] } @@ -2424,11 +2424,11 @@ "type": "Polygon", "coordinates": [ [ - [-168.525053, -48.131682], - [-168.525053, -40.903548], - [-161.296919, -40.903548], - [-161.296919, -48.131682], - [-168.525053, -48.131682] + [-168.575725, -48.186577], + [-168.575725, -40.949997], + [-161.339146, -40.949997], + [-161.339146, -48.186577], + [-168.575725, -48.186577] ] ] } @@ -2440,11 +2440,11 @@ "type": "Polygon", "coordinates": [ [ - [-168.525053, -40.903548], - [-168.525053, -33.675414], - [-161.296919, -33.675414], - [-161.296919, -40.903548], - [-168.525053, -40.903548] + [-168.575725, -40.949997], + [-168.575725, -33.713418], + [-161.339146, -33.713418], + [-161.339146, -40.949997], + [-168.575725, -40.949997] ] ] } @@ -2456,11 +2456,11 @@ "type": "Polygon", "coordinates": [ [ - [-168.525053, -33.675414], - [-168.525053, -26.44728], - [-161.296919, -26.44728], - [-161.296919, -33.675414], - [-168.525053, -33.675414] + [-168.575725, -33.713418], + [-168.575725, -26.476839], + [-161.339146, -26.476839], + [-161.339146, -33.713418], + [-168.575725, -33.713418] ] ] } @@ -2472,11 +2472,11 @@ "type": "Polygon", "coordinates": [ [ - [-168.525053, -26.44728], - [-168.525053, -19.219147], - [-161.296919, -19.219147], - [-161.296919, -26.44728], - [-168.525053, -26.44728] + [-168.575725, -26.476839], + [-168.575725, -19.24026], + [-161.339146, -19.24026], + [-161.339146, -26.476839], + [-168.575725, -26.476839] ] ] } @@ -2488,11 +2488,11 @@ "type": "Polygon", "coordinates": [ [ - [-168.525053, -19.219147], - [-168.525053, -11.991013], - [-161.296919, -11.991013], - [-161.296919, -19.219147], - [-168.525053, -19.219147] + [-168.575725, -19.24026], + [-168.575725, -12.003681], + [-161.339146, -12.003681], + [-161.339146, -19.24026], + [-168.575725, -19.24026] ] ] } @@ -2504,11 +2504,11 @@ "type": "Polygon", "coordinates": [ [ - [-168.525053, -11.991013], - [-168.525053, -4.762879], - [-161.296919, -4.762879], - [-161.296919, -11.991013], - [-168.525053, -11.991013] + [-168.575725, -12.003681], + [-168.575725, -4.767102], + [-161.339146, -4.767102], + [-161.339146, -12.003681], + [-168.575725, -12.003681] ] ] } @@ -2520,11 +2520,11 @@ "type": "Polygon", "coordinates": [ [ - [-168.525053, -4.762879], - [-168.525053, 2.465255], - [-161.296919, 2.465255], - [-161.296919, -4.762879], - [-168.525053, -4.762879] + [-168.575725, -4.767102], + [-168.575725, 2.469478], + [-161.339146, 2.469478], + [-161.339146, -4.767102], + [-168.575725, -4.767102] ] ] } @@ -2536,11 +2536,11 @@ "type": "Polygon", "coordinates": [ [ - [-168.525053, 2.465255], - [-168.525053, 9.693389], - [-161.296919, 9.693389], - [-161.296919, 2.465255], - [-168.525053, 2.465255] + [-168.575725, 2.469478], + [-168.575725, 9.706057], + [-161.339146, 9.706057], + [-161.339146, 2.469478], + [-168.575725, 2.469478] ] ] } @@ -2552,11 +2552,11 @@ "type": "Polygon", "coordinates": [ [ - [-168.525053, 9.693389], - [-168.525053, 16.921523], - [-161.296919, 16.921523], - [-161.296919, 9.693389], - [-168.525053, 9.693389] + [-168.575725, 9.706057], + [-168.575725, 16.942636], + [-161.339146, 16.942636], + [-161.339146, 9.706057], + [-168.575725, 9.706057] ] ] } @@ -2568,11 +2568,11 @@ "type": "Polygon", "coordinates": [ [ - [-168.525053, 16.921523], - [-168.525053, 24.149656], - [-161.296919, 24.149656], - [-161.296919, 16.921523], - [-168.525053, 16.921523] + [-168.575725, 16.942636], + [-168.575725, 24.179215], + [-161.339146, 24.179215], + [-161.339146, 16.942636], + [-168.575725, 16.942636] ] ] } @@ -2584,11 +2584,11 @@ "type": "Polygon", "coordinates": [ [ - [-168.525053, 24.149656], - [-168.525053, 31.37779], - [-161.296919, 31.37779], - [-161.296919, 24.149656], - [-168.525053, 24.149656] + [-168.575725, 24.179215], + [-168.575725, 31.415794], + [-161.339146, 31.415794], + [-161.339146, 24.179215], + [-168.575725, 24.179215] ] ] } @@ -2600,11 +2600,11 @@ "type": "Polygon", "coordinates": [ [ - [-168.525053, 31.37779], - [-168.525053, 38.605924], - [-161.296919, 38.605924], - [-161.296919, 31.37779], - [-168.525053, 31.37779] + [-168.575725, 31.415794], + [-168.575725, 38.652373], + [-161.339146, 38.652373], + [-161.339146, 31.415794], + [-168.575725, 31.415794] ] ] } @@ -2616,11 +2616,11 @@ "type": "Polygon", "coordinates": [ [ - [-168.525053, 38.605924], - [-168.525053, 45.834058], - [-161.296919, 45.834058], - [-161.296919, 38.605924], - [-168.525053, 38.605924] + [-168.575725, 38.652373], + [-168.575725, 45.888952], + [-161.339146, 45.888952], + [-161.339146, 38.652373], + [-168.575725, 38.652373] ] ] } @@ -2632,11 +2632,11 @@ "type": "Polygon", "coordinates": [ [ - [-168.525053, 45.834058], - [-168.525053, 53.062192], - [-161.296919, 53.062192], - [-161.296919, 45.834058], - [-168.525053, 45.834058] + [-168.575725, 45.888952], + [-168.575725, 53.125532], + [-161.339146, 53.125532], + [-161.339146, 45.888952], + [-168.575725, 45.888952] ] ] } @@ -2648,11 +2648,11 @@ "type": "Polygon", "coordinates": [ [ - [-168.525053, 53.062192], - [-168.525053, 60.290326], - [-161.296919, 60.290326], - [-161.296919, 53.062192], - [-168.525053, 53.062192] + [-168.575725, 53.125532], + [-168.575725, 60.362111], + [-161.339146, 60.362111], + [-161.339146, 53.125532], + [-168.575725, 53.125532] ] ] } @@ -2664,11 +2664,11 @@ "type": "Polygon", "coordinates": [ [ - [-168.525053, 60.290326], - [-168.525053, 67.518459], - [-161.296919, 67.518459], - [-161.296919, 60.290326], - [-168.525053, 60.290326] + [-168.575725, 60.362111], + [-168.575725, 67.59869], + [-161.339146, 67.59869], + [-161.339146, 60.362111], + [-168.575725, 60.362111] ] ] } @@ -2680,11 +2680,11 @@ "type": "Polygon", "coordinates": [ [ - [-168.525053, 67.518459], - [-168.525053, 74.746593], - [-161.296919, 74.746593], - [-161.296919, 67.518459], - [-168.525053, 67.518459] + [-168.575725, 67.59869], + [-168.575725, 74.835269], + [-161.339146, 74.835269], + [-161.339146, 67.59869], + [-168.575725, 67.59869] ] ] } @@ -2696,11 +2696,11 @@ "type": "Polygon", "coordinates": [ [ - [-161.296919, -77.044217], - [-161.296919, -69.816084], - [-154.068785, -69.816084], - [-154.068785, -77.044217], - [-161.296919, -77.044217] + [-161.339146, -77.132893], + [-161.339146, -69.896314], + [-154.102567, -69.896314], + [-154.102567, -77.132893], + [-161.339146, -77.132893] ] ] } @@ -2712,11 +2712,11 @@ "type": "Polygon", "coordinates": [ [ - [-161.296919, -69.816084], - [-161.296919, -62.58795], - [-154.068785, -62.58795], - [-154.068785, -69.816084], - [-161.296919, -69.816084] + [-161.339146, -69.896314], + [-161.339146, -62.659735], + [-154.102567, -62.659735], + [-154.102567, -69.896314], + [-161.339146, -69.896314] ] ] } @@ -2728,11 +2728,11 @@ "type": "Polygon", "coordinates": [ [ - [-161.296919, -62.58795], - [-161.296919, -55.359816], - [-154.068785, -55.359816], - [-154.068785, -62.58795], - [-161.296919, -62.58795] + [-161.339146, -62.659735], + [-161.339146, -55.423156], + [-154.102567, -55.423156], + [-154.102567, -62.659735], + [-161.339146, -62.659735] ] ] } @@ -2744,11 +2744,11 @@ "type": "Polygon", "coordinates": [ [ - [-161.296919, -55.359816], - [-161.296919, -48.131682], - [-154.068785, -48.131682], - [-154.068785, -55.359816], - [-161.296919, -55.359816] + [-161.339146, -55.423156], + [-161.339146, -48.186577], + [-154.102567, -48.186577], + [-154.102567, -55.423156], + [-161.339146, -55.423156] ] ] } @@ -2760,11 +2760,11 @@ "type": "Polygon", "coordinates": [ [ - [-161.296919, -48.131682], - [-161.296919, -40.903548], - [-154.068785, -40.903548], - [-154.068785, -48.131682], - [-161.296919, -48.131682] + [-161.339146, -48.186577], + [-161.339146, -40.949997], + [-154.102567, -40.949997], + [-154.102567, -48.186577], + [-161.339146, -48.186577] ] ] } @@ -2776,11 +2776,11 @@ "type": "Polygon", "coordinates": [ [ - [-161.296919, -40.903548], - [-161.296919, -33.675414], - [-154.068785, -33.675414], - [-154.068785, -40.903548], - [-161.296919, -40.903548] + [-161.339146, -40.949997], + [-161.339146, -33.713418], + [-154.102567, -33.713418], + [-154.102567, -40.949997], + [-161.339146, -40.949997] ] ] } @@ -2792,11 +2792,11 @@ "type": "Polygon", "coordinates": [ [ - [-161.296919, -33.675414], - [-161.296919, -26.44728], - [-154.068785, -26.44728], - [-154.068785, -33.675414], - [-161.296919, -33.675414] + [-161.339146, -33.713418], + [-161.339146, -26.476839], + [-154.102567, -26.476839], + [-154.102567, -33.713418], + [-161.339146, -33.713418] ] ] } @@ -2808,11 +2808,11 @@ "type": "Polygon", "coordinates": [ [ - [-161.296919, -26.44728], - [-161.296919, -19.219147], - [-154.068785, -19.219147], - [-154.068785, -26.44728], - [-161.296919, -26.44728] + [-161.339146, -26.476839], + [-161.339146, -19.24026], + [-154.102567, -19.24026], + [-154.102567, -26.476839], + [-161.339146, -26.476839] ] ] } @@ -2824,11 +2824,11 @@ "type": "Polygon", "coordinates": [ [ - [-161.296919, -19.219147], - [-161.296919, -11.991013], - [-154.068785, -11.991013], - [-154.068785, -19.219147], - [-161.296919, -19.219147] + [-161.339146, -19.24026], + [-161.339146, -12.003681], + [-154.102567, -12.003681], + [-154.102567, -19.24026], + [-161.339146, -19.24026] ] ] } @@ -2840,11 +2840,11 @@ "type": "Polygon", "coordinates": [ [ - [-161.296919, -11.991013], - [-161.296919, -4.762879], - [-154.068785, -4.762879], - [-154.068785, -11.991013], - [-161.296919, -11.991013] + [-161.339146, -12.003681], + [-161.339146, -4.767102], + [-154.102567, -4.767102], + [-154.102567, -12.003681], + [-161.339146, -12.003681] ] ] } @@ -2856,11 +2856,11 @@ "type": "Polygon", "coordinates": [ [ - [-161.296919, -4.762879], - [-161.296919, 2.465255], - [-154.068785, 2.465255], - [-154.068785, -4.762879], - [-161.296919, -4.762879] + [-161.339146, -4.767102], + [-161.339146, 2.469478], + [-154.102567, 2.469478], + [-154.102567, -4.767102], + [-161.339146, -4.767102] ] ] } @@ -2872,11 +2872,11 @@ "type": "Polygon", "coordinates": [ [ - [-161.296919, 2.465255], - [-161.296919, 9.693389], - [-154.068785, 9.693389], - [-154.068785, 2.465255], - [-161.296919, 2.465255] + [-161.339146, 2.469478], + [-161.339146, 9.706057], + [-154.102567, 9.706057], + [-154.102567, 2.469478], + [-161.339146, 2.469478] ] ] } @@ -2888,11 +2888,11 @@ "type": "Polygon", "coordinates": [ [ - [-161.296919, 9.693389], - [-161.296919, 16.921523], - [-154.068785, 16.921523], - [-154.068785, 9.693389], - [-161.296919, 9.693389] + [-161.339146, 9.706057], + [-161.339146, 16.942636], + [-154.102567, 16.942636], + [-154.102567, 9.706057], + [-161.339146, 9.706057] ] ] } @@ -2904,11 +2904,11 @@ "type": "Polygon", "coordinates": [ [ - [-161.296919, 16.921523], - [-161.296919, 24.149656], - [-154.068785, 24.149656], - [-154.068785, 16.921523], - [-161.296919, 16.921523] + [-161.339146, 16.942636], + [-161.339146, 24.179215], + [-154.102567, 24.179215], + [-154.102567, 16.942636], + [-161.339146, 16.942636] ] ] } @@ -2920,11 +2920,11 @@ "type": "Polygon", "coordinates": [ [ - [-161.296919, 24.149656], - [-161.296919, 31.37779], - [-154.068785, 31.37779], - [-154.068785, 24.149656], - [-161.296919, 24.149656] + [-161.339146, 24.179215], + [-161.339146, 31.415794], + [-154.102567, 31.415794], + [-154.102567, 24.179215], + [-161.339146, 24.179215] ] ] } @@ -2936,11 +2936,11 @@ "type": "Polygon", "coordinates": [ [ - [-161.296919, 31.37779], - [-161.296919, 38.605924], - [-154.068785, 38.605924], - [-154.068785, 31.37779], - [-161.296919, 31.37779] + [-161.339146, 31.415794], + [-161.339146, 38.652373], + [-154.102567, 38.652373], + [-154.102567, 31.415794], + [-161.339146, 31.415794] ] ] } @@ -2952,11 +2952,11 @@ "type": "Polygon", "coordinates": [ [ - [-161.296919, 38.605924], - [-161.296919, 45.834058], - [-154.068785, 45.834058], - [-154.068785, 38.605924], - [-161.296919, 38.605924] + [-161.339146, 38.652373], + [-161.339146, 45.888952], + [-154.102567, 45.888952], + [-154.102567, 38.652373], + [-161.339146, 38.652373] ] ] } @@ -2968,11 +2968,11 @@ "type": "Polygon", "coordinates": [ [ - [-161.296919, 45.834058], - [-161.296919, 53.062192], - [-154.068785, 53.062192], - [-154.068785, 45.834058], - [-161.296919, 45.834058] + [-161.339146, 45.888952], + [-161.339146, 53.125532], + [-154.102567, 53.125532], + [-154.102567, 45.888952], + [-161.339146, 45.888952] ] ] } @@ -2984,11 +2984,11 @@ "type": "Polygon", "coordinates": [ [ - [-161.296919, 53.062192], - [-161.296919, 60.290326], - [-154.068785, 60.290326], - [-154.068785, 53.062192], - [-161.296919, 53.062192] + [-161.339146, 53.125532], + [-161.339146, 60.362111], + [-154.102567, 60.362111], + [-154.102567, 53.125532], + [-161.339146, 53.125532] ] ] } @@ -3000,11 +3000,11 @@ "type": "Polygon", "coordinates": [ [ - [-161.296919, 60.290326], - [-161.296919, 67.518459], - [-154.068785, 67.518459], - [-154.068785, 60.290326], - [-161.296919, 60.290326] + [-161.339146, 60.362111], + [-161.339146, 67.59869], + [-154.102567, 67.59869], + [-154.102567, 60.362111], + [-161.339146, 60.362111] ] ] } @@ -3016,11 +3016,11 @@ "type": "Polygon", "coordinates": [ [ - [-161.296919, 67.518459], - [-161.296919, 74.746593], - [-154.068785, 74.746593], - [-154.068785, 67.518459], - [-161.296919, 67.518459] + [-161.339146, 67.59869], + [-161.339146, 74.835269], + [-154.102567, 74.835269], + [-154.102567, 67.59869], + [-161.339146, 67.59869] ] ] } @@ -3032,11 +3032,11 @@ "type": "Polygon", "coordinates": [ [ - [-154.068785, -77.044217], - [-154.068785, -69.816084], - [-146.840652, -69.816084], - [-146.840652, -77.044217], - [-154.068785, -77.044217] + [-154.102567, -77.132893], + [-154.102567, -69.896314], + [-146.865987, -69.896314], + [-146.865987, -77.132893], + [-154.102567, -77.132893] ] ] } @@ -3048,11 +3048,11 @@ "type": "Polygon", "coordinates": [ [ - [-154.068785, -69.816084], - [-154.068785, -62.58795], - [-146.840652, -62.58795], - [-146.840652, -69.816084], - [-154.068785, -69.816084] + [-154.102567, -69.896314], + [-154.102567, -62.659735], + [-146.865987, -62.659735], + [-146.865987, -69.896314], + [-154.102567, -69.896314] ] ] } @@ -3064,11 +3064,11 @@ "type": "Polygon", "coordinates": [ [ - [-154.068785, -62.58795], - [-154.068785, -55.359816], - [-146.840652, -55.359816], - [-146.840652, -62.58795], - [-154.068785, -62.58795] + [-154.102567, -62.659735], + [-154.102567, -55.423156], + [-146.865987, -55.423156], + [-146.865987, -62.659735], + [-154.102567, -62.659735] ] ] } @@ -3080,11 +3080,11 @@ "type": "Polygon", "coordinates": [ [ - [-154.068785, -55.359816], - [-154.068785, -48.131682], - [-146.840652, -48.131682], - [-146.840652, -55.359816], - [-154.068785, -55.359816] + [-154.102567, -55.423156], + [-154.102567, -48.186577], + [-146.865987, -48.186577], + [-146.865987, -55.423156], + [-154.102567, -55.423156] ] ] } @@ -3096,11 +3096,11 @@ "type": "Polygon", "coordinates": [ [ - [-154.068785, -48.131682], - [-154.068785, -40.903548], - [-146.840652, -40.903548], - [-146.840652, -48.131682], - [-154.068785, -48.131682] + [-154.102567, -48.186577], + [-154.102567, -40.949997], + [-146.865987, -40.949997], + [-146.865987, -48.186577], + [-154.102567, -48.186577] ] ] } @@ -3112,11 +3112,11 @@ "type": "Polygon", "coordinates": [ [ - [-154.068785, -40.903548], - [-154.068785, -33.675414], - [-146.840652, -33.675414], - [-146.840652, -40.903548], - [-154.068785, -40.903548] + [-154.102567, -40.949997], + [-154.102567, -33.713418], + [-146.865987, -33.713418], + [-146.865987, -40.949997], + [-154.102567, -40.949997] ] ] } @@ -3128,11 +3128,11 @@ "type": "Polygon", "coordinates": [ [ - [-154.068785, -33.675414], - [-154.068785, -26.44728], - [-146.840652, -26.44728], - [-146.840652, -33.675414], - [-154.068785, -33.675414] + [-154.102567, -33.713418], + [-154.102567, -26.476839], + [-146.865987, -26.476839], + [-146.865987, -33.713418], + [-154.102567, -33.713418] ] ] } @@ -3144,11 +3144,11 @@ "type": "Polygon", "coordinates": [ [ - [-154.068785, -26.44728], - [-154.068785, -19.219147], - [-146.840652, -19.219147], - [-146.840652, -26.44728], - [-154.068785, -26.44728] + [-154.102567, -26.476839], + [-154.102567, -19.24026], + [-146.865987, -19.24026], + [-146.865987, -26.476839], + [-154.102567, -26.476839] ] ] } @@ -3160,11 +3160,11 @@ "type": "Polygon", "coordinates": [ [ - [-154.068785, -19.219147], - [-154.068785, -11.991013], - [-146.840652, -11.991013], - [-146.840652, -19.219147], - [-154.068785, -19.219147] + [-154.102567, -19.24026], + [-154.102567, -12.003681], + [-146.865987, -12.003681], + [-146.865987, -19.24026], + [-154.102567, -19.24026] ] ] } @@ -3176,11 +3176,11 @@ "type": "Polygon", "coordinates": [ [ - [-154.068785, -11.991013], - [-154.068785, -4.762879], - [-146.840652, -4.762879], - [-146.840652, -11.991013], - [-154.068785, -11.991013] + [-154.102567, -12.003681], + [-154.102567, -4.767102], + [-146.865987, -4.767102], + [-146.865987, -12.003681], + [-154.102567, -12.003681] ] ] } @@ -3192,11 +3192,11 @@ "type": "Polygon", "coordinates": [ [ - [-154.068785, -4.762879], - [-154.068785, 2.465255], - [-146.840652, 2.465255], - [-146.840652, -4.762879], - [-154.068785, -4.762879] + [-154.102567, -4.767102], + [-154.102567, 2.469478], + [-146.865987, 2.469478], + [-146.865987, -4.767102], + [-154.102567, -4.767102] ] ] } @@ -3208,11 +3208,11 @@ "type": "Polygon", "coordinates": [ [ - [-154.068785, 2.465255], - [-154.068785, 9.693389], - [-146.840652, 9.693389], - [-146.840652, 2.465255], - [-154.068785, 2.465255] + [-154.102567, 2.469478], + [-154.102567, 9.706057], + [-146.865987, 9.706057], + [-146.865987, 2.469478], + [-154.102567, 2.469478] ] ] } @@ -3224,11 +3224,11 @@ "type": "Polygon", "coordinates": [ [ - [-154.068785, 9.693389], - [-154.068785, 16.921523], - [-146.840652, 16.921523], - [-146.840652, 9.693389], - [-154.068785, 9.693389] + [-154.102567, 9.706057], + [-154.102567, 16.942636], + [-146.865987, 16.942636], + [-146.865987, 9.706057], + [-154.102567, 9.706057] ] ] } @@ -3240,11 +3240,11 @@ "type": "Polygon", "coordinates": [ [ - [-154.068785, 16.921523], - [-154.068785, 24.149656], - [-146.840652, 24.149656], - [-146.840652, 16.921523], - [-154.068785, 16.921523] + [-154.102567, 16.942636], + [-154.102567, 24.179215], + [-146.865987, 24.179215], + [-146.865987, 16.942636], + [-154.102567, 16.942636] ] ] } @@ -3256,11 +3256,11 @@ "type": "Polygon", "coordinates": [ [ - [-154.068785, 24.149656], - [-154.068785, 31.37779], - [-146.840652, 31.37779], - [-146.840652, 24.149656], - [-154.068785, 24.149656] + [-154.102567, 24.179215], + [-154.102567, 31.415794], + [-146.865987, 31.415794], + [-146.865987, 24.179215], + [-154.102567, 24.179215] ] ] } @@ -3272,11 +3272,11 @@ "type": "Polygon", "coordinates": [ [ - [-154.068785, 31.37779], - [-154.068785, 38.605924], - [-146.840652, 38.605924], - [-146.840652, 31.37779], - [-154.068785, 31.37779] + [-154.102567, 31.415794], + [-154.102567, 38.652373], + [-146.865987, 38.652373], + [-146.865987, 31.415794], + [-154.102567, 31.415794] ] ] } @@ -3288,11 +3288,11 @@ "type": "Polygon", "coordinates": [ [ - [-154.068785, 38.605924], - [-154.068785, 45.834058], - [-146.840652, 45.834058], - [-146.840652, 38.605924], - [-154.068785, 38.605924] + [-154.102567, 38.652373], + [-154.102567, 45.888952], + [-146.865987, 45.888952], + [-146.865987, 38.652373], + [-154.102567, 38.652373] ] ] } @@ -3304,11 +3304,11 @@ "type": "Polygon", "coordinates": [ [ - [-154.068785, 45.834058], - [-154.068785, 53.062192], - [-146.840652, 53.062192], - [-146.840652, 45.834058], - [-154.068785, 45.834058] + [-154.102567, 45.888952], + [-154.102567, 53.125532], + [-146.865987, 53.125532], + [-146.865987, 45.888952], + [-154.102567, 45.888952] ] ] } @@ -3320,11 +3320,11 @@ "type": "Polygon", "coordinates": [ [ - [-154.068785, 53.062192], - [-154.068785, 60.290326], - [-146.840652, 60.290326], - [-146.840652, 53.062192], - [-154.068785, 53.062192] + [-154.102567, 53.125532], + [-154.102567, 60.362111], + [-146.865987, 60.362111], + [-146.865987, 53.125532], + [-154.102567, 53.125532] ] ] } @@ -3336,11 +3336,11 @@ "type": "Polygon", "coordinates": [ [ - [-154.068785, 60.290326], - [-154.068785, 67.518459], - [-146.840652, 67.518459], - [-146.840652, 60.290326], - [-154.068785, 60.290326] + [-154.102567, 60.362111], + [-154.102567, 67.59869], + [-146.865987, 67.59869], + [-146.865987, 60.362111], + [-154.102567, 60.362111] ] ] } @@ -3352,11 +3352,11 @@ "type": "Polygon", "coordinates": [ [ - [-154.068785, 67.518459], - [-154.068785, 74.746593], - [-146.840652, 74.746593], - [-146.840652, 67.518459], - [-154.068785, 67.518459] + [-154.102567, 67.59869], + [-154.102567, 74.835269], + [-146.865987, 74.835269], + [-146.865987, 67.59869], + [-154.102567, 67.59869] ] ] } @@ -3368,11 +3368,11 @@ "type": "Polygon", "coordinates": [ [ - [-146.840652, -77.044217], - [-146.840652, -69.816084], - [-139.612518, -69.816084], - [-139.612518, -77.044217], - [-146.840652, -77.044217] + [-146.865987, -77.132893], + [-146.865987, -69.896314], + [-139.629408, -69.896314], + [-139.629408, -77.132893], + [-146.865987, -77.132893] ] ] } @@ -3384,11 +3384,11 @@ "type": "Polygon", "coordinates": [ [ - [-146.840652, -69.816084], - [-146.840652, -62.58795], - [-139.612518, -62.58795], - [-139.612518, -69.816084], - [-146.840652, -69.816084] + [-146.865987, -69.896314], + [-146.865987, -62.659735], + [-139.629408, -62.659735], + [-139.629408, -69.896314], + [-146.865987, -69.896314] ] ] } @@ -3400,11 +3400,11 @@ "type": "Polygon", "coordinates": [ [ - [-146.840652, -62.58795], - [-146.840652, -55.359816], - [-139.612518, -55.359816], - [-139.612518, -62.58795], - [-146.840652, -62.58795] + [-146.865987, -62.659735], + [-146.865987, -55.423156], + [-139.629408, -55.423156], + [-139.629408, -62.659735], + [-146.865987, -62.659735] ] ] } @@ -3416,11 +3416,11 @@ "type": "Polygon", "coordinates": [ [ - [-146.840652, -55.359816], - [-146.840652, -48.131682], - [-139.612518, -48.131682], - [-139.612518, -55.359816], - [-146.840652, -55.359816] + [-146.865987, -55.423156], + [-146.865987, -48.186577], + [-139.629408, -48.186577], + [-139.629408, -55.423156], + [-146.865987, -55.423156] ] ] } @@ -3432,11 +3432,11 @@ "type": "Polygon", "coordinates": [ [ - [-146.840652, -48.131682], - [-146.840652, -40.903548], - [-139.612518, -40.903548], - [-139.612518, -48.131682], - [-146.840652, -48.131682] + [-146.865987, -48.186577], + [-146.865987, -40.949997], + [-139.629408, -40.949997], + [-139.629408, -48.186577], + [-146.865987, -48.186577] ] ] } @@ -3448,11 +3448,11 @@ "type": "Polygon", "coordinates": [ [ - [-146.840652, -40.903548], - [-146.840652, -33.675414], - [-139.612518, -33.675414], - [-139.612518, -40.903548], - [-146.840652, -40.903548] + [-146.865987, -40.949997], + [-146.865987, -33.713418], + [-139.629408, -33.713418], + [-139.629408, -40.949997], + [-146.865987, -40.949997] ] ] } @@ -3464,11 +3464,11 @@ "type": "Polygon", "coordinates": [ [ - [-146.840652, -33.675414], - [-146.840652, -26.44728], - [-139.612518, -26.44728], - [-139.612518, -33.675414], - [-146.840652, -33.675414] + [-146.865987, -33.713418], + [-146.865987, -26.476839], + [-139.629408, -26.476839], + [-139.629408, -33.713418], + [-146.865987, -33.713418] ] ] } @@ -3480,11 +3480,11 @@ "type": "Polygon", "coordinates": [ [ - [-146.840652, -26.44728], - [-146.840652, -19.219147], - [-139.612518, -19.219147], - [-139.612518, -26.44728], - [-146.840652, -26.44728] + [-146.865987, -26.476839], + [-146.865987, -19.24026], + [-139.629408, -19.24026], + [-139.629408, -26.476839], + [-146.865987, -26.476839] ] ] } @@ -3496,11 +3496,11 @@ "type": "Polygon", "coordinates": [ [ - [-146.840652, -19.219147], - [-146.840652, -11.991013], - [-139.612518, -11.991013], - [-139.612518, -19.219147], - [-146.840652, -19.219147] + [-146.865987, -19.24026], + [-146.865987, -12.003681], + [-139.629408, -12.003681], + [-139.629408, -19.24026], + [-146.865987, -19.24026] ] ] } @@ -3512,11 +3512,11 @@ "type": "Polygon", "coordinates": [ [ - [-146.840652, -11.991013], - [-146.840652, -4.762879], - [-139.612518, -4.762879], - [-139.612518, -11.991013], - [-146.840652, -11.991013] + [-146.865987, -12.003681], + [-146.865987, -4.767102], + [-139.629408, -4.767102], + [-139.629408, -12.003681], + [-146.865987, -12.003681] ] ] } @@ -3528,11 +3528,11 @@ "type": "Polygon", "coordinates": [ [ - [-146.840652, -4.762879], - [-146.840652, 2.465255], - [-139.612518, 2.465255], - [-139.612518, -4.762879], - [-146.840652, -4.762879] + [-146.865987, -4.767102], + [-146.865987, 2.469478], + [-139.629408, 2.469478], + [-139.629408, -4.767102], + [-146.865987, -4.767102] ] ] } @@ -3544,11 +3544,11 @@ "type": "Polygon", "coordinates": [ [ - [-146.840652, 2.465255], - [-146.840652, 9.693389], - [-139.612518, 9.693389], - [-139.612518, 2.465255], - [-146.840652, 2.465255] + [-146.865987, 2.469478], + [-146.865987, 9.706057], + [-139.629408, 9.706057], + [-139.629408, 2.469478], + [-146.865987, 2.469478] ] ] } @@ -3560,11 +3560,11 @@ "type": "Polygon", "coordinates": [ [ - [-146.840652, 9.693389], - [-146.840652, 16.921523], - [-139.612518, 16.921523], - [-139.612518, 9.693389], - [-146.840652, 9.693389] + [-146.865987, 9.706057], + [-146.865987, 16.942636], + [-139.629408, 16.942636], + [-139.629408, 9.706057], + [-146.865987, 9.706057] ] ] } @@ -3576,11 +3576,11 @@ "type": "Polygon", "coordinates": [ [ - [-146.840652, 16.921523], - [-146.840652, 24.149656], - [-139.612518, 24.149656], - [-139.612518, 16.921523], - [-146.840652, 16.921523] + [-146.865987, 16.942636], + [-146.865987, 24.179215], + [-139.629408, 24.179215], + [-139.629408, 16.942636], + [-146.865987, 16.942636] ] ] } @@ -3592,11 +3592,11 @@ "type": "Polygon", "coordinates": [ [ - [-146.840652, 24.149656], - [-146.840652, 31.37779], - [-139.612518, 31.37779], - [-139.612518, 24.149656], - [-146.840652, 24.149656] + [-146.865987, 24.179215], + [-146.865987, 31.415794], + [-139.629408, 31.415794], + [-139.629408, 24.179215], + [-146.865987, 24.179215] ] ] } @@ -3608,11 +3608,11 @@ "type": "Polygon", "coordinates": [ [ - [-146.840652, 31.37779], - [-146.840652, 38.605924], - [-139.612518, 38.605924], - [-139.612518, 31.37779], - [-146.840652, 31.37779] + [-146.865987, 31.415794], + [-146.865987, 38.652373], + [-139.629408, 38.652373], + [-139.629408, 31.415794], + [-146.865987, 31.415794] ] ] } @@ -3624,11 +3624,11 @@ "type": "Polygon", "coordinates": [ [ - [-146.840652, 38.605924], - [-146.840652, 45.834058], - [-139.612518, 45.834058], - [-139.612518, 38.605924], - [-146.840652, 38.605924] + [-146.865987, 38.652373], + [-146.865987, 45.888952], + [-139.629408, 45.888952], + [-139.629408, 38.652373], + [-146.865987, 38.652373] ] ] } @@ -3640,11 +3640,11 @@ "type": "Polygon", "coordinates": [ [ - [-146.840652, 45.834058], - [-146.840652, 53.062192], - [-139.612518, 53.062192], - [-139.612518, 45.834058], - [-146.840652, 45.834058] + [-146.865987, 45.888952], + [-146.865987, 53.125532], + [-139.629408, 53.125532], + [-139.629408, 45.888952], + [-146.865987, 45.888952] ] ] } @@ -3656,11 +3656,11 @@ "type": "Polygon", "coordinates": [ [ - [-146.840652, 53.062192], - [-146.840652, 60.290326], - [-139.612518, 60.290326], - [-139.612518, 53.062192], - [-146.840652, 53.062192] + [-146.865987, 53.125532], + [-146.865987, 60.362111], + [-139.629408, 60.362111], + [-139.629408, 53.125532], + [-146.865987, 53.125532] ] ] } @@ -3672,11 +3672,11 @@ "type": "Polygon", "coordinates": [ [ - [-146.840652, 60.290326], - [-146.840652, 67.518459], - [-139.612518, 67.518459], - [-139.612518, 60.290326], - [-146.840652, 60.290326] + [-146.865987, 60.362111], + [-146.865987, 67.59869], + [-139.629408, 67.59869], + [-139.629408, 60.362111], + [-146.865987, 60.362111] ] ] } @@ -3688,11 +3688,11 @@ "type": "Polygon", "coordinates": [ [ - [-146.840652, 67.518459], - [-146.840652, 74.746593], - [-139.612518, 74.746593], - [-139.612518, 67.518459], - [-146.840652, 67.518459] + [-146.865987, 67.59869], + [-146.865987, 74.835269], + [-139.629408, 74.835269], + [-139.629408, 67.59869], + [-146.865987, 67.59869] ] ] } @@ -3704,11 +3704,11 @@ "type": "Polygon", "coordinates": [ [ - [-139.612518, -77.044217], - [-139.612518, -69.816084], - [-132.384384, -69.816084], - [-132.384384, -77.044217], - [-139.612518, -77.044217] + [-139.629408, -77.132893], + [-139.629408, -69.896314], + [-132.392829, -69.896314], + [-132.392829, -77.132893], + [-139.629408, -77.132893] ] ] } @@ -3720,11 +3720,11 @@ "type": "Polygon", "coordinates": [ [ - [-139.612518, -69.816084], - [-139.612518, -62.58795], - [-132.384384, -62.58795], - [-132.384384, -69.816084], - [-139.612518, -69.816084] + [-139.629408, -69.896314], + [-139.629408, -62.659735], + [-132.392829, -62.659735], + [-132.392829, -69.896314], + [-139.629408, -69.896314] ] ] } @@ -3736,11 +3736,11 @@ "type": "Polygon", "coordinates": [ [ - [-139.612518, -62.58795], - [-139.612518, -55.359816], - [-132.384384, -55.359816], - [-132.384384, -62.58795], - [-139.612518, -62.58795] + [-139.629408, -62.659735], + [-139.629408, -55.423156], + [-132.392829, -55.423156], + [-132.392829, -62.659735], + [-139.629408, -62.659735] ] ] } @@ -3752,11 +3752,11 @@ "type": "Polygon", "coordinates": [ [ - [-139.612518, -55.359816], - [-139.612518, -48.131682], - [-132.384384, -48.131682], - [-132.384384, -55.359816], - [-139.612518, -55.359816] + [-139.629408, -55.423156], + [-139.629408, -48.186577], + [-132.392829, -48.186577], + [-132.392829, -55.423156], + [-139.629408, -55.423156] ] ] } @@ -3768,11 +3768,11 @@ "type": "Polygon", "coordinates": [ [ - [-139.612518, -48.131682], - [-139.612518, -40.903548], - [-132.384384, -40.903548], - [-132.384384, -48.131682], - [-139.612518, -48.131682] + [-139.629408, -48.186577], + [-139.629408, -40.949997], + [-132.392829, -40.949997], + [-132.392829, -48.186577], + [-139.629408, -48.186577] ] ] } @@ -3784,11 +3784,11 @@ "type": "Polygon", "coordinates": [ [ - [-139.612518, -40.903548], - [-139.612518, -33.675414], - [-132.384384, -33.675414], - [-132.384384, -40.903548], - [-139.612518, -40.903548] + [-139.629408, -40.949997], + [-139.629408, -33.713418], + [-132.392829, -33.713418], + [-132.392829, -40.949997], + [-139.629408, -40.949997] ] ] } @@ -3800,11 +3800,11 @@ "type": "Polygon", "coordinates": [ [ - [-139.612518, -33.675414], - [-139.612518, -26.44728], - [-132.384384, -26.44728], - [-132.384384, -33.675414], - [-139.612518, -33.675414] + [-139.629408, -33.713418], + [-139.629408, -26.476839], + [-132.392829, -26.476839], + [-132.392829, -33.713418], + [-139.629408, -33.713418] ] ] } @@ -3816,11 +3816,11 @@ "type": "Polygon", "coordinates": [ [ - [-139.612518, -26.44728], - [-139.612518, -19.219147], - [-132.384384, -19.219147], - [-132.384384, -26.44728], - [-139.612518, -26.44728] + [-139.629408, -26.476839], + [-139.629408, -19.24026], + [-132.392829, -19.24026], + [-132.392829, -26.476839], + [-139.629408, -26.476839] ] ] } @@ -3832,11 +3832,11 @@ "type": "Polygon", "coordinates": [ [ - [-139.612518, -19.219147], - [-139.612518, -11.991013], - [-132.384384, -11.991013], - [-132.384384, -19.219147], - [-139.612518, -19.219147] + [-139.629408, -19.24026], + [-139.629408, -12.003681], + [-132.392829, -12.003681], + [-132.392829, -19.24026], + [-139.629408, -19.24026] ] ] } @@ -3848,11 +3848,11 @@ "type": "Polygon", "coordinates": [ [ - [-139.612518, -11.991013], - [-139.612518, -4.762879], - [-132.384384, -4.762879], - [-132.384384, -11.991013], - [-139.612518, -11.991013] + [-139.629408, -12.003681], + [-139.629408, -4.767102], + [-132.392829, -4.767102], + [-132.392829, -12.003681], + [-139.629408, -12.003681] ] ] } @@ -3864,11 +3864,11 @@ "type": "Polygon", "coordinates": [ [ - [-139.612518, -4.762879], - [-139.612518, 2.465255], - [-132.384384, 2.465255], - [-132.384384, -4.762879], - [-139.612518, -4.762879] + [-139.629408, -4.767102], + [-139.629408, 2.469478], + [-132.392829, 2.469478], + [-132.392829, -4.767102], + [-139.629408, -4.767102] ] ] } @@ -3880,11 +3880,11 @@ "type": "Polygon", "coordinates": [ [ - [-139.612518, 2.465255], - [-139.612518, 9.693389], - [-132.384384, 9.693389], - [-132.384384, 2.465255], - [-139.612518, 2.465255] + [-139.629408, 2.469478], + [-139.629408, 9.706057], + [-132.392829, 9.706057], + [-132.392829, 2.469478], + [-139.629408, 2.469478] ] ] } @@ -3896,11 +3896,11 @@ "type": "Polygon", "coordinates": [ [ - [-139.612518, 9.693389], - [-139.612518, 16.921523], - [-132.384384, 16.921523], - [-132.384384, 9.693389], - [-139.612518, 9.693389] + [-139.629408, 9.706057], + [-139.629408, 16.942636], + [-132.392829, 16.942636], + [-132.392829, 9.706057], + [-139.629408, 9.706057] ] ] } @@ -3912,11 +3912,11 @@ "type": "Polygon", "coordinates": [ [ - [-139.612518, 16.921523], - [-139.612518, 24.149656], - [-132.384384, 24.149656], - [-132.384384, 16.921523], - [-139.612518, 16.921523] + [-139.629408, 16.942636], + [-139.629408, 24.179215], + [-132.392829, 24.179215], + [-132.392829, 16.942636], + [-139.629408, 16.942636] ] ] } @@ -3928,11 +3928,11 @@ "type": "Polygon", "coordinates": [ [ - [-139.612518, 24.149656], - [-139.612518, 31.37779], - [-132.384384, 31.37779], - [-132.384384, 24.149656], - [-139.612518, 24.149656] + [-139.629408, 24.179215], + [-139.629408, 31.415794], + [-132.392829, 31.415794], + [-132.392829, 24.179215], + [-139.629408, 24.179215] ] ] } @@ -3944,11 +3944,11 @@ "type": "Polygon", "coordinates": [ [ - [-139.612518, 31.37779], - [-139.612518, 38.605924], - [-132.384384, 38.605924], - [-132.384384, 31.37779], - [-139.612518, 31.37779] + [-139.629408, 31.415794], + [-139.629408, 38.652373], + [-132.392829, 38.652373], + [-132.392829, 31.415794], + [-139.629408, 31.415794] ] ] } @@ -3960,11 +3960,11 @@ "type": "Polygon", "coordinates": [ [ - [-139.612518, 38.605924], - [-139.612518, 45.834058], - [-132.384384, 45.834058], - [-132.384384, 38.605924], - [-139.612518, 38.605924] + [-139.629408, 38.652373], + [-139.629408, 45.888952], + [-132.392829, 45.888952], + [-132.392829, 38.652373], + [-139.629408, 38.652373] ] ] } @@ -3976,11 +3976,11 @@ "type": "Polygon", "coordinates": [ [ - [-139.612518, 45.834058], - [-139.612518, 53.062192], - [-132.384384, 53.062192], - [-132.384384, 45.834058], - [-139.612518, 45.834058] + [-139.629408, 45.888952], + [-139.629408, 53.125532], + [-132.392829, 53.125532], + [-132.392829, 45.888952], + [-139.629408, 45.888952] ] ] } @@ -3992,11 +3992,11 @@ "type": "Polygon", "coordinates": [ [ - [-139.612518, 53.062192], - [-139.612518, 60.290326], - [-132.384384, 60.290326], - [-132.384384, 53.062192], - [-139.612518, 53.062192] + [-139.629408, 53.125532], + [-139.629408, 60.362111], + [-132.392829, 60.362111], + [-132.392829, 53.125532], + [-139.629408, 53.125532] ] ] } @@ -4008,11 +4008,11 @@ "type": "Polygon", "coordinates": [ [ - [-139.612518, 60.290326], - [-139.612518, 67.518459], - [-132.384384, 67.518459], - [-132.384384, 60.290326], - [-139.612518, 60.290326] + [-139.629408, 60.362111], + [-139.629408, 67.59869], + [-132.392829, 67.59869], + [-132.392829, 60.362111], + [-139.629408, 60.362111] ] ] } @@ -4024,11 +4024,11 @@ "type": "Polygon", "coordinates": [ [ - [-139.612518, 67.518459], - [-139.612518, 74.746593], - [-132.384384, 74.746593], - [-132.384384, 67.518459], - [-139.612518, 67.518459] + [-139.629408, 67.59869], + [-139.629408, 74.835269], + [-132.392829, 74.835269], + [-132.392829, 67.59869], + [-139.629408, 67.59869] ] ] } @@ -4040,11 +4040,11 @@ "type": "Polygon", "coordinates": [ [ - [-132.384384, -77.044217], - [-132.384384, -69.816084], - [-125.15625, -69.816084], - [-125.15625, -77.044217], - [-132.384384, -77.044217] + [-132.392829, -77.132893], + [-132.392829, -69.896314], + [-125.15625, -69.896314], + [-125.15625, -77.132893], + [-132.392829, -77.132893] ] ] } @@ -4056,11 +4056,11 @@ "type": "Polygon", "coordinates": [ [ - [-132.384384, -69.816084], - [-132.384384, -62.58795], - [-125.15625, -62.58795], - [-125.15625, -69.816084], - [-132.384384, -69.816084] + [-132.392829, -69.896314], + [-132.392829, -62.659735], + [-125.15625, -62.659735], + [-125.15625, -69.896314], + [-132.392829, -69.896314] ] ] } @@ -4072,11 +4072,11 @@ "type": "Polygon", "coordinates": [ [ - [-132.384384, -62.58795], - [-132.384384, -55.359816], - [-125.15625, -55.359816], - [-125.15625, -62.58795], - [-132.384384, -62.58795] + [-132.392829, -62.659735], + [-132.392829, -55.423156], + [-125.15625, -55.423156], + [-125.15625, -62.659735], + [-132.392829, -62.659735] ] ] } @@ -4088,11 +4088,11 @@ "type": "Polygon", "coordinates": [ [ - [-132.384384, -55.359816], - [-132.384384, -48.131682], - [-125.15625, -48.131682], - [-125.15625, -55.359816], - [-132.384384, -55.359816] + [-132.392829, -55.423156], + [-132.392829, -48.186577], + [-125.15625, -48.186577], + [-125.15625, -55.423156], + [-132.392829, -55.423156] ] ] } @@ -4104,11 +4104,11 @@ "type": "Polygon", "coordinates": [ [ - [-132.384384, -48.131682], - [-132.384384, -40.903548], - [-125.15625, -40.903548], - [-125.15625, -48.131682], - [-132.384384, -48.131682] + [-132.392829, -48.186577], + [-132.392829, -40.949997], + [-125.15625, -40.949997], + [-125.15625, -48.186577], + [-132.392829, -48.186577] ] ] } @@ -4120,11 +4120,11 @@ "type": "Polygon", "coordinates": [ [ - [-132.384384, -40.903548], - [-132.384384, -33.675414], - [-125.15625, -33.675414], - [-125.15625, -40.903548], - [-132.384384, -40.903548] + [-132.392829, -40.949997], + [-132.392829, -33.713418], + [-125.15625, -33.713418], + [-125.15625, -40.949997], + [-132.392829, -40.949997] ] ] } @@ -4136,11 +4136,11 @@ "type": "Polygon", "coordinates": [ [ - [-132.384384, -33.675414], - [-132.384384, -26.44728], - [-125.15625, -26.44728], - [-125.15625, -33.675414], - [-132.384384, -33.675414] + [-132.392829, -33.713418], + [-132.392829, -26.476839], + [-125.15625, -26.476839], + [-125.15625, -33.713418], + [-132.392829, -33.713418] ] ] } @@ -4152,11 +4152,11 @@ "type": "Polygon", "coordinates": [ [ - [-132.384384, -26.44728], - [-132.384384, -19.219147], - [-125.15625, -19.219147], - [-125.15625, -26.44728], - [-132.384384, -26.44728] + [-132.392829, -26.476839], + [-132.392829, -19.24026], + [-125.15625, -19.24026], + [-125.15625, -26.476839], + [-132.392829, -26.476839] ] ] } @@ -4168,11 +4168,11 @@ "type": "Polygon", "coordinates": [ [ - [-132.384384, -19.219147], - [-132.384384, -11.991013], - [-125.15625, -11.991013], - [-125.15625, -19.219147], - [-132.384384, -19.219147] + [-132.392829, -19.24026], + [-132.392829, -12.003681], + [-125.15625, -12.003681], + [-125.15625, -19.24026], + [-132.392829, -19.24026] ] ] } @@ -4184,11 +4184,11 @@ "type": "Polygon", "coordinates": [ [ - [-132.384384, -11.991013], - [-132.384384, -4.762879], - [-125.15625, -4.762879], - [-125.15625, -11.991013], - [-132.384384, -11.991013] + [-132.392829, -12.003681], + [-132.392829, -4.767102], + [-125.15625, -4.767102], + [-125.15625, -12.003681], + [-132.392829, -12.003681] ] ] } @@ -4200,11 +4200,11 @@ "type": "Polygon", "coordinates": [ [ - [-132.384384, -4.762879], - [-132.384384, 2.465255], - [-125.15625, 2.465255], - [-125.15625, -4.762879], - [-132.384384, -4.762879] + [-132.392829, -4.767102], + [-132.392829, 2.469478], + [-125.15625, 2.469478], + [-125.15625, -4.767102], + [-132.392829, -4.767102] ] ] } @@ -4216,11 +4216,11 @@ "type": "Polygon", "coordinates": [ [ - [-132.384384, 2.465255], - [-132.384384, 9.693389], - [-125.15625, 9.693389], - [-125.15625, 2.465255], - [-132.384384, 2.465255] + [-132.392829, 2.469478], + [-132.392829, 9.706057], + [-125.15625, 9.706057], + [-125.15625, 2.469478], + [-132.392829, 2.469478] ] ] } @@ -4232,11 +4232,11 @@ "type": "Polygon", "coordinates": [ [ - [-132.384384, 9.693389], - [-132.384384, 16.921523], - [-125.15625, 16.921523], - [-125.15625, 9.693389], - [-132.384384, 9.693389] + [-132.392829, 9.706057], + [-132.392829, 16.942636], + [-125.15625, 16.942636], + [-125.15625, 9.706057], + [-132.392829, 9.706057] ] ] } @@ -4248,11 +4248,11 @@ "type": "Polygon", "coordinates": [ [ - [-132.384384, 16.921523], - [-132.384384, 24.149656], - [-125.15625, 24.149656], - [-125.15625, 16.921523], - [-132.384384, 16.921523] + [-132.392829, 16.942636], + [-132.392829, 24.179215], + [-125.15625, 24.179215], + [-125.15625, 16.942636], + [-132.392829, 16.942636] ] ] } @@ -4264,11 +4264,11 @@ "type": "Polygon", "coordinates": [ [ - [-132.384384, 24.149656], - [-132.384384, 31.37779], - [-125.15625, 31.37779], - [-125.15625, 24.149656], - [-132.384384, 24.149656] + [-132.392829, 24.179215], + [-132.392829, 31.415794], + [-125.15625, 31.415794], + [-125.15625, 24.179215], + [-132.392829, 24.179215] ] ] } @@ -4280,11 +4280,11 @@ "type": "Polygon", "coordinates": [ [ - [-132.384384, 31.37779], - [-132.384384, 38.605924], - [-125.15625, 38.605924], - [-125.15625, 31.37779], - [-132.384384, 31.37779] + [-132.392829, 31.415794], + [-132.392829, 38.652373], + [-125.15625, 38.652373], + [-125.15625, 31.415794], + [-132.392829, 31.415794] ] ] } @@ -4296,11 +4296,11 @@ "type": "Polygon", "coordinates": [ [ - [-132.384384, 38.605924], - [-132.384384, 45.834058], - [-125.15625, 45.834058], - [-125.15625, 38.605924], - [-132.384384, 38.605924] + [-132.392829, 38.652373], + [-132.392829, 45.888952], + [-125.15625, 45.888952], + [-125.15625, 38.652373], + [-132.392829, 38.652373] ] ] } @@ -4312,11 +4312,11 @@ "type": "Polygon", "coordinates": [ [ - [-132.384384, 45.834058], - [-132.384384, 53.062192], - [-125.15625, 53.062192], - [-125.15625, 45.834058], - [-132.384384, 45.834058] + [-132.392829, 45.888952], + [-132.392829, 53.125532], + [-125.15625, 53.125532], + [-125.15625, 45.888952], + [-132.392829, 45.888952] ] ] } @@ -4328,11 +4328,11 @@ "type": "Polygon", "coordinates": [ [ - [-132.384384, 53.062192], - [-132.384384, 60.290326], - [-125.15625, 60.290326], - [-125.15625, 53.062192], - [-132.384384, 53.062192] + [-132.392829, 53.125532], + [-132.392829, 60.362111], + [-125.15625, 60.362111], + [-125.15625, 53.125532], + [-132.392829, 53.125532] ] ] } @@ -4344,11 +4344,11 @@ "type": "Polygon", "coordinates": [ [ - [-132.384384, 60.290326], - [-132.384384, 67.518459], - [-125.15625, 67.518459], - [-125.15625, 60.290326], - [-132.384384, 60.290326] + [-132.392829, 60.362111], + [-132.392829, 67.59869], + [-125.15625, 67.59869], + [-125.15625, 60.362111], + [-132.392829, 60.362111] ] ] } @@ -4360,11 +4360,11 @@ "type": "Polygon", "coordinates": [ [ - [-132.384384, 67.518459], - [-132.384384, 74.746593], - [-125.15625, 74.746593], - [-125.15625, 67.518459], - [-132.384384, 67.518459] + [-132.392829, 67.59869], + [-132.392829, 74.835269], + [-125.15625, 74.835269], + [-125.15625, 67.59869], + [-132.392829, 67.59869] ] ] } @@ -4376,11 +4376,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -77.044217], - [-125.15625, -69.816084], - [-117.928116, -69.816084], - [-117.928116, -77.044217], - [-125.15625, -77.044217] + [-125.15625, -77.132893], + [-125.15625, -69.896314], + [-117.919671, -69.896314], + [-117.919671, -77.132893], + [-125.15625, -77.132893] ] ] } @@ -4392,11 +4392,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -69.816084], - [-125.15625, -62.58795], - [-117.928116, -62.58795], - [-117.928116, -69.816084], - [-125.15625, -69.816084] + [-125.15625, -69.896314], + [-125.15625, -62.659735], + [-117.919671, -62.659735], + [-117.919671, -69.896314], + [-125.15625, -69.896314] ] ] } @@ -4408,11 +4408,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -62.58795], - [-125.15625, -55.359816], - [-117.928116, -55.359816], - [-117.928116, -62.58795], - [-125.15625, -62.58795] + [-125.15625, -62.659735], + [-125.15625, -55.423156], + [-117.919671, -55.423156], + [-117.919671, -62.659735], + [-125.15625, -62.659735] ] ] } @@ -4424,11 +4424,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -55.359816], - [-125.15625, -48.131682], - [-117.928116, -48.131682], - [-117.928116, -55.359816], - [-125.15625, -55.359816] + [-125.15625, -55.423156], + [-125.15625, -48.186577], + [-117.919671, -48.186577], + [-117.919671, -55.423156], + [-125.15625, -55.423156] ] ] } @@ -4440,11 +4440,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -48.131682], - [-125.15625, -40.903548], - [-117.928116, -40.903548], - [-117.928116, -48.131682], - [-125.15625, -48.131682] + [-125.15625, -48.186577], + [-125.15625, -40.949997], + [-117.919671, -40.949997], + [-117.919671, -48.186577], + [-125.15625, -48.186577] ] ] } @@ -4456,11 +4456,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -40.903548], - [-125.15625, -33.675414], - [-117.928116, -33.675414], - [-117.928116, -40.903548], - [-125.15625, -40.903548] + [-125.15625, -40.949997], + [-125.15625, -33.713418], + [-117.919671, -33.713418], + [-117.919671, -40.949997], + [-125.15625, -40.949997] ] ] } @@ -4472,11 +4472,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -33.675414], - [-125.15625, -26.44728], - [-117.928116, -26.44728], - [-117.928116, -33.675414], - [-125.15625, -33.675414] + [-125.15625, -33.713418], + [-125.15625, -26.476839], + [-117.919671, -26.476839], + [-117.919671, -33.713418], + [-125.15625, -33.713418] ] ] } @@ -4488,11 +4488,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -26.44728], - [-125.15625, -19.219147], - [-117.928116, -19.219147], - [-117.928116, -26.44728], - [-125.15625, -26.44728] + [-125.15625, -26.476839], + [-125.15625, -19.24026], + [-117.919671, -19.24026], + [-117.919671, -26.476839], + [-125.15625, -26.476839] ] ] } @@ -4504,11 +4504,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -19.219147], - [-125.15625, -11.991013], - [-117.928116, -11.991013], - [-117.928116, -19.219147], - [-125.15625, -19.219147] + [-125.15625, -19.24026], + [-125.15625, -12.003681], + [-117.919671, -12.003681], + [-117.919671, -19.24026], + [-125.15625, -19.24026] ] ] } @@ -4520,11 +4520,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -11.991013], - [-125.15625, -4.762879], - [-117.928116, -4.762879], - [-117.928116, -11.991013], - [-125.15625, -11.991013] + [-125.15625, -12.003681], + [-125.15625, -4.767102], + [-117.919671, -4.767102], + [-117.919671, -12.003681], + [-125.15625, -12.003681] ] ] } @@ -4536,11 +4536,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, -4.762879], - [-125.15625, 2.465255], - [-117.928116, 2.465255], - [-117.928116, -4.762879], - [-125.15625, -4.762879] + [-125.15625, -4.767102], + [-125.15625, 2.469478], + [-117.919671, 2.469478], + [-117.919671, -4.767102], + [-125.15625, -4.767102] ] ] } @@ -4552,11 +4552,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 2.465255], - [-125.15625, 9.693389], - [-117.928116, 9.693389], - [-117.928116, 2.465255], - [-125.15625, 2.465255] + [-125.15625, 2.469478], + [-125.15625, 9.706057], + [-117.919671, 9.706057], + [-117.919671, 2.469478], + [-125.15625, 2.469478] ] ] } @@ -4568,11 +4568,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 9.693389], - [-125.15625, 16.921523], - [-117.928116, 16.921523], - [-117.928116, 9.693389], - [-125.15625, 9.693389] + [-125.15625, 9.706057], + [-125.15625, 16.942636], + [-117.919671, 16.942636], + [-117.919671, 9.706057], + [-125.15625, 9.706057] ] ] } @@ -4584,11 +4584,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 16.921523], - [-125.15625, 24.149656], - [-117.928116, 24.149656], - [-117.928116, 16.921523], - [-125.15625, 16.921523] + [-125.15625, 16.942636], + [-125.15625, 24.179215], + [-117.919671, 24.179215], + [-117.919671, 16.942636], + [-125.15625, 16.942636] ] ] } @@ -4600,11 +4600,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 24.149656], - [-125.15625, 31.37779], - [-117.928116, 31.37779], - [-117.928116, 24.149656], - [-125.15625, 24.149656] + [-125.15625, 24.179215], + [-125.15625, 31.415794], + [-117.919671, 31.415794], + [-117.919671, 24.179215], + [-125.15625, 24.179215] ] ] } @@ -4616,11 +4616,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 31.37779], - [-125.15625, 38.605924], - [-117.928116, 38.605924], - [-117.928116, 31.37779], - [-125.15625, 31.37779] + [-125.15625, 31.415794], + [-125.15625, 38.652373], + [-117.919671, 38.652373], + [-117.919671, 31.415794], + [-125.15625, 31.415794] ] ] } @@ -4632,11 +4632,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 38.605924], - [-125.15625, 45.834058], - [-117.928116, 45.834058], - [-117.928116, 38.605924], - [-125.15625, 38.605924] + [-125.15625, 38.652373], + [-125.15625, 45.888952], + [-117.919671, 45.888952], + [-117.919671, 38.652373], + [-125.15625, 38.652373] ] ] } @@ -4648,11 +4648,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 45.834058], - [-125.15625, 53.062192], - [-117.928116, 53.062192], - [-117.928116, 45.834058], - [-125.15625, 45.834058] + [-125.15625, 45.888952], + [-125.15625, 53.125532], + [-117.919671, 53.125532], + [-117.919671, 45.888952], + [-125.15625, 45.888952] ] ] } @@ -4664,11 +4664,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 53.062192], - [-125.15625, 60.290326], - [-117.928116, 60.290326], - [-117.928116, 53.062192], - [-125.15625, 53.062192] + [-125.15625, 53.125532], + [-125.15625, 60.362111], + [-117.919671, 60.362111], + [-117.919671, 53.125532], + [-125.15625, 53.125532] ] ] } @@ -4680,11 +4680,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 60.290326], - [-125.15625, 67.518459], - [-117.928116, 67.518459], - [-117.928116, 60.290326], - [-125.15625, 60.290326] + [-125.15625, 60.362111], + [-125.15625, 67.59869], + [-117.919671, 67.59869], + [-117.919671, 60.362111], + [-125.15625, 60.362111] ] ] } @@ -4696,11 +4696,11 @@ "type": "Polygon", "coordinates": [ [ - [-125.15625, 67.518459], - [-125.15625, 74.746593], - [-117.928116, 74.746593], - [-117.928116, 67.518459], - [-125.15625, 67.518459] + [-125.15625, 67.59869], + [-125.15625, 74.835269], + [-117.919671, 74.835269], + [-117.919671, 67.59869], + [-125.15625, 67.59869] ] ] } @@ -4712,11 +4712,11 @@ "type": "Polygon", "coordinates": [ [ - [-117.928116, -77.044217], - [-117.928116, -69.816084], - [-110.699982, -69.816084], - [-110.699982, -77.044217], - [-117.928116, -77.044217] + [-117.919671, -77.132893], + [-117.919671, -69.896314], + [-110.683092, -69.896314], + [-110.683092, -77.132893], + [-117.919671, -77.132893] ] ] } @@ -4728,11 +4728,11 @@ "type": "Polygon", "coordinates": [ [ - [-117.928116, -69.816084], - [-117.928116, -62.58795], - [-110.699982, -62.58795], - [-110.699982, -69.816084], - [-117.928116, -69.816084] + [-117.919671, -69.896314], + [-117.919671, -62.659735], + [-110.683092, -62.659735], + [-110.683092, -69.896314], + [-117.919671, -69.896314] ] ] } @@ -4744,11 +4744,11 @@ "type": "Polygon", "coordinates": [ [ - [-117.928116, -62.58795], - [-117.928116, -55.359816], - [-110.699982, -55.359816], - [-110.699982, -62.58795], - [-117.928116, -62.58795] + [-117.919671, -62.659735], + [-117.919671, -55.423156], + [-110.683092, -55.423156], + [-110.683092, -62.659735], + [-117.919671, -62.659735] ] ] } @@ -4760,11 +4760,11 @@ "type": "Polygon", "coordinates": [ [ - [-117.928116, -55.359816], - [-117.928116, -48.131682], - [-110.699982, -48.131682], - [-110.699982, -55.359816], - [-117.928116, -55.359816] + [-117.919671, -55.423156], + [-117.919671, -48.186577], + [-110.683092, -48.186577], + [-110.683092, -55.423156], + [-117.919671, -55.423156] ] ] } @@ -4776,11 +4776,11 @@ "type": "Polygon", "coordinates": [ [ - [-117.928116, -48.131682], - [-117.928116, -40.903548], - [-110.699982, -40.903548], - [-110.699982, -48.131682], - [-117.928116, -48.131682] + [-117.919671, -48.186577], + [-117.919671, -40.949997], + [-110.683092, -40.949997], + [-110.683092, -48.186577], + [-117.919671, -48.186577] ] ] } @@ -4792,11 +4792,11 @@ "type": "Polygon", "coordinates": [ [ - [-117.928116, -40.903548], - [-117.928116, -33.675414], - [-110.699982, -33.675414], - [-110.699982, -40.903548], - [-117.928116, -40.903548] + [-117.919671, -40.949997], + [-117.919671, -33.713418], + [-110.683092, -33.713418], + [-110.683092, -40.949997], + [-117.919671, -40.949997] ] ] } @@ -4808,11 +4808,11 @@ "type": "Polygon", "coordinates": [ [ - [-117.928116, -33.675414], - [-117.928116, -26.44728], - [-110.699982, -26.44728], - [-110.699982, -33.675414], - [-117.928116, -33.675414] + [-117.919671, -33.713418], + [-117.919671, -26.476839], + [-110.683092, -26.476839], + [-110.683092, -33.713418], + [-117.919671, -33.713418] ] ] } @@ -4824,11 +4824,11 @@ "type": "Polygon", "coordinates": [ [ - [-117.928116, -26.44728], - [-117.928116, -19.219147], - [-110.699982, -19.219147], - [-110.699982, -26.44728], - [-117.928116, -26.44728] + [-117.919671, -26.476839], + [-117.919671, -19.24026], + [-110.683092, -19.24026], + [-110.683092, -26.476839], + [-117.919671, -26.476839] ] ] } @@ -4840,11 +4840,11 @@ "type": "Polygon", "coordinates": [ [ - [-117.928116, -19.219147], - [-117.928116, -11.991013], - [-110.699982, -11.991013], - [-110.699982, -19.219147], - [-117.928116, -19.219147] + [-117.919671, -19.24026], + [-117.919671, -12.003681], + [-110.683092, -12.003681], + [-110.683092, -19.24026], + [-117.919671, -19.24026] ] ] } @@ -4856,11 +4856,11 @@ "type": "Polygon", "coordinates": [ [ - [-117.928116, -11.991013], - [-117.928116, -4.762879], - [-110.699982, -4.762879], - [-110.699982, -11.991013], - [-117.928116, -11.991013] + [-117.919671, -12.003681], + [-117.919671, -4.767102], + [-110.683092, -4.767102], + [-110.683092, -12.003681], + [-117.919671, -12.003681] ] ] } @@ -4872,11 +4872,11 @@ "type": "Polygon", "coordinates": [ [ - [-117.928116, -4.762879], - [-117.928116, 2.465255], - [-110.699982, 2.465255], - [-110.699982, -4.762879], - [-117.928116, -4.762879] + [-117.919671, -4.767102], + [-117.919671, 2.469478], + [-110.683092, 2.469478], + [-110.683092, -4.767102], + [-117.919671, -4.767102] ] ] } @@ -4888,11 +4888,11 @@ "type": "Polygon", "coordinates": [ [ - [-117.928116, 2.465255], - [-117.928116, 9.693389], - [-110.699982, 9.693389], - [-110.699982, 2.465255], - [-117.928116, 2.465255] + [-117.919671, 2.469478], + [-117.919671, 9.706057], + [-110.683092, 9.706057], + [-110.683092, 2.469478], + [-117.919671, 2.469478] ] ] } @@ -4904,11 +4904,11 @@ "type": "Polygon", "coordinates": [ [ - [-117.928116, 9.693389], - [-117.928116, 16.921523], - [-110.699982, 16.921523], - [-110.699982, 9.693389], - [-117.928116, 9.693389] + [-117.919671, 9.706057], + [-117.919671, 16.942636], + [-110.683092, 16.942636], + [-110.683092, 9.706057], + [-117.919671, 9.706057] ] ] } @@ -4920,11 +4920,11 @@ "type": "Polygon", "coordinates": [ [ - [-117.928116, 16.921523], - [-117.928116, 24.149656], - [-110.699982, 24.149656], - [-110.699982, 16.921523], - [-117.928116, 16.921523] + [-117.919671, 16.942636], + [-117.919671, 24.179215], + [-110.683092, 24.179215], + [-110.683092, 16.942636], + [-117.919671, 16.942636] ] ] } @@ -4936,11 +4936,11 @@ "type": "Polygon", "coordinates": [ [ - [-117.928116, 24.149656], - [-117.928116, 31.37779], - [-110.699982, 31.37779], - [-110.699982, 24.149656], - [-117.928116, 24.149656] + [-117.919671, 24.179215], + [-117.919671, 31.415794], + [-110.683092, 31.415794], + [-110.683092, 24.179215], + [-117.919671, 24.179215] ] ] } @@ -4952,11 +4952,11 @@ "type": "Polygon", "coordinates": [ [ - [-117.928116, 31.37779], - [-117.928116, 38.605924], - [-110.699982, 38.605924], - [-110.699982, 31.37779], - [-117.928116, 31.37779] + [-117.919671, 31.415794], + [-117.919671, 38.652373], + [-110.683092, 38.652373], + [-110.683092, 31.415794], + [-117.919671, 31.415794] ] ] } @@ -4968,11 +4968,11 @@ "type": "Polygon", "coordinates": [ [ - [-117.928116, 38.605924], - [-117.928116, 45.834058], - [-110.699982, 45.834058], - [-110.699982, 38.605924], - [-117.928116, 38.605924] + [-117.919671, 38.652373], + [-117.919671, 45.888952], + [-110.683092, 45.888952], + [-110.683092, 38.652373], + [-117.919671, 38.652373] ] ] } @@ -4984,11 +4984,11 @@ "type": "Polygon", "coordinates": [ [ - [-117.928116, 45.834058], - [-117.928116, 53.062192], - [-110.699982, 53.062192], - [-110.699982, 45.834058], - [-117.928116, 45.834058] + [-117.919671, 45.888952], + [-117.919671, 53.125532], + [-110.683092, 53.125532], + [-110.683092, 45.888952], + [-117.919671, 45.888952] ] ] } @@ -5000,11 +5000,11 @@ "type": "Polygon", "coordinates": [ [ - [-117.928116, 53.062192], - [-117.928116, 60.290326], - [-110.699982, 60.290326], - [-110.699982, 53.062192], - [-117.928116, 53.062192] + [-117.919671, 53.125532], + [-117.919671, 60.362111], + [-110.683092, 60.362111], + [-110.683092, 53.125532], + [-117.919671, 53.125532] ] ] } @@ -5016,11 +5016,11 @@ "type": "Polygon", "coordinates": [ [ - [-117.928116, 60.290326], - [-117.928116, 67.518459], - [-110.699982, 67.518459], - [-110.699982, 60.290326], - [-117.928116, 60.290326] + [-117.919671, 60.362111], + [-117.919671, 67.59869], + [-110.683092, 67.59869], + [-110.683092, 60.362111], + [-117.919671, 60.362111] ] ] } @@ -5032,11 +5032,11 @@ "type": "Polygon", "coordinates": [ [ - [-117.928116, 67.518459], - [-117.928116, 74.746593], - [-110.699982, 74.746593], - [-110.699982, 67.518459], - [-117.928116, 67.518459] + [-117.919671, 67.59869], + [-117.919671, 74.835269], + [-110.683092, 74.835269], + [-110.683092, 67.59869], + [-117.919671, 67.59869] ] ] } @@ -5048,11 +5048,11 @@ "type": "Polygon", "coordinates": [ [ - [-110.699982, -77.044217], - [-110.699982, -69.816084], - [-103.471848, -69.816084], - [-103.471848, -77.044217], - [-110.699982, -77.044217] + [-110.683092, -77.132893], + [-110.683092, -69.896314], + [-103.446513, -69.896314], + [-103.446513, -77.132893], + [-110.683092, -77.132893] ] ] } @@ -5064,11 +5064,11 @@ "type": "Polygon", "coordinates": [ [ - [-110.699982, -69.816084], - [-110.699982, -62.58795], - [-103.471848, -62.58795], - [-103.471848, -69.816084], - [-110.699982, -69.816084] + [-110.683092, -69.896314], + [-110.683092, -62.659735], + [-103.446513, -62.659735], + [-103.446513, -69.896314], + [-110.683092, -69.896314] ] ] } @@ -5080,11 +5080,11 @@ "type": "Polygon", "coordinates": [ [ - [-110.699982, -62.58795], - [-110.699982, -55.359816], - [-103.471848, -55.359816], - [-103.471848, -62.58795], - [-110.699982, -62.58795] + [-110.683092, -62.659735], + [-110.683092, -55.423156], + [-103.446513, -55.423156], + [-103.446513, -62.659735], + [-110.683092, -62.659735] ] ] } @@ -5096,11 +5096,11 @@ "type": "Polygon", "coordinates": [ [ - [-110.699982, -55.359816], - [-110.699982, -48.131682], - [-103.471848, -48.131682], - [-103.471848, -55.359816], - [-110.699982, -55.359816] + [-110.683092, -55.423156], + [-110.683092, -48.186577], + [-103.446513, -48.186577], + [-103.446513, -55.423156], + [-110.683092, -55.423156] ] ] } @@ -5112,11 +5112,11 @@ "type": "Polygon", "coordinates": [ [ - [-110.699982, -48.131682], - [-110.699982, -40.903548], - [-103.471848, -40.903548], - [-103.471848, -48.131682], - [-110.699982, -48.131682] + [-110.683092, -48.186577], + [-110.683092, -40.949997], + [-103.446513, -40.949997], + [-103.446513, -48.186577], + [-110.683092, -48.186577] ] ] } @@ -5128,11 +5128,11 @@ "type": "Polygon", "coordinates": [ [ - [-110.699982, -40.903548], - [-110.699982, -33.675414], - [-103.471848, -33.675414], - [-103.471848, -40.903548], - [-110.699982, -40.903548] + [-110.683092, -40.949997], + [-110.683092, -33.713418], + [-103.446513, -33.713418], + [-103.446513, -40.949997], + [-110.683092, -40.949997] ] ] } @@ -5144,11 +5144,11 @@ "type": "Polygon", "coordinates": [ [ - [-110.699982, -33.675414], - [-110.699982, -26.44728], - [-103.471848, -26.44728], - [-103.471848, -33.675414], - [-110.699982, -33.675414] + [-110.683092, -33.713418], + [-110.683092, -26.476839], + [-103.446513, -26.476839], + [-103.446513, -33.713418], + [-110.683092, -33.713418] ] ] } @@ -5160,11 +5160,11 @@ "type": "Polygon", "coordinates": [ [ - [-110.699982, -26.44728], - [-110.699982, -19.219147], - [-103.471848, -19.219147], - [-103.471848, -26.44728], - [-110.699982, -26.44728] + [-110.683092, -26.476839], + [-110.683092, -19.24026], + [-103.446513, -19.24026], + [-103.446513, -26.476839], + [-110.683092, -26.476839] ] ] } @@ -5176,11 +5176,11 @@ "type": "Polygon", "coordinates": [ [ - [-110.699982, -19.219147], - [-110.699982, -11.991013], - [-103.471848, -11.991013], - [-103.471848, -19.219147], - [-110.699982, -19.219147] + [-110.683092, -19.24026], + [-110.683092, -12.003681], + [-103.446513, -12.003681], + [-103.446513, -19.24026], + [-110.683092, -19.24026] ] ] } @@ -5192,11 +5192,11 @@ "type": "Polygon", "coordinates": [ [ - [-110.699982, -11.991013], - [-110.699982, -4.762879], - [-103.471848, -4.762879], - [-103.471848, -11.991013], - [-110.699982, -11.991013] + [-110.683092, -12.003681], + [-110.683092, -4.767102], + [-103.446513, -4.767102], + [-103.446513, -12.003681], + [-110.683092, -12.003681] ] ] } @@ -5208,11 +5208,11 @@ "type": "Polygon", "coordinates": [ [ - [-110.699982, -4.762879], - [-110.699982, 2.465255], - [-103.471848, 2.465255], - [-103.471848, -4.762879], - [-110.699982, -4.762879] + [-110.683092, -4.767102], + [-110.683092, 2.469478], + [-103.446513, 2.469478], + [-103.446513, -4.767102], + [-110.683092, -4.767102] ] ] } @@ -5224,11 +5224,11 @@ "type": "Polygon", "coordinates": [ [ - [-110.699982, 2.465255], - [-110.699982, 9.693389], - [-103.471848, 9.693389], - [-103.471848, 2.465255], - [-110.699982, 2.465255] + [-110.683092, 2.469478], + [-110.683092, 9.706057], + [-103.446513, 9.706057], + [-103.446513, 2.469478], + [-110.683092, 2.469478] ] ] } @@ -5240,11 +5240,11 @@ "type": "Polygon", "coordinates": [ [ - [-110.699982, 9.693389], - [-110.699982, 16.921523], - [-103.471848, 16.921523], - [-103.471848, 9.693389], - [-110.699982, 9.693389] + [-110.683092, 9.706057], + [-110.683092, 16.942636], + [-103.446513, 16.942636], + [-103.446513, 9.706057], + [-110.683092, 9.706057] ] ] } @@ -5256,11 +5256,11 @@ "type": "Polygon", "coordinates": [ [ - [-110.699982, 16.921523], - [-110.699982, 24.149656], - [-103.471848, 24.149656], - [-103.471848, 16.921523], - [-110.699982, 16.921523] + [-110.683092, 16.942636], + [-110.683092, 24.179215], + [-103.446513, 24.179215], + [-103.446513, 16.942636], + [-110.683092, 16.942636] ] ] } @@ -5272,11 +5272,11 @@ "type": "Polygon", "coordinates": [ [ - [-110.699982, 24.149656], - [-110.699982, 31.37779], - [-103.471848, 31.37779], - [-103.471848, 24.149656], - [-110.699982, 24.149656] + [-110.683092, 24.179215], + [-110.683092, 31.415794], + [-103.446513, 31.415794], + [-103.446513, 24.179215], + [-110.683092, 24.179215] ] ] } @@ -5288,11 +5288,11 @@ "type": "Polygon", "coordinates": [ [ - [-110.699982, 31.37779], - [-110.699982, 38.605924], - [-103.471848, 38.605924], - [-103.471848, 31.37779], - [-110.699982, 31.37779] + [-110.683092, 31.415794], + [-110.683092, 38.652373], + [-103.446513, 38.652373], + [-103.446513, 31.415794], + [-110.683092, 31.415794] ] ] } @@ -5304,11 +5304,11 @@ "type": "Polygon", "coordinates": [ [ - [-110.699982, 38.605924], - [-110.699982, 45.834058], - [-103.471848, 45.834058], - [-103.471848, 38.605924], - [-110.699982, 38.605924] + [-110.683092, 38.652373], + [-110.683092, 45.888952], + [-103.446513, 45.888952], + [-103.446513, 38.652373], + [-110.683092, 38.652373] ] ] } @@ -5320,11 +5320,11 @@ "type": "Polygon", "coordinates": [ [ - [-110.699982, 45.834058], - [-110.699982, 53.062192], - [-103.471848, 53.062192], - [-103.471848, 45.834058], - [-110.699982, 45.834058] + [-110.683092, 45.888952], + [-110.683092, 53.125532], + [-103.446513, 53.125532], + [-103.446513, 45.888952], + [-110.683092, 45.888952] ] ] } @@ -5336,11 +5336,11 @@ "type": "Polygon", "coordinates": [ [ - [-110.699982, 53.062192], - [-110.699982, 60.290326], - [-103.471848, 60.290326], - [-103.471848, 53.062192], - [-110.699982, 53.062192] + [-110.683092, 53.125532], + [-110.683092, 60.362111], + [-103.446513, 60.362111], + [-103.446513, 53.125532], + [-110.683092, 53.125532] ] ] } @@ -5352,11 +5352,11 @@ "type": "Polygon", "coordinates": [ [ - [-110.699982, 60.290326], - [-110.699982, 67.518459], - [-103.471848, 67.518459], - [-103.471848, 60.290326], - [-110.699982, 60.290326] + [-110.683092, 60.362111], + [-110.683092, 67.59869], + [-103.446513, 67.59869], + [-103.446513, 60.362111], + [-110.683092, 60.362111] ] ] } @@ -5368,11 +5368,11 @@ "type": "Polygon", "coordinates": [ [ - [-110.699982, 67.518459], - [-110.699982, 74.746593], - [-103.471848, 74.746593], - [-103.471848, 67.518459], - [-110.699982, 67.518459] + [-110.683092, 67.59869], + [-110.683092, 74.835269], + [-103.446513, 74.835269], + [-103.446513, 67.59869], + [-110.683092, 67.59869] ] ] } @@ -5384,11 +5384,11 @@ "type": "Polygon", "coordinates": [ [ - [-103.471848, -77.044217], - [-103.471848, -69.816084], - [-96.243715, -69.816084], - [-96.243715, -77.044217], - [-103.471848, -77.044217] + [-103.446513, -77.132893], + [-103.446513, -69.896314], + [-96.209933, -69.896314], + [-96.209933, -77.132893], + [-103.446513, -77.132893] ] ] } @@ -5400,11 +5400,11 @@ "type": "Polygon", "coordinates": [ [ - [-103.471848, -69.816084], - [-103.471848, -62.58795], - [-96.243715, -62.58795], - [-96.243715, -69.816084], - [-103.471848, -69.816084] + [-103.446513, -69.896314], + [-103.446513, -62.659735], + [-96.209933, -62.659735], + [-96.209933, -69.896314], + [-103.446513, -69.896314] ] ] } @@ -5416,11 +5416,11 @@ "type": "Polygon", "coordinates": [ [ - [-103.471848, -62.58795], - [-103.471848, -55.359816], - [-96.243715, -55.359816], - [-96.243715, -62.58795], - [-103.471848, -62.58795] + [-103.446513, -62.659735], + [-103.446513, -55.423156], + [-96.209933, -55.423156], + [-96.209933, -62.659735], + [-103.446513, -62.659735] ] ] } @@ -5432,11 +5432,11 @@ "type": "Polygon", "coordinates": [ [ - [-103.471848, -55.359816], - [-103.471848, -48.131682], - [-96.243715, -48.131682], - [-96.243715, -55.359816], - [-103.471848, -55.359816] + [-103.446513, -55.423156], + [-103.446513, -48.186577], + [-96.209933, -48.186577], + [-96.209933, -55.423156], + [-103.446513, -55.423156] ] ] } @@ -5448,11 +5448,11 @@ "type": "Polygon", "coordinates": [ [ - [-103.471848, -48.131682], - [-103.471848, -40.903548], - [-96.243715, -40.903548], - [-96.243715, -48.131682], - [-103.471848, -48.131682] + [-103.446513, -48.186577], + [-103.446513, -40.949997], + [-96.209933, -40.949997], + [-96.209933, -48.186577], + [-103.446513, -48.186577] ] ] } @@ -5464,11 +5464,11 @@ "type": "Polygon", "coordinates": [ [ - [-103.471848, -40.903548], - [-103.471848, -33.675414], - [-96.243715, -33.675414], - [-96.243715, -40.903548], - [-103.471848, -40.903548] + [-103.446513, -40.949997], + [-103.446513, -33.713418], + [-96.209933, -33.713418], + [-96.209933, -40.949997], + [-103.446513, -40.949997] ] ] } @@ -5480,11 +5480,11 @@ "type": "Polygon", "coordinates": [ [ - [-103.471848, -33.675414], - [-103.471848, -26.44728], - [-96.243715, -26.44728], - [-96.243715, -33.675414], - [-103.471848, -33.675414] + [-103.446513, -33.713418], + [-103.446513, -26.476839], + [-96.209933, -26.476839], + [-96.209933, -33.713418], + [-103.446513, -33.713418] ] ] } @@ -5496,11 +5496,11 @@ "type": "Polygon", "coordinates": [ [ - [-103.471848, -26.44728], - [-103.471848, -19.219147], - [-96.243715, -19.219147], - [-96.243715, -26.44728], - [-103.471848, -26.44728] + [-103.446513, -26.476839], + [-103.446513, -19.24026], + [-96.209933, -19.24026], + [-96.209933, -26.476839], + [-103.446513, -26.476839] ] ] } @@ -5512,11 +5512,11 @@ "type": "Polygon", "coordinates": [ [ - [-103.471848, -19.219147], - [-103.471848, -11.991013], - [-96.243715, -11.991013], - [-96.243715, -19.219147], - [-103.471848, -19.219147] + [-103.446513, -19.24026], + [-103.446513, -12.003681], + [-96.209933, -12.003681], + [-96.209933, -19.24026], + [-103.446513, -19.24026] ] ] } @@ -5528,11 +5528,11 @@ "type": "Polygon", "coordinates": [ [ - [-103.471848, -11.991013], - [-103.471848, -4.762879], - [-96.243715, -4.762879], - [-96.243715, -11.991013], - [-103.471848, -11.991013] + [-103.446513, -12.003681], + [-103.446513, -4.767102], + [-96.209933, -4.767102], + [-96.209933, -12.003681], + [-103.446513, -12.003681] ] ] } @@ -5544,11 +5544,11 @@ "type": "Polygon", "coordinates": [ [ - [-103.471848, -4.762879], - [-103.471848, 2.465255], - [-96.243715, 2.465255], - [-96.243715, -4.762879], - [-103.471848, -4.762879] + [-103.446513, -4.767102], + [-103.446513, 2.469478], + [-96.209933, 2.469478], + [-96.209933, -4.767102], + [-103.446513, -4.767102] ] ] } @@ -5560,11 +5560,11 @@ "type": "Polygon", "coordinates": [ [ - [-103.471848, 2.465255], - [-103.471848, 9.693389], - [-96.243715, 9.693389], - [-96.243715, 2.465255], - [-103.471848, 2.465255] + [-103.446513, 2.469478], + [-103.446513, 9.706057], + [-96.209933, 9.706057], + [-96.209933, 2.469478], + [-103.446513, 2.469478] ] ] } @@ -5576,11 +5576,11 @@ "type": "Polygon", "coordinates": [ [ - [-103.471848, 9.693389], - [-103.471848, 16.921523], - [-96.243715, 16.921523], - [-96.243715, 9.693389], - [-103.471848, 9.693389] + [-103.446513, 9.706057], + [-103.446513, 16.942636], + [-96.209933, 16.942636], + [-96.209933, 9.706057], + [-103.446513, 9.706057] ] ] } @@ -5592,11 +5592,11 @@ "type": "Polygon", "coordinates": [ [ - [-103.471848, 16.921523], - [-103.471848, 24.149656], - [-96.243715, 24.149656], - [-96.243715, 16.921523], - [-103.471848, 16.921523] + [-103.446513, 16.942636], + [-103.446513, 24.179215], + [-96.209933, 24.179215], + [-96.209933, 16.942636], + [-103.446513, 16.942636] ] ] } @@ -5608,11 +5608,11 @@ "type": "Polygon", "coordinates": [ [ - [-103.471848, 24.149656], - [-103.471848, 31.37779], - [-96.243715, 31.37779], - [-96.243715, 24.149656], - [-103.471848, 24.149656] + [-103.446513, 24.179215], + [-103.446513, 31.415794], + [-96.209933, 31.415794], + [-96.209933, 24.179215], + [-103.446513, 24.179215] ] ] } @@ -5624,11 +5624,11 @@ "type": "Polygon", "coordinates": [ [ - [-103.471848, 31.37779], - [-103.471848, 38.605924], - [-96.243715, 38.605924], - [-96.243715, 31.37779], - [-103.471848, 31.37779] + [-103.446513, 31.415794], + [-103.446513, 38.652373], + [-96.209933, 38.652373], + [-96.209933, 31.415794], + [-103.446513, 31.415794] ] ] } @@ -5640,11 +5640,11 @@ "type": "Polygon", "coordinates": [ [ - [-103.471848, 38.605924], - [-103.471848, 45.834058], - [-96.243715, 45.834058], - [-96.243715, 38.605924], - [-103.471848, 38.605924] + [-103.446513, 38.652373], + [-103.446513, 45.888952], + [-96.209933, 45.888952], + [-96.209933, 38.652373], + [-103.446513, 38.652373] ] ] } @@ -5656,11 +5656,11 @@ "type": "Polygon", "coordinates": [ [ - [-103.471848, 45.834058], - [-103.471848, 53.062192], - [-96.243715, 53.062192], - [-96.243715, 45.834058], - [-103.471848, 45.834058] + [-103.446513, 45.888952], + [-103.446513, 53.125532], + [-96.209933, 53.125532], + [-96.209933, 45.888952], + [-103.446513, 45.888952] ] ] } @@ -5672,11 +5672,11 @@ "type": "Polygon", "coordinates": [ [ - [-103.471848, 53.062192], - [-103.471848, 60.290326], - [-96.243715, 60.290326], - [-96.243715, 53.062192], - [-103.471848, 53.062192] + [-103.446513, 53.125532], + [-103.446513, 60.362111], + [-96.209933, 60.362111], + [-96.209933, 53.125532], + [-103.446513, 53.125532] ] ] } @@ -5688,11 +5688,11 @@ "type": "Polygon", "coordinates": [ [ - [-103.471848, 60.290326], - [-103.471848, 67.518459], - [-96.243715, 67.518459], - [-96.243715, 60.290326], - [-103.471848, 60.290326] + [-103.446513, 60.362111], + [-103.446513, 67.59869], + [-96.209933, 67.59869], + [-96.209933, 60.362111], + [-103.446513, 60.362111] ] ] } @@ -5704,11 +5704,11 @@ "type": "Polygon", "coordinates": [ [ - [-103.471848, 67.518459], - [-103.471848, 74.746593], - [-96.243715, 74.746593], - [-96.243715, 67.518459], - [-103.471848, 67.518459] + [-103.446513, 67.59869], + [-103.446513, 74.835269], + [-96.209933, 74.835269], + [-96.209933, 67.59869], + [-103.446513, 67.59869] ] ] } @@ -5720,11 +5720,11 @@ "type": "Polygon", "coordinates": [ [ - [-96.243715, -77.044217], - [-96.243715, -69.816084], - [-89.015581, -69.816084], - [-89.015581, -77.044217], - [-96.243715, -77.044217] + [-96.209933, -77.132893], + [-96.209933, -69.896314], + [-88.973354, -69.896314], + [-88.973354, -77.132893], + [-96.209933, -77.132893] ] ] } @@ -5736,11 +5736,11 @@ "type": "Polygon", "coordinates": [ [ - [-96.243715, -69.816084], - [-96.243715, -62.58795], - [-89.015581, -62.58795], - [-89.015581, -69.816084], - [-96.243715, -69.816084] + [-96.209933, -69.896314], + [-96.209933, -62.659735], + [-88.973354, -62.659735], + [-88.973354, -69.896314], + [-96.209933, -69.896314] ] ] } @@ -5752,11 +5752,11 @@ "type": "Polygon", "coordinates": [ [ - [-96.243715, -62.58795], - [-96.243715, -55.359816], - [-89.015581, -55.359816], - [-89.015581, -62.58795], - [-96.243715, -62.58795] + [-96.209933, -62.659735], + [-96.209933, -55.423156], + [-88.973354, -55.423156], + [-88.973354, -62.659735], + [-96.209933, -62.659735] ] ] } @@ -5768,11 +5768,11 @@ "type": "Polygon", "coordinates": [ [ - [-96.243715, -55.359816], - [-96.243715, -48.131682], - [-89.015581, -48.131682], - [-89.015581, -55.359816], - [-96.243715, -55.359816] + [-96.209933, -55.423156], + [-96.209933, -48.186577], + [-88.973354, -48.186577], + [-88.973354, -55.423156], + [-96.209933, -55.423156] ] ] } @@ -5784,11 +5784,11 @@ "type": "Polygon", "coordinates": [ [ - [-96.243715, -48.131682], - [-96.243715, -40.903548], - [-89.015581, -40.903548], - [-89.015581, -48.131682], - [-96.243715, -48.131682] + [-96.209933, -48.186577], + [-96.209933, -40.949997], + [-88.973354, -40.949997], + [-88.973354, -48.186577], + [-96.209933, -48.186577] ] ] } @@ -5800,11 +5800,11 @@ "type": "Polygon", "coordinates": [ [ - [-96.243715, -40.903548], - [-96.243715, -33.675414], - [-89.015581, -33.675414], - [-89.015581, -40.903548], - [-96.243715, -40.903548] + [-96.209933, -40.949997], + [-96.209933, -33.713418], + [-88.973354, -33.713418], + [-88.973354, -40.949997], + [-96.209933, -40.949997] ] ] } @@ -5816,11 +5816,11 @@ "type": "Polygon", "coordinates": [ [ - [-96.243715, -33.675414], - [-96.243715, -26.44728], - [-89.015581, -26.44728], - [-89.015581, -33.675414], - [-96.243715, -33.675414] + [-96.209933, -33.713418], + [-96.209933, -26.476839], + [-88.973354, -26.476839], + [-88.973354, -33.713418], + [-96.209933, -33.713418] ] ] } @@ -5832,11 +5832,11 @@ "type": "Polygon", "coordinates": [ [ - [-96.243715, -26.44728], - [-96.243715, -19.219147], - [-89.015581, -19.219147], - [-89.015581, -26.44728], - [-96.243715, -26.44728] + [-96.209933, -26.476839], + [-96.209933, -19.24026], + [-88.973354, -19.24026], + [-88.973354, -26.476839], + [-96.209933, -26.476839] ] ] } @@ -5848,11 +5848,11 @@ "type": "Polygon", "coordinates": [ [ - [-96.243715, -19.219147], - [-96.243715, -11.991013], - [-89.015581, -11.991013], - [-89.015581, -19.219147], - [-96.243715, -19.219147] + [-96.209933, -19.24026], + [-96.209933, -12.003681], + [-88.973354, -12.003681], + [-88.973354, -19.24026], + [-96.209933, -19.24026] ] ] } @@ -5864,11 +5864,11 @@ "type": "Polygon", "coordinates": [ [ - [-96.243715, -11.991013], - [-96.243715, -4.762879], - [-89.015581, -4.762879], - [-89.015581, -11.991013], - [-96.243715, -11.991013] + [-96.209933, -12.003681], + [-96.209933, -4.767102], + [-88.973354, -4.767102], + [-88.973354, -12.003681], + [-96.209933, -12.003681] ] ] } @@ -5880,11 +5880,11 @@ "type": "Polygon", "coordinates": [ [ - [-96.243715, -4.762879], - [-96.243715, 2.465255], - [-89.015581, 2.465255], - [-89.015581, -4.762879], - [-96.243715, -4.762879] + [-96.209933, -4.767102], + [-96.209933, 2.469478], + [-88.973354, 2.469478], + [-88.973354, -4.767102], + [-96.209933, -4.767102] ] ] } @@ -5896,11 +5896,11 @@ "type": "Polygon", "coordinates": [ [ - [-96.243715, 2.465255], - [-96.243715, 9.693389], - [-89.015581, 9.693389], - [-89.015581, 2.465255], - [-96.243715, 2.465255] + [-96.209933, 2.469478], + [-96.209933, 9.706057], + [-88.973354, 9.706057], + [-88.973354, 2.469478], + [-96.209933, 2.469478] ] ] } @@ -5912,11 +5912,11 @@ "type": "Polygon", "coordinates": [ [ - [-96.243715, 9.693389], - [-96.243715, 16.921523], - [-89.015581, 16.921523], - [-89.015581, 9.693389], - [-96.243715, 9.693389] + [-96.209933, 9.706057], + [-96.209933, 16.942636], + [-88.973354, 16.942636], + [-88.973354, 9.706057], + [-96.209933, 9.706057] ] ] } @@ -5928,11 +5928,11 @@ "type": "Polygon", "coordinates": [ [ - [-96.243715, 16.921523], - [-96.243715, 24.149656], - [-89.015581, 24.149656], - [-89.015581, 16.921523], - [-96.243715, 16.921523] + [-96.209933, 16.942636], + [-96.209933, 24.179215], + [-88.973354, 24.179215], + [-88.973354, 16.942636], + [-96.209933, 16.942636] ] ] } @@ -5944,11 +5944,11 @@ "type": "Polygon", "coordinates": [ [ - [-96.243715, 24.149656], - [-96.243715, 31.37779], - [-89.015581, 31.37779], - [-89.015581, 24.149656], - [-96.243715, 24.149656] + [-96.209933, 24.179215], + [-96.209933, 31.415794], + [-88.973354, 31.415794], + [-88.973354, 24.179215], + [-96.209933, 24.179215] ] ] } @@ -5960,11 +5960,11 @@ "type": "Polygon", "coordinates": [ [ - [-96.243715, 31.37779], - [-96.243715, 38.605924], - [-89.015581, 38.605924], - [-89.015581, 31.37779], - [-96.243715, 31.37779] + [-96.209933, 31.415794], + [-96.209933, 38.652373], + [-88.973354, 38.652373], + [-88.973354, 31.415794], + [-96.209933, 31.415794] ] ] } @@ -5976,11 +5976,11 @@ "type": "Polygon", "coordinates": [ [ - [-96.243715, 38.605924], - [-96.243715, 45.834058], - [-89.015581, 45.834058], - [-89.015581, 38.605924], - [-96.243715, 38.605924] + [-96.209933, 38.652373], + [-96.209933, 45.888952], + [-88.973354, 45.888952], + [-88.973354, 38.652373], + [-96.209933, 38.652373] ] ] } @@ -5992,11 +5992,11 @@ "type": "Polygon", "coordinates": [ [ - [-96.243715, 45.834058], - [-96.243715, 53.062192], - [-89.015581, 53.062192], - [-89.015581, 45.834058], - [-96.243715, 45.834058] + [-96.209933, 45.888952], + [-96.209933, 53.125532], + [-88.973354, 53.125532], + [-88.973354, 45.888952], + [-96.209933, 45.888952] ] ] } @@ -6008,11 +6008,11 @@ "type": "Polygon", "coordinates": [ [ - [-96.243715, 53.062192], - [-96.243715, 60.290326], - [-89.015581, 60.290326], - [-89.015581, 53.062192], - [-96.243715, 53.062192] + [-96.209933, 53.125532], + [-96.209933, 60.362111], + [-88.973354, 60.362111], + [-88.973354, 53.125532], + [-96.209933, 53.125532] ] ] } @@ -6024,11 +6024,11 @@ "type": "Polygon", "coordinates": [ [ - [-96.243715, 60.290326], - [-96.243715, 67.518459], - [-89.015581, 67.518459], - [-89.015581, 60.290326], - [-96.243715, 60.290326] + [-96.209933, 60.362111], + [-96.209933, 67.59869], + [-88.973354, 67.59869], + [-88.973354, 60.362111], + [-96.209933, 60.362111] ] ] } @@ -6040,11 +6040,11 @@ "type": "Polygon", "coordinates": [ [ - [-96.243715, 67.518459], - [-96.243715, 74.746593], - [-89.015581, 74.746593], - [-89.015581, 67.518459], - [-96.243715, 67.518459] + [-96.209933, 67.59869], + [-96.209933, 74.835269], + [-88.973354, 74.835269], + [-88.973354, 67.59869], + [-96.209933, 67.59869] ] ] } @@ -6056,11 +6056,11 @@ "type": "Polygon", "coordinates": [ [ - [-89.015581, -77.044217], - [-89.015581, -69.816084], - [-81.787447, -69.816084], - [-81.787447, -77.044217], - [-89.015581, -77.044217] + [-88.973354, -77.132893], + [-88.973354, -69.896314], + [-81.736775, -69.896314], + [-81.736775, -77.132893], + [-88.973354, -77.132893] ] ] } @@ -6072,11 +6072,11 @@ "type": "Polygon", "coordinates": [ [ - [-89.015581, -69.816084], - [-89.015581, -62.58795], - [-81.787447, -62.58795], - [-81.787447, -69.816084], - [-89.015581, -69.816084] + [-88.973354, -69.896314], + [-88.973354, -62.659735], + [-81.736775, -62.659735], + [-81.736775, -69.896314], + [-88.973354, -69.896314] ] ] } @@ -6088,11 +6088,11 @@ "type": "Polygon", "coordinates": [ [ - [-89.015581, -62.58795], - [-89.015581, -55.359816], - [-81.787447, -55.359816], - [-81.787447, -62.58795], - [-89.015581, -62.58795] + [-88.973354, -62.659735], + [-88.973354, -55.423156], + [-81.736775, -55.423156], + [-81.736775, -62.659735], + [-88.973354, -62.659735] ] ] } @@ -6104,11 +6104,11 @@ "type": "Polygon", "coordinates": [ [ - [-89.015581, -55.359816], - [-89.015581, -48.131682], - [-81.787447, -48.131682], - [-81.787447, -55.359816], - [-89.015581, -55.359816] + [-88.973354, -55.423156], + [-88.973354, -48.186577], + [-81.736775, -48.186577], + [-81.736775, -55.423156], + [-88.973354, -55.423156] ] ] } @@ -6120,11 +6120,11 @@ "type": "Polygon", "coordinates": [ [ - [-89.015581, -48.131682], - [-89.015581, -40.903548], - [-81.787447, -40.903548], - [-81.787447, -48.131682], - [-89.015581, -48.131682] + [-88.973354, -48.186577], + [-88.973354, -40.949997], + [-81.736775, -40.949997], + [-81.736775, -48.186577], + [-88.973354, -48.186577] ] ] } @@ -6136,11 +6136,11 @@ "type": "Polygon", "coordinates": [ [ - [-89.015581, -40.903548], - [-89.015581, -33.675414], - [-81.787447, -33.675414], - [-81.787447, -40.903548], - [-89.015581, -40.903548] + [-88.973354, -40.949997], + [-88.973354, -33.713418], + [-81.736775, -33.713418], + [-81.736775, -40.949997], + [-88.973354, -40.949997] ] ] } @@ -6152,11 +6152,11 @@ "type": "Polygon", "coordinates": [ [ - [-89.015581, -33.675414], - [-89.015581, -26.44728], - [-81.787447, -26.44728], - [-81.787447, -33.675414], - [-89.015581, -33.675414] + [-88.973354, -33.713418], + [-88.973354, -26.476839], + [-81.736775, -26.476839], + [-81.736775, -33.713418], + [-88.973354, -33.713418] ] ] } @@ -6168,11 +6168,11 @@ "type": "Polygon", "coordinates": [ [ - [-89.015581, -26.44728], - [-89.015581, -19.219147], - [-81.787447, -19.219147], - [-81.787447, -26.44728], - [-89.015581, -26.44728] + [-88.973354, -26.476839], + [-88.973354, -19.24026], + [-81.736775, -19.24026], + [-81.736775, -26.476839], + [-88.973354, -26.476839] ] ] } @@ -6184,11 +6184,11 @@ "type": "Polygon", "coordinates": [ [ - [-89.015581, -19.219147], - [-89.015581, -11.991013], - [-81.787447, -11.991013], - [-81.787447, -19.219147], - [-89.015581, -19.219147] + [-88.973354, -19.24026], + [-88.973354, -12.003681], + [-81.736775, -12.003681], + [-81.736775, -19.24026], + [-88.973354, -19.24026] ] ] } @@ -6200,11 +6200,11 @@ "type": "Polygon", "coordinates": [ [ - [-89.015581, -11.991013], - [-89.015581, -4.762879], - [-81.787447, -4.762879], - [-81.787447, -11.991013], - [-89.015581, -11.991013] + [-88.973354, -12.003681], + [-88.973354, -4.767102], + [-81.736775, -4.767102], + [-81.736775, -12.003681], + [-88.973354, -12.003681] ] ] } @@ -6216,11 +6216,11 @@ "type": "Polygon", "coordinates": [ [ - [-89.015581, -4.762879], - [-89.015581, 2.465255], - [-81.787447, 2.465255], - [-81.787447, -4.762879], - [-89.015581, -4.762879] + [-88.973354, -4.767102], + [-88.973354, 2.469478], + [-81.736775, 2.469478], + [-81.736775, -4.767102], + [-88.973354, -4.767102] ] ] } @@ -6232,11 +6232,11 @@ "type": "Polygon", "coordinates": [ [ - [-89.015581, 2.465255], - [-89.015581, 9.693389], - [-81.787447, 9.693389], - [-81.787447, 2.465255], - [-89.015581, 2.465255] + [-88.973354, 2.469478], + [-88.973354, 9.706057], + [-81.736775, 9.706057], + [-81.736775, 2.469478], + [-88.973354, 2.469478] ] ] } @@ -6248,11 +6248,11 @@ "type": "Polygon", "coordinates": [ [ - [-89.015581, 9.693389], - [-89.015581, 16.921523], - [-81.787447, 16.921523], - [-81.787447, 9.693389], - [-89.015581, 9.693389] + [-88.973354, 9.706057], + [-88.973354, 16.942636], + [-81.736775, 16.942636], + [-81.736775, 9.706057], + [-88.973354, 9.706057] ] ] } @@ -6264,11 +6264,11 @@ "type": "Polygon", "coordinates": [ [ - [-89.015581, 16.921523], - [-89.015581, 24.149656], - [-81.787447, 24.149656], - [-81.787447, 16.921523], - [-89.015581, 16.921523] + [-88.973354, 16.942636], + [-88.973354, 24.179215], + [-81.736775, 24.179215], + [-81.736775, 16.942636], + [-88.973354, 16.942636] ] ] } @@ -6280,11 +6280,11 @@ "type": "Polygon", "coordinates": [ [ - [-89.015581, 24.149656], - [-89.015581, 31.37779], - [-81.787447, 31.37779], - [-81.787447, 24.149656], - [-89.015581, 24.149656] + [-88.973354, 24.179215], + [-88.973354, 31.415794], + [-81.736775, 31.415794], + [-81.736775, 24.179215], + [-88.973354, 24.179215] ] ] } @@ -6296,11 +6296,11 @@ "type": "Polygon", "coordinates": [ [ - [-89.015581, 31.37779], - [-89.015581, 38.605924], - [-81.787447, 38.605924], - [-81.787447, 31.37779], - [-89.015581, 31.37779] + [-88.973354, 31.415794], + [-88.973354, 38.652373], + [-81.736775, 38.652373], + [-81.736775, 31.415794], + [-88.973354, 31.415794] ] ] } @@ -6312,11 +6312,11 @@ "type": "Polygon", "coordinates": [ [ - [-89.015581, 38.605924], - [-89.015581, 45.834058], - [-81.787447, 45.834058], - [-81.787447, 38.605924], - [-89.015581, 38.605924] + [-88.973354, 38.652373], + [-88.973354, 45.888952], + [-81.736775, 45.888952], + [-81.736775, 38.652373], + [-88.973354, 38.652373] ] ] } @@ -6328,11 +6328,11 @@ "type": "Polygon", "coordinates": [ [ - [-89.015581, 45.834058], - [-89.015581, 53.062192], - [-81.787447, 53.062192], - [-81.787447, 45.834058], - [-89.015581, 45.834058] + [-88.973354, 45.888952], + [-88.973354, 53.125532], + [-81.736775, 53.125532], + [-81.736775, 45.888952], + [-88.973354, 45.888952] ] ] } @@ -6344,11 +6344,11 @@ "type": "Polygon", "coordinates": [ [ - [-89.015581, 53.062192], - [-89.015581, 60.290326], - [-81.787447, 60.290326], - [-81.787447, 53.062192], - [-89.015581, 53.062192] + [-88.973354, 53.125532], + [-88.973354, 60.362111], + [-81.736775, 60.362111], + [-81.736775, 53.125532], + [-88.973354, 53.125532] ] ] } @@ -6360,11 +6360,11 @@ "type": "Polygon", "coordinates": [ [ - [-89.015581, 60.290326], - [-89.015581, 67.518459], - [-81.787447, 67.518459], - [-81.787447, 60.290326], - [-89.015581, 60.290326] + [-88.973354, 60.362111], + [-88.973354, 67.59869], + [-81.736775, 67.59869], + [-81.736775, 60.362111], + [-88.973354, 60.362111] ] ] } @@ -6376,11 +6376,11 @@ "type": "Polygon", "coordinates": [ [ - [-89.015581, 67.518459], - [-89.015581, 74.746593], - [-81.787447, 74.746593], - [-81.787447, 67.518459], - [-89.015581, 67.518459] + [-88.973354, 67.59869], + [-88.973354, 74.835269], + [-81.736775, 74.835269], + [-81.736775, 67.59869], + [-88.973354, 67.59869] ] ] } @@ -6392,11 +6392,11 @@ "type": "Polygon", "coordinates": [ [ - [-81.787447, -77.044217], - [-81.787447, -69.816084], - [-74.559313, -69.816084], - [-74.559313, -77.044217], - [-81.787447, -77.044217] + [-81.736775, -77.132893], + [-81.736775, -69.896314], + [-74.500196, -69.896314], + [-74.500196, -77.132893], + [-81.736775, -77.132893] ] ] } @@ -6408,11 +6408,11 @@ "type": "Polygon", "coordinates": [ [ - [-81.787447, -69.816084], - [-81.787447, -62.58795], - [-74.559313, -62.58795], - [-74.559313, -69.816084], - [-81.787447, -69.816084] + [-81.736775, -69.896314], + [-81.736775, -62.659735], + [-74.500196, -62.659735], + [-74.500196, -69.896314], + [-81.736775, -69.896314] ] ] } @@ -6424,11 +6424,11 @@ "type": "Polygon", "coordinates": [ [ - [-81.787447, -62.58795], - [-81.787447, -55.359816], - [-74.559313, -55.359816], - [-74.559313, -62.58795], - [-81.787447, -62.58795] + [-81.736775, -62.659735], + [-81.736775, -55.423156], + [-74.500196, -55.423156], + [-74.500196, -62.659735], + [-81.736775, -62.659735] ] ] } @@ -6440,11 +6440,11 @@ "type": "Polygon", "coordinates": [ [ - [-81.787447, -55.359816], - [-81.787447, -48.131682], - [-74.559313, -48.131682], - [-74.559313, -55.359816], - [-81.787447, -55.359816] + [-81.736775, -55.423156], + [-81.736775, -48.186577], + [-74.500196, -48.186577], + [-74.500196, -55.423156], + [-81.736775, -55.423156] ] ] } @@ -6456,11 +6456,11 @@ "type": "Polygon", "coordinates": [ [ - [-81.787447, -48.131682], - [-81.787447, -40.903548], - [-74.559313, -40.903548], - [-74.559313, -48.131682], - [-81.787447, -48.131682] + [-81.736775, -48.186577], + [-81.736775, -40.949997], + [-74.500196, -40.949997], + [-74.500196, -48.186577], + [-81.736775, -48.186577] ] ] } @@ -6472,11 +6472,11 @@ "type": "Polygon", "coordinates": [ [ - [-81.787447, -40.903548], - [-81.787447, -33.675414], - [-74.559313, -33.675414], - [-74.559313, -40.903548], - [-81.787447, -40.903548] + [-81.736775, -40.949997], + [-81.736775, -33.713418], + [-74.500196, -33.713418], + [-74.500196, -40.949997], + [-81.736775, -40.949997] ] ] } @@ -6488,11 +6488,11 @@ "type": "Polygon", "coordinates": [ [ - [-81.787447, -33.675414], - [-81.787447, -26.44728], - [-74.559313, -26.44728], - [-74.559313, -33.675414], - [-81.787447, -33.675414] + [-81.736775, -33.713418], + [-81.736775, -26.476839], + [-74.500196, -26.476839], + [-74.500196, -33.713418], + [-81.736775, -33.713418] ] ] } @@ -6504,11 +6504,11 @@ "type": "Polygon", "coordinates": [ [ - [-81.787447, -26.44728], - [-81.787447, -19.219147], - [-74.559313, -19.219147], - [-74.559313, -26.44728], - [-81.787447, -26.44728] + [-81.736775, -26.476839], + [-81.736775, -19.24026], + [-74.500196, -19.24026], + [-74.500196, -26.476839], + [-81.736775, -26.476839] ] ] } @@ -6520,11 +6520,11 @@ "type": "Polygon", "coordinates": [ [ - [-81.787447, -19.219147], - [-81.787447, -11.991013], - [-74.559313, -11.991013], - [-74.559313, -19.219147], - [-81.787447, -19.219147] + [-81.736775, -19.24026], + [-81.736775, -12.003681], + [-74.500196, -12.003681], + [-74.500196, -19.24026], + [-81.736775, -19.24026] ] ] } @@ -6536,11 +6536,11 @@ "type": "Polygon", "coordinates": [ [ - [-81.787447, -11.991013], - [-81.787447, -4.762879], - [-74.559313, -4.762879], - [-74.559313, -11.991013], - [-81.787447, -11.991013] + [-81.736775, -12.003681], + [-81.736775, -4.767102], + [-74.500196, -4.767102], + [-74.500196, -12.003681], + [-81.736775, -12.003681] ] ] } @@ -6552,11 +6552,11 @@ "type": "Polygon", "coordinates": [ [ - [-81.787447, -4.762879], - [-81.787447, 2.465255], - [-74.559313, 2.465255], - [-74.559313, -4.762879], - [-81.787447, -4.762879] + [-81.736775, -4.767102], + [-81.736775, 2.469478], + [-74.500196, 2.469478], + [-74.500196, -4.767102], + [-81.736775, -4.767102] ] ] } @@ -6568,11 +6568,11 @@ "type": "Polygon", "coordinates": [ [ - [-81.787447, 2.465255], - [-81.787447, 9.693389], - [-74.559313, 9.693389], - [-74.559313, 2.465255], - [-81.787447, 2.465255] + [-81.736775, 2.469478], + [-81.736775, 9.706057], + [-74.500196, 9.706057], + [-74.500196, 2.469478], + [-81.736775, 2.469478] ] ] } @@ -6584,11 +6584,11 @@ "type": "Polygon", "coordinates": [ [ - [-81.787447, 9.693389], - [-81.787447, 16.921523], - [-74.559313, 16.921523], - [-74.559313, 9.693389], - [-81.787447, 9.693389] + [-81.736775, 9.706057], + [-81.736775, 16.942636], + [-74.500196, 16.942636], + [-74.500196, 9.706057], + [-81.736775, 9.706057] ] ] } @@ -6600,11 +6600,11 @@ "type": "Polygon", "coordinates": [ [ - [-81.787447, 16.921523], - [-81.787447, 24.149656], - [-74.559313, 24.149656], - [-74.559313, 16.921523], - [-81.787447, 16.921523] + [-81.736775, 16.942636], + [-81.736775, 24.179215], + [-74.500196, 24.179215], + [-74.500196, 16.942636], + [-81.736775, 16.942636] ] ] } @@ -6616,11 +6616,11 @@ "type": "Polygon", "coordinates": [ [ - [-81.787447, 24.149656], - [-81.787447, 31.37779], - [-74.559313, 31.37779], - [-74.559313, 24.149656], - [-81.787447, 24.149656] + [-81.736775, 24.179215], + [-81.736775, 31.415794], + [-74.500196, 31.415794], + [-74.500196, 24.179215], + [-81.736775, 24.179215] ] ] } @@ -6632,11 +6632,11 @@ "type": "Polygon", "coordinates": [ [ - [-81.787447, 31.37779], - [-81.787447, 38.605924], - [-74.559313, 38.605924], - [-74.559313, 31.37779], - [-81.787447, 31.37779] + [-81.736775, 31.415794], + [-81.736775, 38.652373], + [-74.500196, 38.652373], + [-74.500196, 31.415794], + [-81.736775, 31.415794] ] ] } @@ -6648,11 +6648,11 @@ "type": "Polygon", "coordinates": [ [ - [-81.787447, 38.605924], - [-81.787447, 45.834058], - [-74.559313, 45.834058], - [-74.559313, 38.605924], - [-81.787447, 38.605924] + [-81.736775, 38.652373], + [-81.736775, 45.888952], + [-74.500196, 45.888952], + [-74.500196, 38.652373], + [-81.736775, 38.652373] ] ] } @@ -6664,11 +6664,11 @@ "type": "Polygon", "coordinates": [ [ - [-81.787447, 45.834058], - [-81.787447, 53.062192], - [-74.559313, 53.062192], - [-74.559313, 45.834058], - [-81.787447, 45.834058] + [-81.736775, 45.888952], + [-81.736775, 53.125532], + [-74.500196, 53.125532], + [-74.500196, 45.888952], + [-81.736775, 45.888952] ] ] } @@ -6680,11 +6680,11 @@ "type": "Polygon", "coordinates": [ [ - [-81.787447, 53.062192], - [-81.787447, 60.290326], - [-74.559313, 60.290326], - [-74.559313, 53.062192], - [-81.787447, 53.062192] + [-81.736775, 53.125532], + [-81.736775, 60.362111], + [-74.500196, 60.362111], + [-74.500196, 53.125532], + [-81.736775, 53.125532] ] ] } @@ -6696,11 +6696,11 @@ "type": "Polygon", "coordinates": [ [ - [-81.787447, 60.290326], - [-81.787447, 67.518459], - [-74.559313, 67.518459], - [-74.559313, 60.290326], - [-81.787447, 60.290326] + [-81.736775, 60.362111], + [-81.736775, 67.59869], + [-74.500196, 67.59869], + [-74.500196, 60.362111], + [-81.736775, 60.362111] ] ] } @@ -6712,11 +6712,11 @@ "type": "Polygon", "coordinates": [ [ - [-81.787447, 67.518459], - [-81.787447, 74.746593], - [-74.559313, 74.746593], - [-74.559313, 67.518459], - [-81.787447, 67.518459] + [-81.736775, 67.59869], + [-81.736775, 74.835269], + [-74.500196, 74.835269], + [-74.500196, 67.59869], + [-81.736775, 67.59869] ] ] } @@ -6728,11 +6728,11 @@ "type": "Polygon", "coordinates": [ [ - [-74.559313, -77.044217], - [-74.559313, -69.816084], - [-67.331179, -69.816084], - [-67.331179, -77.044217], - [-74.559313, -77.044217] + [-74.500196, -77.132893], + [-74.500196, -69.896314], + [-67.263617, -69.896314], + [-67.263617, -77.132893], + [-74.500196, -77.132893] ] ] } @@ -6744,11 +6744,11 @@ "type": "Polygon", "coordinates": [ [ - [-74.559313, -69.816084], - [-74.559313, -62.58795], - [-67.331179, -62.58795], - [-67.331179, -69.816084], - [-74.559313, -69.816084] + [-74.500196, -69.896314], + [-74.500196, -62.659735], + [-67.263617, -62.659735], + [-67.263617, -69.896314], + [-74.500196, -69.896314] ] ] } @@ -6760,11 +6760,11 @@ "type": "Polygon", "coordinates": [ [ - [-74.559313, -62.58795], - [-74.559313, -55.359816], - [-67.331179, -55.359816], - [-67.331179, -62.58795], - [-74.559313, -62.58795] + [-74.500196, -62.659735], + [-74.500196, -55.423156], + [-67.263617, -55.423156], + [-67.263617, -62.659735], + [-74.500196, -62.659735] ] ] } @@ -6776,11 +6776,11 @@ "type": "Polygon", "coordinates": [ [ - [-74.559313, -55.359816], - [-74.559313, -48.131682], - [-67.331179, -48.131682], - [-67.331179, -55.359816], - [-74.559313, -55.359816] + [-74.500196, -55.423156], + [-74.500196, -48.186577], + [-67.263617, -48.186577], + [-67.263617, -55.423156], + [-74.500196, -55.423156] ] ] } @@ -6792,11 +6792,11 @@ "type": "Polygon", "coordinates": [ [ - [-74.559313, -48.131682], - [-74.559313, -40.903548], - [-67.331179, -40.903548], - [-67.331179, -48.131682], - [-74.559313, -48.131682] + [-74.500196, -48.186577], + [-74.500196, -40.949997], + [-67.263617, -40.949997], + [-67.263617, -48.186577], + [-74.500196, -48.186577] ] ] } @@ -6808,11 +6808,11 @@ "type": "Polygon", "coordinates": [ [ - [-74.559313, -40.903548], - [-74.559313, -33.675414], - [-67.331179, -33.675414], - [-67.331179, -40.903548], - [-74.559313, -40.903548] + [-74.500196, -40.949997], + [-74.500196, -33.713418], + [-67.263617, -33.713418], + [-67.263617, -40.949997], + [-74.500196, -40.949997] ] ] } @@ -6824,11 +6824,11 @@ "type": "Polygon", "coordinates": [ [ - [-74.559313, -33.675414], - [-74.559313, -26.44728], - [-67.331179, -26.44728], - [-67.331179, -33.675414], - [-74.559313, -33.675414] + [-74.500196, -33.713418], + [-74.500196, -26.476839], + [-67.263617, -26.476839], + [-67.263617, -33.713418], + [-74.500196, -33.713418] ] ] } @@ -6840,11 +6840,11 @@ "type": "Polygon", "coordinates": [ [ - [-74.559313, -26.44728], - [-74.559313, -19.219147], - [-67.331179, -19.219147], - [-67.331179, -26.44728], - [-74.559313, -26.44728] + [-74.500196, -26.476839], + [-74.500196, -19.24026], + [-67.263617, -19.24026], + [-67.263617, -26.476839], + [-74.500196, -26.476839] ] ] } @@ -6856,11 +6856,11 @@ "type": "Polygon", "coordinates": [ [ - [-74.559313, -19.219147], - [-74.559313, -11.991013], - [-67.331179, -11.991013], - [-67.331179, -19.219147], - [-74.559313, -19.219147] + [-74.500196, -19.24026], + [-74.500196, -12.003681], + [-67.263617, -12.003681], + [-67.263617, -19.24026], + [-74.500196, -19.24026] ] ] } @@ -6872,11 +6872,11 @@ "type": "Polygon", "coordinates": [ [ - [-74.559313, -11.991013], - [-74.559313, -4.762879], - [-67.331179, -4.762879], - [-67.331179, -11.991013], - [-74.559313, -11.991013] + [-74.500196, -12.003681], + [-74.500196, -4.767102], + [-67.263617, -4.767102], + [-67.263617, -12.003681], + [-74.500196, -12.003681] ] ] } @@ -6888,11 +6888,11 @@ "type": "Polygon", "coordinates": [ [ - [-74.559313, -4.762879], - [-74.559313, 2.465255], - [-67.331179, 2.465255], - [-67.331179, -4.762879], - [-74.559313, -4.762879] + [-74.500196, -4.767102], + [-74.500196, 2.469478], + [-67.263617, 2.469478], + [-67.263617, -4.767102], + [-74.500196, -4.767102] ] ] } @@ -6904,11 +6904,11 @@ "type": "Polygon", "coordinates": [ [ - [-74.559313, 2.465255], - [-74.559313, 9.693389], - [-67.331179, 9.693389], - [-67.331179, 2.465255], - [-74.559313, 2.465255] + [-74.500196, 2.469478], + [-74.500196, 9.706057], + [-67.263617, 9.706057], + [-67.263617, 2.469478], + [-74.500196, 2.469478] ] ] } @@ -6920,11 +6920,11 @@ "type": "Polygon", "coordinates": [ [ - [-74.559313, 9.693389], - [-74.559313, 16.921523], - [-67.331179, 16.921523], - [-67.331179, 9.693389], - [-74.559313, 9.693389] + [-74.500196, 9.706057], + [-74.500196, 16.942636], + [-67.263617, 16.942636], + [-67.263617, 9.706057], + [-74.500196, 9.706057] ] ] } @@ -6936,11 +6936,11 @@ "type": "Polygon", "coordinates": [ [ - [-74.559313, 16.921523], - [-74.559313, 24.149656], - [-67.331179, 24.149656], - [-67.331179, 16.921523], - [-74.559313, 16.921523] + [-74.500196, 16.942636], + [-74.500196, 24.179215], + [-67.263617, 24.179215], + [-67.263617, 16.942636], + [-74.500196, 16.942636] ] ] } @@ -6952,11 +6952,11 @@ "type": "Polygon", "coordinates": [ [ - [-74.559313, 24.149656], - [-74.559313, 31.37779], - [-67.331179, 31.37779], - [-67.331179, 24.149656], - [-74.559313, 24.149656] + [-74.500196, 24.179215], + [-74.500196, 31.415794], + [-67.263617, 31.415794], + [-67.263617, 24.179215], + [-74.500196, 24.179215] ] ] } @@ -6968,11 +6968,11 @@ "type": "Polygon", "coordinates": [ [ - [-74.559313, 31.37779], - [-74.559313, 38.605924], - [-67.331179, 38.605924], - [-67.331179, 31.37779], - [-74.559313, 31.37779] + [-74.500196, 31.415794], + [-74.500196, 38.652373], + [-67.263617, 38.652373], + [-67.263617, 31.415794], + [-74.500196, 31.415794] ] ] } @@ -6984,11 +6984,11 @@ "type": "Polygon", "coordinates": [ [ - [-74.559313, 38.605924], - [-74.559313, 45.834058], - [-67.331179, 45.834058], - [-67.331179, 38.605924], - [-74.559313, 38.605924] + [-74.500196, 38.652373], + [-74.500196, 45.888952], + [-67.263617, 45.888952], + [-67.263617, 38.652373], + [-74.500196, 38.652373] ] ] } @@ -7000,11 +7000,11 @@ "type": "Polygon", "coordinates": [ [ - [-74.559313, 45.834058], - [-74.559313, 53.062192], - [-67.331179, 53.062192], - [-67.331179, 45.834058], - [-74.559313, 45.834058] + [-74.500196, 45.888952], + [-74.500196, 53.125532], + [-67.263617, 53.125532], + [-67.263617, 45.888952], + [-74.500196, 45.888952] ] ] } @@ -7016,11 +7016,11 @@ "type": "Polygon", "coordinates": [ [ - [-74.559313, 53.062192], - [-74.559313, 60.290326], - [-67.331179, 60.290326], - [-67.331179, 53.062192], - [-74.559313, 53.062192] + [-74.500196, 53.125532], + [-74.500196, 60.362111], + [-67.263617, 60.362111], + [-67.263617, 53.125532], + [-74.500196, 53.125532] ] ] } @@ -7032,11 +7032,11 @@ "type": "Polygon", "coordinates": [ [ - [-74.559313, 60.290326], - [-74.559313, 67.518459], - [-67.331179, 67.518459], - [-67.331179, 60.290326], - [-74.559313, 60.290326] + [-74.500196, 60.362111], + [-74.500196, 67.59869], + [-67.263617, 67.59869], + [-67.263617, 60.362111], + [-74.500196, 60.362111] ] ] } @@ -7048,11 +7048,11 @@ "type": "Polygon", "coordinates": [ [ - [-74.559313, 67.518459], - [-74.559313, 74.746593], - [-67.331179, 74.746593], - [-67.331179, 67.518459], - [-74.559313, 67.518459] + [-74.500196, 67.59869], + [-74.500196, 74.835269], + [-67.263617, 74.835269], + [-67.263617, 67.59869], + [-74.500196, 67.59869] ] ] } @@ -7064,11 +7064,11 @@ "type": "Polygon", "coordinates": [ [ - [-67.331179, -77.044217], - [-67.331179, -69.816084], - [-60.103045, -69.816084], - [-60.103045, -77.044217], - [-67.331179, -77.044217] + [-67.263617, -77.132893], + [-67.263617, -69.896314], + [-60.027038, -69.896314], + [-60.027038, -77.132893], + [-67.263617, -77.132893] ] ] } @@ -7080,11 +7080,11 @@ "type": "Polygon", "coordinates": [ [ - [-67.331179, -69.816084], - [-67.331179, -62.58795], - [-60.103045, -62.58795], - [-60.103045, -69.816084], - [-67.331179, -69.816084] + [-67.263617, -69.896314], + [-67.263617, -62.659735], + [-60.027038, -62.659735], + [-60.027038, -69.896314], + [-67.263617, -69.896314] ] ] } @@ -7096,11 +7096,11 @@ "type": "Polygon", "coordinates": [ [ - [-67.331179, -62.58795], - [-67.331179, -55.359816], - [-60.103045, -55.359816], - [-60.103045, -62.58795], - [-67.331179, -62.58795] + [-67.263617, -62.659735], + [-67.263617, -55.423156], + [-60.027038, -55.423156], + [-60.027038, -62.659735], + [-67.263617, -62.659735] ] ] } @@ -7112,11 +7112,11 @@ "type": "Polygon", "coordinates": [ [ - [-67.331179, -55.359816], - [-67.331179, -48.131682], - [-60.103045, -48.131682], - [-60.103045, -55.359816], - [-67.331179, -55.359816] + [-67.263617, -55.423156], + [-67.263617, -48.186577], + [-60.027038, -48.186577], + [-60.027038, -55.423156], + [-67.263617, -55.423156] ] ] } @@ -7128,11 +7128,11 @@ "type": "Polygon", "coordinates": [ [ - [-67.331179, -48.131682], - [-67.331179, -40.903548], - [-60.103045, -40.903548], - [-60.103045, -48.131682], - [-67.331179, -48.131682] + [-67.263617, -48.186577], + [-67.263617, -40.949997], + [-60.027038, -40.949997], + [-60.027038, -48.186577], + [-67.263617, -48.186577] ] ] } @@ -7144,11 +7144,11 @@ "type": "Polygon", "coordinates": [ [ - [-67.331179, -40.903548], - [-67.331179, -33.675414], - [-60.103045, -33.675414], - [-60.103045, -40.903548], - [-67.331179, -40.903548] + [-67.263617, -40.949997], + [-67.263617, -33.713418], + [-60.027038, -33.713418], + [-60.027038, -40.949997], + [-67.263617, -40.949997] ] ] } @@ -7160,11 +7160,11 @@ "type": "Polygon", "coordinates": [ [ - [-67.331179, -33.675414], - [-67.331179, -26.44728], - [-60.103045, -26.44728], - [-60.103045, -33.675414], - [-67.331179, -33.675414] + [-67.263617, -33.713418], + [-67.263617, -26.476839], + [-60.027038, -26.476839], + [-60.027038, -33.713418], + [-67.263617, -33.713418] ] ] } @@ -7176,11 +7176,11 @@ "type": "Polygon", "coordinates": [ [ - [-67.331179, -26.44728], - [-67.331179, -19.219147], - [-60.103045, -19.219147], - [-60.103045, -26.44728], - [-67.331179, -26.44728] + [-67.263617, -26.476839], + [-67.263617, -19.24026], + [-60.027038, -19.24026], + [-60.027038, -26.476839], + [-67.263617, -26.476839] ] ] } @@ -7192,11 +7192,11 @@ "type": "Polygon", "coordinates": [ [ - [-67.331179, -19.219147], - [-67.331179, -11.991013], - [-60.103045, -11.991013], - [-60.103045, -19.219147], - [-67.331179, -19.219147] + [-67.263617, -19.24026], + [-67.263617, -12.003681], + [-60.027038, -12.003681], + [-60.027038, -19.24026], + [-67.263617, -19.24026] ] ] } @@ -7208,11 +7208,11 @@ "type": "Polygon", "coordinates": [ [ - [-67.331179, -11.991013], - [-67.331179, -4.762879], - [-60.103045, -4.762879], - [-60.103045, -11.991013], - [-67.331179, -11.991013] + [-67.263617, -12.003681], + [-67.263617, -4.767102], + [-60.027038, -4.767102], + [-60.027038, -12.003681], + [-67.263617, -12.003681] ] ] } @@ -7224,11 +7224,11 @@ "type": "Polygon", "coordinates": [ [ - [-67.331179, -4.762879], - [-67.331179, 2.465255], - [-60.103045, 2.465255], - [-60.103045, -4.762879], - [-67.331179, -4.762879] + [-67.263617, -4.767102], + [-67.263617, 2.469478], + [-60.027038, 2.469478], + [-60.027038, -4.767102], + [-67.263617, -4.767102] ] ] } @@ -7240,11 +7240,11 @@ "type": "Polygon", "coordinates": [ [ - [-67.331179, 2.465255], - [-67.331179, 9.693389], - [-60.103045, 9.693389], - [-60.103045, 2.465255], - [-67.331179, 2.465255] + [-67.263617, 2.469478], + [-67.263617, 9.706057], + [-60.027038, 9.706057], + [-60.027038, 2.469478], + [-67.263617, 2.469478] ] ] } @@ -7256,11 +7256,11 @@ "type": "Polygon", "coordinates": [ [ - [-67.331179, 9.693389], - [-67.331179, 16.921523], - [-60.103045, 16.921523], - [-60.103045, 9.693389], - [-67.331179, 9.693389] + [-67.263617, 9.706057], + [-67.263617, 16.942636], + [-60.027038, 16.942636], + [-60.027038, 9.706057], + [-67.263617, 9.706057] ] ] } @@ -7272,11 +7272,11 @@ "type": "Polygon", "coordinates": [ [ - [-67.331179, 16.921523], - [-67.331179, 24.149656], - [-60.103045, 24.149656], - [-60.103045, 16.921523], - [-67.331179, 16.921523] + [-67.263617, 16.942636], + [-67.263617, 24.179215], + [-60.027038, 24.179215], + [-60.027038, 16.942636], + [-67.263617, 16.942636] ] ] } @@ -7288,11 +7288,11 @@ "type": "Polygon", "coordinates": [ [ - [-67.331179, 24.149656], - [-67.331179, 31.37779], - [-60.103045, 31.37779], - [-60.103045, 24.149656], - [-67.331179, 24.149656] + [-67.263617, 24.179215], + [-67.263617, 31.415794], + [-60.027038, 31.415794], + [-60.027038, 24.179215], + [-67.263617, 24.179215] ] ] } @@ -7304,11 +7304,11 @@ "type": "Polygon", "coordinates": [ [ - [-67.331179, 31.37779], - [-67.331179, 38.605924], - [-60.103045, 38.605924], - [-60.103045, 31.37779], - [-67.331179, 31.37779] + [-67.263617, 31.415794], + [-67.263617, 38.652373], + [-60.027038, 38.652373], + [-60.027038, 31.415794], + [-67.263617, 31.415794] ] ] } @@ -7320,11 +7320,11 @@ "type": "Polygon", "coordinates": [ [ - [-67.331179, 38.605924], - [-67.331179, 45.834058], - [-60.103045, 45.834058], - [-60.103045, 38.605924], - [-67.331179, 38.605924] + [-67.263617, 38.652373], + [-67.263617, 45.888952], + [-60.027038, 45.888952], + [-60.027038, 38.652373], + [-67.263617, 38.652373] ] ] } @@ -7336,11 +7336,11 @@ "type": "Polygon", "coordinates": [ [ - [-67.331179, 45.834058], - [-67.331179, 53.062192], - [-60.103045, 53.062192], - [-60.103045, 45.834058], - [-67.331179, 45.834058] + [-67.263617, 45.888952], + [-67.263617, 53.125532], + [-60.027038, 53.125532], + [-60.027038, 45.888952], + [-67.263617, 45.888952] ] ] } @@ -7352,11 +7352,11 @@ "type": "Polygon", "coordinates": [ [ - [-67.331179, 53.062192], - [-67.331179, 60.290326], - [-60.103045, 60.290326], - [-60.103045, 53.062192], - [-67.331179, 53.062192] + [-67.263617, 53.125532], + [-67.263617, 60.362111], + [-60.027038, 60.362111], + [-60.027038, 53.125532], + [-67.263617, 53.125532] ] ] } @@ -7368,11 +7368,11 @@ "type": "Polygon", "coordinates": [ [ - [-67.331179, 60.290326], - [-67.331179, 67.518459], - [-60.103045, 67.518459], - [-60.103045, 60.290326], - [-67.331179, 60.290326] + [-67.263617, 60.362111], + [-67.263617, 67.59869], + [-60.027038, 67.59869], + [-60.027038, 60.362111], + [-67.263617, 60.362111] ] ] } @@ -7384,11 +7384,11 @@ "type": "Polygon", "coordinates": [ [ - [-67.331179, 67.518459], - [-67.331179, 74.746593], - [-60.103045, 74.746593], - [-60.103045, 67.518459], - [-67.331179, 67.518459] + [-67.263617, 67.59869], + [-67.263617, 74.835269], + [-60.027038, 74.835269], + [-60.027038, 67.59869], + [-67.263617, 67.59869] ] ] } @@ -7400,11 +7400,11 @@ "type": "Polygon", "coordinates": [ [ - [-60.103045, -77.044217], - [-60.103045, -69.816084], - [-52.874912, -69.816084], - [-52.874912, -77.044217], - [-60.103045, -77.044217] + [-60.027038, -77.132893], + [-60.027038, -69.896314], + [-52.790458, -69.896314], + [-52.790458, -77.132893], + [-60.027038, -77.132893] ] ] } @@ -7416,11 +7416,11 @@ "type": "Polygon", "coordinates": [ [ - [-60.103045, -69.816084], - [-60.103045, -62.58795], - [-52.874912, -62.58795], - [-52.874912, -69.816084], - [-60.103045, -69.816084] + [-60.027038, -69.896314], + [-60.027038, -62.659735], + [-52.790458, -62.659735], + [-52.790458, -69.896314], + [-60.027038, -69.896314] ] ] } @@ -7432,11 +7432,11 @@ "type": "Polygon", "coordinates": [ [ - [-60.103045, -62.58795], - [-60.103045, -55.359816], - [-52.874912, -55.359816], - [-52.874912, -62.58795], - [-60.103045, -62.58795] + [-60.027038, -62.659735], + [-60.027038, -55.423156], + [-52.790458, -55.423156], + [-52.790458, -62.659735], + [-60.027038, -62.659735] ] ] } @@ -7448,11 +7448,11 @@ "type": "Polygon", "coordinates": [ [ - [-60.103045, -55.359816], - [-60.103045, -48.131682], - [-52.874912, -48.131682], - [-52.874912, -55.359816], - [-60.103045, -55.359816] + [-60.027038, -55.423156], + [-60.027038, -48.186577], + [-52.790458, -48.186577], + [-52.790458, -55.423156], + [-60.027038, -55.423156] ] ] } @@ -7464,11 +7464,11 @@ "type": "Polygon", "coordinates": [ [ - [-60.103045, -48.131682], - [-60.103045, -40.903548], - [-52.874912, -40.903548], - [-52.874912, -48.131682], - [-60.103045, -48.131682] + [-60.027038, -48.186577], + [-60.027038, -40.949997], + [-52.790458, -40.949997], + [-52.790458, -48.186577], + [-60.027038, -48.186577] ] ] } @@ -7480,11 +7480,11 @@ "type": "Polygon", "coordinates": [ [ - [-60.103045, -40.903548], - [-60.103045, -33.675414], - [-52.874912, -33.675414], - [-52.874912, -40.903548], - [-60.103045, -40.903548] + [-60.027038, -40.949997], + [-60.027038, -33.713418], + [-52.790458, -33.713418], + [-52.790458, -40.949997], + [-60.027038, -40.949997] ] ] } @@ -7496,11 +7496,11 @@ "type": "Polygon", "coordinates": [ [ - [-60.103045, -33.675414], - [-60.103045, -26.44728], - [-52.874912, -26.44728], - [-52.874912, -33.675414], - [-60.103045, -33.675414] + [-60.027038, -33.713418], + [-60.027038, -26.476839], + [-52.790458, -26.476839], + [-52.790458, -33.713418], + [-60.027038, -33.713418] ] ] } @@ -7512,11 +7512,11 @@ "type": "Polygon", "coordinates": [ [ - [-60.103045, -26.44728], - [-60.103045, -19.219147], - [-52.874912, -19.219147], - [-52.874912, -26.44728], - [-60.103045, -26.44728] + [-60.027038, -26.476839], + [-60.027038, -19.24026], + [-52.790458, -19.24026], + [-52.790458, -26.476839], + [-60.027038, -26.476839] ] ] } @@ -7528,11 +7528,11 @@ "type": "Polygon", "coordinates": [ [ - [-60.103045, -19.219147], - [-60.103045, -11.991013], - [-52.874912, -11.991013], - [-52.874912, -19.219147], - [-60.103045, -19.219147] + [-60.027038, -19.24026], + [-60.027038, -12.003681], + [-52.790458, -12.003681], + [-52.790458, -19.24026], + [-60.027038, -19.24026] ] ] } @@ -7544,11 +7544,11 @@ "type": "Polygon", "coordinates": [ [ - [-60.103045, -11.991013], - [-60.103045, -4.762879], - [-52.874912, -4.762879], - [-52.874912, -11.991013], - [-60.103045, -11.991013] + [-60.027038, -12.003681], + [-60.027038, -4.767102], + [-52.790458, -4.767102], + [-52.790458, -12.003681], + [-60.027038, -12.003681] ] ] } @@ -7560,11 +7560,11 @@ "type": "Polygon", "coordinates": [ [ - [-60.103045, -4.762879], - [-60.103045, 2.465255], - [-52.874912, 2.465255], - [-52.874912, -4.762879], - [-60.103045, -4.762879] + [-60.027038, -4.767102], + [-60.027038, 2.469478], + [-52.790458, 2.469478], + [-52.790458, -4.767102], + [-60.027038, -4.767102] ] ] } @@ -7576,11 +7576,11 @@ "type": "Polygon", "coordinates": [ [ - [-60.103045, 2.465255], - [-60.103045, 9.693389], - [-52.874912, 9.693389], - [-52.874912, 2.465255], - [-60.103045, 2.465255] + [-60.027038, 2.469478], + [-60.027038, 9.706057], + [-52.790458, 9.706057], + [-52.790458, 2.469478], + [-60.027038, 2.469478] ] ] } @@ -7592,11 +7592,11 @@ "type": "Polygon", "coordinates": [ [ - [-60.103045, 9.693389], - [-60.103045, 16.921523], - [-52.874912, 16.921523], - [-52.874912, 9.693389], - [-60.103045, 9.693389] + [-60.027038, 9.706057], + [-60.027038, 16.942636], + [-52.790458, 16.942636], + [-52.790458, 9.706057], + [-60.027038, 9.706057] ] ] } @@ -7608,11 +7608,11 @@ "type": "Polygon", "coordinates": [ [ - [-60.103045, 16.921523], - [-60.103045, 24.149656], - [-52.874912, 24.149656], - [-52.874912, 16.921523], - [-60.103045, 16.921523] + [-60.027038, 16.942636], + [-60.027038, 24.179215], + [-52.790458, 24.179215], + [-52.790458, 16.942636], + [-60.027038, 16.942636] ] ] } @@ -7624,11 +7624,11 @@ "type": "Polygon", "coordinates": [ [ - [-60.103045, 24.149656], - [-60.103045, 31.37779], - [-52.874912, 31.37779], - [-52.874912, 24.149656], - [-60.103045, 24.149656] + [-60.027038, 24.179215], + [-60.027038, 31.415794], + [-52.790458, 31.415794], + [-52.790458, 24.179215], + [-60.027038, 24.179215] ] ] } @@ -7640,11 +7640,11 @@ "type": "Polygon", "coordinates": [ [ - [-60.103045, 31.37779], - [-60.103045, 38.605924], - [-52.874912, 38.605924], - [-52.874912, 31.37779], - [-60.103045, 31.37779] + [-60.027038, 31.415794], + [-60.027038, 38.652373], + [-52.790458, 38.652373], + [-52.790458, 31.415794], + [-60.027038, 31.415794] ] ] } @@ -7656,11 +7656,11 @@ "type": "Polygon", "coordinates": [ [ - [-60.103045, 38.605924], - [-60.103045, 45.834058], - [-52.874912, 45.834058], - [-52.874912, 38.605924], - [-60.103045, 38.605924] + [-60.027038, 38.652373], + [-60.027038, 45.888952], + [-52.790458, 45.888952], + [-52.790458, 38.652373], + [-60.027038, 38.652373] ] ] } @@ -7672,11 +7672,11 @@ "type": "Polygon", "coordinates": [ [ - [-60.103045, 45.834058], - [-60.103045, 53.062192], - [-52.874912, 53.062192], - [-52.874912, 45.834058], - [-60.103045, 45.834058] + [-60.027038, 45.888952], + [-60.027038, 53.125532], + [-52.790458, 53.125532], + [-52.790458, 45.888952], + [-60.027038, 45.888952] ] ] } @@ -7688,11 +7688,11 @@ "type": "Polygon", "coordinates": [ [ - [-60.103045, 53.062192], - [-60.103045, 60.290326], - [-52.874912, 60.290326], - [-52.874912, 53.062192], - [-60.103045, 53.062192] + [-60.027038, 53.125532], + [-60.027038, 60.362111], + [-52.790458, 60.362111], + [-52.790458, 53.125532], + [-60.027038, 53.125532] ] ] } @@ -7704,11 +7704,11 @@ "type": "Polygon", "coordinates": [ [ - [-60.103045, 60.290326], - [-60.103045, 67.518459], - [-52.874912, 67.518459], - [-52.874912, 60.290326], - [-60.103045, 60.290326] + [-60.027038, 60.362111], + [-60.027038, 67.59869], + [-52.790458, 67.59869], + [-52.790458, 60.362111], + [-60.027038, 60.362111] ] ] } @@ -7720,11 +7720,11 @@ "type": "Polygon", "coordinates": [ [ - [-60.103045, 67.518459], - [-60.103045, 74.746593], - [-52.874912, 74.746593], - [-52.874912, 67.518459], - [-60.103045, 67.518459] + [-60.027038, 67.59869], + [-60.027038, 74.835269], + [-52.790458, 74.835269], + [-52.790458, 67.59869], + [-60.027038, 67.59869] ] ] } @@ -7736,11 +7736,11 @@ "type": "Polygon", "coordinates": [ [ - [-52.874912, -77.044217], - [-52.874912, -69.816084], - [-45.646778, -69.816084], - [-45.646778, -77.044217], - [-52.874912, -77.044217] + [-52.790458, -77.132893], + [-52.790458, -69.896314], + [-45.553879, -69.896314], + [-45.553879, -77.132893], + [-52.790458, -77.132893] ] ] } @@ -7752,11 +7752,11 @@ "type": "Polygon", "coordinates": [ [ - [-52.874912, -69.816084], - [-52.874912, -62.58795], - [-45.646778, -62.58795], - [-45.646778, -69.816084], - [-52.874912, -69.816084] + [-52.790458, -69.896314], + [-52.790458, -62.659735], + [-45.553879, -62.659735], + [-45.553879, -69.896314], + [-52.790458, -69.896314] ] ] } @@ -7768,11 +7768,11 @@ "type": "Polygon", "coordinates": [ [ - [-52.874912, -62.58795], - [-52.874912, -55.359816], - [-45.646778, -55.359816], - [-45.646778, -62.58795], - [-52.874912, -62.58795] + [-52.790458, -62.659735], + [-52.790458, -55.423156], + [-45.553879, -55.423156], + [-45.553879, -62.659735], + [-52.790458, -62.659735] ] ] } @@ -7784,11 +7784,11 @@ "type": "Polygon", "coordinates": [ [ - [-52.874912, -55.359816], - [-52.874912, -48.131682], - [-45.646778, -48.131682], - [-45.646778, -55.359816], - [-52.874912, -55.359816] + [-52.790458, -55.423156], + [-52.790458, -48.186577], + [-45.553879, -48.186577], + [-45.553879, -55.423156], + [-52.790458, -55.423156] ] ] } @@ -7800,11 +7800,11 @@ "type": "Polygon", "coordinates": [ [ - [-52.874912, -48.131682], - [-52.874912, -40.903548], - [-45.646778, -40.903548], - [-45.646778, -48.131682], - [-52.874912, -48.131682] + [-52.790458, -48.186577], + [-52.790458, -40.949997], + [-45.553879, -40.949997], + [-45.553879, -48.186577], + [-52.790458, -48.186577] ] ] } @@ -7816,11 +7816,11 @@ "type": "Polygon", "coordinates": [ [ - [-52.874912, -40.903548], - [-52.874912, -33.675414], - [-45.646778, -33.675414], - [-45.646778, -40.903548], - [-52.874912, -40.903548] + [-52.790458, -40.949997], + [-52.790458, -33.713418], + [-45.553879, -33.713418], + [-45.553879, -40.949997], + [-52.790458, -40.949997] ] ] } @@ -7832,11 +7832,11 @@ "type": "Polygon", "coordinates": [ [ - [-52.874912, -33.675414], - [-52.874912, -26.44728], - [-45.646778, -26.44728], - [-45.646778, -33.675414], - [-52.874912, -33.675414] + [-52.790458, -33.713418], + [-52.790458, -26.476839], + [-45.553879, -26.476839], + [-45.553879, -33.713418], + [-52.790458, -33.713418] ] ] } @@ -7848,11 +7848,11 @@ "type": "Polygon", "coordinates": [ [ - [-52.874912, -26.44728], - [-52.874912, -19.219147], - [-45.646778, -19.219147], - [-45.646778, -26.44728], - [-52.874912, -26.44728] + [-52.790458, -26.476839], + [-52.790458, -19.24026], + [-45.553879, -19.24026], + [-45.553879, -26.476839], + [-52.790458, -26.476839] ] ] } @@ -7864,11 +7864,11 @@ "type": "Polygon", "coordinates": [ [ - [-52.874912, -19.219147], - [-52.874912, -11.991013], - [-45.646778, -11.991013], - [-45.646778, -19.219147], - [-52.874912, -19.219147] + [-52.790458, -19.24026], + [-52.790458, -12.003681], + [-45.553879, -12.003681], + [-45.553879, -19.24026], + [-52.790458, -19.24026] ] ] } @@ -7880,11 +7880,11 @@ "type": "Polygon", "coordinates": [ [ - [-52.874912, -11.991013], - [-52.874912, -4.762879], - [-45.646778, -4.762879], - [-45.646778, -11.991013], - [-52.874912, -11.991013] + [-52.790458, -12.003681], + [-52.790458, -4.767102], + [-45.553879, -4.767102], + [-45.553879, -12.003681], + [-52.790458, -12.003681] ] ] } @@ -7896,11 +7896,11 @@ "type": "Polygon", "coordinates": [ [ - [-52.874912, -4.762879], - [-52.874912, 2.465255], - [-45.646778, 2.465255], - [-45.646778, -4.762879], - [-52.874912, -4.762879] + [-52.790458, -4.767102], + [-52.790458, 2.469478], + [-45.553879, 2.469478], + [-45.553879, -4.767102], + [-52.790458, -4.767102] ] ] } @@ -7912,11 +7912,11 @@ "type": "Polygon", "coordinates": [ [ - [-52.874912, 2.465255], - [-52.874912, 9.693389], - [-45.646778, 9.693389], - [-45.646778, 2.465255], - [-52.874912, 2.465255] + [-52.790458, 2.469478], + [-52.790458, 9.706057], + [-45.553879, 9.706057], + [-45.553879, 2.469478], + [-52.790458, 2.469478] ] ] } @@ -7928,11 +7928,11 @@ "type": "Polygon", "coordinates": [ [ - [-52.874912, 9.693389], - [-52.874912, 16.921523], - [-45.646778, 16.921523], - [-45.646778, 9.693389], - [-52.874912, 9.693389] + [-52.790458, 9.706057], + [-52.790458, 16.942636], + [-45.553879, 16.942636], + [-45.553879, 9.706057], + [-52.790458, 9.706057] ] ] } @@ -7944,11 +7944,11 @@ "type": "Polygon", "coordinates": [ [ - [-52.874912, 16.921523], - [-52.874912, 24.149656], - [-45.646778, 24.149656], - [-45.646778, 16.921523], - [-52.874912, 16.921523] + [-52.790458, 16.942636], + [-52.790458, 24.179215], + [-45.553879, 24.179215], + [-45.553879, 16.942636], + [-52.790458, 16.942636] ] ] } @@ -7960,11 +7960,11 @@ "type": "Polygon", "coordinates": [ [ - [-52.874912, 24.149656], - [-52.874912, 31.37779], - [-45.646778, 31.37779], - [-45.646778, 24.149656], - [-52.874912, 24.149656] + [-52.790458, 24.179215], + [-52.790458, 31.415794], + [-45.553879, 31.415794], + [-45.553879, 24.179215], + [-52.790458, 24.179215] ] ] } @@ -7976,11 +7976,11 @@ "type": "Polygon", "coordinates": [ [ - [-52.874912, 31.37779], - [-52.874912, 38.605924], - [-45.646778, 38.605924], - [-45.646778, 31.37779], - [-52.874912, 31.37779] + [-52.790458, 31.415794], + [-52.790458, 38.652373], + [-45.553879, 38.652373], + [-45.553879, 31.415794], + [-52.790458, 31.415794] ] ] } @@ -7992,11 +7992,11 @@ "type": "Polygon", "coordinates": [ [ - [-52.874912, 38.605924], - [-52.874912, 45.834058], - [-45.646778, 45.834058], - [-45.646778, 38.605924], - [-52.874912, 38.605924] + [-52.790458, 38.652373], + [-52.790458, 45.888952], + [-45.553879, 45.888952], + [-45.553879, 38.652373], + [-52.790458, 38.652373] ] ] } @@ -8008,11 +8008,11 @@ "type": "Polygon", "coordinates": [ [ - [-52.874912, 45.834058], - [-52.874912, 53.062192], - [-45.646778, 53.062192], - [-45.646778, 45.834058], - [-52.874912, 45.834058] + [-52.790458, 45.888952], + [-52.790458, 53.125532], + [-45.553879, 53.125532], + [-45.553879, 45.888952], + [-52.790458, 45.888952] ] ] } @@ -8024,11 +8024,11 @@ "type": "Polygon", "coordinates": [ [ - [-52.874912, 53.062192], - [-52.874912, 60.290326], - [-45.646778, 60.290326], - [-45.646778, 53.062192], - [-52.874912, 53.062192] + [-52.790458, 53.125532], + [-52.790458, 60.362111], + [-45.553879, 60.362111], + [-45.553879, 53.125532], + [-52.790458, 53.125532] ] ] } @@ -8040,11 +8040,11 @@ "type": "Polygon", "coordinates": [ [ - [-52.874912, 60.290326], - [-52.874912, 67.518459], - [-45.646778, 67.518459], - [-45.646778, 60.290326], - [-52.874912, 60.290326] + [-52.790458, 60.362111], + [-52.790458, 67.59869], + [-45.553879, 67.59869], + [-45.553879, 60.362111], + [-52.790458, 60.362111] ] ] } @@ -8056,11 +8056,11 @@ "type": "Polygon", "coordinates": [ [ - [-52.874912, 67.518459], - [-52.874912, 74.746593], - [-45.646778, 74.746593], - [-45.646778, 67.518459], - [-52.874912, 67.518459] + [-52.790458, 67.59869], + [-52.790458, 74.835269], + [-45.553879, 74.835269], + [-45.553879, 67.59869], + [-52.790458, 67.59869] ] ] } @@ -8072,11 +8072,11 @@ "type": "Polygon", "coordinates": [ [ - [-45.646778, -77.044217], - [-45.646778, -69.816084], - [-38.418644, -69.816084], - [-38.418644, -77.044217], - [-45.646778, -77.044217] + [-45.553879, -77.132893], + [-45.553879, -69.896314], + [-38.3173, -69.896314], + [-38.3173, -77.132893], + [-45.553879, -77.132893] ] ] } @@ -8088,11 +8088,11 @@ "type": "Polygon", "coordinates": [ [ - [-45.646778, -69.816084], - [-45.646778, -62.58795], - [-38.418644, -62.58795], - [-38.418644, -69.816084], - [-45.646778, -69.816084] + [-45.553879, -69.896314], + [-45.553879, -62.659735], + [-38.3173, -62.659735], + [-38.3173, -69.896314], + [-45.553879, -69.896314] ] ] } @@ -8104,11 +8104,11 @@ "type": "Polygon", "coordinates": [ [ - [-45.646778, -62.58795], - [-45.646778, -55.359816], - [-38.418644, -55.359816], - [-38.418644, -62.58795], - [-45.646778, -62.58795] + [-45.553879, -62.659735], + [-45.553879, -55.423156], + [-38.3173, -55.423156], + [-38.3173, -62.659735], + [-45.553879, -62.659735] ] ] } @@ -8120,11 +8120,11 @@ "type": "Polygon", "coordinates": [ [ - [-45.646778, -55.359816], - [-45.646778, -48.131682], - [-38.418644, -48.131682], - [-38.418644, -55.359816], - [-45.646778, -55.359816] + [-45.553879, -55.423156], + [-45.553879, -48.186577], + [-38.3173, -48.186577], + [-38.3173, -55.423156], + [-45.553879, -55.423156] ] ] } @@ -8136,11 +8136,11 @@ "type": "Polygon", "coordinates": [ [ - [-45.646778, -48.131682], - [-45.646778, -40.903548], - [-38.418644, -40.903548], - [-38.418644, -48.131682], - [-45.646778, -48.131682] + [-45.553879, -48.186577], + [-45.553879, -40.949997], + [-38.3173, -40.949997], + [-38.3173, -48.186577], + [-45.553879, -48.186577] ] ] } @@ -8152,11 +8152,11 @@ "type": "Polygon", "coordinates": [ [ - [-45.646778, -40.903548], - [-45.646778, -33.675414], - [-38.418644, -33.675414], - [-38.418644, -40.903548], - [-45.646778, -40.903548] + [-45.553879, -40.949997], + [-45.553879, -33.713418], + [-38.3173, -33.713418], + [-38.3173, -40.949997], + [-45.553879, -40.949997] ] ] } @@ -8168,11 +8168,11 @@ "type": "Polygon", "coordinates": [ [ - [-45.646778, -33.675414], - [-45.646778, -26.44728], - [-38.418644, -26.44728], - [-38.418644, -33.675414], - [-45.646778, -33.675414] + [-45.553879, -33.713418], + [-45.553879, -26.476839], + [-38.3173, -26.476839], + [-38.3173, -33.713418], + [-45.553879, -33.713418] ] ] } @@ -8184,11 +8184,11 @@ "type": "Polygon", "coordinates": [ [ - [-45.646778, -26.44728], - [-45.646778, -19.219147], - [-38.418644, -19.219147], - [-38.418644, -26.44728], - [-45.646778, -26.44728] + [-45.553879, -26.476839], + [-45.553879, -19.24026], + [-38.3173, -19.24026], + [-38.3173, -26.476839], + [-45.553879, -26.476839] ] ] } @@ -8200,11 +8200,11 @@ "type": "Polygon", "coordinates": [ [ - [-45.646778, -19.219147], - [-45.646778, -11.991013], - [-38.418644, -11.991013], - [-38.418644, -19.219147], - [-45.646778, -19.219147] + [-45.553879, -19.24026], + [-45.553879, -12.003681], + [-38.3173, -12.003681], + [-38.3173, -19.24026], + [-45.553879, -19.24026] ] ] } @@ -8216,11 +8216,11 @@ "type": "Polygon", "coordinates": [ [ - [-45.646778, -11.991013], - [-45.646778, -4.762879], - [-38.418644, -4.762879], - [-38.418644, -11.991013], - [-45.646778, -11.991013] + [-45.553879, -12.003681], + [-45.553879, -4.767102], + [-38.3173, -4.767102], + [-38.3173, -12.003681], + [-45.553879, -12.003681] ] ] } @@ -8232,11 +8232,11 @@ "type": "Polygon", "coordinates": [ [ - [-45.646778, -4.762879], - [-45.646778, 2.465255], - [-38.418644, 2.465255], - [-38.418644, -4.762879], - [-45.646778, -4.762879] + [-45.553879, -4.767102], + [-45.553879, 2.469478], + [-38.3173, 2.469478], + [-38.3173, -4.767102], + [-45.553879, -4.767102] ] ] } @@ -8248,11 +8248,11 @@ "type": "Polygon", "coordinates": [ [ - [-45.646778, 2.465255], - [-45.646778, 9.693389], - [-38.418644, 9.693389], - [-38.418644, 2.465255], - [-45.646778, 2.465255] + [-45.553879, 2.469478], + [-45.553879, 9.706057], + [-38.3173, 9.706057], + [-38.3173, 2.469478], + [-45.553879, 2.469478] ] ] } @@ -8264,11 +8264,11 @@ "type": "Polygon", "coordinates": [ [ - [-45.646778, 9.693389], - [-45.646778, 16.921523], - [-38.418644, 16.921523], - [-38.418644, 9.693389], - [-45.646778, 9.693389] + [-45.553879, 9.706057], + [-45.553879, 16.942636], + [-38.3173, 16.942636], + [-38.3173, 9.706057], + [-45.553879, 9.706057] ] ] } @@ -8280,11 +8280,11 @@ "type": "Polygon", "coordinates": [ [ - [-45.646778, 16.921523], - [-45.646778, 24.149656], - [-38.418644, 24.149656], - [-38.418644, 16.921523], - [-45.646778, 16.921523] + [-45.553879, 16.942636], + [-45.553879, 24.179215], + [-38.3173, 24.179215], + [-38.3173, 16.942636], + [-45.553879, 16.942636] ] ] } @@ -8296,11 +8296,11 @@ "type": "Polygon", "coordinates": [ [ - [-45.646778, 24.149656], - [-45.646778, 31.37779], - [-38.418644, 31.37779], - [-38.418644, 24.149656], - [-45.646778, 24.149656] + [-45.553879, 24.179215], + [-45.553879, 31.415794], + [-38.3173, 31.415794], + [-38.3173, 24.179215], + [-45.553879, 24.179215] ] ] } @@ -8312,11 +8312,11 @@ "type": "Polygon", "coordinates": [ [ - [-45.646778, 31.37779], - [-45.646778, 38.605924], - [-38.418644, 38.605924], - [-38.418644, 31.37779], - [-45.646778, 31.37779] + [-45.553879, 31.415794], + [-45.553879, 38.652373], + [-38.3173, 38.652373], + [-38.3173, 31.415794], + [-45.553879, 31.415794] ] ] } @@ -8328,11 +8328,11 @@ "type": "Polygon", "coordinates": [ [ - [-45.646778, 38.605924], - [-45.646778, 45.834058], - [-38.418644, 45.834058], - [-38.418644, 38.605924], - [-45.646778, 38.605924] + [-45.553879, 38.652373], + [-45.553879, 45.888952], + [-38.3173, 45.888952], + [-38.3173, 38.652373], + [-45.553879, 38.652373] ] ] } @@ -8344,11 +8344,11 @@ "type": "Polygon", "coordinates": [ [ - [-45.646778, 45.834058], - [-45.646778, 53.062192], - [-38.418644, 53.062192], - [-38.418644, 45.834058], - [-45.646778, 45.834058] + [-45.553879, 45.888952], + [-45.553879, 53.125532], + [-38.3173, 53.125532], + [-38.3173, 45.888952], + [-45.553879, 45.888952] ] ] } @@ -8360,11 +8360,11 @@ "type": "Polygon", "coordinates": [ [ - [-45.646778, 53.062192], - [-45.646778, 60.290326], - [-38.418644, 60.290326], - [-38.418644, 53.062192], - [-45.646778, 53.062192] + [-45.553879, 53.125532], + [-45.553879, 60.362111], + [-38.3173, 60.362111], + [-38.3173, 53.125532], + [-45.553879, 53.125532] ] ] } @@ -8376,11 +8376,11 @@ "type": "Polygon", "coordinates": [ [ - [-45.646778, 60.290326], - [-45.646778, 67.518459], - [-38.418644, 67.518459], - [-38.418644, 60.290326], - [-45.646778, 60.290326] + [-45.553879, 60.362111], + [-45.553879, 67.59869], + [-38.3173, 67.59869], + [-38.3173, 60.362111], + [-45.553879, 60.362111] ] ] } @@ -8392,11 +8392,11 @@ "type": "Polygon", "coordinates": [ [ - [-45.646778, 67.518459], - [-45.646778, 74.746593], - [-38.418644, 74.746593], - [-38.418644, 67.518459], - [-45.646778, 67.518459] + [-45.553879, 67.59869], + [-45.553879, 74.835269], + [-38.3173, 74.835269], + [-38.3173, 67.59869], + [-45.553879, 67.59869] ] ] } @@ -8408,11 +8408,11 @@ "type": "Polygon", "coordinates": [ [ - [-38.418644, -77.044217], - [-38.418644, -69.816084], - [-31.19051, -69.816084], - [-31.19051, -77.044217], - [-38.418644, -77.044217] + [-38.3173, -77.132893], + [-38.3173, -69.896314], + [-31.080721, -69.896314], + [-31.080721, -77.132893], + [-38.3173, -77.132893] ] ] } @@ -8424,11 +8424,11 @@ "type": "Polygon", "coordinates": [ [ - [-38.418644, -69.816084], - [-38.418644, -62.58795], - [-31.19051, -62.58795], - [-31.19051, -69.816084], - [-38.418644, -69.816084] + [-38.3173, -69.896314], + [-38.3173, -62.659735], + [-31.080721, -62.659735], + [-31.080721, -69.896314], + [-38.3173, -69.896314] ] ] } @@ -8440,11 +8440,11 @@ "type": "Polygon", "coordinates": [ [ - [-38.418644, -62.58795], - [-38.418644, -55.359816], - [-31.19051, -55.359816], - [-31.19051, -62.58795], - [-38.418644, -62.58795] + [-38.3173, -62.659735], + [-38.3173, -55.423156], + [-31.080721, -55.423156], + [-31.080721, -62.659735], + [-38.3173, -62.659735] ] ] } @@ -8456,11 +8456,11 @@ "type": "Polygon", "coordinates": [ [ - [-38.418644, -55.359816], - [-38.418644, -48.131682], - [-31.19051, -48.131682], - [-31.19051, -55.359816], - [-38.418644, -55.359816] + [-38.3173, -55.423156], + [-38.3173, -48.186577], + [-31.080721, -48.186577], + [-31.080721, -55.423156], + [-38.3173, -55.423156] ] ] } @@ -8472,11 +8472,11 @@ "type": "Polygon", "coordinates": [ [ - [-38.418644, -48.131682], - [-38.418644, -40.903548], - [-31.19051, -40.903548], - [-31.19051, -48.131682], - [-38.418644, -48.131682] + [-38.3173, -48.186577], + [-38.3173, -40.949997], + [-31.080721, -40.949997], + [-31.080721, -48.186577], + [-38.3173, -48.186577] ] ] } @@ -8488,11 +8488,11 @@ "type": "Polygon", "coordinates": [ [ - [-38.418644, -40.903548], - [-38.418644, -33.675414], - [-31.19051, -33.675414], - [-31.19051, -40.903548], - [-38.418644, -40.903548] + [-38.3173, -40.949997], + [-38.3173, -33.713418], + [-31.080721, -33.713418], + [-31.080721, -40.949997], + [-38.3173, -40.949997] ] ] } @@ -8504,11 +8504,11 @@ "type": "Polygon", "coordinates": [ [ - [-38.418644, -33.675414], - [-38.418644, -26.44728], - [-31.19051, -26.44728], - [-31.19051, -33.675414], - [-38.418644, -33.675414] + [-38.3173, -33.713418], + [-38.3173, -26.476839], + [-31.080721, -26.476839], + [-31.080721, -33.713418], + [-38.3173, -33.713418] ] ] } @@ -8520,11 +8520,11 @@ "type": "Polygon", "coordinates": [ [ - [-38.418644, -26.44728], - [-38.418644, -19.219147], - [-31.19051, -19.219147], - [-31.19051, -26.44728], - [-38.418644, -26.44728] + [-38.3173, -26.476839], + [-38.3173, -19.24026], + [-31.080721, -19.24026], + [-31.080721, -26.476839], + [-38.3173, -26.476839] ] ] } @@ -8536,11 +8536,11 @@ "type": "Polygon", "coordinates": [ [ - [-38.418644, -19.219147], - [-38.418644, -11.991013], - [-31.19051, -11.991013], - [-31.19051, -19.219147], - [-38.418644, -19.219147] + [-38.3173, -19.24026], + [-38.3173, -12.003681], + [-31.080721, -12.003681], + [-31.080721, -19.24026], + [-38.3173, -19.24026] ] ] } @@ -8552,11 +8552,11 @@ "type": "Polygon", "coordinates": [ [ - [-38.418644, -11.991013], - [-38.418644, -4.762879], - [-31.19051, -4.762879], - [-31.19051, -11.991013], - [-38.418644, -11.991013] + [-38.3173, -12.003681], + [-38.3173, -4.767102], + [-31.080721, -4.767102], + [-31.080721, -12.003681], + [-38.3173, -12.003681] ] ] } @@ -8568,11 +8568,11 @@ "type": "Polygon", "coordinates": [ [ - [-38.418644, -4.762879], - [-38.418644, 2.465255], - [-31.19051, 2.465255], - [-31.19051, -4.762879], - [-38.418644, -4.762879] + [-38.3173, -4.767102], + [-38.3173, 2.469478], + [-31.080721, 2.469478], + [-31.080721, -4.767102], + [-38.3173, -4.767102] ] ] } @@ -8584,11 +8584,11 @@ "type": "Polygon", "coordinates": [ [ - [-38.418644, 2.465255], - [-38.418644, 9.693389], - [-31.19051, 9.693389], - [-31.19051, 2.465255], - [-38.418644, 2.465255] + [-38.3173, 2.469478], + [-38.3173, 9.706057], + [-31.080721, 9.706057], + [-31.080721, 2.469478], + [-38.3173, 2.469478] ] ] } @@ -8600,11 +8600,11 @@ "type": "Polygon", "coordinates": [ [ - [-38.418644, 9.693389], - [-38.418644, 16.921523], - [-31.19051, 16.921523], - [-31.19051, 9.693389], - [-38.418644, 9.693389] + [-38.3173, 9.706057], + [-38.3173, 16.942636], + [-31.080721, 16.942636], + [-31.080721, 9.706057], + [-38.3173, 9.706057] ] ] } @@ -8616,11 +8616,11 @@ "type": "Polygon", "coordinates": [ [ - [-38.418644, 16.921523], - [-38.418644, 24.149656], - [-31.19051, 24.149656], - [-31.19051, 16.921523], - [-38.418644, 16.921523] + [-38.3173, 16.942636], + [-38.3173, 24.179215], + [-31.080721, 24.179215], + [-31.080721, 16.942636], + [-38.3173, 16.942636] ] ] } @@ -8632,11 +8632,11 @@ "type": "Polygon", "coordinates": [ [ - [-38.418644, 24.149656], - [-38.418644, 31.37779], - [-31.19051, 31.37779], - [-31.19051, 24.149656], - [-38.418644, 24.149656] + [-38.3173, 24.179215], + [-38.3173, 31.415794], + [-31.080721, 31.415794], + [-31.080721, 24.179215], + [-38.3173, 24.179215] ] ] } @@ -8648,11 +8648,11 @@ "type": "Polygon", "coordinates": [ [ - [-38.418644, 31.37779], - [-38.418644, 38.605924], - [-31.19051, 38.605924], - [-31.19051, 31.37779], - [-38.418644, 31.37779] + [-38.3173, 31.415794], + [-38.3173, 38.652373], + [-31.080721, 38.652373], + [-31.080721, 31.415794], + [-38.3173, 31.415794] ] ] } @@ -8664,11 +8664,11 @@ "type": "Polygon", "coordinates": [ [ - [-38.418644, 38.605924], - [-38.418644, 45.834058], - [-31.19051, 45.834058], - [-31.19051, 38.605924], - [-38.418644, 38.605924] + [-38.3173, 38.652373], + [-38.3173, 45.888952], + [-31.080721, 45.888952], + [-31.080721, 38.652373], + [-38.3173, 38.652373] ] ] } @@ -8680,11 +8680,11 @@ "type": "Polygon", "coordinates": [ [ - [-38.418644, 45.834058], - [-38.418644, 53.062192], - [-31.19051, 53.062192], - [-31.19051, 45.834058], - [-38.418644, 45.834058] + [-38.3173, 45.888952], + [-38.3173, 53.125532], + [-31.080721, 53.125532], + [-31.080721, 45.888952], + [-38.3173, 45.888952] ] ] } @@ -8696,11 +8696,11 @@ "type": "Polygon", "coordinates": [ [ - [-38.418644, 53.062192], - [-38.418644, 60.290326], - [-31.19051, 60.290326], - [-31.19051, 53.062192], - [-38.418644, 53.062192] + [-38.3173, 53.125532], + [-38.3173, 60.362111], + [-31.080721, 60.362111], + [-31.080721, 53.125532], + [-38.3173, 53.125532] ] ] } @@ -8712,11 +8712,11 @@ "type": "Polygon", "coordinates": [ [ - [-38.418644, 60.290326], - [-38.418644, 67.518459], - [-31.19051, 67.518459], - [-31.19051, 60.290326], - [-38.418644, 60.290326] + [-38.3173, 60.362111], + [-38.3173, 67.59869], + [-31.080721, 67.59869], + [-31.080721, 60.362111], + [-38.3173, 60.362111] ] ] } @@ -8728,11 +8728,11 @@ "type": "Polygon", "coordinates": [ [ - [-38.418644, 67.518459], - [-38.418644, 74.746593], - [-31.19051, 74.746593], - [-31.19051, 67.518459], - [-38.418644, 67.518459] + [-38.3173, 67.59869], + [-38.3173, 74.835269], + [-31.080721, 74.835269], + [-31.080721, 67.59869], + [-38.3173, 67.59869] ] ] } diff --git a/packages/turf-square-grid/test/out/fiji-10-miles.geojson b/packages/turf-square-grid/test/out/fiji-10-miles.geojson index 3ad5172e49..6bf9314853 100644 --- a/packages/turf-square-grid/test/out/fiji-10-miles.geojson +++ b/packages/turf-square-grid/test/out/fiji-10-miles.geojson @@ -8,11 +8,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.322955, -17.114391], - [-180.322955, -16.969829], - [-180.178392, -16.969829], - [-180.178392, -17.114391], - [-180.322955, -17.114391] + [-180.323377, -17.114729], + [-180.323377, -16.969998], + [-180.178645, -16.969998], + [-180.178645, -17.114729], + [-180.323377, -17.114729] ] ] } @@ -24,11 +24,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.322955, -16.969829], - [-180.322955, -16.825266], - [-180.178392, -16.825266], - [-180.178392, -16.969829], - [-180.322955, -16.969829] + [-180.323377, -16.969998], + [-180.323377, -16.825266], + [-180.178645, -16.825266], + [-180.178645, -16.969998], + [-180.323377, -16.969998] ] ] } @@ -40,11 +40,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.322955, -16.825266], - [-180.322955, -16.680703], - [-180.178392, -16.680703], - [-180.178392, -16.825266], - [-180.322955, -16.825266] + [-180.323377, -16.825266], + [-180.323377, -16.680534], + [-180.178645, -16.680534], + [-180.178645, -16.825266], + [-180.323377, -16.825266] ] ] } @@ -56,11 +56,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.322955, -16.680703], - [-180.322955, -16.536141], - [-180.178392, -16.536141], - [-180.178392, -16.680703], - [-180.322955, -16.680703] + [-180.323377, -16.680534], + [-180.323377, -16.535803], + [-180.178645, -16.535803], + [-180.178645, -16.680534], + [-180.323377, -16.680534] ] ] } @@ -72,11 +72,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.178392, -17.114391], - [-180.178392, -16.969829], - [-180.033829, -16.969829], - [-180.033829, -17.114391], - [-180.178392, -17.114391] + [-180.178645, -17.114729], + [-180.178645, -16.969998], + [-180.033914, -16.969998], + [-180.033914, -17.114729], + [-180.178645, -17.114729] ] ] } @@ -88,11 +88,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.178392, -16.969829], - [-180.178392, -16.825266], - [-180.033829, -16.825266], - [-180.033829, -16.969829], - [-180.178392, -16.969829] + [-180.178645, -16.969998], + [-180.178645, -16.825266], + [-180.033914, -16.825266], + [-180.033914, -16.969998], + [-180.178645, -16.969998] ] ] } @@ -104,11 +104,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.178392, -16.825266], - [-180.178392, -16.680703], - [-180.033829, -16.680703], - [-180.033829, -16.825266], - [-180.178392, -16.825266] + [-180.178645, -16.825266], + [-180.178645, -16.680534], + [-180.033914, -16.680534], + [-180.033914, -16.825266], + [-180.178645, -16.825266] ] ] } @@ -120,11 +120,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.178392, -16.680703], - [-180.178392, -16.536141], - [-180.033829, -16.536141], - [-180.033829, -16.680703], - [-180.178392, -16.680703] + [-180.178645, -16.680534], + [-180.178645, -16.535803], + [-180.033914, -16.535803], + [-180.033914, -16.680534], + [-180.178645, -16.680534] ] ] } @@ -136,11 +136,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.033829, -17.114391], - [-180.033829, -16.969829], - [-179.889267, -16.969829], - [-179.889267, -17.114391], - [-180.033829, -17.114391] + [-180.033914, -17.114729], + [-180.033914, -16.969998], + [-179.889182, -16.969998], + [-179.889182, -17.114729], + [-180.033914, -17.114729] ] ] } @@ -152,11 +152,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.033829, -16.969829], - [-180.033829, -16.825266], - [-179.889267, -16.825266], - [-179.889267, -16.969829], - [-180.033829, -16.969829] + [-180.033914, -16.969998], + [-180.033914, -16.825266], + [-179.889182, -16.825266], + [-179.889182, -16.969998], + [-180.033914, -16.969998] ] ] } @@ -168,11 +168,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.033829, -16.825266], - [-180.033829, -16.680703], - [-179.889267, -16.680703], - [-179.889267, -16.825266], - [-180.033829, -16.825266] + [-180.033914, -16.825266], + [-180.033914, -16.680534], + [-179.889182, -16.680534], + [-179.889182, -16.825266], + [-180.033914, -16.825266] ] ] } @@ -184,11 +184,11 @@ "type": "Polygon", "coordinates": [ [ - [-180.033829, -16.680703], - [-180.033829, -16.536141], - [-179.889267, -16.536141], - [-179.889267, -16.680703], - [-180.033829, -16.680703] + [-180.033914, -16.680534], + [-180.033914, -16.535803], + [-179.889182, -16.535803], + [-179.889182, -16.680534], + [-180.033914, -16.680534] ] ] } @@ -200,11 +200,11 @@ "type": "Polygon", "coordinates": [ [ - [-179.889267, -17.114391], - [-179.889267, -16.969829], - [-179.744704, -16.969829], - [-179.744704, -17.114391], - [-179.889267, -17.114391] + [-179.889182, -17.114729], + [-179.889182, -16.969998], + [-179.74445, -16.969998], + [-179.74445, -17.114729], + [-179.889182, -17.114729] ] ] } @@ -216,11 +216,11 @@ "type": "Polygon", "coordinates": [ [ - [-179.889267, -16.969829], - [-179.889267, -16.825266], - [-179.744704, -16.825266], - [-179.744704, -16.969829], - [-179.889267, -16.969829] + [-179.889182, -16.969998], + [-179.889182, -16.825266], + [-179.74445, -16.825266], + [-179.74445, -16.969998], + [-179.889182, -16.969998] ] ] } @@ -232,11 +232,11 @@ "type": "Polygon", "coordinates": [ [ - [-179.889267, -16.825266], - [-179.889267, -16.680703], - [-179.744704, -16.680703], - [-179.744704, -16.825266], - [-179.889267, -16.825266] + [-179.889182, -16.825266], + [-179.889182, -16.680534], + [-179.74445, -16.680534], + [-179.74445, -16.825266], + [-179.889182, -16.825266] ] ] } @@ -248,11 +248,11 @@ "type": "Polygon", "coordinates": [ [ - [-179.889267, -16.680703], - [-179.889267, -16.536141], - [-179.744704, -16.536141], - [-179.744704, -16.680703], - [-179.889267, -16.680703] + [-179.889182, -16.680534], + [-179.889182, -16.535803], + [-179.74445, -16.535803], + [-179.74445, -16.680534], + [-179.889182, -16.680534] ] ] } @@ -264,11 +264,11 @@ "type": "Polygon", "coordinates": [ [ - [-179.744704, -17.114391], - [-179.744704, -16.969829], - [-179.600141, -16.969829], - [-179.600141, -17.114391], - [-179.744704, -17.114391] + [-179.74445, -17.114729], + [-179.74445, -16.969998], + [-179.599719, -16.969998], + [-179.599719, -17.114729], + [-179.74445, -17.114729] ] ] } @@ -280,11 +280,11 @@ "type": "Polygon", "coordinates": [ [ - [-179.744704, -16.969829], - [-179.744704, -16.825266], - [-179.600141, -16.825266], - [-179.600141, -16.969829], - [-179.744704, -16.969829] + [-179.74445, -16.969998], + [-179.74445, -16.825266], + [-179.599719, -16.825266], + [-179.599719, -16.969998], + [-179.74445, -16.969998] ] ] } @@ -296,11 +296,11 @@ "type": "Polygon", "coordinates": [ [ - [-179.744704, -16.825266], - [-179.744704, -16.680703], - [-179.600141, -16.680703], - [-179.600141, -16.825266], - [-179.744704, -16.825266] + [-179.74445, -16.825266], + [-179.74445, -16.680534], + [-179.599719, -16.680534], + [-179.599719, -16.825266], + [-179.74445, -16.825266] ] ] } @@ -312,11 +312,11 @@ "type": "Polygon", "coordinates": [ [ - [-179.744704, -16.680703], - [-179.744704, -16.536141], - [-179.600141, -16.536141], - [-179.600141, -16.680703], - [-179.744704, -16.680703] + [-179.74445, -16.680534], + [-179.74445, -16.535803], + [-179.599719, -16.535803], + [-179.599719, -16.680534], + [-179.74445, -16.680534] ] ] } diff --git a/packages/turf-square-grid/test/out/issue-1215.geojson b/packages/turf-square-grid/test/out/issue-1215.geojson index 82d42625c8..4ba29b41d9 100644 --- a/packages/turf-square-grid/test/out/issue-1215.geojson +++ b/packages/turf-square-grid/test/out/issue-1215.geojson @@ -8,11 +8,11 @@ "type": "Polygon", "coordinates": [ [ - [37.699775, 55.553251], - [37.699775, 55.553341], - [37.699865, 55.553341], - [37.699865, 55.553251], - [37.699775, 55.553251] + [37.699769, 55.553251], + [37.699769, 55.553341], + [37.699859, 55.553341], + [37.699859, 55.553251], + [37.699769, 55.553251] ] ] } @@ -24,11 +24,11 @@ "type": "Polygon", "coordinates": [ [ - [37.699775, 55.553341], - [37.699775, 55.553431], - [37.699865, 55.553431], - [37.699865, 55.553341], - [37.699775, 55.553341] + [37.699769, 55.553341], + [37.699769, 55.553431], + [37.699859, 55.553431], + [37.699859, 55.553341], + [37.699769, 55.553341] ] ] } @@ -40,11 +40,11 @@ "type": "Polygon", "coordinates": [ [ - [37.699865, 55.553162], - [37.699865, 55.553251], - [37.699955, 55.553251], - [37.699955, 55.553162], - [37.699865, 55.553162] + [37.699859, 55.553161], + [37.699859, 55.553251], + [37.699949, 55.553251], + [37.699949, 55.553161], + [37.699859, 55.553161] ] ] } @@ -56,11 +56,11 @@ "type": "Polygon", "coordinates": [ [ - [37.699865, 55.553251], - [37.699865, 55.553341], - [37.699955, 55.553341], - [37.699955, 55.553251], - [37.699865, 55.553251] + [37.699859, 55.553251], + [37.699859, 55.553341], + [37.699949, 55.553341], + [37.699949, 55.553251], + [37.699859, 55.553251] ] ] } @@ -72,11 +72,11 @@ "type": "Polygon", "coordinates": [ [ - [37.699865, 55.553341], - [37.699865, 55.553431], - [37.699955, 55.553431], - [37.699955, 55.553341], - [37.699865, 55.553341] + [37.699859, 55.553341], + [37.699859, 55.553431], + [37.699949, 55.553431], + [37.699949, 55.553341], + [37.699859, 55.553341] ] ] } @@ -88,11 +88,11 @@ "type": "Polygon", "coordinates": [ [ - [37.699865, 55.553431], - [37.699865, 55.553521], - [37.699955, 55.553521], - [37.699955, 55.553431], - [37.699865, 55.553431] + [37.699859, 55.553431], + [37.699859, 55.55352], + [37.699949, 55.55352], + [37.699949, 55.553431], + [37.699859, 55.553431] ] ] } @@ -104,11 +104,11 @@ "type": "Polygon", "coordinates": [ [ - [37.699865, 55.553521], - [37.699865, 55.553611], - [37.699955, 55.553611], - [37.699955, 55.553521], - [37.699865, 55.553521] + [37.699859, 55.55352], + [37.699859, 55.55361], + [37.699949, 55.55361], + [37.699949, 55.55352], + [37.699859, 55.55352] ] ] } @@ -120,11 +120,11 @@ "type": "Polygon", "coordinates": [ [ - [37.699955, 55.553162], - [37.699955, 55.553251], - [37.700044, 55.553251], - [37.700044, 55.553162], - [37.699955, 55.553162] + [37.699949, 55.553161], + [37.699949, 55.553251], + [37.700039, 55.553251], + [37.700039, 55.553161], + [37.699949, 55.553161] ] ] } @@ -136,11 +136,11 @@ "type": "Polygon", "coordinates": [ [ - [37.699955, 55.553251], - [37.699955, 55.553341], - [37.700044, 55.553341], - [37.700044, 55.553251], - [37.699955, 55.553251] + [37.699949, 55.553251], + [37.699949, 55.553341], + [37.700039, 55.553341], + [37.700039, 55.553251], + [37.699949, 55.553251] ] ] } @@ -152,11 +152,11 @@ "type": "Polygon", "coordinates": [ [ - [37.699955, 55.553341], - [37.699955, 55.553431], - [37.700044, 55.553431], - [37.700044, 55.553341], - [37.699955, 55.553341] + [37.699949, 55.553341], + [37.699949, 55.553431], + [37.700039, 55.553431], + [37.700039, 55.553341], + [37.699949, 55.553341] ] ] } @@ -168,11 +168,11 @@ "type": "Polygon", "coordinates": [ [ - [37.699955, 55.553431], - [37.699955, 55.553521], - [37.700044, 55.553521], - [37.700044, 55.553431], - [37.699955, 55.553431] + [37.699949, 55.553431], + [37.699949, 55.55352], + [37.700039, 55.55352], + [37.700039, 55.553431], + [37.699949, 55.553431] ] ] } @@ -184,11 +184,11 @@ "type": "Polygon", "coordinates": [ [ - [37.699955, 55.553521], - [37.699955, 55.553611], - [37.700044, 55.553611], - [37.700044, 55.553521], - [37.699955, 55.553521] + [37.699949, 55.55352], + [37.699949, 55.55361], + [37.700039, 55.55361], + [37.700039, 55.55352], + [37.699949, 55.55352] ] ] } @@ -200,11 +200,11 @@ "type": "Polygon", "coordinates": [ [ - [37.699955, 55.553611], - [37.699955, 55.5537], - [37.700044, 55.5537], - [37.700044, 55.553611], - [37.699955, 55.553611] + [37.699949, 55.55361], + [37.699949, 55.5537], + [37.700039, 55.5537], + [37.700039, 55.55361], + [37.699949, 55.55361] ] ] } @@ -216,11 +216,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700044, 55.553162], - [37.700044, 55.553251], - [37.700134, 55.553251], - [37.700134, 55.553162], - [37.700044, 55.553162] + [37.700039, 55.553161], + [37.700039, 55.553251], + [37.700129, 55.553251], + [37.700129, 55.553161], + [37.700039, 55.553161] ] ] } @@ -232,11 +232,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700044, 55.553251], - [37.700044, 55.553341], - [37.700134, 55.553341], - [37.700134, 55.553251], - [37.700044, 55.553251] + [37.700039, 55.553251], + [37.700039, 55.553341], + [37.700129, 55.553341], + [37.700129, 55.553251], + [37.700039, 55.553251] ] ] } @@ -248,11 +248,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700044, 55.553341], - [37.700044, 55.553431], - [37.700134, 55.553431], - [37.700134, 55.553341], - [37.700044, 55.553341] + [37.700039, 55.553341], + [37.700039, 55.553431], + [37.700129, 55.553431], + [37.700129, 55.553341], + [37.700039, 55.553341] ] ] } @@ -264,11 +264,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700044, 55.553431], - [37.700044, 55.553521], - [37.700134, 55.553521], - [37.700134, 55.553431], - [37.700044, 55.553431] + [37.700039, 55.553431], + [37.700039, 55.55352], + [37.700129, 55.55352], + [37.700129, 55.553431], + [37.700039, 55.553431] ] ] } @@ -280,11 +280,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700044, 55.553521], - [37.700044, 55.553611], - [37.700134, 55.553611], - [37.700134, 55.553521], - [37.700044, 55.553521] + [37.700039, 55.55352], + [37.700039, 55.55361], + [37.700129, 55.55361], + [37.700129, 55.55352], + [37.700039, 55.55352] ] ] } @@ -296,11 +296,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700044, 55.553611], - [37.700044, 55.5537], - [37.700134, 55.5537], - [37.700134, 55.553611], - [37.700044, 55.553611] + [37.700039, 55.55361], + [37.700039, 55.5537], + [37.700129, 55.5537], + [37.700129, 55.55361], + [37.700039, 55.55361] ] ] } @@ -312,11 +312,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700044, 55.5537], - [37.700044, 55.55379], - [37.700134, 55.55379], - [37.700134, 55.5537], - [37.700044, 55.5537] + [37.700039, 55.5537], + [37.700039, 55.55379], + [37.700129, 55.55379], + [37.700129, 55.5537], + [37.700039, 55.5537] ] ] } @@ -328,11 +328,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700134, 55.553162], - [37.700134, 55.553251], - [37.700224, 55.553251], - [37.700224, 55.553162], - [37.700134, 55.553162] + [37.700129, 55.553161], + [37.700129, 55.553251], + [37.700219, 55.553251], + [37.700219, 55.553161], + [37.700129, 55.553161] ] ] } @@ -344,11 +344,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700134, 55.553251], - [37.700134, 55.553341], - [37.700224, 55.553341], - [37.700224, 55.553251], - [37.700134, 55.553251] + [37.700129, 55.553251], + [37.700129, 55.553341], + [37.700219, 55.553341], + [37.700219, 55.553251], + [37.700129, 55.553251] ] ] } @@ -360,11 +360,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700134, 55.553341], - [37.700134, 55.553431], - [37.700224, 55.553431], - [37.700224, 55.553341], - [37.700134, 55.553341] + [37.700129, 55.553341], + [37.700129, 55.553431], + [37.700219, 55.553431], + [37.700219, 55.553341], + [37.700129, 55.553341] ] ] } @@ -376,11 +376,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700134, 55.553431], - [37.700134, 55.553521], - [37.700224, 55.553521], - [37.700224, 55.553431], - [37.700134, 55.553431] + [37.700129, 55.553431], + [37.700129, 55.55352], + [37.700219, 55.55352], + [37.700219, 55.553431], + [37.700129, 55.553431] ] ] } @@ -392,11 +392,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700134, 55.553521], - [37.700134, 55.553611], - [37.700224, 55.553611], - [37.700224, 55.553521], - [37.700134, 55.553521] + [37.700129, 55.55352], + [37.700129, 55.55361], + [37.700219, 55.55361], + [37.700219, 55.55352], + [37.700129, 55.55352] ] ] } @@ -408,11 +408,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700134, 55.553611], - [37.700134, 55.5537], - [37.700224, 55.5537], - [37.700224, 55.553611], - [37.700134, 55.553611] + [37.700129, 55.55361], + [37.700129, 55.5537], + [37.700219, 55.5537], + [37.700219, 55.55361], + [37.700129, 55.55361] ] ] } @@ -424,11 +424,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700134, 55.5537], - [37.700134, 55.55379], - [37.700224, 55.55379], - [37.700224, 55.5537], - [37.700134, 55.5537] + [37.700129, 55.5537], + [37.700129, 55.55379], + [37.700219, 55.55379], + [37.700219, 55.5537], + [37.700129, 55.5537] ] ] } @@ -440,11 +440,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700224, 55.553072], - [37.700224, 55.553162], - [37.700314, 55.553162], - [37.700314, 55.553072], - [37.700224, 55.553072] + [37.700219, 55.553071], + [37.700219, 55.553161], + [37.700309, 55.553161], + [37.700309, 55.553071], + [37.700219, 55.553071] ] ] } @@ -456,11 +456,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700224, 55.553162], - [37.700224, 55.553251], - [37.700314, 55.553251], - [37.700314, 55.553162], - [37.700224, 55.553162] + [37.700219, 55.553161], + [37.700219, 55.553251], + [37.700309, 55.553251], + [37.700309, 55.553161], + [37.700219, 55.553161] ] ] } @@ -472,11 +472,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700224, 55.553251], - [37.700224, 55.553341], - [37.700314, 55.553341], - [37.700314, 55.553251], - [37.700224, 55.553251] + [37.700219, 55.553251], + [37.700219, 55.553341], + [37.700309, 55.553341], + [37.700309, 55.553251], + [37.700219, 55.553251] ] ] } @@ -488,11 +488,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700224, 55.553341], - [37.700224, 55.553431], - [37.700314, 55.553431], - [37.700314, 55.553341], - [37.700224, 55.553341] + [37.700219, 55.553341], + [37.700219, 55.553431], + [37.700309, 55.553431], + [37.700309, 55.553341], + [37.700219, 55.553341] ] ] } @@ -504,11 +504,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700224, 55.553431], - [37.700224, 55.553521], - [37.700314, 55.553521], - [37.700314, 55.553431], - [37.700224, 55.553431] + [37.700219, 55.553431], + [37.700219, 55.55352], + [37.700309, 55.55352], + [37.700309, 55.553431], + [37.700219, 55.553431] ] ] } @@ -520,11 +520,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700224, 55.553521], - [37.700224, 55.553611], - [37.700314, 55.553611], - [37.700314, 55.553521], - [37.700224, 55.553521] + [37.700219, 55.55352], + [37.700219, 55.55361], + [37.700309, 55.55361], + [37.700309, 55.55352], + [37.700219, 55.55352] ] ] } @@ -536,11 +536,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700224, 55.553611], - [37.700224, 55.5537], - [37.700314, 55.5537], - [37.700314, 55.553611], - [37.700224, 55.553611] + [37.700219, 55.55361], + [37.700219, 55.5537], + [37.700309, 55.5537], + [37.700309, 55.55361], + [37.700219, 55.55361] ] ] } @@ -552,11 +552,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700224, 55.5537], - [37.700224, 55.55379], - [37.700314, 55.55379], - [37.700314, 55.5537], - [37.700224, 55.5537] + [37.700219, 55.5537], + [37.700219, 55.55379], + [37.700309, 55.55379], + [37.700309, 55.5537], + [37.700219, 55.5537] ] ] } @@ -568,11 +568,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700224, 55.55379], - [37.700224, 55.55388], - [37.700314, 55.55388], - [37.700314, 55.55379], - [37.700224, 55.55379] + [37.700219, 55.55379], + [37.700219, 55.55388], + [37.700309, 55.55388], + [37.700309, 55.55379], + [37.700219, 55.55379] ] ] } @@ -584,11 +584,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700314, 55.553072], - [37.700314, 55.553162], - [37.700404, 55.553162], - [37.700404, 55.553072], - [37.700314, 55.553072] + [37.700309, 55.553071], + [37.700309, 55.553161], + [37.700399, 55.553161], + [37.700399, 55.553071], + [37.700309, 55.553071] ] ] } @@ -600,11 +600,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700314, 55.553162], - [37.700314, 55.553251], - [37.700404, 55.553251], - [37.700404, 55.553162], - [37.700314, 55.553162] + [37.700309, 55.553161], + [37.700309, 55.553251], + [37.700399, 55.553251], + [37.700399, 55.553161], + [37.700309, 55.553161] ] ] } @@ -616,11 +616,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700314, 55.553251], - [37.700314, 55.553341], - [37.700404, 55.553341], - [37.700404, 55.553251], - [37.700314, 55.553251] + [37.700309, 55.553251], + [37.700309, 55.553341], + [37.700399, 55.553341], + [37.700399, 55.553251], + [37.700309, 55.553251] ] ] } @@ -632,11 +632,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700314, 55.553341], - [37.700314, 55.553431], - [37.700404, 55.553431], - [37.700404, 55.553341], - [37.700314, 55.553341] + [37.700309, 55.553341], + [37.700309, 55.553431], + [37.700399, 55.553431], + [37.700399, 55.553341], + [37.700309, 55.553341] ] ] } @@ -648,11 +648,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700314, 55.553431], - [37.700314, 55.553521], - [37.700404, 55.553521], - [37.700404, 55.553431], - [37.700314, 55.553431] + [37.700309, 55.553431], + [37.700309, 55.55352], + [37.700399, 55.55352], + [37.700399, 55.553431], + [37.700309, 55.553431] ] ] } @@ -664,11 +664,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700314, 55.553521], - [37.700314, 55.553611], - [37.700404, 55.553611], - [37.700404, 55.553521], - [37.700314, 55.553521] + [37.700309, 55.55352], + [37.700309, 55.55361], + [37.700399, 55.55361], + [37.700399, 55.55352], + [37.700309, 55.55352] ] ] } @@ -680,11 +680,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700314, 55.553611], - [37.700314, 55.5537], - [37.700404, 55.5537], - [37.700404, 55.553611], - [37.700314, 55.553611] + [37.700309, 55.55361], + [37.700309, 55.5537], + [37.700399, 55.5537], + [37.700399, 55.55361], + [37.700309, 55.55361] ] ] } @@ -696,11 +696,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700314, 55.5537], - [37.700314, 55.55379], - [37.700404, 55.55379], - [37.700404, 55.5537], - [37.700314, 55.5537] + [37.700309, 55.5537], + [37.700309, 55.55379], + [37.700399, 55.55379], + [37.700399, 55.5537], + [37.700309, 55.5537] ] ] } @@ -712,11 +712,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700314, 55.55379], - [37.700314, 55.55388], - [37.700404, 55.55388], - [37.700404, 55.55379], - [37.700314, 55.55379] + [37.700309, 55.55379], + [37.700309, 55.55388], + [37.700399, 55.55388], + [37.700399, 55.55379], + [37.700309, 55.55379] ] ] } @@ -728,11 +728,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700404, 55.553072], - [37.700404, 55.553162], - [37.700493, 55.553162], - [37.700493, 55.553072], - [37.700404, 55.553072] + [37.700399, 55.553071], + [37.700399, 55.553161], + [37.700489, 55.553161], + [37.700489, 55.553071], + [37.700399, 55.553071] ] ] } @@ -744,11 +744,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700404, 55.553162], - [37.700404, 55.553251], - [37.700493, 55.553251], - [37.700493, 55.553162], - [37.700404, 55.553162] + [37.700399, 55.553161], + [37.700399, 55.553251], + [37.700489, 55.553251], + [37.700489, 55.553161], + [37.700399, 55.553161] ] ] } @@ -760,11 +760,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700404, 55.553251], - [37.700404, 55.553341], - [37.700493, 55.553341], - [37.700493, 55.553251], - [37.700404, 55.553251] + [37.700399, 55.553251], + [37.700399, 55.553341], + [37.700489, 55.553341], + [37.700489, 55.553251], + [37.700399, 55.553251] ] ] } @@ -776,11 +776,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700404, 55.553341], - [37.700404, 55.553431], - [37.700493, 55.553431], - [37.700493, 55.553341], - [37.700404, 55.553341] + [37.700399, 55.553341], + [37.700399, 55.553431], + [37.700489, 55.553431], + [37.700489, 55.553341], + [37.700399, 55.553341] ] ] } @@ -792,11 +792,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700404, 55.553431], - [37.700404, 55.553521], - [37.700493, 55.553521], - [37.700493, 55.553431], - [37.700404, 55.553431] + [37.700399, 55.553431], + [37.700399, 55.55352], + [37.700489, 55.55352], + [37.700489, 55.553431], + [37.700399, 55.553431] ] ] } @@ -808,11 +808,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700404, 55.553521], - [37.700404, 55.553611], - [37.700493, 55.553611], - [37.700493, 55.553521], - [37.700404, 55.553521] + [37.700399, 55.55352], + [37.700399, 55.55361], + [37.700489, 55.55361], + [37.700489, 55.55352], + [37.700399, 55.55352] ] ] } @@ -824,11 +824,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700404, 55.553611], - [37.700404, 55.5537], - [37.700493, 55.5537], - [37.700493, 55.553611], - [37.700404, 55.553611] + [37.700399, 55.55361], + [37.700399, 55.5537], + [37.700489, 55.5537], + [37.700489, 55.55361], + [37.700399, 55.55361] ] ] } @@ -840,11 +840,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700404, 55.5537], - [37.700404, 55.55379], - [37.700493, 55.55379], - [37.700493, 55.5537], - [37.700404, 55.5537] + [37.700399, 55.5537], + [37.700399, 55.55379], + [37.700489, 55.55379], + [37.700489, 55.5537], + [37.700399, 55.5537] ] ] } @@ -856,11 +856,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700404, 55.55379], - [37.700404, 55.55388], - [37.700493, 55.55388], - [37.700493, 55.55379], - [37.700404, 55.55379] + [37.700399, 55.55379], + [37.700399, 55.55388], + [37.700489, 55.55388], + [37.700489, 55.55379], + [37.700399, 55.55379] ] ] } @@ -872,11 +872,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700493, 55.553072], - [37.700493, 55.553162], - [37.700583, 55.553162], - [37.700583, 55.553072], - [37.700493, 55.553072] + [37.700489, 55.553071], + [37.700489, 55.553161], + [37.700579, 55.553161], + [37.700579, 55.553071], + [37.700489, 55.553071] ] ] } @@ -888,11 +888,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700493, 55.553162], - [37.700493, 55.553251], - [37.700583, 55.553251], - [37.700583, 55.553162], - [37.700493, 55.553162] + [37.700489, 55.553161], + [37.700489, 55.553251], + [37.700579, 55.553251], + [37.700579, 55.553161], + [37.700489, 55.553161] ] ] } @@ -904,11 +904,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700493, 55.553251], - [37.700493, 55.553341], - [37.700583, 55.553341], - [37.700583, 55.553251], - [37.700493, 55.553251] + [37.700489, 55.553251], + [37.700489, 55.553341], + [37.700579, 55.553341], + [37.700579, 55.553251], + [37.700489, 55.553251] ] ] } @@ -920,11 +920,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700493, 55.553341], - [37.700493, 55.553431], - [37.700583, 55.553431], - [37.700583, 55.553341], - [37.700493, 55.553341] + [37.700489, 55.553341], + [37.700489, 55.553431], + [37.700579, 55.553431], + [37.700579, 55.553341], + [37.700489, 55.553341] ] ] } @@ -936,11 +936,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700493, 55.553431], - [37.700493, 55.553521], - [37.700583, 55.553521], - [37.700583, 55.553431], - [37.700493, 55.553431] + [37.700489, 55.553431], + [37.700489, 55.55352], + [37.700579, 55.55352], + [37.700579, 55.553431], + [37.700489, 55.553431] ] ] } @@ -952,11 +952,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700493, 55.553521], - [37.700493, 55.553611], - [37.700583, 55.553611], - [37.700583, 55.553521], - [37.700493, 55.553521] + [37.700489, 55.55352], + [37.700489, 55.55361], + [37.700579, 55.55361], + [37.700579, 55.55352], + [37.700489, 55.55352] ] ] } @@ -968,11 +968,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700493, 55.553611], - [37.700493, 55.5537], - [37.700583, 55.5537], - [37.700583, 55.553611], - [37.700493, 55.553611] + [37.700489, 55.55361], + [37.700489, 55.5537], + [37.700579, 55.5537], + [37.700579, 55.55361], + [37.700489, 55.55361] ] ] } @@ -984,11 +984,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700493, 55.5537], - [37.700493, 55.55379], - [37.700583, 55.55379], - [37.700583, 55.5537], - [37.700493, 55.5537] + [37.700489, 55.5537], + [37.700489, 55.55379], + [37.700579, 55.55379], + [37.700579, 55.5537], + [37.700489, 55.5537] ] ] } @@ -1000,11 +1000,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700493, 55.55379], - [37.700493, 55.55388], - [37.700583, 55.55388], - [37.700583, 55.55379], - [37.700493, 55.55379] + [37.700489, 55.55379], + [37.700489, 55.55388], + [37.700579, 55.55388], + [37.700579, 55.55379], + [37.700489, 55.55379] ] ] } @@ -1016,11 +1016,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700493, 55.55388], - [37.700493, 55.55397], - [37.700583, 55.55397], - [37.700583, 55.55388], - [37.700493, 55.55388] + [37.700489, 55.55388], + [37.700489, 55.55397], + [37.700579, 55.55397], + [37.700579, 55.55388], + [37.700489, 55.55388] ] ] } @@ -1032,11 +1032,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700583, 55.552982], - [37.700583, 55.553072], - [37.700673, 55.553072], - [37.700673, 55.552982], - [37.700583, 55.552982] + [37.700579, 55.552981], + [37.700579, 55.553071], + [37.700668, 55.553071], + [37.700668, 55.552981], + [37.700579, 55.552981] ] ] } @@ -1048,11 +1048,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700583, 55.553072], - [37.700583, 55.553162], - [37.700673, 55.553162], - [37.700673, 55.553072], - [37.700583, 55.553072] + [37.700579, 55.553071], + [37.700579, 55.553161], + [37.700668, 55.553161], + [37.700668, 55.553071], + [37.700579, 55.553071] ] ] } @@ -1064,11 +1064,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700583, 55.553162], - [37.700583, 55.553251], - [37.700673, 55.553251], - [37.700673, 55.553162], - [37.700583, 55.553162] + [37.700579, 55.553161], + [37.700579, 55.553251], + [37.700668, 55.553251], + [37.700668, 55.553161], + [37.700579, 55.553161] ] ] } @@ -1080,11 +1080,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700583, 55.553251], - [37.700583, 55.553341], - [37.700673, 55.553341], - [37.700673, 55.553251], - [37.700583, 55.553251] + [37.700579, 55.553251], + [37.700579, 55.553341], + [37.700668, 55.553341], + [37.700668, 55.553251], + [37.700579, 55.553251] ] ] } @@ -1096,11 +1096,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700583, 55.553341], - [37.700583, 55.553431], - [37.700673, 55.553431], - [37.700673, 55.553341], - [37.700583, 55.553341] + [37.700579, 55.553341], + [37.700579, 55.553431], + [37.700668, 55.553431], + [37.700668, 55.553341], + [37.700579, 55.553341] ] ] } @@ -1112,11 +1112,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700583, 55.553431], - [37.700583, 55.553521], - [37.700673, 55.553521], - [37.700673, 55.553431], - [37.700583, 55.553431] + [37.700579, 55.553431], + [37.700579, 55.55352], + [37.700668, 55.55352], + [37.700668, 55.553431], + [37.700579, 55.553431] ] ] } @@ -1128,11 +1128,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700583, 55.553521], - [37.700583, 55.553611], - [37.700673, 55.553611], - [37.700673, 55.553521], - [37.700583, 55.553521] + [37.700579, 55.55352], + [37.700579, 55.55361], + [37.700668, 55.55361], + [37.700668, 55.55352], + [37.700579, 55.55352] ] ] } @@ -1144,11 +1144,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700583, 55.553611], - [37.700583, 55.5537], - [37.700673, 55.5537], - [37.700673, 55.553611], - [37.700583, 55.553611] + [37.700579, 55.55361], + [37.700579, 55.5537], + [37.700668, 55.5537], + [37.700668, 55.55361], + [37.700579, 55.55361] ] ] } @@ -1160,11 +1160,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700583, 55.5537], - [37.700583, 55.55379], - [37.700673, 55.55379], - [37.700673, 55.5537], - [37.700583, 55.5537] + [37.700579, 55.5537], + [37.700579, 55.55379], + [37.700668, 55.55379], + [37.700668, 55.5537], + [37.700579, 55.5537] ] ] } @@ -1176,11 +1176,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700583, 55.55379], - [37.700583, 55.55388], - [37.700673, 55.55388], - [37.700673, 55.55379], - [37.700583, 55.55379] + [37.700579, 55.55379], + [37.700579, 55.55388], + [37.700668, 55.55388], + [37.700668, 55.55379], + [37.700579, 55.55379] ] ] } @@ -1192,11 +1192,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700583, 55.55388], - [37.700583, 55.55397], - [37.700673, 55.55397], - [37.700673, 55.55388], - [37.700583, 55.55388] + [37.700579, 55.55388], + [37.700579, 55.55397], + [37.700668, 55.55397], + [37.700668, 55.55388], + [37.700579, 55.55388] ] ] } @@ -1208,11 +1208,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700673, 55.552982], - [37.700673, 55.553072], - [37.700763, 55.553072], - [37.700763, 55.552982], - [37.700673, 55.552982] + [37.700668, 55.552981], + [37.700668, 55.553071], + [37.700758, 55.553071], + [37.700758, 55.552981], + [37.700668, 55.552981] ] ] } @@ -1224,11 +1224,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700673, 55.553072], - [37.700673, 55.553162], - [37.700763, 55.553162], - [37.700763, 55.553072], - [37.700673, 55.553072] + [37.700668, 55.553071], + [37.700668, 55.553161], + [37.700758, 55.553161], + [37.700758, 55.553071], + [37.700668, 55.553071] ] ] } @@ -1240,11 +1240,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700673, 55.553162], - [37.700673, 55.553251], - [37.700763, 55.553251], - [37.700763, 55.553162], - [37.700673, 55.553162] + [37.700668, 55.553161], + [37.700668, 55.553251], + [37.700758, 55.553251], + [37.700758, 55.553161], + [37.700668, 55.553161] ] ] } @@ -1256,11 +1256,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700673, 55.553251], - [37.700673, 55.553341], - [37.700763, 55.553341], - [37.700763, 55.553251], - [37.700673, 55.553251] + [37.700668, 55.553251], + [37.700668, 55.553341], + [37.700758, 55.553341], + [37.700758, 55.553251], + [37.700668, 55.553251] ] ] } @@ -1272,11 +1272,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700673, 55.553341], - [37.700673, 55.553431], - [37.700763, 55.553431], - [37.700763, 55.553341], - [37.700673, 55.553341] + [37.700668, 55.553341], + [37.700668, 55.553431], + [37.700758, 55.553431], + [37.700758, 55.553341], + [37.700668, 55.553341] ] ] } @@ -1288,11 +1288,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700673, 55.553431], - [37.700673, 55.553521], - [37.700763, 55.553521], - [37.700763, 55.553431], - [37.700673, 55.553431] + [37.700668, 55.553431], + [37.700668, 55.55352], + [37.700758, 55.55352], + [37.700758, 55.553431], + [37.700668, 55.553431] ] ] } @@ -1304,11 +1304,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700673, 55.553521], - [37.700673, 55.553611], - [37.700763, 55.553611], - [37.700763, 55.553521], - [37.700673, 55.553521] + [37.700668, 55.55352], + [37.700668, 55.55361], + [37.700758, 55.55361], + [37.700758, 55.55352], + [37.700668, 55.55352] ] ] } @@ -1320,11 +1320,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700673, 55.553611], - [37.700673, 55.5537], - [37.700763, 55.5537], - [37.700763, 55.553611], - [37.700673, 55.553611] + [37.700668, 55.55361], + [37.700668, 55.5537], + [37.700758, 55.5537], + [37.700758, 55.55361], + [37.700668, 55.55361] ] ] } @@ -1336,11 +1336,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700673, 55.5537], - [37.700673, 55.55379], - [37.700763, 55.55379], - [37.700763, 55.5537], - [37.700673, 55.5537] + [37.700668, 55.5537], + [37.700668, 55.55379], + [37.700758, 55.55379], + [37.700758, 55.5537], + [37.700668, 55.5537] ] ] } @@ -1352,11 +1352,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700673, 55.55379], - [37.700673, 55.55388], - [37.700763, 55.55388], - [37.700763, 55.55379], - [37.700673, 55.55379] + [37.700668, 55.55379], + [37.700668, 55.55388], + [37.700758, 55.55388], + [37.700758, 55.55379], + [37.700668, 55.55379] ] ] } @@ -1368,11 +1368,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700673, 55.55388], - [37.700673, 55.55397], - [37.700763, 55.55397], - [37.700763, 55.55388], - [37.700673, 55.55388] + [37.700668, 55.55388], + [37.700668, 55.55397], + [37.700758, 55.55397], + [37.700758, 55.55388], + [37.700668, 55.55388] ] ] } @@ -1384,11 +1384,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700763, 55.552982], - [37.700763, 55.553072], - [37.700853, 55.553072], - [37.700853, 55.552982], - [37.700763, 55.552982] + [37.700758, 55.552981], + [37.700758, 55.553071], + [37.700848, 55.553071], + [37.700848, 55.552981], + [37.700758, 55.552981] ] ] } @@ -1400,11 +1400,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700763, 55.553072], - [37.700763, 55.553162], - [37.700853, 55.553162], - [37.700853, 55.553072], - [37.700763, 55.553072] + [37.700758, 55.553071], + [37.700758, 55.553161], + [37.700848, 55.553161], + [37.700848, 55.553071], + [37.700758, 55.553071] ] ] } @@ -1416,11 +1416,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700763, 55.553162], - [37.700763, 55.553251], - [37.700853, 55.553251], - [37.700853, 55.553162], - [37.700763, 55.553162] + [37.700758, 55.553161], + [37.700758, 55.553251], + [37.700848, 55.553251], + [37.700848, 55.553161], + [37.700758, 55.553161] ] ] } @@ -1432,11 +1432,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700763, 55.553251], - [37.700763, 55.553341], - [37.700853, 55.553341], - [37.700853, 55.553251], - [37.700763, 55.553251] + [37.700758, 55.553251], + [37.700758, 55.553341], + [37.700848, 55.553341], + [37.700848, 55.553251], + [37.700758, 55.553251] ] ] } @@ -1448,11 +1448,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700763, 55.553341], - [37.700763, 55.553431], - [37.700853, 55.553431], - [37.700853, 55.553341], - [37.700763, 55.553341] + [37.700758, 55.553341], + [37.700758, 55.553431], + [37.700848, 55.553431], + [37.700848, 55.553341], + [37.700758, 55.553341] ] ] } @@ -1464,11 +1464,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700763, 55.553431], - [37.700763, 55.553521], - [37.700853, 55.553521], - [37.700853, 55.553431], - [37.700763, 55.553431] + [37.700758, 55.553431], + [37.700758, 55.55352], + [37.700848, 55.55352], + [37.700848, 55.553431], + [37.700758, 55.553431] ] ] } @@ -1480,11 +1480,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700763, 55.553521], - [37.700763, 55.553611], - [37.700853, 55.553611], - [37.700853, 55.553521], - [37.700763, 55.553521] + [37.700758, 55.55352], + [37.700758, 55.55361], + [37.700848, 55.55361], + [37.700848, 55.55352], + [37.700758, 55.55352] ] ] } @@ -1496,11 +1496,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700763, 55.553611], - [37.700763, 55.5537], - [37.700853, 55.5537], - [37.700853, 55.553611], - [37.700763, 55.553611] + [37.700758, 55.55361], + [37.700758, 55.5537], + [37.700848, 55.5537], + [37.700848, 55.55361], + [37.700758, 55.55361] ] ] } @@ -1512,11 +1512,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700763, 55.5537], - [37.700763, 55.55379], - [37.700853, 55.55379], - [37.700853, 55.5537], - [37.700763, 55.5537] + [37.700758, 55.5537], + [37.700758, 55.55379], + [37.700848, 55.55379], + [37.700848, 55.5537], + [37.700758, 55.5537] ] ] } @@ -1528,11 +1528,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700763, 55.55379], - [37.700763, 55.55388], - [37.700853, 55.55388], - [37.700853, 55.55379], - [37.700763, 55.55379] + [37.700758, 55.55379], + [37.700758, 55.55388], + [37.700848, 55.55388], + [37.700848, 55.55379], + [37.700758, 55.55379] ] ] } @@ -1544,11 +1544,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700763, 55.55388], - [37.700763, 55.55397], - [37.700853, 55.55397], - [37.700853, 55.55388], - [37.700763, 55.55388] + [37.700758, 55.55388], + [37.700758, 55.55397], + [37.700848, 55.55397], + [37.700848, 55.55388], + [37.700758, 55.55388] ] ] } @@ -1560,11 +1560,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700853, 55.552982], - [37.700853, 55.553072], - [37.700943, 55.553072], - [37.700943, 55.552982], - [37.700853, 55.552982] + [37.700848, 55.552981], + [37.700848, 55.553071], + [37.700938, 55.553071], + [37.700938, 55.552981], + [37.700848, 55.552981] ] ] } @@ -1576,11 +1576,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700853, 55.553072], - [37.700853, 55.553162], - [37.700943, 55.553162], - [37.700943, 55.553072], - [37.700853, 55.553072] + [37.700848, 55.553071], + [37.700848, 55.553161], + [37.700938, 55.553161], + [37.700938, 55.553071], + [37.700848, 55.553071] ] ] } @@ -1592,11 +1592,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700853, 55.553162], - [37.700853, 55.553251], - [37.700943, 55.553251], - [37.700943, 55.553162], - [37.700853, 55.553162] + [37.700848, 55.553161], + [37.700848, 55.553251], + [37.700938, 55.553251], + [37.700938, 55.553161], + [37.700848, 55.553161] ] ] } @@ -1608,11 +1608,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700853, 55.553251], - [37.700853, 55.553341], - [37.700943, 55.553341], - [37.700943, 55.553251], - [37.700853, 55.553251] + [37.700848, 55.553251], + [37.700848, 55.553341], + [37.700938, 55.553341], + [37.700938, 55.553251], + [37.700848, 55.553251] ] ] } @@ -1624,11 +1624,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700853, 55.553341], - [37.700853, 55.553431], - [37.700943, 55.553431], - [37.700943, 55.553341], - [37.700853, 55.553341] + [37.700848, 55.553341], + [37.700848, 55.553431], + [37.700938, 55.553431], + [37.700938, 55.553341], + [37.700848, 55.553341] ] ] } @@ -1640,11 +1640,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700853, 55.553431], - [37.700853, 55.553521], - [37.700943, 55.553521], - [37.700943, 55.553431], - [37.700853, 55.553431] + [37.700848, 55.553431], + [37.700848, 55.55352], + [37.700938, 55.55352], + [37.700938, 55.553431], + [37.700848, 55.553431] ] ] } @@ -1656,11 +1656,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700853, 55.553521], - [37.700853, 55.553611], - [37.700943, 55.553611], - [37.700943, 55.553521], - [37.700853, 55.553521] + [37.700848, 55.55352], + [37.700848, 55.55361], + [37.700938, 55.55361], + [37.700938, 55.55352], + [37.700848, 55.55352] ] ] } @@ -1672,11 +1672,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700853, 55.553611], - [37.700853, 55.5537], - [37.700943, 55.5537], - [37.700943, 55.553611], - [37.700853, 55.553611] + [37.700848, 55.55361], + [37.700848, 55.5537], + [37.700938, 55.5537], + [37.700938, 55.55361], + [37.700848, 55.55361] ] ] } @@ -1688,11 +1688,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700853, 55.5537], - [37.700853, 55.55379], - [37.700943, 55.55379], - [37.700943, 55.5537], - [37.700853, 55.5537] + [37.700848, 55.5537], + [37.700848, 55.55379], + [37.700938, 55.55379], + [37.700938, 55.5537], + [37.700848, 55.5537] ] ] } @@ -1704,11 +1704,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700853, 55.55379], - [37.700853, 55.55388], - [37.700943, 55.55388], - [37.700943, 55.55379], - [37.700853, 55.55379] + [37.700848, 55.55379], + [37.700848, 55.55388], + [37.700938, 55.55388], + [37.700938, 55.55379], + [37.700848, 55.55379] ] ] } @@ -1720,11 +1720,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700853, 55.55388], - [37.700853, 55.55397], - [37.700943, 55.55397], - [37.700943, 55.55388], - [37.700853, 55.55388] + [37.700848, 55.55388], + [37.700848, 55.55397], + [37.700938, 55.55397], + [37.700938, 55.55388], + [37.700848, 55.55388] ] ] } @@ -1736,11 +1736,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700853, 55.55397], - [37.700853, 55.55406], - [37.700943, 55.55406], - [37.700943, 55.55397], - [37.700853, 55.55397] + [37.700848, 55.55397], + [37.700848, 55.55406], + [37.700938, 55.55406], + [37.700938, 55.55397], + [37.700848, 55.55397] ] ] } @@ -1752,11 +1752,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700943, 55.552892], - [37.700943, 55.552982], - [37.701032, 55.552982], - [37.701032, 55.552892], - [37.700943, 55.552892] + [37.700938, 55.552891], + [37.700938, 55.552981], + [37.701028, 55.552981], + [37.701028, 55.552891], + [37.700938, 55.552891] ] ] } @@ -1768,11 +1768,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700943, 55.552982], - [37.700943, 55.553072], - [37.701032, 55.553072], - [37.701032, 55.552982], - [37.700943, 55.552982] + [37.700938, 55.552981], + [37.700938, 55.553071], + [37.701028, 55.553071], + [37.701028, 55.552981], + [37.700938, 55.552981] ] ] } @@ -1784,11 +1784,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700943, 55.553072], - [37.700943, 55.553162], - [37.701032, 55.553162], - [37.701032, 55.553072], - [37.700943, 55.553072] + [37.700938, 55.553071], + [37.700938, 55.553161], + [37.701028, 55.553161], + [37.701028, 55.553071], + [37.700938, 55.553071] ] ] } @@ -1800,11 +1800,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700943, 55.553162], - [37.700943, 55.553251], - [37.701032, 55.553251], - [37.701032, 55.553162], - [37.700943, 55.553162] + [37.700938, 55.553161], + [37.700938, 55.553251], + [37.701028, 55.553251], + [37.701028, 55.553161], + [37.700938, 55.553161] ] ] } @@ -1816,11 +1816,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700943, 55.553251], - [37.700943, 55.553341], - [37.701032, 55.553341], - [37.701032, 55.553251], - [37.700943, 55.553251] + [37.700938, 55.553251], + [37.700938, 55.553341], + [37.701028, 55.553341], + [37.701028, 55.553251], + [37.700938, 55.553251] ] ] } @@ -1832,11 +1832,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700943, 55.553341], - [37.700943, 55.553431], - [37.701032, 55.553431], - [37.701032, 55.553341], - [37.700943, 55.553341] + [37.700938, 55.553341], + [37.700938, 55.553431], + [37.701028, 55.553431], + [37.701028, 55.553341], + [37.700938, 55.553341] ] ] } @@ -1848,11 +1848,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700943, 55.553431], - [37.700943, 55.553521], - [37.701032, 55.553521], - [37.701032, 55.553431], - [37.700943, 55.553431] + [37.700938, 55.553431], + [37.700938, 55.55352], + [37.701028, 55.55352], + [37.701028, 55.553431], + [37.700938, 55.553431] ] ] } @@ -1864,11 +1864,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700943, 55.553521], - [37.700943, 55.553611], - [37.701032, 55.553611], - [37.701032, 55.553521], - [37.700943, 55.553521] + [37.700938, 55.55352], + [37.700938, 55.55361], + [37.701028, 55.55361], + [37.701028, 55.55352], + [37.700938, 55.55352] ] ] } @@ -1880,11 +1880,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700943, 55.553611], - [37.700943, 55.5537], - [37.701032, 55.5537], - [37.701032, 55.553611], - [37.700943, 55.553611] + [37.700938, 55.55361], + [37.700938, 55.5537], + [37.701028, 55.5537], + [37.701028, 55.55361], + [37.700938, 55.55361] ] ] } @@ -1896,11 +1896,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700943, 55.5537], - [37.700943, 55.55379], - [37.701032, 55.55379], - [37.701032, 55.5537], - [37.700943, 55.5537] + [37.700938, 55.5537], + [37.700938, 55.55379], + [37.701028, 55.55379], + [37.701028, 55.5537], + [37.700938, 55.5537] ] ] } @@ -1912,11 +1912,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700943, 55.55379], - [37.700943, 55.55388], - [37.701032, 55.55388], - [37.701032, 55.55379], - [37.700943, 55.55379] + [37.700938, 55.55379], + [37.700938, 55.55388], + [37.701028, 55.55388], + [37.701028, 55.55379], + [37.700938, 55.55379] ] ] } @@ -1928,11 +1928,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700943, 55.55388], - [37.700943, 55.55397], - [37.701032, 55.55397], - [37.701032, 55.55388], - [37.700943, 55.55388] + [37.700938, 55.55388], + [37.700938, 55.55397], + [37.701028, 55.55397], + [37.701028, 55.55388], + [37.700938, 55.55388] ] ] } @@ -1944,11 +1944,11 @@ "type": "Polygon", "coordinates": [ [ - [37.700943, 55.55397], - [37.700943, 55.55406], - [37.701032, 55.55406], - [37.701032, 55.55397], - [37.700943, 55.55397] + [37.700938, 55.55397], + [37.700938, 55.55406], + [37.701028, 55.55406], + [37.701028, 55.55397], + [37.700938, 55.55397] ] ] } @@ -1960,11 +1960,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701032, 55.552892], - [37.701032, 55.552982], - [37.701122, 55.552982], - [37.701122, 55.552892], - [37.701032, 55.552892] + [37.701028, 55.552891], + [37.701028, 55.552981], + [37.701118, 55.552981], + [37.701118, 55.552891], + [37.701028, 55.552891] ] ] } @@ -1976,11 +1976,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701032, 55.552982], - [37.701032, 55.553072], - [37.701122, 55.553072], - [37.701122, 55.552982], - [37.701032, 55.552982] + [37.701028, 55.552981], + [37.701028, 55.553071], + [37.701118, 55.553071], + [37.701118, 55.552981], + [37.701028, 55.552981] ] ] } @@ -1992,11 +1992,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701032, 55.553072], - [37.701032, 55.553162], - [37.701122, 55.553162], - [37.701122, 55.553072], - [37.701032, 55.553072] + [37.701028, 55.553071], + [37.701028, 55.553161], + [37.701118, 55.553161], + [37.701118, 55.553071], + [37.701028, 55.553071] ] ] } @@ -2008,11 +2008,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701032, 55.553162], - [37.701032, 55.553251], - [37.701122, 55.553251], - [37.701122, 55.553162], - [37.701032, 55.553162] + [37.701028, 55.553161], + [37.701028, 55.553251], + [37.701118, 55.553251], + [37.701118, 55.553161], + [37.701028, 55.553161] ] ] } @@ -2024,11 +2024,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701032, 55.553251], - [37.701032, 55.553341], - [37.701122, 55.553341], - [37.701122, 55.553251], - [37.701032, 55.553251] + [37.701028, 55.553251], + [37.701028, 55.553341], + [37.701118, 55.553341], + [37.701118, 55.553251], + [37.701028, 55.553251] ] ] } @@ -2040,11 +2040,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701032, 55.553341], - [37.701032, 55.553431], - [37.701122, 55.553431], - [37.701122, 55.553341], - [37.701032, 55.553341] + [37.701028, 55.553341], + [37.701028, 55.553431], + [37.701118, 55.553431], + [37.701118, 55.553341], + [37.701028, 55.553341] ] ] } @@ -2056,11 +2056,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701032, 55.553431], - [37.701032, 55.553521], - [37.701122, 55.553521], - [37.701122, 55.553431], - [37.701032, 55.553431] + [37.701028, 55.553431], + [37.701028, 55.55352], + [37.701118, 55.55352], + [37.701118, 55.553431], + [37.701028, 55.553431] ] ] } @@ -2072,11 +2072,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701032, 55.553521], - [37.701032, 55.553611], - [37.701122, 55.553611], - [37.701122, 55.553521], - [37.701032, 55.553521] + [37.701028, 55.55352], + [37.701028, 55.55361], + [37.701118, 55.55361], + [37.701118, 55.55352], + [37.701028, 55.55352] ] ] } @@ -2088,11 +2088,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701032, 55.553611], - [37.701032, 55.5537], - [37.701122, 55.5537], - [37.701122, 55.553611], - [37.701032, 55.553611] + [37.701028, 55.55361], + [37.701028, 55.5537], + [37.701118, 55.5537], + [37.701118, 55.55361], + [37.701028, 55.55361] ] ] } @@ -2104,11 +2104,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701032, 55.5537], - [37.701032, 55.55379], - [37.701122, 55.55379], - [37.701122, 55.5537], - [37.701032, 55.5537] + [37.701028, 55.5537], + [37.701028, 55.55379], + [37.701118, 55.55379], + [37.701118, 55.5537], + [37.701028, 55.5537] ] ] } @@ -2120,11 +2120,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701032, 55.55379], - [37.701032, 55.55388], - [37.701122, 55.55388], - [37.701122, 55.55379], - [37.701032, 55.55379] + [37.701028, 55.55379], + [37.701028, 55.55388], + [37.701118, 55.55388], + [37.701118, 55.55379], + [37.701028, 55.55379] ] ] } @@ -2136,11 +2136,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701032, 55.55388], - [37.701032, 55.55397], - [37.701122, 55.55397], - [37.701122, 55.55388], - [37.701032, 55.55388] + [37.701028, 55.55388], + [37.701028, 55.55397], + [37.701118, 55.55397], + [37.701118, 55.55388], + [37.701028, 55.55388] ] ] } @@ -2152,11 +2152,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701032, 55.55397], - [37.701032, 55.55406], - [37.701122, 55.55406], - [37.701122, 55.55397], - [37.701032, 55.55397] + [37.701028, 55.55397], + [37.701028, 55.55406], + [37.701118, 55.55406], + [37.701118, 55.55397], + [37.701028, 55.55397] ] ] } @@ -2168,11 +2168,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701122, 55.552892], - [37.701122, 55.552982], - [37.701212, 55.552982], - [37.701212, 55.552892], - [37.701122, 55.552892] + [37.701118, 55.552891], + [37.701118, 55.552981], + [37.701208, 55.552981], + [37.701208, 55.552891], + [37.701118, 55.552891] ] ] } @@ -2184,11 +2184,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701122, 55.552982], - [37.701122, 55.553072], - [37.701212, 55.553072], - [37.701212, 55.552982], - [37.701122, 55.552982] + [37.701118, 55.552981], + [37.701118, 55.553071], + [37.701208, 55.553071], + [37.701208, 55.552981], + [37.701118, 55.552981] ] ] } @@ -2200,11 +2200,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701122, 55.553072], - [37.701122, 55.553162], - [37.701212, 55.553162], - [37.701212, 55.553072], - [37.701122, 55.553072] + [37.701118, 55.553071], + [37.701118, 55.553161], + [37.701208, 55.553161], + [37.701208, 55.553071], + [37.701118, 55.553071] ] ] } @@ -2216,11 +2216,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701122, 55.553162], - [37.701122, 55.553251], - [37.701212, 55.553251], - [37.701212, 55.553162], - [37.701122, 55.553162] + [37.701118, 55.553161], + [37.701118, 55.553251], + [37.701208, 55.553251], + [37.701208, 55.553161], + [37.701118, 55.553161] ] ] } @@ -2232,11 +2232,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701122, 55.553251], - [37.701122, 55.553341], - [37.701212, 55.553341], - [37.701212, 55.553251], - [37.701122, 55.553251] + [37.701118, 55.553251], + [37.701118, 55.553341], + [37.701208, 55.553341], + [37.701208, 55.553251], + [37.701118, 55.553251] ] ] } @@ -2248,11 +2248,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701122, 55.553341], - [37.701122, 55.553431], - [37.701212, 55.553431], - [37.701212, 55.553341], - [37.701122, 55.553341] + [37.701118, 55.553341], + [37.701118, 55.553431], + [37.701208, 55.553431], + [37.701208, 55.553341], + [37.701118, 55.553341] ] ] } @@ -2264,11 +2264,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701122, 55.553431], - [37.701122, 55.553521], - [37.701212, 55.553521], - [37.701212, 55.553431], - [37.701122, 55.553431] + [37.701118, 55.553431], + [37.701118, 55.55352], + [37.701208, 55.55352], + [37.701208, 55.553431], + [37.701118, 55.553431] ] ] } @@ -2280,11 +2280,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701122, 55.553521], - [37.701122, 55.553611], - [37.701212, 55.553611], - [37.701212, 55.553521], - [37.701122, 55.553521] + [37.701118, 55.55352], + [37.701118, 55.55361], + [37.701208, 55.55361], + [37.701208, 55.55352], + [37.701118, 55.55352] ] ] } @@ -2296,11 +2296,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701122, 55.553611], - [37.701122, 55.5537], - [37.701212, 55.5537], - [37.701212, 55.553611], - [37.701122, 55.553611] + [37.701118, 55.55361], + [37.701118, 55.5537], + [37.701208, 55.5537], + [37.701208, 55.55361], + [37.701118, 55.55361] ] ] } @@ -2312,11 +2312,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701122, 55.5537], - [37.701122, 55.55379], - [37.701212, 55.55379], - [37.701212, 55.5537], - [37.701122, 55.5537] + [37.701118, 55.5537], + [37.701118, 55.55379], + [37.701208, 55.55379], + [37.701208, 55.5537], + [37.701118, 55.5537] ] ] } @@ -2328,11 +2328,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701122, 55.55379], - [37.701122, 55.55388], - [37.701212, 55.55388], - [37.701212, 55.55379], - [37.701122, 55.55379] + [37.701118, 55.55379], + [37.701118, 55.55388], + [37.701208, 55.55388], + [37.701208, 55.55379], + [37.701118, 55.55379] ] ] } @@ -2344,11 +2344,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701122, 55.55388], - [37.701122, 55.55397], - [37.701212, 55.55397], - [37.701212, 55.55388], - [37.701122, 55.55388] + [37.701118, 55.55388], + [37.701118, 55.55397], + [37.701208, 55.55397], + [37.701208, 55.55388], + [37.701118, 55.55388] ] ] } @@ -2360,11 +2360,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701122, 55.55397], - [37.701122, 55.55406], - [37.701212, 55.55406], - [37.701212, 55.55397], - [37.701122, 55.55397] + [37.701118, 55.55397], + [37.701118, 55.55406], + [37.701208, 55.55406], + [37.701208, 55.55397], + [37.701118, 55.55397] ] ] } @@ -2376,11 +2376,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701212, 55.552802], - [37.701212, 55.552892], - [37.701302, 55.552892], - [37.701302, 55.552802], - [37.701212, 55.552802] + [37.701208, 55.552801], + [37.701208, 55.552891], + [37.701298, 55.552891], + [37.701298, 55.552801], + [37.701208, 55.552801] ] ] } @@ -2392,11 +2392,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701212, 55.552892], - [37.701212, 55.552982], - [37.701302, 55.552982], - [37.701302, 55.552892], - [37.701212, 55.552892] + [37.701208, 55.552891], + [37.701208, 55.552981], + [37.701298, 55.552981], + [37.701298, 55.552891], + [37.701208, 55.552891] ] ] } @@ -2408,11 +2408,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701212, 55.552982], - [37.701212, 55.553072], - [37.701302, 55.553072], - [37.701302, 55.552982], - [37.701212, 55.552982] + [37.701208, 55.552981], + [37.701208, 55.553071], + [37.701298, 55.553071], + [37.701298, 55.552981], + [37.701208, 55.552981] ] ] } @@ -2424,11 +2424,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701212, 55.553072], - [37.701212, 55.553162], - [37.701302, 55.553162], - [37.701302, 55.553072], - [37.701212, 55.553072] + [37.701208, 55.553071], + [37.701208, 55.553161], + [37.701298, 55.553161], + [37.701298, 55.553071], + [37.701208, 55.553071] ] ] } @@ -2440,11 +2440,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701212, 55.553162], - [37.701212, 55.553251], - [37.701302, 55.553251], - [37.701302, 55.553162], - [37.701212, 55.553162] + [37.701208, 55.553161], + [37.701208, 55.553251], + [37.701298, 55.553251], + [37.701298, 55.553161], + [37.701208, 55.553161] ] ] } @@ -2456,11 +2456,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701212, 55.553251], - [37.701212, 55.553341], - [37.701302, 55.553341], - [37.701302, 55.553251], - [37.701212, 55.553251] + [37.701208, 55.553251], + [37.701208, 55.553341], + [37.701298, 55.553341], + [37.701298, 55.553251], + [37.701208, 55.553251] ] ] } @@ -2472,11 +2472,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701212, 55.553341], - [37.701212, 55.553431], - [37.701302, 55.553431], - [37.701302, 55.553341], - [37.701212, 55.553341] + [37.701208, 55.553341], + [37.701208, 55.553431], + [37.701298, 55.553431], + [37.701298, 55.553341], + [37.701208, 55.553341] ] ] } @@ -2488,11 +2488,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701212, 55.553431], - [37.701212, 55.553521], - [37.701302, 55.553521], - [37.701302, 55.553431], - [37.701212, 55.553431] + [37.701208, 55.553431], + [37.701208, 55.55352], + [37.701298, 55.55352], + [37.701298, 55.553431], + [37.701208, 55.553431] ] ] } @@ -2504,11 +2504,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701212, 55.553521], - [37.701212, 55.553611], - [37.701302, 55.553611], - [37.701302, 55.553521], - [37.701212, 55.553521] + [37.701208, 55.55352], + [37.701208, 55.55361], + [37.701298, 55.55361], + [37.701298, 55.55352], + [37.701208, 55.55352] ] ] } @@ -2520,11 +2520,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701212, 55.553611], - [37.701212, 55.5537], - [37.701302, 55.5537], - [37.701302, 55.553611], - [37.701212, 55.553611] + [37.701208, 55.55361], + [37.701208, 55.5537], + [37.701298, 55.5537], + [37.701298, 55.55361], + [37.701208, 55.55361] ] ] } @@ -2536,11 +2536,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701212, 55.5537], - [37.701212, 55.55379], - [37.701302, 55.55379], - [37.701302, 55.5537], - [37.701212, 55.5537] + [37.701208, 55.5537], + [37.701208, 55.55379], + [37.701298, 55.55379], + [37.701298, 55.5537], + [37.701208, 55.5537] ] ] } @@ -2552,11 +2552,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701212, 55.55379], - [37.701212, 55.55388], - [37.701302, 55.55388], - [37.701302, 55.55379], - [37.701212, 55.55379] + [37.701208, 55.55379], + [37.701208, 55.55388], + [37.701298, 55.55388], + [37.701298, 55.55379], + [37.701208, 55.55379] ] ] } @@ -2568,11 +2568,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701212, 55.55388], - [37.701212, 55.55397], - [37.701302, 55.55397], - [37.701302, 55.55388], - [37.701212, 55.55388] + [37.701208, 55.55388], + [37.701208, 55.55397], + [37.701298, 55.55397], + [37.701298, 55.55388], + [37.701208, 55.55388] ] ] } @@ -2584,11 +2584,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701212, 55.55397], - [37.701212, 55.55406], - [37.701302, 55.55406], - [37.701302, 55.55397], - [37.701212, 55.55397] + [37.701208, 55.55397], + [37.701208, 55.55406], + [37.701298, 55.55406], + [37.701298, 55.55397], + [37.701208, 55.55397] ] ] } @@ -2600,11 +2600,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701212, 55.55406], - [37.701212, 55.55415], - [37.701302, 55.55415], - [37.701302, 55.55406], - [37.701212, 55.55406] + [37.701208, 55.55406], + [37.701208, 55.55415], + [37.701298, 55.55415], + [37.701298, 55.55406], + [37.701208, 55.55406] ] ] } @@ -2616,11 +2616,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701302, 55.552802], - [37.701302, 55.552892], - [37.701392, 55.552892], - [37.701392, 55.552802], - [37.701302, 55.552802] + [37.701298, 55.552801], + [37.701298, 55.552891], + [37.701388, 55.552891], + [37.701388, 55.552801], + [37.701298, 55.552801] ] ] } @@ -2632,11 +2632,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701302, 55.552892], - [37.701302, 55.552982], - [37.701392, 55.552982], - [37.701392, 55.552892], - [37.701302, 55.552892] + [37.701298, 55.552891], + [37.701298, 55.552981], + [37.701388, 55.552981], + [37.701388, 55.552891], + [37.701298, 55.552891] ] ] } @@ -2648,11 +2648,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701302, 55.552982], - [37.701302, 55.553072], - [37.701392, 55.553072], - [37.701392, 55.552982], - [37.701302, 55.552982] + [37.701298, 55.552981], + [37.701298, 55.553071], + [37.701388, 55.553071], + [37.701388, 55.552981], + [37.701298, 55.552981] ] ] } @@ -2664,11 +2664,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701302, 55.553072], - [37.701302, 55.553162], - [37.701392, 55.553162], - [37.701392, 55.553072], - [37.701302, 55.553072] + [37.701298, 55.553071], + [37.701298, 55.553161], + [37.701388, 55.553161], + [37.701388, 55.553071], + [37.701298, 55.553071] ] ] } @@ -2680,11 +2680,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701302, 55.553162], - [37.701302, 55.553251], - [37.701392, 55.553251], - [37.701392, 55.553162], - [37.701302, 55.553162] + [37.701298, 55.553161], + [37.701298, 55.553251], + [37.701388, 55.553251], + [37.701388, 55.553161], + [37.701298, 55.553161] ] ] } @@ -2696,11 +2696,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701302, 55.553251], - [37.701302, 55.553341], - [37.701392, 55.553341], - [37.701392, 55.553251], - [37.701302, 55.553251] + [37.701298, 55.553251], + [37.701298, 55.553341], + [37.701388, 55.553341], + [37.701388, 55.553251], + [37.701298, 55.553251] ] ] } @@ -2712,11 +2712,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701302, 55.553341], - [37.701302, 55.553431], - [37.701392, 55.553431], - [37.701392, 55.553341], - [37.701302, 55.553341] + [37.701298, 55.553341], + [37.701298, 55.553431], + [37.701388, 55.553431], + [37.701388, 55.553341], + [37.701298, 55.553341] ] ] } @@ -2728,11 +2728,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701302, 55.553431], - [37.701302, 55.553521], - [37.701392, 55.553521], - [37.701392, 55.553431], - [37.701302, 55.553431] + [37.701298, 55.553431], + [37.701298, 55.55352], + [37.701388, 55.55352], + [37.701388, 55.553431], + [37.701298, 55.553431] ] ] } @@ -2744,11 +2744,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701302, 55.553521], - [37.701302, 55.553611], - [37.701392, 55.553611], - [37.701392, 55.553521], - [37.701302, 55.553521] + [37.701298, 55.55352], + [37.701298, 55.55361], + [37.701388, 55.55361], + [37.701388, 55.55352], + [37.701298, 55.55352] ] ] } @@ -2760,11 +2760,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701302, 55.553611], - [37.701302, 55.5537], - [37.701392, 55.5537], - [37.701392, 55.553611], - [37.701302, 55.553611] + [37.701298, 55.55361], + [37.701298, 55.5537], + [37.701388, 55.5537], + [37.701388, 55.55361], + [37.701298, 55.55361] ] ] } @@ -2776,11 +2776,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701302, 55.5537], - [37.701302, 55.55379], - [37.701392, 55.55379], - [37.701392, 55.5537], - [37.701302, 55.5537] + [37.701298, 55.5537], + [37.701298, 55.55379], + [37.701388, 55.55379], + [37.701388, 55.5537], + [37.701298, 55.5537] ] ] } @@ -2792,11 +2792,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701302, 55.55379], - [37.701302, 55.55388], - [37.701392, 55.55388], - [37.701392, 55.55379], - [37.701302, 55.55379] + [37.701298, 55.55379], + [37.701298, 55.55388], + [37.701388, 55.55388], + [37.701388, 55.55379], + [37.701298, 55.55379] ] ] } @@ -2808,11 +2808,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701302, 55.55388], - [37.701302, 55.55397], - [37.701392, 55.55397], - [37.701392, 55.55388], - [37.701302, 55.55388] + [37.701298, 55.55388], + [37.701298, 55.55397], + [37.701388, 55.55397], + [37.701388, 55.55388], + [37.701298, 55.55388] ] ] } @@ -2824,11 +2824,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701302, 55.55397], - [37.701302, 55.55406], - [37.701392, 55.55406], - [37.701392, 55.55397], - [37.701302, 55.55397] + [37.701298, 55.55397], + [37.701298, 55.55406], + [37.701388, 55.55406], + [37.701388, 55.55397], + [37.701298, 55.55397] ] ] } @@ -2840,11 +2840,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701302, 55.55406], - [37.701302, 55.55415], - [37.701392, 55.55415], - [37.701392, 55.55406], - [37.701302, 55.55406] + [37.701298, 55.55406], + [37.701298, 55.55415], + [37.701388, 55.55415], + [37.701388, 55.55406], + [37.701298, 55.55406] ] ] } @@ -2856,11 +2856,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701392, 55.552802], - [37.701392, 55.552892], - [37.701482, 55.552892], - [37.701482, 55.552802], - [37.701392, 55.552802] + [37.701388, 55.552801], + [37.701388, 55.552891], + [37.701478, 55.552891], + [37.701478, 55.552801], + [37.701388, 55.552801] ] ] } @@ -2872,11 +2872,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701392, 55.552892], - [37.701392, 55.552982], - [37.701482, 55.552982], - [37.701482, 55.552892], - [37.701392, 55.552892] + [37.701388, 55.552891], + [37.701388, 55.552981], + [37.701478, 55.552981], + [37.701478, 55.552891], + [37.701388, 55.552891] ] ] } @@ -2888,11 +2888,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701392, 55.552982], - [37.701392, 55.553072], - [37.701482, 55.553072], - [37.701482, 55.552982], - [37.701392, 55.552982] + [37.701388, 55.552981], + [37.701388, 55.553071], + [37.701478, 55.553071], + [37.701478, 55.552981], + [37.701388, 55.552981] ] ] } @@ -2904,11 +2904,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701392, 55.553072], - [37.701392, 55.553162], - [37.701482, 55.553162], - [37.701482, 55.553072], - [37.701392, 55.553072] + [37.701388, 55.553071], + [37.701388, 55.553161], + [37.701478, 55.553161], + [37.701478, 55.553071], + [37.701388, 55.553071] ] ] } @@ -2920,11 +2920,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701392, 55.553162], - [37.701392, 55.553251], - [37.701482, 55.553251], - [37.701482, 55.553162], - [37.701392, 55.553162] + [37.701388, 55.553161], + [37.701388, 55.553251], + [37.701478, 55.553251], + [37.701478, 55.553161], + [37.701388, 55.553161] ] ] } @@ -2936,11 +2936,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701392, 55.553251], - [37.701392, 55.553341], - [37.701482, 55.553341], - [37.701482, 55.553251], - [37.701392, 55.553251] + [37.701388, 55.553251], + [37.701388, 55.553341], + [37.701478, 55.553341], + [37.701478, 55.553251], + [37.701388, 55.553251] ] ] } @@ -2952,11 +2952,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701392, 55.553341], - [37.701392, 55.553431], - [37.701482, 55.553431], - [37.701482, 55.553341], - [37.701392, 55.553341] + [37.701388, 55.553341], + [37.701388, 55.553431], + [37.701478, 55.553431], + [37.701478, 55.553341], + [37.701388, 55.553341] ] ] } @@ -2968,11 +2968,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701392, 55.553431], - [37.701392, 55.553521], - [37.701482, 55.553521], - [37.701482, 55.553431], - [37.701392, 55.553431] + [37.701388, 55.553431], + [37.701388, 55.55352], + [37.701478, 55.55352], + [37.701478, 55.553431], + [37.701388, 55.553431] ] ] } @@ -2984,11 +2984,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701392, 55.553521], - [37.701392, 55.553611], - [37.701482, 55.553611], - [37.701482, 55.553521], - [37.701392, 55.553521] + [37.701388, 55.55352], + [37.701388, 55.55361], + [37.701478, 55.55361], + [37.701478, 55.55352], + [37.701388, 55.55352] ] ] } @@ -3000,11 +3000,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701392, 55.553611], - [37.701392, 55.5537], - [37.701482, 55.5537], - [37.701482, 55.553611], - [37.701392, 55.553611] + [37.701388, 55.55361], + [37.701388, 55.5537], + [37.701478, 55.5537], + [37.701478, 55.55361], + [37.701388, 55.55361] ] ] } @@ -3016,11 +3016,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701392, 55.5537], - [37.701392, 55.55379], - [37.701482, 55.55379], - [37.701482, 55.5537], - [37.701392, 55.5537] + [37.701388, 55.5537], + [37.701388, 55.55379], + [37.701478, 55.55379], + [37.701478, 55.5537], + [37.701388, 55.5537] ] ] } @@ -3032,11 +3032,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701392, 55.55379], - [37.701392, 55.55388], - [37.701482, 55.55388], - [37.701482, 55.55379], - [37.701392, 55.55379] + [37.701388, 55.55379], + [37.701388, 55.55388], + [37.701478, 55.55388], + [37.701478, 55.55379], + [37.701388, 55.55379] ] ] } @@ -3048,11 +3048,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701392, 55.55388], - [37.701392, 55.55397], - [37.701482, 55.55397], - [37.701482, 55.55388], - [37.701392, 55.55388] + [37.701388, 55.55388], + [37.701388, 55.55397], + [37.701478, 55.55397], + [37.701478, 55.55388], + [37.701388, 55.55388] ] ] } @@ -3064,11 +3064,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701392, 55.55397], - [37.701392, 55.55406], - [37.701482, 55.55406], - [37.701482, 55.55397], - [37.701392, 55.55397] + [37.701388, 55.55397], + [37.701388, 55.55406], + [37.701478, 55.55406], + [37.701478, 55.55397], + [37.701388, 55.55397] ] ] } @@ -3080,11 +3080,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701392, 55.55406], - [37.701392, 55.55415], - [37.701482, 55.55415], - [37.701482, 55.55406], - [37.701392, 55.55406] + [37.701388, 55.55406], + [37.701388, 55.55415], + [37.701478, 55.55415], + [37.701478, 55.55406], + [37.701388, 55.55406] ] ] } @@ -3096,11 +3096,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701482, 55.552802], - [37.701482, 55.552892], - [37.701571, 55.552892], - [37.701571, 55.552802], - [37.701482, 55.552802] + [37.701478, 55.552801], + [37.701478, 55.552891], + [37.701568, 55.552891], + [37.701568, 55.552801], + [37.701478, 55.552801] ] ] } @@ -3112,11 +3112,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701482, 55.552892], - [37.701482, 55.552982], - [37.701571, 55.552982], - [37.701571, 55.552892], - [37.701482, 55.552892] + [37.701478, 55.552891], + [37.701478, 55.552981], + [37.701568, 55.552981], + [37.701568, 55.552891], + [37.701478, 55.552891] ] ] } @@ -3128,11 +3128,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701482, 55.552982], - [37.701482, 55.553072], - [37.701571, 55.553072], - [37.701571, 55.552982], - [37.701482, 55.552982] + [37.701478, 55.552981], + [37.701478, 55.553071], + [37.701568, 55.553071], + [37.701568, 55.552981], + [37.701478, 55.552981] ] ] } @@ -3144,11 +3144,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701482, 55.553072], - [37.701482, 55.553162], - [37.701571, 55.553162], - [37.701571, 55.553072], - [37.701482, 55.553072] + [37.701478, 55.553071], + [37.701478, 55.553161], + [37.701568, 55.553161], + [37.701568, 55.553071], + [37.701478, 55.553071] ] ] } @@ -3160,11 +3160,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701482, 55.553162], - [37.701482, 55.553251], - [37.701571, 55.553251], - [37.701571, 55.553162], - [37.701482, 55.553162] + [37.701478, 55.553161], + [37.701478, 55.553251], + [37.701568, 55.553251], + [37.701568, 55.553161], + [37.701478, 55.553161] ] ] } @@ -3176,11 +3176,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701482, 55.553251], - [37.701482, 55.553341], - [37.701571, 55.553341], - [37.701571, 55.553251], - [37.701482, 55.553251] + [37.701478, 55.553251], + [37.701478, 55.553341], + [37.701568, 55.553341], + [37.701568, 55.553251], + [37.701478, 55.553251] ] ] } @@ -3192,11 +3192,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701482, 55.553341], - [37.701482, 55.553431], - [37.701571, 55.553431], - [37.701571, 55.553341], - [37.701482, 55.553341] + [37.701478, 55.553341], + [37.701478, 55.553431], + [37.701568, 55.553431], + [37.701568, 55.553341], + [37.701478, 55.553341] ] ] } @@ -3208,11 +3208,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701482, 55.553431], - [37.701482, 55.553521], - [37.701571, 55.553521], - [37.701571, 55.553431], - [37.701482, 55.553431] + [37.701478, 55.553431], + [37.701478, 55.55352], + [37.701568, 55.55352], + [37.701568, 55.553431], + [37.701478, 55.553431] ] ] } @@ -3224,11 +3224,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701482, 55.553521], - [37.701482, 55.553611], - [37.701571, 55.553611], - [37.701571, 55.553521], - [37.701482, 55.553521] + [37.701478, 55.55352], + [37.701478, 55.55361], + [37.701568, 55.55361], + [37.701568, 55.55352], + [37.701478, 55.55352] ] ] } @@ -3240,11 +3240,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701482, 55.553611], - [37.701482, 55.5537], - [37.701571, 55.5537], - [37.701571, 55.553611], - [37.701482, 55.553611] + [37.701478, 55.55361], + [37.701478, 55.5537], + [37.701568, 55.5537], + [37.701568, 55.55361], + [37.701478, 55.55361] ] ] } @@ -3256,11 +3256,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701482, 55.5537], - [37.701482, 55.55379], - [37.701571, 55.55379], - [37.701571, 55.5537], - [37.701482, 55.5537] + [37.701478, 55.5537], + [37.701478, 55.55379], + [37.701568, 55.55379], + [37.701568, 55.5537], + [37.701478, 55.5537] ] ] } @@ -3272,11 +3272,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701482, 55.55379], - [37.701482, 55.55388], - [37.701571, 55.55388], - [37.701571, 55.55379], - [37.701482, 55.55379] + [37.701478, 55.55379], + [37.701478, 55.55388], + [37.701568, 55.55388], + [37.701568, 55.55379], + [37.701478, 55.55379] ] ] } @@ -3288,11 +3288,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701482, 55.55388], - [37.701482, 55.55397], - [37.701571, 55.55397], - [37.701571, 55.55388], - [37.701482, 55.55388] + [37.701478, 55.55388], + [37.701478, 55.55397], + [37.701568, 55.55397], + [37.701568, 55.55388], + [37.701478, 55.55388] ] ] } @@ -3304,11 +3304,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701482, 55.55397], - [37.701482, 55.55406], - [37.701571, 55.55406], - [37.701571, 55.55397], - [37.701482, 55.55397] + [37.701478, 55.55397], + [37.701478, 55.55406], + [37.701568, 55.55406], + [37.701568, 55.55397], + [37.701478, 55.55397] ] ] } @@ -3320,11 +3320,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701482, 55.55406], - [37.701482, 55.55415], - [37.701571, 55.55415], - [37.701571, 55.55406], - [37.701482, 55.55406] + [37.701478, 55.55406], + [37.701478, 55.55415], + [37.701568, 55.55415], + [37.701568, 55.55406], + [37.701478, 55.55406] ] ] } @@ -3336,11 +3336,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701482, 55.55415], - [37.701482, 55.554239], - [37.701571, 55.554239], - [37.701571, 55.55415], - [37.701482, 55.55415] + [37.701478, 55.55415], + [37.701478, 55.55424], + [37.701568, 55.55424], + [37.701568, 55.55415], + [37.701478, 55.55415] ] ] } @@ -3352,11 +3352,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701571, 55.552712], - [37.701571, 55.552802], - [37.701661, 55.552802], - [37.701661, 55.552712], - [37.701571, 55.552712] + [37.701568, 55.552711], + [37.701568, 55.552801], + [37.701658, 55.552801], + [37.701658, 55.552711], + [37.701568, 55.552711] ] ] } @@ -3368,11 +3368,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701571, 55.552802], - [37.701571, 55.552892], - [37.701661, 55.552892], - [37.701661, 55.552802], - [37.701571, 55.552802] + [37.701568, 55.552801], + [37.701568, 55.552891], + [37.701658, 55.552891], + [37.701658, 55.552801], + [37.701568, 55.552801] ] ] } @@ -3384,11 +3384,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701571, 55.552892], - [37.701571, 55.552982], - [37.701661, 55.552982], - [37.701661, 55.552892], - [37.701571, 55.552892] + [37.701568, 55.552891], + [37.701568, 55.552981], + [37.701658, 55.552981], + [37.701658, 55.552891], + [37.701568, 55.552891] ] ] } @@ -3400,11 +3400,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701571, 55.552982], - [37.701571, 55.553072], - [37.701661, 55.553072], - [37.701661, 55.552982], - [37.701571, 55.552982] + [37.701568, 55.552981], + [37.701568, 55.553071], + [37.701658, 55.553071], + [37.701658, 55.552981], + [37.701568, 55.552981] ] ] } @@ -3416,11 +3416,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701571, 55.553072], - [37.701571, 55.553162], - [37.701661, 55.553162], - [37.701661, 55.553072], - [37.701571, 55.553072] + [37.701568, 55.553071], + [37.701568, 55.553161], + [37.701658, 55.553161], + [37.701658, 55.553071], + [37.701568, 55.553071] ] ] } @@ -3432,11 +3432,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701571, 55.553162], - [37.701571, 55.553251], - [37.701661, 55.553251], - [37.701661, 55.553162], - [37.701571, 55.553162] + [37.701568, 55.553161], + [37.701568, 55.553251], + [37.701658, 55.553251], + [37.701658, 55.553161], + [37.701568, 55.553161] ] ] } @@ -3448,11 +3448,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701571, 55.553251], - [37.701571, 55.553341], - [37.701661, 55.553341], - [37.701661, 55.553251], - [37.701571, 55.553251] + [37.701568, 55.553251], + [37.701568, 55.553341], + [37.701658, 55.553341], + [37.701658, 55.553251], + [37.701568, 55.553251] ] ] } @@ -3464,11 +3464,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701571, 55.553341], - [37.701571, 55.553431], - [37.701661, 55.553431], - [37.701661, 55.553341], - [37.701571, 55.553341] + [37.701568, 55.553341], + [37.701568, 55.553431], + [37.701658, 55.553431], + [37.701658, 55.553341], + [37.701568, 55.553341] ] ] } @@ -3480,11 +3480,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701571, 55.553431], - [37.701571, 55.553521], - [37.701661, 55.553521], - [37.701661, 55.553431], - [37.701571, 55.553431] + [37.701568, 55.553431], + [37.701568, 55.55352], + [37.701658, 55.55352], + [37.701658, 55.553431], + [37.701568, 55.553431] ] ] } @@ -3496,11 +3496,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701571, 55.553521], - [37.701571, 55.553611], - [37.701661, 55.553611], - [37.701661, 55.553521], - [37.701571, 55.553521] + [37.701568, 55.55352], + [37.701568, 55.55361], + [37.701658, 55.55361], + [37.701658, 55.55352], + [37.701568, 55.55352] ] ] } @@ -3512,11 +3512,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701571, 55.553611], - [37.701571, 55.5537], - [37.701661, 55.5537], - [37.701661, 55.553611], - [37.701571, 55.553611] + [37.701568, 55.55361], + [37.701568, 55.5537], + [37.701658, 55.5537], + [37.701658, 55.55361], + [37.701568, 55.55361] ] ] } @@ -3528,11 +3528,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701571, 55.5537], - [37.701571, 55.55379], - [37.701661, 55.55379], - [37.701661, 55.5537], - [37.701571, 55.5537] + [37.701568, 55.5537], + [37.701568, 55.55379], + [37.701658, 55.55379], + [37.701658, 55.5537], + [37.701568, 55.5537] ] ] } @@ -3544,11 +3544,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701571, 55.55379], - [37.701571, 55.55388], - [37.701661, 55.55388], - [37.701661, 55.55379], - [37.701571, 55.55379] + [37.701568, 55.55379], + [37.701568, 55.55388], + [37.701658, 55.55388], + [37.701658, 55.55379], + [37.701568, 55.55379] ] ] } @@ -3560,11 +3560,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701571, 55.55388], - [37.701571, 55.55397], - [37.701661, 55.55397], - [37.701661, 55.55388], - [37.701571, 55.55388] + [37.701568, 55.55388], + [37.701568, 55.55397], + [37.701658, 55.55397], + [37.701658, 55.55388], + [37.701568, 55.55388] ] ] } @@ -3576,11 +3576,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701571, 55.55397], - [37.701571, 55.55406], - [37.701661, 55.55406], - [37.701661, 55.55397], - [37.701571, 55.55397] + [37.701568, 55.55397], + [37.701568, 55.55406], + [37.701658, 55.55406], + [37.701658, 55.55397], + [37.701568, 55.55397] ] ] } @@ -3592,11 +3592,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701571, 55.55406], - [37.701571, 55.55415], - [37.701661, 55.55415], - [37.701661, 55.55406], - [37.701571, 55.55406] + [37.701568, 55.55406], + [37.701568, 55.55415], + [37.701658, 55.55415], + [37.701658, 55.55406], + [37.701568, 55.55406] ] ] } @@ -3608,11 +3608,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701571, 55.55415], - [37.701571, 55.554239], - [37.701661, 55.554239], - [37.701661, 55.55415], - [37.701571, 55.55415] + [37.701568, 55.55415], + [37.701568, 55.55424], + [37.701658, 55.55424], + [37.701658, 55.55415], + [37.701568, 55.55415] ] ] } @@ -3624,11 +3624,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701661, 55.552712], - [37.701661, 55.552802], - [37.701751, 55.552802], - [37.701751, 55.552712], - [37.701661, 55.552712] + [37.701658, 55.552711], + [37.701658, 55.552801], + [37.701748, 55.552801], + [37.701748, 55.552711], + [37.701658, 55.552711] ] ] } @@ -3640,11 +3640,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701661, 55.552802], - [37.701661, 55.552892], - [37.701751, 55.552892], - [37.701751, 55.552802], - [37.701661, 55.552802] + [37.701658, 55.552801], + [37.701658, 55.552891], + [37.701748, 55.552891], + [37.701748, 55.552801], + [37.701658, 55.552801] ] ] } @@ -3656,11 +3656,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701661, 55.552892], - [37.701661, 55.552982], - [37.701751, 55.552982], - [37.701751, 55.552892], - [37.701661, 55.552892] + [37.701658, 55.552891], + [37.701658, 55.552981], + [37.701748, 55.552981], + [37.701748, 55.552891], + [37.701658, 55.552891] ] ] } @@ -3672,11 +3672,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701661, 55.552982], - [37.701661, 55.553072], - [37.701751, 55.553072], - [37.701751, 55.552982], - [37.701661, 55.552982] + [37.701658, 55.552981], + [37.701658, 55.553071], + [37.701748, 55.553071], + [37.701748, 55.552981], + [37.701658, 55.552981] ] ] } @@ -3688,11 +3688,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701661, 55.553072], - [37.701661, 55.553162], - [37.701751, 55.553162], - [37.701751, 55.553072], - [37.701661, 55.553072] + [37.701658, 55.553071], + [37.701658, 55.553161], + [37.701748, 55.553161], + [37.701748, 55.553071], + [37.701658, 55.553071] ] ] } @@ -3704,11 +3704,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701661, 55.553162], - [37.701661, 55.553251], - [37.701751, 55.553251], - [37.701751, 55.553162], - [37.701661, 55.553162] + [37.701658, 55.553161], + [37.701658, 55.553251], + [37.701748, 55.553251], + [37.701748, 55.553161], + [37.701658, 55.553161] ] ] } @@ -3720,11 +3720,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701661, 55.553251], - [37.701661, 55.553341], - [37.701751, 55.553341], - [37.701751, 55.553251], - [37.701661, 55.553251] + [37.701658, 55.553251], + [37.701658, 55.553341], + [37.701748, 55.553341], + [37.701748, 55.553251], + [37.701658, 55.553251] ] ] } @@ -3736,11 +3736,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701661, 55.553341], - [37.701661, 55.553431], - [37.701751, 55.553431], - [37.701751, 55.553341], - [37.701661, 55.553341] + [37.701658, 55.553341], + [37.701658, 55.553431], + [37.701748, 55.553431], + [37.701748, 55.553341], + [37.701658, 55.553341] ] ] } @@ -3752,11 +3752,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701661, 55.553431], - [37.701661, 55.553521], - [37.701751, 55.553521], - [37.701751, 55.553431], - [37.701661, 55.553431] + [37.701658, 55.553431], + [37.701658, 55.55352], + [37.701748, 55.55352], + [37.701748, 55.553431], + [37.701658, 55.553431] ] ] } @@ -3768,11 +3768,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701661, 55.553521], - [37.701661, 55.553611], - [37.701751, 55.553611], - [37.701751, 55.553521], - [37.701661, 55.553521] + [37.701658, 55.55352], + [37.701658, 55.55361], + [37.701748, 55.55361], + [37.701748, 55.55352], + [37.701658, 55.55352] ] ] } @@ -3784,11 +3784,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701661, 55.553611], - [37.701661, 55.5537], - [37.701751, 55.5537], - [37.701751, 55.553611], - [37.701661, 55.553611] + [37.701658, 55.55361], + [37.701658, 55.5537], + [37.701748, 55.5537], + [37.701748, 55.55361], + [37.701658, 55.55361] ] ] } @@ -3800,11 +3800,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701661, 55.5537], - [37.701661, 55.55379], - [37.701751, 55.55379], - [37.701751, 55.5537], - [37.701661, 55.5537] + [37.701658, 55.5537], + [37.701658, 55.55379], + [37.701748, 55.55379], + [37.701748, 55.5537], + [37.701658, 55.5537] ] ] } @@ -3816,11 +3816,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701661, 55.55379], - [37.701661, 55.55388], - [37.701751, 55.55388], - [37.701751, 55.55379], - [37.701661, 55.55379] + [37.701658, 55.55379], + [37.701658, 55.55388], + [37.701748, 55.55388], + [37.701748, 55.55379], + [37.701658, 55.55379] ] ] } @@ -3832,11 +3832,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701661, 55.55388], - [37.701661, 55.55397], - [37.701751, 55.55397], - [37.701751, 55.55388], - [37.701661, 55.55388] + [37.701658, 55.55388], + [37.701658, 55.55397], + [37.701748, 55.55397], + [37.701748, 55.55388], + [37.701658, 55.55388] ] ] } @@ -3848,11 +3848,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701661, 55.55397], - [37.701661, 55.55406], - [37.701751, 55.55406], - [37.701751, 55.55397], - [37.701661, 55.55397] + [37.701658, 55.55397], + [37.701658, 55.55406], + [37.701748, 55.55406], + [37.701748, 55.55397], + [37.701658, 55.55397] ] ] } @@ -3864,11 +3864,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701661, 55.55406], - [37.701661, 55.55415], - [37.701751, 55.55415], - [37.701751, 55.55406], - [37.701661, 55.55406] + [37.701658, 55.55406], + [37.701658, 55.55415], + [37.701748, 55.55415], + [37.701748, 55.55406], + [37.701658, 55.55406] ] ] } @@ -3880,11 +3880,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701661, 55.55415], - [37.701661, 55.554239], - [37.701751, 55.554239], - [37.701751, 55.55415], - [37.701661, 55.55415] + [37.701658, 55.55415], + [37.701658, 55.55424], + [37.701748, 55.55424], + [37.701748, 55.55415], + [37.701658, 55.55415] ] ] } @@ -3896,11 +3896,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701751, 55.552712], - [37.701751, 55.552802], - [37.701841, 55.552802], - [37.701841, 55.552712], - [37.701751, 55.552712] + [37.701748, 55.552711], + [37.701748, 55.552801], + [37.701838, 55.552801], + [37.701838, 55.552711], + [37.701748, 55.552711] ] ] } @@ -3912,11 +3912,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701751, 55.552802], - [37.701751, 55.552892], - [37.701841, 55.552892], - [37.701841, 55.552802], - [37.701751, 55.552802] + [37.701748, 55.552801], + [37.701748, 55.552891], + [37.701838, 55.552891], + [37.701838, 55.552801], + [37.701748, 55.552801] ] ] } @@ -3928,11 +3928,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701751, 55.552892], - [37.701751, 55.552982], - [37.701841, 55.552982], - [37.701841, 55.552892], - [37.701751, 55.552892] + [37.701748, 55.552891], + [37.701748, 55.552981], + [37.701838, 55.552981], + [37.701838, 55.552891], + [37.701748, 55.552891] ] ] } @@ -3944,11 +3944,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701751, 55.552982], - [37.701751, 55.553072], - [37.701841, 55.553072], - [37.701841, 55.552982], - [37.701751, 55.552982] + [37.701748, 55.552981], + [37.701748, 55.553071], + [37.701838, 55.553071], + [37.701838, 55.552981], + [37.701748, 55.552981] ] ] } @@ -3960,11 +3960,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701751, 55.553072], - [37.701751, 55.553162], - [37.701841, 55.553162], - [37.701841, 55.553072], - [37.701751, 55.553072] + [37.701748, 55.553071], + [37.701748, 55.553161], + [37.701838, 55.553161], + [37.701838, 55.553071], + [37.701748, 55.553071] ] ] } @@ -3976,11 +3976,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701751, 55.553162], - [37.701751, 55.553251], - [37.701841, 55.553251], - [37.701841, 55.553162], - [37.701751, 55.553162] + [37.701748, 55.553161], + [37.701748, 55.553251], + [37.701838, 55.553251], + [37.701838, 55.553161], + [37.701748, 55.553161] ] ] } @@ -3992,11 +3992,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701751, 55.553251], - [37.701751, 55.553341], - [37.701841, 55.553341], - [37.701841, 55.553251], - [37.701751, 55.553251] + [37.701748, 55.553251], + [37.701748, 55.553341], + [37.701838, 55.553341], + [37.701838, 55.553251], + [37.701748, 55.553251] ] ] } @@ -4008,11 +4008,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701751, 55.553341], - [37.701751, 55.553431], - [37.701841, 55.553431], - [37.701841, 55.553341], - [37.701751, 55.553341] + [37.701748, 55.553341], + [37.701748, 55.553431], + [37.701838, 55.553431], + [37.701838, 55.553341], + [37.701748, 55.553341] ] ] } @@ -4024,11 +4024,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701751, 55.553431], - [37.701751, 55.553521], - [37.701841, 55.553521], - [37.701841, 55.553431], - [37.701751, 55.553431] + [37.701748, 55.553431], + [37.701748, 55.55352], + [37.701838, 55.55352], + [37.701838, 55.553431], + [37.701748, 55.553431] ] ] } @@ -4040,11 +4040,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701751, 55.553521], - [37.701751, 55.553611], - [37.701841, 55.553611], - [37.701841, 55.553521], - [37.701751, 55.553521] + [37.701748, 55.55352], + [37.701748, 55.55361], + [37.701838, 55.55361], + [37.701838, 55.55352], + [37.701748, 55.55352] ] ] } @@ -4056,11 +4056,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701751, 55.553611], - [37.701751, 55.5537], - [37.701841, 55.5537], - [37.701841, 55.553611], - [37.701751, 55.553611] + [37.701748, 55.55361], + [37.701748, 55.5537], + [37.701838, 55.5537], + [37.701838, 55.55361], + [37.701748, 55.55361] ] ] } @@ -4072,11 +4072,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701751, 55.5537], - [37.701751, 55.55379], - [37.701841, 55.55379], - [37.701841, 55.5537], - [37.701751, 55.5537] + [37.701748, 55.5537], + [37.701748, 55.55379], + [37.701838, 55.55379], + [37.701838, 55.5537], + [37.701748, 55.5537] ] ] } @@ -4088,11 +4088,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701751, 55.55379], - [37.701751, 55.55388], - [37.701841, 55.55388], - [37.701841, 55.55379], - [37.701751, 55.55379] + [37.701748, 55.55379], + [37.701748, 55.55388], + [37.701838, 55.55388], + [37.701838, 55.55379], + [37.701748, 55.55379] ] ] } @@ -4104,11 +4104,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701751, 55.55388], - [37.701751, 55.55397], - [37.701841, 55.55397], - [37.701841, 55.55388], - [37.701751, 55.55388] + [37.701748, 55.55388], + [37.701748, 55.55397], + [37.701838, 55.55397], + [37.701838, 55.55388], + [37.701748, 55.55388] ] ] } @@ -4120,11 +4120,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701751, 55.55397], - [37.701751, 55.55406], - [37.701841, 55.55406], - [37.701841, 55.55397], - [37.701751, 55.55397] + [37.701748, 55.55397], + [37.701748, 55.55406], + [37.701838, 55.55406], + [37.701838, 55.55397], + [37.701748, 55.55397] ] ] } @@ -4136,11 +4136,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701751, 55.55406], - [37.701751, 55.55415], - [37.701841, 55.55415], - [37.701841, 55.55406], - [37.701751, 55.55406] + [37.701748, 55.55406], + [37.701748, 55.55415], + [37.701838, 55.55415], + [37.701838, 55.55406], + [37.701748, 55.55406] ] ] } @@ -4152,11 +4152,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701751, 55.55415], - [37.701751, 55.554239], - [37.701841, 55.554239], - [37.701841, 55.55415], - [37.701751, 55.55415] + [37.701748, 55.55415], + [37.701748, 55.55424], + [37.701838, 55.55424], + [37.701838, 55.55415], + [37.701748, 55.55415] ] ] } @@ -4168,11 +4168,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701841, 55.552712], - [37.701841, 55.552802], - [37.701931, 55.552802], - [37.701931, 55.552712], - [37.701841, 55.552712] + [37.701838, 55.552711], + [37.701838, 55.552801], + [37.701928, 55.552801], + [37.701928, 55.552711], + [37.701838, 55.552711] ] ] } @@ -4184,11 +4184,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701841, 55.552802], - [37.701841, 55.552892], - [37.701931, 55.552892], - [37.701931, 55.552802], - [37.701841, 55.552802] + [37.701838, 55.552801], + [37.701838, 55.552891], + [37.701928, 55.552891], + [37.701928, 55.552801], + [37.701838, 55.552801] ] ] } @@ -4200,11 +4200,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701841, 55.552892], - [37.701841, 55.552982], - [37.701931, 55.552982], - [37.701931, 55.552892], - [37.701841, 55.552892] + [37.701838, 55.552891], + [37.701838, 55.552981], + [37.701928, 55.552981], + [37.701928, 55.552891], + [37.701838, 55.552891] ] ] } @@ -4216,11 +4216,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701841, 55.552982], - [37.701841, 55.553072], - [37.701931, 55.553072], - [37.701931, 55.552982], - [37.701841, 55.552982] + [37.701838, 55.552981], + [37.701838, 55.553071], + [37.701928, 55.553071], + [37.701928, 55.552981], + [37.701838, 55.552981] ] ] } @@ -4232,11 +4232,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701841, 55.553072], - [37.701841, 55.553162], - [37.701931, 55.553162], - [37.701931, 55.553072], - [37.701841, 55.553072] + [37.701838, 55.553071], + [37.701838, 55.553161], + [37.701928, 55.553161], + [37.701928, 55.553071], + [37.701838, 55.553071] ] ] } @@ -4248,11 +4248,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701841, 55.553162], - [37.701841, 55.553251], - [37.701931, 55.553251], - [37.701931, 55.553162], - [37.701841, 55.553162] + [37.701838, 55.553161], + [37.701838, 55.553251], + [37.701928, 55.553251], + [37.701928, 55.553161], + [37.701838, 55.553161] ] ] } @@ -4264,11 +4264,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701841, 55.553251], - [37.701841, 55.553341], - [37.701931, 55.553341], - [37.701931, 55.553251], - [37.701841, 55.553251] + [37.701838, 55.553251], + [37.701838, 55.553341], + [37.701928, 55.553341], + [37.701928, 55.553251], + [37.701838, 55.553251] ] ] } @@ -4280,11 +4280,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701841, 55.553341], - [37.701841, 55.553431], - [37.701931, 55.553431], - [37.701931, 55.553341], - [37.701841, 55.553341] + [37.701838, 55.553341], + [37.701838, 55.553431], + [37.701928, 55.553431], + [37.701928, 55.553341], + [37.701838, 55.553341] ] ] } @@ -4296,11 +4296,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701841, 55.553431], - [37.701841, 55.553521], - [37.701931, 55.553521], - [37.701931, 55.553431], - [37.701841, 55.553431] + [37.701838, 55.553431], + [37.701838, 55.55352], + [37.701928, 55.55352], + [37.701928, 55.553431], + [37.701838, 55.553431] ] ] } @@ -4312,11 +4312,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701841, 55.553521], - [37.701841, 55.553611], - [37.701931, 55.553611], - [37.701931, 55.553521], - [37.701841, 55.553521] + [37.701838, 55.55352], + [37.701838, 55.55361], + [37.701928, 55.55361], + [37.701928, 55.55352], + [37.701838, 55.55352] ] ] } @@ -4328,11 +4328,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701841, 55.553611], - [37.701841, 55.5537], - [37.701931, 55.5537], - [37.701931, 55.553611], - [37.701841, 55.553611] + [37.701838, 55.55361], + [37.701838, 55.5537], + [37.701928, 55.5537], + [37.701928, 55.55361], + [37.701838, 55.55361] ] ] } @@ -4344,11 +4344,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701841, 55.5537], - [37.701841, 55.55379], - [37.701931, 55.55379], - [37.701931, 55.5537], - [37.701841, 55.5537] + [37.701838, 55.5537], + [37.701838, 55.55379], + [37.701928, 55.55379], + [37.701928, 55.5537], + [37.701838, 55.5537] ] ] } @@ -4360,11 +4360,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701841, 55.55379], - [37.701841, 55.55388], - [37.701931, 55.55388], - [37.701931, 55.55379], - [37.701841, 55.55379] + [37.701838, 55.55379], + [37.701838, 55.55388], + [37.701928, 55.55388], + [37.701928, 55.55379], + [37.701838, 55.55379] ] ] } @@ -4376,11 +4376,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701841, 55.55388], - [37.701841, 55.55397], - [37.701931, 55.55397], - [37.701931, 55.55388], - [37.701841, 55.55388] + [37.701838, 55.55388], + [37.701838, 55.55397], + [37.701928, 55.55397], + [37.701928, 55.55388], + [37.701838, 55.55388] ] ] } @@ -4392,11 +4392,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701841, 55.55397], - [37.701841, 55.55406], - [37.701931, 55.55406], - [37.701931, 55.55397], - [37.701841, 55.55397] + [37.701838, 55.55397], + [37.701838, 55.55406], + [37.701928, 55.55406], + [37.701928, 55.55397], + [37.701838, 55.55397] ] ] } @@ -4408,11 +4408,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701841, 55.55406], - [37.701841, 55.55415], - [37.701931, 55.55415], - [37.701931, 55.55406], - [37.701841, 55.55406] + [37.701838, 55.55406], + [37.701838, 55.55415], + [37.701928, 55.55415], + [37.701928, 55.55406], + [37.701838, 55.55406] ] ] } @@ -4424,11 +4424,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701841, 55.55415], - [37.701841, 55.554239], - [37.701931, 55.554239], - [37.701931, 55.55415], - [37.701841, 55.55415] + [37.701838, 55.55415], + [37.701838, 55.55424], + [37.701928, 55.55424], + [37.701928, 55.55415], + [37.701838, 55.55415] ] ] } @@ -4440,11 +4440,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701841, 55.554239], - [37.701841, 55.554329], - [37.701931, 55.554329], - [37.701931, 55.554239], - [37.701841, 55.554239] + [37.701838, 55.55424], + [37.701838, 55.55433], + [37.701928, 55.55433], + [37.701928, 55.55424], + [37.701838, 55.55424] ] ] } @@ -4456,11 +4456,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701931, 55.552623], - [37.701931, 55.552712], - [37.702021, 55.552712], - [37.702021, 55.552623], - [37.701931, 55.552623] + [37.701928, 55.552621], + [37.701928, 55.552711], + [37.702017, 55.552711], + [37.702017, 55.552621], + [37.701928, 55.552621] ] ] } @@ -4472,11 +4472,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701931, 55.552712], - [37.701931, 55.552802], - [37.702021, 55.552802], - [37.702021, 55.552712], - [37.701931, 55.552712] + [37.701928, 55.552711], + [37.701928, 55.552801], + [37.702017, 55.552801], + [37.702017, 55.552711], + [37.701928, 55.552711] ] ] } @@ -4488,11 +4488,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701931, 55.552802], - [37.701931, 55.552892], - [37.702021, 55.552892], - [37.702021, 55.552802], - [37.701931, 55.552802] + [37.701928, 55.552801], + [37.701928, 55.552891], + [37.702017, 55.552891], + [37.702017, 55.552801], + [37.701928, 55.552801] ] ] } @@ -4504,11 +4504,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701931, 55.552892], - [37.701931, 55.552982], - [37.702021, 55.552982], - [37.702021, 55.552892], - [37.701931, 55.552892] + [37.701928, 55.552891], + [37.701928, 55.552981], + [37.702017, 55.552981], + [37.702017, 55.552891], + [37.701928, 55.552891] ] ] } @@ -4520,11 +4520,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701931, 55.552982], - [37.701931, 55.553072], - [37.702021, 55.553072], - [37.702021, 55.552982], - [37.701931, 55.552982] + [37.701928, 55.552981], + [37.701928, 55.553071], + [37.702017, 55.553071], + [37.702017, 55.552981], + [37.701928, 55.552981] ] ] } @@ -4536,11 +4536,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701931, 55.553072], - [37.701931, 55.553162], - [37.702021, 55.553162], - [37.702021, 55.553072], - [37.701931, 55.553072] + [37.701928, 55.553071], + [37.701928, 55.553161], + [37.702017, 55.553161], + [37.702017, 55.553071], + [37.701928, 55.553071] ] ] } @@ -4552,11 +4552,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701931, 55.553162], - [37.701931, 55.553251], - [37.702021, 55.553251], - [37.702021, 55.553162], - [37.701931, 55.553162] + [37.701928, 55.553161], + [37.701928, 55.553251], + [37.702017, 55.553251], + [37.702017, 55.553161], + [37.701928, 55.553161] ] ] } @@ -4568,11 +4568,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701931, 55.553251], - [37.701931, 55.553341], - [37.702021, 55.553341], - [37.702021, 55.553251], - [37.701931, 55.553251] + [37.701928, 55.553251], + [37.701928, 55.553341], + [37.702017, 55.553341], + [37.702017, 55.553251], + [37.701928, 55.553251] ] ] } @@ -4584,11 +4584,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701931, 55.553341], - [37.701931, 55.553431], - [37.702021, 55.553431], - [37.702021, 55.553341], - [37.701931, 55.553341] + [37.701928, 55.553341], + [37.701928, 55.553431], + [37.702017, 55.553431], + [37.702017, 55.553341], + [37.701928, 55.553341] ] ] } @@ -4600,11 +4600,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701931, 55.553431], - [37.701931, 55.553521], - [37.702021, 55.553521], - [37.702021, 55.553431], - [37.701931, 55.553431] + [37.701928, 55.553431], + [37.701928, 55.55352], + [37.702017, 55.55352], + [37.702017, 55.553431], + [37.701928, 55.553431] ] ] } @@ -4616,11 +4616,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701931, 55.553521], - [37.701931, 55.553611], - [37.702021, 55.553611], - [37.702021, 55.553521], - [37.701931, 55.553521] + [37.701928, 55.55352], + [37.701928, 55.55361], + [37.702017, 55.55361], + [37.702017, 55.55352], + [37.701928, 55.55352] ] ] } @@ -4632,11 +4632,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701931, 55.553611], - [37.701931, 55.5537], - [37.702021, 55.5537], - [37.702021, 55.553611], - [37.701931, 55.553611] + [37.701928, 55.55361], + [37.701928, 55.5537], + [37.702017, 55.5537], + [37.702017, 55.55361], + [37.701928, 55.55361] ] ] } @@ -4648,11 +4648,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701931, 55.5537], - [37.701931, 55.55379], - [37.702021, 55.55379], - [37.702021, 55.5537], - [37.701931, 55.5537] + [37.701928, 55.5537], + [37.701928, 55.55379], + [37.702017, 55.55379], + [37.702017, 55.5537], + [37.701928, 55.5537] ] ] } @@ -4664,11 +4664,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701931, 55.55379], - [37.701931, 55.55388], - [37.702021, 55.55388], - [37.702021, 55.55379], - [37.701931, 55.55379] + [37.701928, 55.55379], + [37.701928, 55.55388], + [37.702017, 55.55388], + [37.702017, 55.55379], + [37.701928, 55.55379] ] ] } @@ -4680,11 +4680,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701931, 55.55388], - [37.701931, 55.55397], - [37.702021, 55.55397], - [37.702021, 55.55388], - [37.701931, 55.55388] + [37.701928, 55.55388], + [37.701928, 55.55397], + [37.702017, 55.55397], + [37.702017, 55.55388], + [37.701928, 55.55388] ] ] } @@ -4696,11 +4696,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701931, 55.55397], - [37.701931, 55.55406], - [37.702021, 55.55406], - [37.702021, 55.55397], - [37.701931, 55.55397] + [37.701928, 55.55397], + [37.701928, 55.55406], + [37.702017, 55.55406], + [37.702017, 55.55397], + [37.701928, 55.55397] ] ] } @@ -4712,11 +4712,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701931, 55.55406], - [37.701931, 55.55415], - [37.702021, 55.55415], - [37.702021, 55.55406], - [37.701931, 55.55406] + [37.701928, 55.55406], + [37.701928, 55.55415], + [37.702017, 55.55415], + [37.702017, 55.55406], + [37.701928, 55.55406] ] ] } @@ -4728,11 +4728,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701931, 55.55415], - [37.701931, 55.554239], - [37.702021, 55.554239], - [37.702021, 55.55415], - [37.701931, 55.55415] + [37.701928, 55.55415], + [37.701928, 55.55424], + [37.702017, 55.55424], + [37.702017, 55.55415], + [37.701928, 55.55415] ] ] } @@ -4744,11 +4744,11 @@ "type": "Polygon", "coordinates": [ [ - [37.701931, 55.554239], - [37.701931, 55.554329], - [37.702021, 55.554329], - [37.702021, 55.554239], - [37.701931, 55.554239] + [37.701928, 55.55424], + [37.701928, 55.55433], + [37.702017, 55.55433], + [37.702017, 55.55424], + [37.701928, 55.55424] ] ] } @@ -4760,11 +4760,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702021, 55.552623], - [37.702021, 55.552712], - [37.70211, 55.552712], - [37.70211, 55.552623], - [37.702021, 55.552623] + [37.702017, 55.552621], + [37.702017, 55.552711], + [37.702107, 55.552711], + [37.702107, 55.552621], + [37.702017, 55.552621] ] ] } @@ -4776,11 +4776,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702021, 55.552712], - [37.702021, 55.552802], - [37.70211, 55.552802], - [37.70211, 55.552712], - [37.702021, 55.552712] + [37.702017, 55.552711], + [37.702017, 55.552801], + [37.702107, 55.552801], + [37.702107, 55.552711], + [37.702017, 55.552711] ] ] } @@ -4792,11 +4792,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702021, 55.552802], - [37.702021, 55.552892], - [37.70211, 55.552892], - [37.70211, 55.552802], - [37.702021, 55.552802] + [37.702017, 55.552801], + [37.702017, 55.552891], + [37.702107, 55.552891], + [37.702107, 55.552801], + [37.702017, 55.552801] ] ] } @@ -4808,11 +4808,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702021, 55.552892], - [37.702021, 55.552982], - [37.70211, 55.552982], - [37.70211, 55.552892], - [37.702021, 55.552892] + [37.702017, 55.552891], + [37.702017, 55.552981], + [37.702107, 55.552981], + [37.702107, 55.552891], + [37.702017, 55.552891] ] ] } @@ -4824,11 +4824,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702021, 55.552982], - [37.702021, 55.553072], - [37.70211, 55.553072], - [37.70211, 55.552982], - [37.702021, 55.552982] + [37.702017, 55.552981], + [37.702017, 55.553071], + [37.702107, 55.553071], + [37.702107, 55.552981], + [37.702017, 55.552981] ] ] } @@ -4840,11 +4840,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702021, 55.553072], - [37.702021, 55.553162], - [37.70211, 55.553162], - [37.70211, 55.553072], - [37.702021, 55.553072] + [37.702017, 55.553071], + [37.702017, 55.553161], + [37.702107, 55.553161], + [37.702107, 55.553071], + [37.702017, 55.553071] ] ] } @@ -4856,11 +4856,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702021, 55.553162], - [37.702021, 55.553251], - [37.70211, 55.553251], - [37.70211, 55.553162], - [37.702021, 55.553162] + [37.702017, 55.553161], + [37.702017, 55.553251], + [37.702107, 55.553251], + [37.702107, 55.553161], + [37.702017, 55.553161] ] ] } @@ -4872,11 +4872,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702021, 55.553251], - [37.702021, 55.553341], - [37.70211, 55.553341], - [37.70211, 55.553251], - [37.702021, 55.553251] + [37.702017, 55.553251], + [37.702017, 55.553341], + [37.702107, 55.553341], + [37.702107, 55.553251], + [37.702017, 55.553251] ] ] } @@ -4888,11 +4888,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702021, 55.553341], - [37.702021, 55.553431], - [37.70211, 55.553431], - [37.70211, 55.553341], - [37.702021, 55.553341] + [37.702017, 55.553341], + [37.702017, 55.553431], + [37.702107, 55.553431], + [37.702107, 55.553341], + [37.702017, 55.553341] ] ] } @@ -4904,11 +4904,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702021, 55.553431], - [37.702021, 55.553521], - [37.70211, 55.553521], - [37.70211, 55.553431], - [37.702021, 55.553431] + [37.702017, 55.553431], + [37.702017, 55.55352], + [37.702107, 55.55352], + [37.702107, 55.553431], + [37.702017, 55.553431] ] ] } @@ -4920,11 +4920,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702021, 55.553521], - [37.702021, 55.553611], - [37.70211, 55.553611], - [37.70211, 55.553521], - [37.702021, 55.553521] + [37.702017, 55.55352], + [37.702017, 55.55361], + [37.702107, 55.55361], + [37.702107, 55.55352], + [37.702017, 55.55352] ] ] } @@ -4936,11 +4936,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702021, 55.553611], - [37.702021, 55.5537], - [37.70211, 55.5537], - [37.70211, 55.553611], - [37.702021, 55.553611] + [37.702017, 55.55361], + [37.702017, 55.5537], + [37.702107, 55.5537], + [37.702107, 55.55361], + [37.702017, 55.55361] ] ] } @@ -4952,11 +4952,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702021, 55.5537], - [37.702021, 55.55379], - [37.70211, 55.55379], - [37.70211, 55.5537], - [37.702021, 55.5537] + [37.702017, 55.5537], + [37.702017, 55.55379], + [37.702107, 55.55379], + [37.702107, 55.5537], + [37.702017, 55.5537] ] ] } @@ -4968,11 +4968,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702021, 55.55379], - [37.702021, 55.55388], - [37.70211, 55.55388], - [37.70211, 55.55379], - [37.702021, 55.55379] + [37.702017, 55.55379], + [37.702017, 55.55388], + [37.702107, 55.55388], + [37.702107, 55.55379], + [37.702017, 55.55379] ] ] } @@ -4984,11 +4984,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702021, 55.55388], - [37.702021, 55.55397], - [37.70211, 55.55397], - [37.70211, 55.55388], - [37.702021, 55.55388] + [37.702017, 55.55388], + [37.702017, 55.55397], + [37.702107, 55.55397], + [37.702107, 55.55388], + [37.702017, 55.55388] ] ] } @@ -5000,11 +5000,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702021, 55.55397], - [37.702021, 55.55406], - [37.70211, 55.55406], - [37.70211, 55.55397], - [37.702021, 55.55397] + [37.702017, 55.55397], + [37.702017, 55.55406], + [37.702107, 55.55406], + [37.702107, 55.55397], + [37.702017, 55.55397] ] ] } @@ -5016,11 +5016,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702021, 55.55406], - [37.702021, 55.55415], - [37.70211, 55.55415], - [37.70211, 55.55406], - [37.702021, 55.55406] + [37.702017, 55.55406], + [37.702017, 55.55415], + [37.702107, 55.55415], + [37.702107, 55.55406], + [37.702017, 55.55406] ] ] } @@ -5032,11 +5032,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702021, 55.55415], - [37.702021, 55.554239], - [37.70211, 55.554239], - [37.70211, 55.55415], - [37.702021, 55.55415] + [37.702017, 55.55415], + [37.702017, 55.55424], + [37.702107, 55.55424], + [37.702107, 55.55415], + [37.702017, 55.55415] ] ] } @@ -5048,11 +5048,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702021, 55.554239], - [37.702021, 55.554329], - [37.70211, 55.554329], - [37.70211, 55.554239], - [37.702021, 55.554239] + [37.702017, 55.55424], + [37.702017, 55.55433], + [37.702107, 55.55433], + [37.702107, 55.55424], + [37.702017, 55.55424] ] ] } @@ -5064,11 +5064,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70211, 55.552623], - [37.70211, 55.552712], - [37.7022, 55.552712], - [37.7022, 55.552623], - [37.70211, 55.552623] + [37.702107, 55.552621], + [37.702107, 55.552711], + [37.702197, 55.552711], + [37.702197, 55.552621], + [37.702107, 55.552621] ] ] } @@ -5080,11 +5080,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70211, 55.552712], - [37.70211, 55.552802], - [37.7022, 55.552802], - [37.7022, 55.552712], - [37.70211, 55.552712] + [37.702107, 55.552711], + [37.702107, 55.552801], + [37.702197, 55.552801], + [37.702197, 55.552711], + [37.702107, 55.552711] ] ] } @@ -5096,11 +5096,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70211, 55.552802], - [37.70211, 55.552892], - [37.7022, 55.552892], - [37.7022, 55.552802], - [37.70211, 55.552802] + [37.702107, 55.552801], + [37.702107, 55.552891], + [37.702197, 55.552891], + [37.702197, 55.552801], + [37.702107, 55.552801] ] ] } @@ -5112,11 +5112,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70211, 55.552892], - [37.70211, 55.552982], - [37.7022, 55.552982], - [37.7022, 55.552892], - [37.70211, 55.552892] + [37.702107, 55.552891], + [37.702107, 55.552981], + [37.702197, 55.552981], + [37.702197, 55.552891], + [37.702107, 55.552891] ] ] } @@ -5128,11 +5128,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70211, 55.552982], - [37.70211, 55.553072], - [37.7022, 55.553072], - [37.7022, 55.552982], - [37.70211, 55.552982] + [37.702107, 55.552981], + [37.702107, 55.553071], + [37.702197, 55.553071], + [37.702197, 55.552981], + [37.702107, 55.552981] ] ] } @@ -5144,11 +5144,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70211, 55.553072], - [37.70211, 55.553162], - [37.7022, 55.553162], - [37.7022, 55.553072], - [37.70211, 55.553072] + [37.702107, 55.553071], + [37.702107, 55.553161], + [37.702197, 55.553161], + [37.702197, 55.553071], + [37.702107, 55.553071] ] ] } @@ -5160,11 +5160,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70211, 55.553162], - [37.70211, 55.553251], - [37.7022, 55.553251], - [37.7022, 55.553162], - [37.70211, 55.553162] + [37.702107, 55.553161], + [37.702107, 55.553251], + [37.702197, 55.553251], + [37.702197, 55.553161], + [37.702107, 55.553161] ] ] } @@ -5176,11 +5176,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70211, 55.553251], - [37.70211, 55.553341], - [37.7022, 55.553341], - [37.7022, 55.553251], - [37.70211, 55.553251] + [37.702107, 55.553251], + [37.702107, 55.553341], + [37.702197, 55.553341], + [37.702197, 55.553251], + [37.702107, 55.553251] ] ] } @@ -5192,11 +5192,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70211, 55.553341], - [37.70211, 55.553431], - [37.7022, 55.553431], - [37.7022, 55.553341], - [37.70211, 55.553341] + [37.702107, 55.553341], + [37.702107, 55.553431], + [37.702197, 55.553431], + [37.702197, 55.553341], + [37.702107, 55.553341] ] ] } @@ -5208,11 +5208,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70211, 55.553431], - [37.70211, 55.553521], - [37.7022, 55.553521], - [37.7022, 55.553431], - [37.70211, 55.553431] + [37.702107, 55.553431], + [37.702107, 55.55352], + [37.702197, 55.55352], + [37.702197, 55.553431], + [37.702107, 55.553431] ] ] } @@ -5224,11 +5224,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70211, 55.553521], - [37.70211, 55.553611], - [37.7022, 55.553611], - [37.7022, 55.553521], - [37.70211, 55.553521] + [37.702107, 55.55352], + [37.702107, 55.55361], + [37.702197, 55.55361], + [37.702197, 55.55352], + [37.702107, 55.55352] ] ] } @@ -5240,11 +5240,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70211, 55.553611], - [37.70211, 55.5537], - [37.7022, 55.5537], - [37.7022, 55.553611], - [37.70211, 55.553611] + [37.702107, 55.55361], + [37.702107, 55.5537], + [37.702197, 55.5537], + [37.702197, 55.55361], + [37.702107, 55.55361] ] ] } @@ -5256,11 +5256,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70211, 55.5537], - [37.70211, 55.55379], - [37.7022, 55.55379], - [37.7022, 55.5537], - [37.70211, 55.5537] + [37.702107, 55.5537], + [37.702107, 55.55379], + [37.702197, 55.55379], + [37.702197, 55.5537], + [37.702107, 55.5537] ] ] } @@ -5272,11 +5272,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70211, 55.55379], - [37.70211, 55.55388], - [37.7022, 55.55388], - [37.7022, 55.55379], - [37.70211, 55.55379] + [37.702107, 55.55379], + [37.702107, 55.55388], + [37.702197, 55.55388], + [37.702197, 55.55379], + [37.702107, 55.55379] ] ] } @@ -5288,11 +5288,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70211, 55.55388], - [37.70211, 55.55397], - [37.7022, 55.55397], - [37.7022, 55.55388], - [37.70211, 55.55388] + [37.702107, 55.55388], + [37.702107, 55.55397], + [37.702197, 55.55397], + [37.702197, 55.55388], + [37.702107, 55.55388] ] ] } @@ -5304,11 +5304,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70211, 55.55397], - [37.70211, 55.55406], - [37.7022, 55.55406], - [37.7022, 55.55397], - [37.70211, 55.55397] + [37.702107, 55.55397], + [37.702107, 55.55406], + [37.702197, 55.55406], + [37.702197, 55.55397], + [37.702107, 55.55397] ] ] } @@ -5320,11 +5320,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70211, 55.55406], - [37.70211, 55.55415], - [37.7022, 55.55415], - [37.7022, 55.55406], - [37.70211, 55.55406] + [37.702107, 55.55406], + [37.702107, 55.55415], + [37.702197, 55.55415], + [37.702197, 55.55406], + [37.702107, 55.55406] ] ] } @@ -5336,11 +5336,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70211, 55.55415], - [37.70211, 55.554239], - [37.7022, 55.554239], - [37.7022, 55.55415], - [37.70211, 55.55415] + [37.702107, 55.55415], + [37.702107, 55.55424], + [37.702197, 55.55424], + [37.702197, 55.55415], + [37.702107, 55.55415] ] ] } @@ -5352,11 +5352,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70211, 55.554239], - [37.70211, 55.554329], - [37.7022, 55.554329], - [37.7022, 55.554239], - [37.70211, 55.554239] + [37.702107, 55.55424], + [37.702107, 55.55433], + [37.702197, 55.55433], + [37.702197, 55.55424], + [37.702107, 55.55424] ] ] } @@ -5368,11 +5368,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70211, 55.554329], - [37.70211, 55.554419], - [37.7022, 55.554419], - [37.7022, 55.554329], - [37.70211, 55.554329] + [37.702107, 55.55433], + [37.702107, 55.55442], + [37.702197, 55.55442], + [37.702197, 55.55433], + [37.702107, 55.55433] ] ] } @@ -5384,11 +5384,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7022, 55.552623], - [37.7022, 55.552712], - [37.70229, 55.552712], - [37.70229, 55.552623], - [37.7022, 55.552623] + [37.702197, 55.552621], + [37.702197, 55.552711], + [37.702287, 55.552711], + [37.702287, 55.552621], + [37.702197, 55.552621] ] ] } @@ -5400,11 +5400,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7022, 55.552712], - [37.7022, 55.552802], - [37.70229, 55.552802], - [37.70229, 55.552712], - [37.7022, 55.552712] + [37.702197, 55.552711], + [37.702197, 55.552801], + [37.702287, 55.552801], + [37.702287, 55.552711], + [37.702197, 55.552711] ] ] } @@ -5416,11 +5416,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7022, 55.552802], - [37.7022, 55.552892], - [37.70229, 55.552892], - [37.70229, 55.552802], - [37.7022, 55.552802] + [37.702197, 55.552801], + [37.702197, 55.552891], + [37.702287, 55.552891], + [37.702287, 55.552801], + [37.702197, 55.552801] ] ] } @@ -5432,11 +5432,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7022, 55.552892], - [37.7022, 55.552982], - [37.70229, 55.552982], - [37.70229, 55.552892], - [37.7022, 55.552892] + [37.702197, 55.552891], + [37.702197, 55.552981], + [37.702287, 55.552981], + [37.702287, 55.552891], + [37.702197, 55.552891] ] ] } @@ -5448,11 +5448,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7022, 55.552982], - [37.7022, 55.553072], - [37.70229, 55.553072], - [37.70229, 55.552982], - [37.7022, 55.552982] + [37.702197, 55.552981], + [37.702197, 55.553071], + [37.702287, 55.553071], + [37.702287, 55.552981], + [37.702197, 55.552981] ] ] } @@ -5464,11 +5464,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7022, 55.553072], - [37.7022, 55.553162], - [37.70229, 55.553162], - [37.70229, 55.553072], - [37.7022, 55.553072] + [37.702197, 55.553071], + [37.702197, 55.553161], + [37.702287, 55.553161], + [37.702287, 55.553071], + [37.702197, 55.553071] ] ] } @@ -5480,11 +5480,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7022, 55.553162], - [37.7022, 55.553251], - [37.70229, 55.553251], - [37.70229, 55.553162], - [37.7022, 55.553162] + [37.702197, 55.553161], + [37.702197, 55.553251], + [37.702287, 55.553251], + [37.702287, 55.553161], + [37.702197, 55.553161] ] ] } @@ -5496,11 +5496,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7022, 55.553251], - [37.7022, 55.553341], - [37.70229, 55.553341], - [37.70229, 55.553251], - [37.7022, 55.553251] + [37.702197, 55.553251], + [37.702197, 55.553341], + [37.702287, 55.553341], + [37.702287, 55.553251], + [37.702197, 55.553251] ] ] } @@ -5512,11 +5512,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7022, 55.553341], - [37.7022, 55.553431], - [37.70229, 55.553431], - [37.70229, 55.553341], - [37.7022, 55.553341] + [37.702197, 55.553341], + [37.702197, 55.553431], + [37.702287, 55.553431], + [37.702287, 55.553341], + [37.702197, 55.553341] ] ] } @@ -5528,11 +5528,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7022, 55.553431], - [37.7022, 55.553521], - [37.70229, 55.553521], - [37.70229, 55.553431], - [37.7022, 55.553431] + [37.702197, 55.553431], + [37.702197, 55.55352], + [37.702287, 55.55352], + [37.702287, 55.553431], + [37.702197, 55.553431] ] ] } @@ -5544,11 +5544,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7022, 55.553521], - [37.7022, 55.553611], - [37.70229, 55.553611], - [37.70229, 55.553521], - [37.7022, 55.553521] + [37.702197, 55.55352], + [37.702197, 55.55361], + [37.702287, 55.55361], + [37.702287, 55.55352], + [37.702197, 55.55352] ] ] } @@ -5560,11 +5560,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7022, 55.553611], - [37.7022, 55.5537], - [37.70229, 55.5537], - [37.70229, 55.553611], - [37.7022, 55.553611] + [37.702197, 55.55361], + [37.702197, 55.5537], + [37.702287, 55.5537], + [37.702287, 55.55361], + [37.702197, 55.55361] ] ] } @@ -5576,11 +5576,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7022, 55.5537], - [37.7022, 55.55379], - [37.70229, 55.55379], - [37.70229, 55.5537], - [37.7022, 55.5537] + [37.702197, 55.5537], + [37.702197, 55.55379], + [37.702287, 55.55379], + [37.702287, 55.5537], + [37.702197, 55.5537] ] ] } @@ -5592,11 +5592,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7022, 55.55379], - [37.7022, 55.55388], - [37.70229, 55.55388], - [37.70229, 55.55379], - [37.7022, 55.55379] + [37.702197, 55.55379], + [37.702197, 55.55388], + [37.702287, 55.55388], + [37.702287, 55.55379], + [37.702197, 55.55379] ] ] } @@ -5608,11 +5608,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7022, 55.55388], - [37.7022, 55.55397], - [37.70229, 55.55397], - [37.70229, 55.55388], - [37.7022, 55.55388] + [37.702197, 55.55388], + [37.702197, 55.55397], + [37.702287, 55.55397], + [37.702287, 55.55388], + [37.702197, 55.55388] ] ] } @@ -5624,11 +5624,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7022, 55.55397], - [37.7022, 55.55406], - [37.70229, 55.55406], - [37.70229, 55.55397], - [37.7022, 55.55397] + [37.702197, 55.55397], + [37.702197, 55.55406], + [37.702287, 55.55406], + [37.702287, 55.55397], + [37.702197, 55.55397] ] ] } @@ -5640,11 +5640,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7022, 55.55406], - [37.7022, 55.55415], - [37.70229, 55.55415], - [37.70229, 55.55406], - [37.7022, 55.55406] + [37.702197, 55.55406], + [37.702197, 55.55415], + [37.702287, 55.55415], + [37.702287, 55.55406], + [37.702197, 55.55406] ] ] } @@ -5656,11 +5656,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7022, 55.55415], - [37.7022, 55.554239], - [37.70229, 55.554239], - [37.70229, 55.55415], - [37.7022, 55.55415] + [37.702197, 55.55415], + [37.702197, 55.55424], + [37.702287, 55.55424], + [37.702287, 55.55415], + [37.702197, 55.55415] ] ] } @@ -5672,11 +5672,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7022, 55.554239], - [37.7022, 55.554329], - [37.70229, 55.554329], - [37.70229, 55.554239], - [37.7022, 55.554239] + [37.702197, 55.55424], + [37.702197, 55.55433], + [37.702287, 55.55433], + [37.702287, 55.55424], + [37.702197, 55.55424] ] ] } @@ -5688,11 +5688,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7022, 55.554329], - [37.7022, 55.554419], - [37.70229, 55.554419], - [37.70229, 55.554329], - [37.7022, 55.554329] + [37.702197, 55.55433], + [37.702197, 55.55442], + [37.702287, 55.55442], + [37.702287, 55.55433], + [37.702197, 55.55433] ] ] } @@ -5704,11 +5704,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70229, 55.552533], - [37.70229, 55.552623], - [37.70238, 55.552623], - [37.70238, 55.552533], - [37.70229, 55.552533] + [37.702287, 55.552531], + [37.702287, 55.552621], + [37.702377, 55.552621], + [37.702377, 55.552531], + [37.702287, 55.552531] ] ] } @@ -5720,11 +5720,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70229, 55.552623], - [37.70229, 55.552712], - [37.70238, 55.552712], - [37.70238, 55.552623], - [37.70229, 55.552623] + [37.702287, 55.552621], + [37.702287, 55.552711], + [37.702377, 55.552711], + [37.702377, 55.552621], + [37.702287, 55.552621] ] ] } @@ -5736,11 +5736,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70229, 55.552712], - [37.70229, 55.552802], - [37.70238, 55.552802], - [37.70238, 55.552712], - [37.70229, 55.552712] + [37.702287, 55.552711], + [37.702287, 55.552801], + [37.702377, 55.552801], + [37.702377, 55.552711], + [37.702287, 55.552711] ] ] } @@ -5752,11 +5752,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70229, 55.552802], - [37.70229, 55.552892], - [37.70238, 55.552892], - [37.70238, 55.552802], - [37.70229, 55.552802] + [37.702287, 55.552801], + [37.702287, 55.552891], + [37.702377, 55.552891], + [37.702377, 55.552801], + [37.702287, 55.552801] ] ] } @@ -5768,11 +5768,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70229, 55.552892], - [37.70229, 55.552982], - [37.70238, 55.552982], - [37.70238, 55.552892], - [37.70229, 55.552892] + [37.702287, 55.552891], + [37.702287, 55.552981], + [37.702377, 55.552981], + [37.702377, 55.552891], + [37.702287, 55.552891] ] ] } @@ -5784,11 +5784,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70229, 55.552982], - [37.70229, 55.553072], - [37.70238, 55.553072], - [37.70238, 55.552982], - [37.70229, 55.552982] + [37.702287, 55.552981], + [37.702287, 55.553071], + [37.702377, 55.553071], + [37.702377, 55.552981], + [37.702287, 55.552981] ] ] } @@ -5800,11 +5800,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70229, 55.553072], - [37.70229, 55.553162], - [37.70238, 55.553162], - [37.70238, 55.553072], - [37.70229, 55.553072] + [37.702287, 55.553071], + [37.702287, 55.553161], + [37.702377, 55.553161], + [37.702377, 55.553071], + [37.702287, 55.553071] ] ] } @@ -5816,11 +5816,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70229, 55.553162], - [37.70229, 55.553251], - [37.70238, 55.553251], - [37.70238, 55.553162], - [37.70229, 55.553162] + [37.702287, 55.553161], + [37.702287, 55.553251], + [37.702377, 55.553251], + [37.702377, 55.553161], + [37.702287, 55.553161] ] ] } @@ -5832,11 +5832,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70229, 55.553251], - [37.70229, 55.553341], - [37.70238, 55.553341], - [37.70238, 55.553251], - [37.70229, 55.553251] + [37.702287, 55.553251], + [37.702287, 55.553341], + [37.702377, 55.553341], + [37.702377, 55.553251], + [37.702287, 55.553251] ] ] } @@ -5848,11 +5848,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70229, 55.553341], - [37.70229, 55.553431], - [37.70238, 55.553431], - [37.70238, 55.553341], - [37.70229, 55.553341] + [37.702287, 55.553341], + [37.702287, 55.553431], + [37.702377, 55.553431], + [37.702377, 55.553341], + [37.702287, 55.553341] ] ] } @@ -5864,11 +5864,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70229, 55.553431], - [37.70229, 55.553521], - [37.70238, 55.553521], - [37.70238, 55.553431], - [37.70229, 55.553431] + [37.702287, 55.553431], + [37.702287, 55.55352], + [37.702377, 55.55352], + [37.702377, 55.553431], + [37.702287, 55.553431] ] ] } @@ -5880,11 +5880,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70229, 55.553521], - [37.70229, 55.553611], - [37.70238, 55.553611], - [37.70238, 55.553521], - [37.70229, 55.553521] + [37.702287, 55.55352], + [37.702287, 55.55361], + [37.702377, 55.55361], + [37.702377, 55.55352], + [37.702287, 55.55352] ] ] } @@ -5896,11 +5896,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70229, 55.553611], - [37.70229, 55.5537], - [37.70238, 55.5537], - [37.70238, 55.553611], - [37.70229, 55.553611] + [37.702287, 55.55361], + [37.702287, 55.5537], + [37.702377, 55.5537], + [37.702377, 55.55361], + [37.702287, 55.55361] ] ] } @@ -5912,11 +5912,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70229, 55.5537], - [37.70229, 55.55379], - [37.70238, 55.55379], - [37.70238, 55.5537], - [37.70229, 55.5537] + [37.702287, 55.5537], + [37.702287, 55.55379], + [37.702377, 55.55379], + [37.702377, 55.5537], + [37.702287, 55.5537] ] ] } @@ -5928,11 +5928,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70229, 55.55379], - [37.70229, 55.55388], - [37.70238, 55.55388], - [37.70238, 55.55379], - [37.70229, 55.55379] + [37.702287, 55.55379], + [37.702287, 55.55388], + [37.702377, 55.55388], + [37.702377, 55.55379], + [37.702287, 55.55379] ] ] } @@ -5944,11 +5944,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70229, 55.55388], - [37.70229, 55.55397], - [37.70238, 55.55397], - [37.70238, 55.55388], - [37.70229, 55.55388] + [37.702287, 55.55388], + [37.702287, 55.55397], + [37.702377, 55.55397], + [37.702377, 55.55388], + [37.702287, 55.55388] ] ] } @@ -5960,11 +5960,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70229, 55.55397], - [37.70229, 55.55406], - [37.70238, 55.55406], - [37.70238, 55.55397], - [37.70229, 55.55397] + [37.702287, 55.55397], + [37.702287, 55.55406], + [37.702377, 55.55406], + [37.702377, 55.55397], + [37.702287, 55.55397] ] ] } @@ -5976,11 +5976,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70229, 55.55406], - [37.70229, 55.55415], - [37.70238, 55.55415], - [37.70238, 55.55406], - [37.70229, 55.55406] + [37.702287, 55.55406], + [37.702287, 55.55415], + [37.702377, 55.55415], + [37.702377, 55.55406], + [37.702287, 55.55406] ] ] } @@ -5992,11 +5992,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70229, 55.55415], - [37.70229, 55.554239], - [37.70238, 55.554239], - [37.70238, 55.55415], - [37.70229, 55.55415] + [37.702287, 55.55415], + [37.702287, 55.55424], + [37.702377, 55.55424], + [37.702377, 55.55415], + [37.702287, 55.55415] ] ] } @@ -6008,11 +6008,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70229, 55.554239], - [37.70229, 55.554329], - [37.70238, 55.554329], - [37.70238, 55.554239], - [37.70229, 55.554239] + [37.702287, 55.55424], + [37.702287, 55.55433], + [37.702377, 55.55433], + [37.702377, 55.55424], + [37.702287, 55.55424] ] ] } @@ -6024,11 +6024,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70229, 55.554329], - [37.70229, 55.554419], - [37.70238, 55.554419], - [37.70238, 55.554329], - [37.70229, 55.554329] + [37.702287, 55.55433], + [37.702287, 55.55442], + [37.702377, 55.55442], + [37.702377, 55.55433], + [37.702287, 55.55433] ] ] } @@ -6040,11 +6040,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70238, 55.552533], - [37.70238, 55.552623], - [37.70247, 55.552623], - [37.70247, 55.552533], - [37.70238, 55.552533] + [37.702377, 55.552531], + [37.702377, 55.552621], + [37.702467, 55.552621], + [37.702467, 55.552531], + [37.702377, 55.552531] ] ] } @@ -6056,11 +6056,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70238, 55.552623], - [37.70238, 55.552712], - [37.70247, 55.552712], - [37.70247, 55.552623], - [37.70238, 55.552623] + [37.702377, 55.552621], + [37.702377, 55.552711], + [37.702467, 55.552711], + [37.702467, 55.552621], + [37.702377, 55.552621] ] ] } @@ -6072,11 +6072,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70238, 55.552712], - [37.70238, 55.552802], - [37.70247, 55.552802], - [37.70247, 55.552712], - [37.70238, 55.552712] + [37.702377, 55.552711], + [37.702377, 55.552801], + [37.702467, 55.552801], + [37.702467, 55.552711], + [37.702377, 55.552711] ] ] } @@ -6088,11 +6088,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70238, 55.552802], - [37.70238, 55.552892], - [37.70247, 55.552892], - [37.70247, 55.552802], - [37.70238, 55.552802] + [37.702377, 55.552801], + [37.702377, 55.552891], + [37.702467, 55.552891], + [37.702467, 55.552801], + [37.702377, 55.552801] ] ] } @@ -6104,11 +6104,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70238, 55.552892], - [37.70238, 55.552982], - [37.70247, 55.552982], - [37.70247, 55.552892], - [37.70238, 55.552892] + [37.702377, 55.552891], + [37.702377, 55.552981], + [37.702467, 55.552981], + [37.702467, 55.552891], + [37.702377, 55.552891] ] ] } @@ -6120,11 +6120,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70238, 55.552982], - [37.70238, 55.553072], - [37.70247, 55.553072], - [37.70247, 55.552982], - [37.70238, 55.552982] + [37.702377, 55.552981], + [37.702377, 55.553071], + [37.702467, 55.553071], + [37.702467, 55.552981], + [37.702377, 55.552981] ] ] } @@ -6136,11 +6136,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70238, 55.553072], - [37.70238, 55.553162], - [37.70247, 55.553162], - [37.70247, 55.553072], - [37.70238, 55.553072] + [37.702377, 55.553071], + [37.702377, 55.553161], + [37.702467, 55.553161], + [37.702467, 55.553071], + [37.702377, 55.553071] ] ] } @@ -6152,11 +6152,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70238, 55.553162], - [37.70238, 55.553251], - [37.70247, 55.553251], - [37.70247, 55.553162], - [37.70238, 55.553162] + [37.702377, 55.553161], + [37.702377, 55.553251], + [37.702467, 55.553251], + [37.702467, 55.553161], + [37.702377, 55.553161] ] ] } @@ -6168,11 +6168,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70238, 55.553251], - [37.70238, 55.553341], - [37.70247, 55.553341], - [37.70247, 55.553251], - [37.70238, 55.553251] + [37.702377, 55.553251], + [37.702377, 55.553341], + [37.702467, 55.553341], + [37.702467, 55.553251], + [37.702377, 55.553251] ] ] } @@ -6184,11 +6184,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70238, 55.553341], - [37.70238, 55.553431], - [37.70247, 55.553431], - [37.70247, 55.553341], - [37.70238, 55.553341] + [37.702377, 55.553341], + [37.702377, 55.553431], + [37.702467, 55.553431], + [37.702467, 55.553341], + [37.702377, 55.553341] ] ] } @@ -6200,11 +6200,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70238, 55.553431], - [37.70238, 55.553521], - [37.70247, 55.553521], - [37.70247, 55.553431], - [37.70238, 55.553431] + [37.702377, 55.553431], + [37.702377, 55.55352], + [37.702467, 55.55352], + [37.702467, 55.553431], + [37.702377, 55.553431] ] ] } @@ -6216,11 +6216,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70238, 55.553521], - [37.70238, 55.553611], - [37.70247, 55.553611], - [37.70247, 55.553521], - [37.70238, 55.553521] + [37.702377, 55.55352], + [37.702377, 55.55361], + [37.702467, 55.55361], + [37.702467, 55.55352], + [37.702377, 55.55352] ] ] } @@ -6232,11 +6232,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70238, 55.553611], - [37.70238, 55.5537], - [37.70247, 55.5537], - [37.70247, 55.553611], - [37.70238, 55.553611] + [37.702377, 55.55361], + [37.702377, 55.5537], + [37.702467, 55.5537], + [37.702467, 55.55361], + [37.702377, 55.55361] ] ] } @@ -6248,11 +6248,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70238, 55.5537], - [37.70238, 55.55379], - [37.70247, 55.55379], - [37.70247, 55.5537], - [37.70238, 55.5537] + [37.702377, 55.5537], + [37.702377, 55.55379], + [37.702467, 55.55379], + [37.702467, 55.5537], + [37.702377, 55.5537] ] ] } @@ -6264,11 +6264,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70238, 55.55379], - [37.70238, 55.55388], - [37.70247, 55.55388], - [37.70247, 55.55379], - [37.70238, 55.55379] + [37.702377, 55.55379], + [37.702377, 55.55388], + [37.702467, 55.55388], + [37.702467, 55.55379], + [37.702377, 55.55379] ] ] } @@ -6280,11 +6280,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70238, 55.55388], - [37.70238, 55.55397], - [37.70247, 55.55397], - [37.70247, 55.55388], - [37.70238, 55.55388] + [37.702377, 55.55388], + [37.702377, 55.55397], + [37.702467, 55.55397], + [37.702467, 55.55388], + [37.702377, 55.55388] ] ] } @@ -6296,11 +6296,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70238, 55.55397], - [37.70238, 55.55406], - [37.70247, 55.55406], - [37.70247, 55.55397], - [37.70238, 55.55397] + [37.702377, 55.55397], + [37.702377, 55.55406], + [37.702467, 55.55406], + [37.702467, 55.55397], + [37.702377, 55.55397] ] ] } @@ -6312,11 +6312,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70238, 55.55406], - [37.70238, 55.55415], - [37.70247, 55.55415], - [37.70247, 55.55406], - [37.70238, 55.55406] + [37.702377, 55.55406], + [37.702377, 55.55415], + [37.702467, 55.55415], + [37.702467, 55.55406], + [37.702377, 55.55406] ] ] } @@ -6328,11 +6328,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70238, 55.55415], - [37.70238, 55.554239], - [37.70247, 55.554239], - [37.70247, 55.55415], - [37.70238, 55.55415] + [37.702377, 55.55415], + [37.702377, 55.55424], + [37.702467, 55.55424], + [37.702467, 55.55415], + [37.702377, 55.55415] ] ] } @@ -6344,11 +6344,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70238, 55.554239], - [37.70238, 55.554329], - [37.70247, 55.554329], - [37.70247, 55.554239], - [37.70238, 55.554239] + [37.702377, 55.55424], + [37.702377, 55.55433], + [37.702467, 55.55433], + [37.702467, 55.55424], + [37.702377, 55.55424] ] ] } @@ -6360,11 +6360,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70238, 55.554329], - [37.70238, 55.554419], - [37.70247, 55.554419], - [37.70247, 55.554329], - [37.70238, 55.554329] + [37.702377, 55.55433], + [37.702377, 55.55442], + [37.702467, 55.55442], + [37.702467, 55.55433], + [37.702377, 55.55433] ] ] } @@ -6376,11 +6376,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70247, 55.552533], - [37.70247, 55.552623], - [37.702559, 55.552623], - [37.702559, 55.552533], - [37.70247, 55.552533] + [37.702467, 55.552531], + [37.702467, 55.552621], + [37.702557, 55.552621], + [37.702557, 55.552531], + [37.702467, 55.552531] ] ] } @@ -6392,11 +6392,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70247, 55.552623], - [37.70247, 55.552712], - [37.702559, 55.552712], - [37.702559, 55.552623], - [37.70247, 55.552623] + [37.702467, 55.552621], + [37.702467, 55.552711], + [37.702557, 55.552711], + [37.702557, 55.552621], + [37.702467, 55.552621] ] ] } @@ -6408,11 +6408,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70247, 55.552712], - [37.70247, 55.552802], - [37.702559, 55.552802], - [37.702559, 55.552712], - [37.70247, 55.552712] + [37.702467, 55.552711], + [37.702467, 55.552801], + [37.702557, 55.552801], + [37.702557, 55.552711], + [37.702467, 55.552711] ] ] } @@ -6424,11 +6424,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70247, 55.552802], - [37.70247, 55.552892], - [37.702559, 55.552892], - [37.702559, 55.552802], - [37.70247, 55.552802] + [37.702467, 55.552801], + [37.702467, 55.552891], + [37.702557, 55.552891], + [37.702557, 55.552801], + [37.702467, 55.552801] ] ] } @@ -6440,11 +6440,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70247, 55.552892], - [37.70247, 55.552982], - [37.702559, 55.552982], - [37.702559, 55.552892], - [37.70247, 55.552892] + [37.702467, 55.552891], + [37.702467, 55.552981], + [37.702557, 55.552981], + [37.702557, 55.552891], + [37.702467, 55.552891] ] ] } @@ -6456,11 +6456,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70247, 55.552982], - [37.70247, 55.553072], - [37.702559, 55.553072], - [37.702559, 55.552982], - [37.70247, 55.552982] + [37.702467, 55.552981], + [37.702467, 55.553071], + [37.702557, 55.553071], + [37.702557, 55.552981], + [37.702467, 55.552981] ] ] } @@ -6472,11 +6472,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70247, 55.553072], - [37.70247, 55.553162], - [37.702559, 55.553162], - [37.702559, 55.553072], - [37.70247, 55.553072] + [37.702467, 55.553071], + [37.702467, 55.553161], + [37.702557, 55.553161], + [37.702557, 55.553071], + [37.702467, 55.553071] ] ] } @@ -6488,11 +6488,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70247, 55.553162], - [37.70247, 55.553251], - [37.702559, 55.553251], - [37.702559, 55.553162], - [37.70247, 55.553162] + [37.702467, 55.553161], + [37.702467, 55.553251], + [37.702557, 55.553251], + [37.702557, 55.553161], + [37.702467, 55.553161] ] ] } @@ -6504,11 +6504,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70247, 55.553251], - [37.70247, 55.553341], - [37.702559, 55.553341], - [37.702559, 55.553251], - [37.70247, 55.553251] + [37.702467, 55.553251], + [37.702467, 55.553341], + [37.702557, 55.553341], + [37.702557, 55.553251], + [37.702467, 55.553251] ] ] } @@ -6520,11 +6520,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70247, 55.553341], - [37.70247, 55.553431], - [37.702559, 55.553431], - [37.702559, 55.553341], - [37.70247, 55.553341] + [37.702467, 55.553341], + [37.702467, 55.553431], + [37.702557, 55.553431], + [37.702557, 55.553341], + [37.702467, 55.553341] ] ] } @@ -6536,11 +6536,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70247, 55.553431], - [37.70247, 55.553521], - [37.702559, 55.553521], - [37.702559, 55.553431], - [37.70247, 55.553431] + [37.702467, 55.553431], + [37.702467, 55.55352], + [37.702557, 55.55352], + [37.702557, 55.553431], + [37.702467, 55.553431] ] ] } @@ -6552,11 +6552,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70247, 55.553521], - [37.70247, 55.553611], - [37.702559, 55.553611], - [37.702559, 55.553521], - [37.70247, 55.553521] + [37.702467, 55.55352], + [37.702467, 55.55361], + [37.702557, 55.55361], + [37.702557, 55.55352], + [37.702467, 55.55352] ] ] } @@ -6568,11 +6568,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70247, 55.553611], - [37.70247, 55.5537], - [37.702559, 55.5537], - [37.702559, 55.553611], - [37.70247, 55.553611] + [37.702467, 55.55361], + [37.702467, 55.5537], + [37.702557, 55.5537], + [37.702557, 55.55361], + [37.702467, 55.55361] ] ] } @@ -6584,11 +6584,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70247, 55.5537], - [37.70247, 55.55379], - [37.702559, 55.55379], - [37.702559, 55.5537], - [37.70247, 55.5537] + [37.702467, 55.5537], + [37.702467, 55.55379], + [37.702557, 55.55379], + [37.702557, 55.5537], + [37.702467, 55.5537] ] ] } @@ -6600,11 +6600,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70247, 55.55379], - [37.70247, 55.55388], - [37.702559, 55.55388], - [37.702559, 55.55379], - [37.70247, 55.55379] + [37.702467, 55.55379], + [37.702467, 55.55388], + [37.702557, 55.55388], + [37.702557, 55.55379], + [37.702467, 55.55379] ] ] } @@ -6616,11 +6616,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70247, 55.55388], - [37.70247, 55.55397], - [37.702559, 55.55397], - [37.702559, 55.55388], - [37.70247, 55.55388] + [37.702467, 55.55388], + [37.702467, 55.55397], + [37.702557, 55.55397], + [37.702557, 55.55388], + [37.702467, 55.55388] ] ] } @@ -6632,11 +6632,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70247, 55.55397], - [37.70247, 55.55406], - [37.702559, 55.55406], - [37.702559, 55.55397], - [37.70247, 55.55397] + [37.702467, 55.55397], + [37.702467, 55.55406], + [37.702557, 55.55406], + [37.702557, 55.55397], + [37.702467, 55.55397] ] ] } @@ -6648,11 +6648,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70247, 55.55406], - [37.70247, 55.55415], - [37.702559, 55.55415], - [37.702559, 55.55406], - [37.70247, 55.55406] + [37.702467, 55.55406], + [37.702467, 55.55415], + [37.702557, 55.55415], + [37.702557, 55.55406], + [37.702467, 55.55406] ] ] } @@ -6664,11 +6664,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70247, 55.55415], - [37.70247, 55.554239], - [37.702559, 55.554239], - [37.702559, 55.55415], - [37.70247, 55.55415] + [37.702467, 55.55415], + [37.702467, 55.55424], + [37.702557, 55.55424], + [37.702557, 55.55415], + [37.702467, 55.55415] ] ] } @@ -6680,11 +6680,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70247, 55.554239], - [37.70247, 55.554329], - [37.702559, 55.554329], - [37.702559, 55.554239], - [37.70247, 55.554239] + [37.702467, 55.55424], + [37.702467, 55.55433], + [37.702557, 55.55433], + [37.702557, 55.55424], + [37.702467, 55.55424] ] ] } @@ -6696,11 +6696,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70247, 55.554329], - [37.70247, 55.554419], - [37.702559, 55.554419], - [37.702559, 55.554329], - [37.70247, 55.554329] + [37.702467, 55.55433], + [37.702467, 55.55442], + [37.702557, 55.55442], + [37.702557, 55.55433], + [37.702467, 55.55433] ] ] } @@ -6712,11 +6712,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70247, 55.554419], - [37.70247, 55.554509], - [37.702559, 55.554509], - [37.702559, 55.554419], - [37.70247, 55.554419] + [37.702467, 55.55442], + [37.702467, 55.55451], + [37.702557, 55.55451], + [37.702557, 55.55442], + [37.702467, 55.55442] ] ] } @@ -6728,11 +6728,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702559, 55.552443], - [37.702559, 55.552533], - [37.702649, 55.552533], - [37.702649, 55.552443], - [37.702559, 55.552443] + [37.702557, 55.552531], + [37.702557, 55.552621], + [37.702647, 55.552621], + [37.702647, 55.552531], + [37.702557, 55.552531] ] ] } @@ -6744,11 +6744,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702559, 55.552533], - [37.702559, 55.552623], - [37.702649, 55.552623], - [37.702649, 55.552533], - [37.702559, 55.552533] + [37.702557, 55.552621], + [37.702557, 55.552711], + [37.702647, 55.552711], + [37.702647, 55.552621], + [37.702557, 55.552621] ] ] } @@ -6760,11 +6760,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702559, 55.552623], - [37.702559, 55.552712], - [37.702649, 55.552712], - [37.702649, 55.552623], - [37.702559, 55.552623] + [37.702557, 55.552711], + [37.702557, 55.552801], + [37.702647, 55.552801], + [37.702647, 55.552711], + [37.702557, 55.552711] ] ] } @@ -6776,11 +6776,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702559, 55.552712], - [37.702559, 55.552802], - [37.702649, 55.552802], - [37.702649, 55.552712], - [37.702559, 55.552712] + [37.702557, 55.552801], + [37.702557, 55.552891], + [37.702647, 55.552891], + [37.702647, 55.552801], + [37.702557, 55.552801] ] ] } @@ -6792,11 +6792,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702559, 55.552802], - [37.702559, 55.552892], - [37.702649, 55.552892], - [37.702649, 55.552802], - [37.702559, 55.552802] + [37.702557, 55.552891], + [37.702557, 55.552981], + [37.702647, 55.552981], + [37.702647, 55.552891], + [37.702557, 55.552891] ] ] } @@ -6808,11 +6808,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702559, 55.552892], - [37.702559, 55.552982], - [37.702649, 55.552982], - [37.702649, 55.552892], - [37.702559, 55.552892] + [37.702557, 55.552981], + [37.702557, 55.553071], + [37.702647, 55.553071], + [37.702647, 55.552981], + [37.702557, 55.552981] ] ] } @@ -6824,11 +6824,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702559, 55.552982], - [37.702559, 55.553072], - [37.702649, 55.553072], - [37.702649, 55.552982], - [37.702559, 55.552982] + [37.702557, 55.553071], + [37.702557, 55.553161], + [37.702647, 55.553161], + [37.702647, 55.553071], + [37.702557, 55.553071] ] ] } @@ -6840,11 +6840,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702559, 55.553072], - [37.702559, 55.553162], - [37.702649, 55.553162], - [37.702649, 55.553072], - [37.702559, 55.553072] + [37.702557, 55.553161], + [37.702557, 55.553251], + [37.702647, 55.553251], + [37.702647, 55.553161], + [37.702557, 55.553161] ] ] } @@ -6856,11 +6856,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702559, 55.553162], - [37.702559, 55.553251], - [37.702649, 55.553251], - [37.702649, 55.553162], - [37.702559, 55.553162] + [37.702557, 55.553251], + [37.702557, 55.553341], + [37.702647, 55.553341], + [37.702647, 55.553251], + [37.702557, 55.553251] ] ] } @@ -6872,11 +6872,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702559, 55.553251], - [37.702559, 55.553341], - [37.702649, 55.553341], - [37.702649, 55.553251], - [37.702559, 55.553251] + [37.702557, 55.553341], + [37.702557, 55.553431], + [37.702647, 55.553431], + [37.702647, 55.553341], + [37.702557, 55.553341] ] ] } @@ -6888,11 +6888,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702559, 55.553341], - [37.702559, 55.553431], - [37.702649, 55.553431], - [37.702649, 55.553341], - [37.702559, 55.553341] + [37.702557, 55.553431], + [37.702557, 55.55352], + [37.702647, 55.55352], + [37.702647, 55.553431], + [37.702557, 55.553431] ] ] } @@ -6904,11 +6904,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702559, 55.553431], - [37.702559, 55.553521], - [37.702649, 55.553521], - [37.702649, 55.553431], - [37.702559, 55.553431] + [37.702557, 55.55352], + [37.702557, 55.55361], + [37.702647, 55.55361], + [37.702647, 55.55352], + [37.702557, 55.55352] ] ] } @@ -6920,11 +6920,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702559, 55.553521], - [37.702559, 55.553611], - [37.702649, 55.553611], - [37.702649, 55.553521], - [37.702559, 55.553521] + [37.702557, 55.55361], + [37.702557, 55.5537], + [37.702647, 55.5537], + [37.702647, 55.55361], + [37.702557, 55.55361] ] ] } @@ -6936,11 +6936,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702559, 55.553611], - [37.702559, 55.5537], - [37.702649, 55.5537], - [37.702649, 55.553611], - [37.702559, 55.553611] + [37.702557, 55.5537], + [37.702557, 55.55379], + [37.702647, 55.55379], + [37.702647, 55.5537], + [37.702557, 55.5537] ] ] } @@ -6952,11 +6952,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702559, 55.5537], - [37.702559, 55.55379], - [37.702649, 55.55379], - [37.702649, 55.5537], - [37.702559, 55.5537] + [37.702557, 55.55379], + [37.702557, 55.55388], + [37.702647, 55.55388], + [37.702647, 55.55379], + [37.702557, 55.55379] ] ] } @@ -6968,11 +6968,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702559, 55.55379], - [37.702559, 55.55388], - [37.702649, 55.55388], - [37.702649, 55.55379], - [37.702559, 55.55379] + [37.702557, 55.55388], + [37.702557, 55.55397], + [37.702647, 55.55397], + [37.702647, 55.55388], + [37.702557, 55.55388] ] ] } @@ -6984,11 +6984,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702559, 55.55388], - [37.702559, 55.55397], - [37.702649, 55.55397], - [37.702649, 55.55388], - [37.702559, 55.55388] + [37.702557, 55.55397], + [37.702557, 55.55406], + [37.702647, 55.55406], + [37.702647, 55.55397], + [37.702557, 55.55397] ] ] } @@ -7000,11 +7000,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702559, 55.55397], - [37.702559, 55.55406], - [37.702649, 55.55406], - [37.702649, 55.55397], - [37.702559, 55.55397] + [37.702557, 55.55406], + [37.702557, 55.55415], + [37.702647, 55.55415], + [37.702647, 55.55406], + [37.702557, 55.55406] ] ] } @@ -7016,11 +7016,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702559, 55.55406], - [37.702559, 55.55415], - [37.702649, 55.55415], - [37.702649, 55.55406], - [37.702559, 55.55406] + [37.702557, 55.55415], + [37.702557, 55.55424], + [37.702647, 55.55424], + [37.702647, 55.55415], + [37.702557, 55.55415] ] ] } @@ -7032,11 +7032,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702559, 55.55415], - [37.702559, 55.554239], - [37.702649, 55.554239], - [37.702649, 55.55415], - [37.702559, 55.55415] + [37.702557, 55.55424], + [37.702557, 55.55433], + [37.702647, 55.55433], + [37.702647, 55.55424], + [37.702557, 55.55424] ] ] } @@ -7048,11 +7048,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702559, 55.554239], - [37.702559, 55.554329], - [37.702649, 55.554329], - [37.702649, 55.554239], - [37.702559, 55.554239] + [37.702557, 55.55433], + [37.702557, 55.55442], + [37.702647, 55.55442], + [37.702647, 55.55433], + [37.702557, 55.55433] ] ] } @@ -7064,11 +7064,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702559, 55.554329], - [37.702559, 55.554419], - [37.702649, 55.554419], - [37.702649, 55.554329], - [37.702559, 55.554329] + [37.702557, 55.55442], + [37.702557, 55.55451], + [37.702647, 55.55451], + [37.702647, 55.55442], + [37.702557, 55.55442] ] ] } @@ -7080,11 +7080,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702559, 55.554419], - [37.702559, 55.554509], - [37.702649, 55.554509], - [37.702649, 55.554419], - [37.702559, 55.554419] + [37.702647, 55.552441], + [37.702647, 55.552531], + [37.702737, 55.552531], + [37.702737, 55.552441], + [37.702647, 55.552441] ] ] } @@ -7096,11 +7096,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702649, 55.552443], - [37.702649, 55.552533], - [37.702739, 55.552533], - [37.702739, 55.552443], - [37.702649, 55.552443] + [37.702647, 55.552531], + [37.702647, 55.552621], + [37.702737, 55.552621], + [37.702737, 55.552531], + [37.702647, 55.552531] ] ] } @@ -7112,11 +7112,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702649, 55.552533], - [37.702649, 55.552623], - [37.702739, 55.552623], - [37.702739, 55.552533], - [37.702649, 55.552533] + [37.702647, 55.552621], + [37.702647, 55.552711], + [37.702737, 55.552711], + [37.702737, 55.552621], + [37.702647, 55.552621] ] ] } @@ -7128,11 +7128,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702649, 55.552623], - [37.702649, 55.552712], - [37.702739, 55.552712], - [37.702739, 55.552623], - [37.702649, 55.552623] + [37.702647, 55.552711], + [37.702647, 55.552801], + [37.702737, 55.552801], + [37.702737, 55.552711], + [37.702647, 55.552711] ] ] } @@ -7144,11 +7144,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702649, 55.552712], - [37.702649, 55.552802], - [37.702739, 55.552802], - [37.702739, 55.552712], - [37.702649, 55.552712] + [37.702647, 55.552801], + [37.702647, 55.552891], + [37.702737, 55.552891], + [37.702737, 55.552801], + [37.702647, 55.552801] ] ] } @@ -7160,11 +7160,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702649, 55.552802], - [37.702649, 55.552892], - [37.702739, 55.552892], - [37.702739, 55.552802], - [37.702649, 55.552802] + [37.702647, 55.552891], + [37.702647, 55.552981], + [37.702737, 55.552981], + [37.702737, 55.552891], + [37.702647, 55.552891] ] ] } @@ -7176,11 +7176,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702649, 55.552892], - [37.702649, 55.552982], - [37.702739, 55.552982], - [37.702739, 55.552892], - [37.702649, 55.552892] + [37.702647, 55.552981], + [37.702647, 55.553071], + [37.702737, 55.553071], + [37.702737, 55.552981], + [37.702647, 55.552981] ] ] } @@ -7192,11 +7192,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702649, 55.552982], - [37.702649, 55.553072], - [37.702739, 55.553072], - [37.702739, 55.552982], - [37.702649, 55.552982] + [37.702647, 55.553071], + [37.702647, 55.553161], + [37.702737, 55.553161], + [37.702737, 55.553071], + [37.702647, 55.553071] ] ] } @@ -7208,11 +7208,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702649, 55.553072], - [37.702649, 55.553162], - [37.702739, 55.553162], - [37.702739, 55.553072], - [37.702649, 55.553072] + [37.702647, 55.553161], + [37.702647, 55.553251], + [37.702737, 55.553251], + [37.702737, 55.553161], + [37.702647, 55.553161] ] ] } @@ -7224,11 +7224,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702649, 55.553162], - [37.702649, 55.553251], - [37.702739, 55.553251], - [37.702739, 55.553162], - [37.702649, 55.553162] + [37.702647, 55.553251], + [37.702647, 55.553341], + [37.702737, 55.553341], + [37.702737, 55.553251], + [37.702647, 55.553251] ] ] } @@ -7240,11 +7240,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702649, 55.553251], - [37.702649, 55.553341], - [37.702739, 55.553341], - [37.702739, 55.553251], - [37.702649, 55.553251] + [37.702647, 55.553341], + [37.702647, 55.553431], + [37.702737, 55.553431], + [37.702737, 55.553341], + [37.702647, 55.553341] ] ] } @@ -7256,11 +7256,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702649, 55.553341], - [37.702649, 55.553431], - [37.702739, 55.553431], - [37.702739, 55.553341], - [37.702649, 55.553341] + [37.702647, 55.553431], + [37.702647, 55.55352], + [37.702737, 55.55352], + [37.702737, 55.553431], + [37.702647, 55.553431] ] ] } @@ -7272,11 +7272,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702649, 55.553431], - [37.702649, 55.553521], - [37.702739, 55.553521], - [37.702739, 55.553431], - [37.702649, 55.553431] + [37.702647, 55.55352], + [37.702647, 55.55361], + [37.702737, 55.55361], + [37.702737, 55.55352], + [37.702647, 55.55352] ] ] } @@ -7288,11 +7288,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702649, 55.553521], - [37.702649, 55.553611], - [37.702739, 55.553611], - [37.702739, 55.553521], - [37.702649, 55.553521] + [37.702647, 55.55361], + [37.702647, 55.5537], + [37.702737, 55.5537], + [37.702737, 55.55361], + [37.702647, 55.55361] ] ] } @@ -7304,11 +7304,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702649, 55.553611], - [37.702649, 55.5537], - [37.702739, 55.5537], - [37.702739, 55.553611], - [37.702649, 55.553611] + [37.702647, 55.5537], + [37.702647, 55.55379], + [37.702737, 55.55379], + [37.702737, 55.5537], + [37.702647, 55.5537] ] ] } @@ -7320,11 +7320,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702649, 55.5537], - [37.702649, 55.55379], - [37.702739, 55.55379], - [37.702739, 55.5537], - [37.702649, 55.5537] + [37.702647, 55.55379], + [37.702647, 55.55388], + [37.702737, 55.55388], + [37.702737, 55.55379], + [37.702647, 55.55379] ] ] } @@ -7336,11 +7336,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702649, 55.55379], - [37.702649, 55.55388], - [37.702739, 55.55388], - [37.702739, 55.55379], - [37.702649, 55.55379] + [37.702647, 55.55388], + [37.702647, 55.55397], + [37.702737, 55.55397], + [37.702737, 55.55388], + [37.702647, 55.55388] ] ] } @@ -7352,11 +7352,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702649, 55.55388], - [37.702649, 55.55397], - [37.702739, 55.55397], - [37.702739, 55.55388], - [37.702649, 55.55388] + [37.702647, 55.55397], + [37.702647, 55.55406], + [37.702737, 55.55406], + [37.702737, 55.55397], + [37.702647, 55.55397] ] ] } @@ -7368,11 +7368,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702649, 55.55397], - [37.702649, 55.55406], - [37.702739, 55.55406], - [37.702739, 55.55397], - [37.702649, 55.55397] + [37.702647, 55.55406], + [37.702647, 55.55415], + [37.702737, 55.55415], + [37.702737, 55.55406], + [37.702647, 55.55406] ] ] } @@ -7384,11 +7384,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702649, 55.55406], - [37.702649, 55.55415], - [37.702739, 55.55415], - [37.702739, 55.55406], - [37.702649, 55.55406] + [37.702647, 55.55415], + [37.702647, 55.55424], + [37.702737, 55.55424], + [37.702737, 55.55415], + [37.702647, 55.55415] ] ] } @@ -7400,11 +7400,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702649, 55.55415], - [37.702649, 55.554239], - [37.702739, 55.554239], - [37.702739, 55.55415], - [37.702649, 55.55415] + [37.702647, 55.55424], + [37.702647, 55.55433], + [37.702737, 55.55433], + [37.702737, 55.55424], + [37.702647, 55.55424] ] ] } @@ -7416,11 +7416,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702649, 55.554239], - [37.702649, 55.554329], - [37.702739, 55.554329], - [37.702739, 55.554239], - [37.702649, 55.554239] + [37.702647, 55.55433], + [37.702647, 55.55442], + [37.702737, 55.55442], + [37.702737, 55.55433], + [37.702647, 55.55433] ] ] } @@ -7432,11 +7432,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702649, 55.554329], - [37.702649, 55.554419], - [37.702739, 55.554419], - [37.702739, 55.554329], - [37.702649, 55.554329] + [37.702647, 55.55442], + [37.702647, 55.55451], + [37.702737, 55.55451], + [37.702737, 55.55442], + [37.702647, 55.55442] ] ] } @@ -7448,11 +7448,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702649, 55.554419], - [37.702649, 55.554509], - [37.702739, 55.554509], - [37.702739, 55.554419], - [37.702649, 55.554419] + [37.702737, 55.552441], + [37.702737, 55.552531], + [37.702827, 55.552531], + [37.702827, 55.552441], + [37.702737, 55.552441] ] ] } @@ -7464,11 +7464,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702739, 55.552443], - [37.702739, 55.552533], - [37.702829, 55.552533], - [37.702829, 55.552443], - [37.702739, 55.552443] + [37.702737, 55.552531], + [37.702737, 55.552621], + [37.702827, 55.552621], + [37.702827, 55.552531], + [37.702737, 55.552531] ] ] } @@ -7480,11 +7480,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702739, 55.552533], - [37.702739, 55.552623], - [37.702829, 55.552623], - [37.702829, 55.552533], - [37.702739, 55.552533] + [37.702737, 55.552621], + [37.702737, 55.552711], + [37.702827, 55.552711], + [37.702827, 55.552621], + [37.702737, 55.552621] ] ] } @@ -7496,11 +7496,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702739, 55.552623], - [37.702739, 55.552712], - [37.702829, 55.552712], - [37.702829, 55.552623], - [37.702739, 55.552623] + [37.702737, 55.552711], + [37.702737, 55.552801], + [37.702827, 55.552801], + [37.702827, 55.552711], + [37.702737, 55.552711] ] ] } @@ -7512,11 +7512,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702739, 55.552712], - [37.702739, 55.552802], - [37.702829, 55.552802], - [37.702829, 55.552712], - [37.702739, 55.552712] + [37.702737, 55.552801], + [37.702737, 55.552891], + [37.702827, 55.552891], + [37.702827, 55.552801], + [37.702737, 55.552801] ] ] } @@ -7528,11 +7528,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702739, 55.552802], - [37.702739, 55.552892], - [37.702829, 55.552892], - [37.702829, 55.552802], - [37.702739, 55.552802] + [37.702737, 55.552891], + [37.702737, 55.552981], + [37.702827, 55.552981], + [37.702827, 55.552891], + [37.702737, 55.552891] ] ] } @@ -7544,11 +7544,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702739, 55.552892], - [37.702739, 55.552982], - [37.702829, 55.552982], - [37.702829, 55.552892], - [37.702739, 55.552892] + [37.702737, 55.552981], + [37.702737, 55.553071], + [37.702827, 55.553071], + [37.702827, 55.552981], + [37.702737, 55.552981] ] ] } @@ -7560,11 +7560,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702739, 55.552982], - [37.702739, 55.553072], - [37.702829, 55.553072], - [37.702829, 55.552982], - [37.702739, 55.552982] + [37.702737, 55.553071], + [37.702737, 55.553161], + [37.702827, 55.553161], + [37.702827, 55.553071], + [37.702737, 55.553071] ] ] } @@ -7576,11 +7576,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702739, 55.553072], - [37.702739, 55.553162], - [37.702829, 55.553162], - [37.702829, 55.553072], - [37.702739, 55.553072] + [37.702737, 55.553161], + [37.702737, 55.553251], + [37.702827, 55.553251], + [37.702827, 55.553161], + [37.702737, 55.553161] ] ] } @@ -7592,11 +7592,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702739, 55.553162], - [37.702739, 55.553251], - [37.702829, 55.553251], - [37.702829, 55.553162], - [37.702739, 55.553162] + [37.702737, 55.553251], + [37.702737, 55.553341], + [37.702827, 55.553341], + [37.702827, 55.553251], + [37.702737, 55.553251] ] ] } @@ -7608,11 +7608,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702739, 55.553251], - [37.702739, 55.553341], - [37.702829, 55.553341], - [37.702829, 55.553251], - [37.702739, 55.553251] + [37.702737, 55.553341], + [37.702737, 55.553431], + [37.702827, 55.553431], + [37.702827, 55.553341], + [37.702737, 55.553341] ] ] } @@ -7624,11 +7624,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702739, 55.553341], - [37.702739, 55.553431], - [37.702829, 55.553431], - [37.702829, 55.553341], - [37.702739, 55.553341] + [37.702737, 55.553431], + [37.702737, 55.55352], + [37.702827, 55.55352], + [37.702827, 55.553431], + [37.702737, 55.553431] ] ] } @@ -7640,11 +7640,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702739, 55.553431], - [37.702739, 55.553521], - [37.702829, 55.553521], - [37.702829, 55.553431], - [37.702739, 55.553431] + [37.702737, 55.55352], + [37.702737, 55.55361], + [37.702827, 55.55361], + [37.702827, 55.55352], + [37.702737, 55.55352] ] ] } @@ -7656,11 +7656,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702739, 55.553521], - [37.702739, 55.553611], - [37.702829, 55.553611], - [37.702829, 55.553521], - [37.702739, 55.553521] + [37.702737, 55.55361], + [37.702737, 55.5537], + [37.702827, 55.5537], + [37.702827, 55.55361], + [37.702737, 55.55361] ] ] } @@ -7672,11 +7672,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702739, 55.553611], - [37.702739, 55.5537], - [37.702829, 55.5537], - [37.702829, 55.553611], - [37.702739, 55.553611] + [37.702737, 55.5537], + [37.702737, 55.55379], + [37.702827, 55.55379], + [37.702827, 55.5537], + [37.702737, 55.5537] ] ] } @@ -7688,11 +7688,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702739, 55.5537], - [37.702739, 55.55379], - [37.702829, 55.55379], - [37.702829, 55.5537], - [37.702739, 55.5537] + [37.702737, 55.55379], + [37.702737, 55.55388], + [37.702827, 55.55388], + [37.702827, 55.55379], + [37.702737, 55.55379] ] ] } @@ -7704,11 +7704,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702739, 55.55379], - [37.702739, 55.55388], - [37.702829, 55.55388], - [37.702829, 55.55379], - [37.702739, 55.55379] + [37.702737, 55.55388], + [37.702737, 55.55397], + [37.702827, 55.55397], + [37.702827, 55.55388], + [37.702737, 55.55388] ] ] } @@ -7720,11 +7720,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702739, 55.55388], - [37.702739, 55.55397], - [37.702829, 55.55397], - [37.702829, 55.55388], - [37.702739, 55.55388] + [37.702737, 55.55397], + [37.702737, 55.55406], + [37.702827, 55.55406], + [37.702827, 55.55397], + [37.702737, 55.55397] ] ] } @@ -7736,11 +7736,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702739, 55.55397], - [37.702739, 55.55406], - [37.702829, 55.55406], - [37.702829, 55.55397], - [37.702739, 55.55397] + [37.702737, 55.55406], + [37.702737, 55.55415], + [37.702827, 55.55415], + [37.702827, 55.55406], + [37.702737, 55.55406] ] ] } @@ -7752,11 +7752,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702739, 55.55406], - [37.702739, 55.55415], - [37.702829, 55.55415], - [37.702829, 55.55406], - [37.702739, 55.55406] + [37.702737, 55.55415], + [37.702737, 55.55424], + [37.702827, 55.55424], + [37.702827, 55.55415], + [37.702737, 55.55415] ] ] } @@ -7768,11 +7768,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702739, 55.55415], - [37.702739, 55.554239], - [37.702829, 55.554239], - [37.702829, 55.55415], - [37.702739, 55.55415] + [37.702737, 55.55424], + [37.702737, 55.55433], + [37.702827, 55.55433], + [37.702827, 55.55424], + [37.702737, 55.55424] ] ] } @@ -7784,11 +7784,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702739, 55.554239], - [37.702739, 55.554329], - [37.702829, 55.554329], - [37.702829, 55.554239], - [37.702739, 55.554239] + [37.702737, 55.55433], + [37.702737, 55.55442], + [37.702827, 55.55442], + [37.702827, 55.55433], + [37.702737, 55.55433] ] ] } @@ -7800,11 +7800,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702739, 55.554329], - [37.702739, 55.554419], - [37.702829, 55.554419], - [37.702829, 55.554329], - [37.702739, 55.554329] + [37.702737, 55.55442], + [37.702737, 55.55451], + [37.702827, 55.55451], + [37.702827, 55.55442], + [37.702737, 55.55442] ] ] } @@ -7816,11 +7816,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702739, 55.554419], - [37.702739, 55.554509], - [37.702829, 55.554509], - [37.702829, 55.554419], - [37.702739, 55.554419] + [37.702827, 55.552441], + [37.702827, 55.552531], + [37.702917, 55.552531], + [37.702917, 55.552441], + [37.702827, 55.552441] ] ] } @@ -7832,11 +7832,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702829, 55.552443], - [37.702829, 55.552533], - [37.702919, 55.552533], - [37.702919, 55.552443], - [37.702829, 55.552443] + [37.702827, 55.552531], + [37.702827, 55.552621], + [37.702917, 55.552621], + [37.702917, 55.552531], + [37.702827, 55.552531] ] ] } @@ -7848,11 +7848,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702829, 55.552533], - [37.702829, 55.552623], - [37.702919, 55.552623], - [37.702919, 55.552533], - [37.702829, 55.552533] + [37.702827, 55.552621], + [37.702827, 55.552711], + [37.702917, 55.552711], + [37.702917, 55.552621], + [37.702827, 55.552621] ] ] } @@ -7864,11 +7864,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702829, 55.552623], - [37.702829, 55.552712], - [37.702919, 55.552712], - [37.702919, 55.552623], - [37.702829, 55.552623] + [37.702827, 55.552711], + [37.702827, 55.552801], + [37.702917, 55.552801], + [37.702917, 55.552711], + [37.702827, 55.552711] ] ] } @@ -7880,11 +7880,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702829, 55.552712], - [37.702829, 55.552802], - [37.702919, 55.552802], - [37.702919, 55.552712], - [37.702829, 55.552712] + [37.702827, 55.552801], + [37.702827, 55.552891], + [37.702917, 55.552891], + [37.702917, 55.552801], + [37.702827, 55.552801] ] ] } @@ -7896,11 +7896,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702829, 55.552802], - [37.702829, 55.552892], - [37.702919, 55.552892], - [37.702919, 55.552802], - [37.702829, 55.552802] + [37.702827, 55.552891], + [37.702827, 55.552981], + [37.702917, 55.552981], + [37.702917, 55.552891], + [37.702827, 55.552891] ] ] } @@ -7912,11 +7912,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702829, 55.552892], - [37.702829, 55.552982], - [37.702919, 55.552982], - [37.702919, 55.552892], - [37.702829, 55.552892] + [37.702827, 55.552981], + [37.702827, 55.553071], + [37.702917, 55.553071], + [37.702917, 55.552981], + [37.702827, 55.552981] ] ] } @@ -7928,11 +7928,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702829, 55.552982], - [37.702829, 55.553072], - [37.702919, 55.553072], - [37.702919, 55.552982], - [37.702829, 55.552982] + [37.702827, 55.553071], + [37.702827, 55.553161], + [37.702917, 55.553161], + [37.702917, 55.553071], + [37.702827, 55.553071] ] ] } @@ -7944,11 +7944,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702829, 55.553072], - [37.702829, 55.553162], - [37.702919, 55.553162], - [37.702919, 55.553072], - [37.702829, 55.553072] + [37.702827, 55.553161], + [37.702827, 55.553251], + [37.702917, 55.553251], + [37.702917, 55.553161], + [37.702827, 55.553161] ] ] } @@ -7960,11 +7960,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702829, 55.553162], - [37.702829, 55.553251], - [37.702919, 55.553251], - [37.702919, 55.553162], - [37.702829, 55.553162] + [37.702827, 55.553251], + [37.702827, 55.553341], + [37.702917, 55.553341], + [37.702917, 55.553251], + [37.702827, 55.553251] ] ] } @@ -7976,11 +7976,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702829, 55.553251], - [37.702829, 55.553341], - [37.702919, 55.553341], - [37.702919, 55.553251], - [37.702829, 55.553251] + [37.702827, 55.553341], + [37.702827, 55.553431], + [37.702917, 55.553431], + [37.702917, 55.553341], + [37.702827, 55.553341] ] ] } @@ -7992,11 +7992,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702829, 55.553341], - [37.702829, 55.553431], - [37.702919, 55.553431], - [37.702919, 55.553341], - [37.702829, 55.553341] + [37.702827, 55.553431], + [37.702827, 55.55352], + [37.702917, 55.55352], + [37.702917, 55.553431], + [37.702827, 55.553431] ] ] } @@ -8008,11 +8008,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702829, 55.553431], - [37.702829, 55.553521], - [37.702919, 55.553521], - [37.702919, 55.553431], - [37.702829, 55.553431] + [37.702827, 55.55352], + [37.702827, 55.55361], + [37.702917, 55.55361], + [37.702917, 55.55352], + [37.702827, 55.55352] ] ] } @@ -8024,11 +8024,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702829, 55.553521], - [37.702829, 55.553611], - [37.702919, 55.553611], - [37.702919, 55.553521], - [37.702829, 55.553521] + [37.702827, 55.55361], + [37.702827, 55.5537], + [37.702917, 55.5537], + [37.702917, 55.55361], + [37.702827, 55.55361] ] ] } @@ -8040,11 +8040,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702829, 55.553611], - [37.702829, 55.5537], - [37.702919, 55.5537], - [37.702919, 55.553611], - [37.702829, 55.553611] + [37.702827, 55.5537], + [37.702827, 55.55379], + [37.702917, 55.55379], + [37.702917, 55.5537], + [37.702827, 55.5537] ] ] } @@ -8056,11 +8056,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702829, 55.5537], - [37.702829, 55.55379], - [37.702919, 55.55379], - [37.702919, 55.5537], - [37.702829, 55.5537] + [37.702827, 55.55379], + [37.702827, 55.55388], + [37.702917, 55.55388], + [37.702917, 55.55379], + [37.702827, 55.55379] ] ] } @@ -8072,11 +8072,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702829, 55.55379], - [37.702829, 55.55388], - [37.702919, 55.55388], - [37.702919, 55.55379], - [37.702829, 55.55379] + [37.702827, 55.55388], + [37.702827, 55.55397], + [37.702917, 55.55397], + [37.702917, 55.55388], + [37.702827, 55.55388] ] ] } @@ -8088,11 +8088,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702829, 55.55388], - [37.702829, 55.55397], - [37.702919, 55.55397], - [37.702919, 55.55388], - [37.702829, 55.55388] + [37.702827, 55.55397], + [37.702827, 55.55406], + [37.702917, 55.55406], + [37.702917, 55.55397], + [37.702827, 55.55397] ] ] } @@ -8104,11 +8104,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702829, 55.55397], - [37.702829, 55.55406], - [37.702919, 55.55406], - [37.702919, 55.55397], - [37.702829, 55.55397] + [37.702827, 55.55406], + [37.702827, 55.55415], + [37.702917, 55.55415], + [37.702917, 55.55406], + [37.702827, 55.55406] ] ] } @@ -8120,11 +8120,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702829, 55.55406], - [37.702829, 55.55415], - [37.702919, 55.55415], - [37.702919, 55.55406], - [37.702829, 55.55406] + [37.702827, 55.55415], + [37.702827, 55.55424], + [37.702917, 55.55424], + [37.702917, 55.55415], + [37.702827, 55.55415] ] ] } @@ -8136,11 +8136,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702829, 55.55415], - [37.702829, 55.554239], - [37.702919, 55.554239], - [37.702919, 55.55415], - [37.702829, 55.55415] + [37.702827, 55.55424], + [37.702827, 55.55433], + [37.702917, 55.55433], + [37.702917, 55.55424], + [37.702827, 55.55424] ] ] } @@ -8152,11 +8152,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702829, 55.554239], - [37.702829, 55.554329], - [37.702919, 55.554329], - [37.702919, 55.554239], - [37.702829, 55.554239] + [37.702827, 55.55433], + [37.702827, 55.55442], + [37.702917, 55.55442], + [37.702917, 55.55433], + [37.702827, 55.55433] ] ] } @@ -8168,11 +8168,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702829, 55.554329], - [37.702829, 55.554419], - [37.702919, 55.554419], - [37.702919, 55.554329], - [37.702829, 55.554329] + [37.702827, 55.55442], + [37.702827, 55.55451], + [37.702917, 55.55451], + [37.702917, 55.55442], + [37.702827, 55.55442] ] ] } @@ -8184,11 +8184,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702829, 55.554419], - [37.702829, 55.554509], - [37.702919, 55.554509], - [37.702919, 55.554419], - [37.702829, 55.554419] + [37.702827, 55.55451], + [37.702827, 55.5546], + [37.702917, 55.5546], + [37.702917, 55.55451], + [37.702827, 55.55451] ] ] } @@ -8200,11 +8200,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702829, 55.554509], - [37.702829, 55.554599], - [37.702919, 55.554599], - [37.702919, 55.554509], - [37.702829, 55.554509] + [37.702917, 55.552351], + [37.702917, 55.552441], + [37.703007, 55.552441], + [37.703007, 55.552351], + [37.702917, 55.552351] ] ] } @@ -8216,11 +8216,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702919, 55.552353], - [37.702919, 55.552443], - [37.703009, 55.552443], - [37.703009, 55.552353], - [37.702919, 55.552353] + [37.702917, 55.552441], + [37.702917, 55.552531], + [37.703007, 55.552531], + [37.703007, 55.552441], + [37.702917, 55.552441] ] ] } @@ -8232,11 +8232,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702919, 55.552443], - [37.702919, 55.552533], - [37.703009, 55.552533], - [37.703009, 55.552443], - [37.702919, 55.552443] + [37.702917, 55.552531], + [37.702917, 55.552621], + [37.703007, 55.552621], + [37.703007, 55.552531], + [37.702917, 55.552531] ] ] } @@ -8248,11 +8248,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702919, 55.552533], - [37.702919, 55.552623], - [37.703009, 55.552623], - [37.703009, 55.552533], - [37.702919, 55.552533] + [37.702917, 55.552621], + [37.702917, 55.552711], + [37.703007, 55.552711], + [37.703007, 55.552621], + [37.702917, 55.552621] ] ] } @@ -8264,11 +8264,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702919, 55.552623], - [37.702919, 55.552712], - [37.703009, 55.552712], - [37.703009, 55.552623], - [37.702919, 55.552623] + [37.702917, 55.552711], + [37.702917, 55.552801], + [37.703007, 55.552801], + [37.703007, 55.552711], + [37.702917, 55.552711] ] ] } @@ -8280,11 +8280,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702919, 55.552712], - [37.702919, 55.552802], - [37.703009, 55.552802], - [37.703009, 55.552712], - [37.702919, 55.552712] + [37.702917, 55.552801], + [37.702917, 55.552891], + [37.703007, 55.552891], + [37.703007, 55.552801], + [37.702917, 55.552801] ] ] } @@ -8296,11 +8296,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702919, 55.552802], - [37.702919, 55.552892], - [37.703009, 55.552892], - [37.703009, 55.552802], - [37.702919, 55.552802] + [37.702917, 55.552891], + [37.702917, 55.552981], + [37.703007, 55.552981], + [37.703007, 55.552891], + [37.702917, 55.552891] ] ] } @@ -8312,11 +8312,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702919, 55.552892], - [37.702919, 55.552982], - [37.703009, 55.552982], - [37.703009, 55.552892], - [37.702919, 55.552892] + [37.702917, 55.552981], + [37.702917, 55.553071], + [37.703007, 55.553071], + [37.703007, 55.552981], + [37.702917, 55.552981] ] ] } @@ -8328,11 +8328,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702919, 55.552982], - [37.702919, 55.553072], - [37.703009, 55.553072], - [37.703009, 55.552982], - [37.702919, 55.552982] + [37.702917, 55.553071], + [37.702917, 55.553161], + [37.703007, 55.553161], + [37.703007, 55.553071], + [37.702917, 55.553071] ] ] } @@ -8344,11 +8344,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702919, 55.553072], - [37.702919, 55.553162], - [37.703009, 55.553162], - [37.703009, 55.553072], - [37.702919, 55.553072] + [37.702917, 55.553161], + [37.702917, 55.553251], + [37.703007, 55.553251], + [37.703007, 55.553161], + [37.702917, 55.553161] ] ] } @@ -8360,11 +8360,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702919, 55.553162], - [37.702919, 55.553251], - [37.703009, 55.553251], - [37.703009, 55.553162], - [37.702919, 55.553162] + [37.702917, 55.553251], + [37.702917, 55.553341], + [37.703007, 55.553341], + [37.703007, 55.553251], + [37.702917, 55.553251] ] ] } @@ -8376,11 +8376,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702919, 55.553251], - [37.702919, 55.553341], - [37.703009, 55.553341], - [37.703009, 55.553251], - [37.702919, 55.553251] + [37.702917, 55.553341], + [37.702917, 55.553431], + [37.703007, 55.553431], + [37.703007, 55.553341], + [37.702917, 55.553341] ] ] } @@ -8392,11 +8392,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702919, 55.553341], - [37.702919, 55.553431], - [37.703009, 55.553431], - [37.703009, 55.553341], - [37.702919, 55.553341] + [37.702917, 55.553431], + [37.702917, 55.55352], + [37.703007, 55.55352], + [37.703007, 55.553431], + [37.702917, 55.553431] ] ] } @@ -8408,11 +8408,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702919, 55.553431], - [37.702919, 55.553521], - [37.703009, 55.553521], - [37.703009, 55.553431], - [37.702919, 55.553431] + [37.702917, 55.55352], + [37.702917, 55.55361], + [37.703007, 55.55361], + [37.703007, 55.55352], + [37.702917, 55.55352] ] ] } @@ -8424,11 +8424,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702919, 55.553521], - [37.702919, 55.553611], - [37.703009, 55.553611], - [37.703009, 55.553521], - [37.702919, 55.553521] + [37.702917, 55.55361], + [37.702917, 55.5537], + [37.703007, 55.5537], + [37.703007, 55.55361], + [37.702917, 55.55361] ] ] } @@ -8440,11 +8440,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702919, 55.553611], - [37.702919, 55.5537], - [37.703009, 55.5537], - [37.703009, 55.553611], - [37.702919, 55.553611] + [37.702917, 55.5537], + [37.702917, 55.55379], + [37.703007, 55.55379], + [37.703007, 55.5537], + [37.702917, 55.5537] ] ] } @@ -8456,11 +8456,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702919, 55.5537], - [37.702919, 55.55379], - [37.703009, 55.55379], - [37.703009, 55.5537], - [37.702919, 55.5537] + [37.702917, 55.55379], + [37.702917, 55.55388], + [37.703007, 55.55388], + [37.703007, 55.55379], + [37.702917, 55.55379] ] ] } @@ -8472,11 +8472,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702919, 55.55379], - [37.702919, 55.55388], - [37.703009, 55.55388], - [37.703009, 55.55379], - [37.702919, 55.55379] + [37.702917, 55.55388], + [37.702917, 55.55397], + [37.703007, 55.55397], + [37.703007, 55.55388], + [37.702917, 55.55388] ] ] } @@ -8488,11 +8488,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702919, 55.55388], - [37.702919, 55.55397], - [37.703009, 55.55397], - [37.703009, 55.55388], - [37.702919, 55.55388] + [37.702917, 55.55397], + [37.702917, 55.55406], + [37.703007, 55.55406], + [37.703007, 55.55397], + [37.702917, 55.55397] ] ] } @@ -8504,11 +8504,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702919, 55.55397], - [37.702919, 55.55406], - [37.703009, 55.55406], - [37.703009, 55.55397], - [37.702919, 55.55397] + [37.702917, 55.55406], + [37.702917, 55.55415], + [37.703007, 55.55415], + [37.703007, 55.55406], + [37.702917, 55.55406] ] ] } @@ -8520,11 +8520,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702919, 55.55406], - [37.702919, 55.55415], - [37.703009, 55.55415], - [37.703009, 55.55406], - [37.702919, 55.55406] + [37.702917, 55.55415], + [37.702917, 55.55424], + [37.703007, 55.55424], + [37.703007, 55.55415], + [37.702917, 55.55415] ] ] } @@ -8536,11 +8536,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702919, 55.55415], - [37.702919, 55.554239], - [37.703009, 55.554239], - [37.703009, 55.55415], - [37.702919, 55.55415] + [37.702917, 55.55424], + [37.702917, 55.55433], + [37.703007, 55.55433], + [37.703007, 55.55424], + [37.702917, 55.55424] ] ] } @@ -8552,11 +8552,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702919, 55.554239], - [37.702919, 55.554329], - [37.703009, 55.554329], - [37.703009, 55.554239], - [37.702919, 55.554239] + [37.702917, 55.55433], + [37.702917, 55.55442], + [37.703007, 55.55442], + [37.703007, 55.55433], + [37.702917, 55.55433] ] ] } @@ -8568,11 +8568,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702919, 55.554329], - [37.702919, 55.554419], - [37.703009, 55.554419], - [37.703009, 55.554329], - [37.702919, 55.554329] + [37.702917, 55.55442], + [37.702917, 55.55451], + [37.703007, 55.55451], + [37.703007, 55.55442], + [37.702917, 55.55442] ] ] } @@ -8584,11 +8584,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702919, 55.554419], - [37.702919, 55.554509], - [37.703009, 55.554509], - [37.703009, 55.554419], - [37.702919, 55.554419] + [37.702917, 55.55451], + [37.702917, 55.5546], + [37.703007, 55.5546], + [37.703007, 55.55451], + [37.702917, 55.55451] ] ] } @@ -8600,11 +8600,11 @@ "type": "Polygon", "coordinates": [ [ - [37.702919, 55.554509], - [37.702919, 55.554599], - [37.703009, 55.554599], - [37.703009, 55.554509], - [37.702919, 55.554509] + [37.703007, 55.552351], + [37.703007, 55.552441], + [37.703097, 55.552441], + [37.703097, 55.552351], + [37.703007, 55.552351] ] ] } @@ -8616,11 +8616,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703009, 55.552353], - [37.703009, 55.552443], - [37.703098, 55.552443], - [37.703098, 55.552353], - [37.703009, 55.552353] + [37.703007, 55.552441], + [37.703007, 55.552531], + [37.703097, 55.552531], + [37.703097, 55.552441], + [37.703007, 55.552441] ] ] } @@ -8632,11 +8632,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703009, 55.552443], - [37.703009, 55.552533], - [37.703098, 55.552533], - [37.703098, 55.552443], - [37.703009, 55.552443] + [37.703007, 55.552531], + [37.703007, 55.552621], + [37.703097, 55.552621], + [37.703097, 55.552531], + [37.703007, 55.552531] ] ] } @@ -8648,11 +8648,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703009, 55.552533], - [37.703009, 55.552623], - [37.703098, 55.552623], - [37.703098, 55.552533], - [37.703009, 55.552533] + [37.703007, 55.552621], + [37.703007, 55.552711], + [37.703097, 55.552711], + [37.703097, 55.552621], + [37.703007, 55.552621] ] ] } @@ -8664,11 +8664,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703009, 55.552623], - [37.703009, 55.552712], - [37.703098, 55.552712], - [37.703098, 55.552623], - [37.703009, 55.552623] + [37.703007, 55.552711], + [37.703007, 55.552801], + [37.703097, 55.552801], + [37.703097, 55.552711], + [37.703007, 55.552711] ] ] } @@ -8680,11 +8680,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703009, 55.552712], - [37.703009, 55.552802], - [37.703098, 55.552802], - [37.703098, 55.552712], - [37.703009, 55.552712] + [37.703007, 55.552801], + [37.703007, 55.552891], + [37.703097, 55.552891], + [37.703097, 55.552801], + [37.703007, 55.552801] ] ] } @@ -8696,11 +8696,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703009, 55.552802], - [37.703009, 55.552892], - [37.703098, 55.552892], - [37.703098, 55.552802], - [37.703009, 55.552802] + [37.703007, 55.552891], + [37.703007, 55.552981], + [37.703097, 55.552981], + [37.703097, 55.552891], + [37.703007, 55.552891] ] ] } @@ -8712,11 +8712,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703009, 55.552892], - [37.703009, 55.552982], - [37.703098, 55.552982], - [37.703098, 55.552892], - [37.703009, 55.552892] + [37.703007, 55.552981], + [37.703007, 55.553071], + [37.703097, 55.553071], + [37.703097, 55.552981], + [37.703007, 55.552981] ] ] } @@ -8728,11 +8728,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703009, 55.552982], - [37.703009, 55.553072], - [37.703098, 55.553072], - [37.703098, 55.552982], - [37.703009, 55.552982] + [37.703007, 55.553071], + [37.703007, 55.553161], + [37.703097, 55.553161], + [37.703097, 55.553071], + [37.703007, 55.553071] ] ] } @@ -8744,11 +8744,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703009, 55.553072], - [37.703009, 55.553162], - [37.703098, 55.553162], - [37.703098, 55.553072], - [37.703009, 55.553072] + [37.703007, 55.553161], + [37.703007, 55.553251], + [37.703097, 55.553251], + [37.703097, 55.553161], + [37.703007, 55.553161] ] ] } @@ -8760,11 +8760,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703009, 55.553162], - [37.703009, 55.553251], - [37.703098, 55.553251], - [37.703098, 55.553162], - [37.703009, 55.553162] + [37.703007, 55.553251], + [37.703007, 55.553341], + [37.703097, 55.553341], + [37.703097, 55.553251], + [37.703007, 55.553251] ] ] } @@ -8776,11 +8776,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703009, 55.553251], - [37.703009, 55.553341], - [37.703098, 55.553341], - [37.703098, 55.553251], - [37.703009, 55.553251] + [37.703007, 55.553341], + [37.703007, 55.553431], + [37.703097, 55.553431], + [37.703097, 55.553341], + [37.703007, 55.553341] ] ] } @@ -8792,11 +8792,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703009, 55.553341], - [37.703009, 55.553431], - [37.703098, 55.553431], - [37.703098, 55.553341], - [37.703009, 55.553341] + [37.703007, 55.553431], + [37.703007, 55.55352], + [37.703097, 55.55352], + [37.703097, 55.553431], + [37.703007, 55.553431] ] ] } @@ -8808,11 +8808,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703009, 55.553431], - [37.703009, 55.553521], - [37.703098, 55.553521], - [37.703098, 55.553431], - [37.703009, 55.553431] + [37.703007, 55.55352], + [37.703007, 55.55361], + [37.703097, 55.55361], + [37.703097, 55.55352], + [37.703007, 55.55352] ] ] } @@ -8824,11 +8824,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703009, 55.553521], - [37.703009, 55.553611], - [37.703098, 55.553611], - [37.703098, 55.553521], - [37.703009, 55.553521] + [37.703007, 55.55361], + [37.703007, 55.5537], + [37.703097, 55.5537], + [37.703097, 55.55361], + [37.703007, 55.55361] ] ] } @@ -8840,11 +8840,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703009, 55.553611], - [37.703009, 55.5537], - [37.703098, 55.5537], - [37.703098, 55.553611], - [37.703009, 55.553611] + [37.703007, 55.5537], + [37.703007, 55.55379], + [37.703097, 55.55379], + [37.703097, 55.5537], + [37.703007, 55.5537] ] ] } @@ -8856,11 +8856,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703009, 55.5537], - [37.703009, 55.55379], - [37.703098, 55.55379], - [37.703098, 55.5537], - [37.703009, 55.5537] + [37.703007, 55.55379], + [37.703007, 55.55388], + [37.703097, 55.55388], + [37.703097, 55.55379], + [37.703007, 55.55379] ] ] } @@ -8872,11 +8872,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703009, 55.55379], - [37.703009, 55.55388], - [37.703098, 55.55388], - [37.703098, 55.55379], - [37.703009, 55.55379] + [37.703007, 55.55388], + [37.703007, 55.55397], + [37.703097, 55.55397], + [37.703097, 55.55388], + [37.703007, 55.55388] ] ] } @@ -8888,11 +8888,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703009, 55.55388], - [37.703009, 55.55397], - [37.703098, 55.55397], - [37.703098, 55.55388], - [37.703009, 55.55388] + [37.703007, 55.55397], + [37.703007, 55.55406], + [37.703097, 55.55406], + [37.703097, 55.55397], + [37.703007, 55.55397] ] ] } @@ -8904,11 +8904,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703009, 55.55397], - [37.703009, 55.55406], - [37.703098, 55.55406], - [37.703098, 55.55397], - [37.703009, 55.55397] + [37.703007, 55.55406], + [37.703007, 55.55415], + [37.703097, 55.55415], + [37.703097, 55.55406], + [37.703007, 55.55406] ] ] } @@ -8920,11 +8920,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703009, 55.55406], - [37.703009, 55.55415], - [37.703098, 55.55415], - [37.703098, 55.55406], - [37.703009, 55.55406] + [37.703007, 55.55415], + [37.703007, 55.55424], + [37.703097, 55.55424], + [37.703097, 55.55415], + [37.703007, 55.55415] ] ] } @@ -8936,11 +8936,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703009, 55.55415], - [37.703009, 55.554239], - [37.703098, 55.554239], - [37.703098, 55.55415], - [37.703009, 55.55415] + [37.703007, 55.55424], + [37.703007, 55.55433], + [37.703097, 55.55433], + [37.703097, 55.55424], + [37.703007, 55.55424] ] ] } @@ -8952,11 +8952,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703009, 55.554239], - [37.703009, 55.554329], - [37.703098, 55.554329], - [37.703098, 55.554239], - [37.703009, 55.554239] + [37.703007, 55.55433], + [37.703007, 55.55442], + [37.703097, 55.55442], + [37.703097, 55.55433], + [37.703007, 55.55433] ] ] } @@ -8968,11 +8968,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703009, 55.554329], - [37.703009, 55.554419], - [37.703098, 55.554419], - [37.703098, 55.554329], - [37.703009, 55.554329] + [37.703007, 55.55442], + [37.703007, 55.55451], + [37.703097, 55.55451], + [37.703097, 55.55442], + [37.703007, 55.55442] ] ] } @@ -8984,11 +8984,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703009, 55.554419], - [37.703009, 55.554509], - [37.703098, 55.554509], - [37.703098, 55.554419], - [37.703009, 55.554419] + [37.703007, 55.55451], + [37.703007, 55.5546], + [37.703097, 55.5546], + [37.703097, 55.55451], + [37.703007, 55.55451] ] ] } @@ -9000,11 +9000,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703009, 55.554509], - [37.703009, 55.554599], - [37.703098, 55.554599], - [37.703098, 55.554509], - [37.703009, 55.554509] + [37.703097, 55.552351], + [37.703097, 55.552441], + [37.703187, 55.552441], + [37.703187, 55.552351], + [37.703097, 55.552351] ] ] } @@ -9016,11 +9016,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703098, 55.552353], - [37.703098, 55.552443], - [37.703188, 55.552443], - [37.703188, 55.552353], - [37.703098, 55.552353] + [37.703097, 55.552441], + [37.703097, 55.552531], + [37.703187, 55.552531], + [37.703187, 55.552441], + [37.703097, 55.552441] ] ] } @@ -9032,11 +9032,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703098, 55.552443], - [37.703098, 55.552533], - [37.703188, 55.552533], - [37.703188, 55.552443], - [37.703098, 55.552443] + [37.703097, 55.552531], + [37.703097, 55.552621], + [37.703187, 55.552621], + [37.703187, 55.552531], + [37.703097, 55.552531] ] ] } @@ -9048,11 +9048,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703098, 55.552533], - [37.703098, 55.552623], - [37.703188, 55.552623], - [37.703188, 55.552533], - [37.703098, 55.552533] + [37.703097, 55.552621], + [37.703097, 55.552711], + [37.703187, 55.552711], + [37.703187, 55.552621], + [37.703097, 55.552621] ] ] } @@ -9064,11 +9064,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703098, 55.552623], - [37.703098, 55.552712], - [37.703188, 55.552712], - [37.703188, 55.552623], - [37.703098, 55.552623] + [37.703097, 55.552711], + [37.703097, 55.552801], + [37.703187, 55.552801], + [37.703187, 55.552711], + [37.703097, 55.552711] ] ] } @@ -9080,11 +9080,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703098, 55.552712], - [37.703098, 55.552802], - [37.703188, 55.552802], - [37.703188, 55.552712], - [37.703098, 55.552712] + [37.703097, 55.552801], + [37.703097, 55.552891], + [37.703187, 55.552891], + [37.703187, 55.552801], + [37.703097, 55.552801] ] ] } @@ -9096,11 +9096,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703098, 55.552802], - [37.703098, 55.552892], - [37.703188, 55.552892], - [37.703188, 55.552802], - [37.703098, 55.552802] + [37.703097, 55.552891], + [37.703097, 55.552981], + [37.703187, 55.552981], + [37.703187, 55.552891], + [37.703097, 55.552891] ] ] } @@ -9112,11 +9112,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703098, 55.552892], - [37.703098, 55.552982], - [37.703188, 55.552982], - [37.703188, 55.552892], - [37.703098, 55.552892] + [37.703097, 55.552981], + [37.703097, 55.553071], + [37.703187, 55.553071], + [37.703187, 55.552981], + [37.703097, 55.552981] ] ] } @@ -9128,11 +9128,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703098, 55.552982], - [37.703098, 55.553072], - [37.703188, 55.553072], - [37.703188, 55.552982], - [37.703098, 55.552982] + [37.703097, 55.553071], + [37.703097, 55.553161], + [37.703187, 55.553161], + [37.703187, 55.553071], + [37.703097, 55.553071] ] ] } @@ -9144,11 +9144,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703098, 55.553072], - [37.703098, 55.553162], - [37.703188, 55.553162], - [37.703188, 55.553072], - [37.703098, 55.553072] + [37.703097, 55.553161], + [37.703097, 55.553251], + [37.703187, 55.553251], + [37.703187, 55.553161], + [37.703097, 55.553161] ] ] } @@ -9160,11 +9160,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703098, 55.553162], - [37.703098, 55.553251], - [37.703188, 55.553251], - [37.703188, 55.553162], - [37.703098, 55.553162] + [37.703097, 55.553251], + [37.703097, 55.553341], + [37.703187, 55.553341], + [37.703187, 55.553251], + [37.703097, 55.553251] ] ] } @@ -9176,11 +9176,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703098, 55.553251], - [37.703098, 55.553341], - [37.703188, 55.553341], - [37.703188, 55.553251], - [37.703098, 55.553251] + [37.703097, 55.553341], + [37.703097, 55.553431], + [37.703187, 55.553431], + [37.703187, 55.553341], + [37.703097, 55.553341] ] ] } @@ -9192,11 +9192,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703098, 55.553341], - [37.703098, 55.553431], - [37.703188, 55.553431], - [37.703188, 55.553341], - [37.703098, 55.553341] + [37.703097, 55.553431], + [37.703097, 55.55352], + [37.703187, 55.55352], + [37.703187, 55.553431], + [37.703097, 55.553431] ] ] } @@ -9208,11 +9208,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703098, 55.553431], - [37.703098, 55.553521], - [37.703188, 55.553521], - [37.703188, 55.553431], - [37.703098, 55.553431] + [37.703097, 55.55352], + [37.703097, 55.55361], + [37.703187, 55.55361], + [37.703187, 55.55352], + [37.703097, 55.55352] ] ] } @@ -9224,11 +9224,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703098, 55.553521], - [37.703098, 55.553611], - [37.703188, 55.553611], - [37.703188, 55.553521], - [37.703098, 55.553521] + [37.703097, 55.55361], + [37.703097, 55.5537], + [37.703187, 55.5537], + [37.703187, 55.55361], + [37.703097, 55.55361] ] ] } @@ -9240,11 +9240,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703098, 55.553611], - [37.703098, 55.5537], - [37.703188, 55.5537], - [37.703188, 55.553611], - [37.703098, 55.553611] + [37.703097, 55.5537], + [37.703097, 55.55379], + [37.703187, 55.55379], + [37.703187, 55.5537], + [37.703097, 55.5537] ] ] } @@ -9256,11 +9256,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703098, 55.5537], - [37.703098, 55.55379], - [37.703188, 55.55379], - [37.703188, 55.5537], - [37.703098, 55.5537] + [37.703097, 55.55379], + [37.703097, 55.55388], + [37.703187, 55.55388], + [37.703187, 55.55379], + [37.703097, 55.55379] ] ] } @@ -9272,11 +9272,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703098, 55.55379], - [37.703098, 55.55388], - [37.703188, 55.55388], - [37.703188, 55.55379], - [37.703098, 55.55379] + [37.703097, 55.55388], + [37.703097, 55.55397], + [37.703187, 55.55397], + [37.703187, 55.55388], + [37.703097, 55.55388] ] ] } @@ -9288,11 +9288,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703098, 55.55388], - [37.703098, 55.55397], - [37.703188, 55.55397], - [37.703188, 55.55388], - [37.703098, 55.55388] + [37.703097, 55.55397], + [37.703097, 55.55406], + [37.703187, 55.55406], + [37.703187, 55.55397], + [37.703097, 55.55397] ] ] } @@ -9304,11 +9304,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703098, 55.55397], - [37.703098, 55.55406], - [37.703188, 55.55406], - [37.703188, 55.55397], - [37.703098, 55.55397] + [37.703097, 55.55406], + [37.703097, 55.55415], + [37.703187, 55.55415], + [37.703187, 55.55406], + [37.703097, 55.55406] ] ] } @@ -9320,11 +9320,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703098, 55.55406], - [37.703098, 55.55415], - [37.703188, 55.55415], - [37.703188, 55.55406], - [37.703098, 55.55406] + [37.703097, 55.55415], + [37.703097, 55.55424], + [37.703187, 55.55424], + [37.703187, 55.55415], + [37.703097, 55.55415] ] ] } @@ -9336,11 +9336,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703098, 55.55415], - [37.703098, 55.554239], - [37.703188, 55.554239], - [37.703188, 55.55415], - [37.703098, 55.55415] + [37.703097, 55.55424], + [37.703097, 55.55433], + [37.703187, 55.55433], + [37.703187, 55.55424], + [37.703097, 55.55424] ] ] } @@ -9352,11 +9352,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703098, 55.554239], - [37.703098, 55.554329], - [37.703188, 55.554329], - [37.703188, 55.554239], - [37.703098, 55.554239] + [37.703097, 55.55433], + [37.703097, 55.55442], + [37.703187, 55.55442], + [37.703187, 55.55433], + [37.703097, 55.55433] ] ] } @@ -9368,11 +9368,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703098, 55.554329], - [37.703098, 55.554419], - [37.703188, 55.554419], - [37.703188, 55.554329], - [37.703098, 55.554329] + [37.703097, 55.55442], + [37.703097, 55.55451], + [37.703187, 55.55451], + [37.703187, 55.55442], + [37.703097, 55.55442] ] ] } @@ -9384,11 +9384,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703098, 55.554419], - [37.703098, 55.554509], - [37.703188, 55.554509], - [37.703188, 55.554419], - [37.703098, 55.554419] + [37.703097, 55.55451], + [37.703097, 55.5546], + [37.703187, 55.5546], + [37.703187, 55.55451], + [37.703097, 55.55451] ] ] } @@ -9400,11 +9400,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703098, 55.554509], - [37.703098, 55.554599], - [37.703188, 55.554599], - [37.703188, 55.554509], - [37.703098, 55.554509] + [37.703097, 55.5546], + [37.703097, 55.55469], + [37.703187, 55.55469], + [37.703187, 55.5546], + [37.703097, 55.5546] ] ] } @@ -9416,11 +9416,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703098, 55.554599], - [37.703098, 55.554689], - [37.703188, 55.554689], - [37.703188, 55.554599], - [37.703098, 55.554599] + [37.703187, 55.552351], + [37.703187, 55.552441], + [37.703276, 55.552441], + [37.703276, 55.552351], + [37.703187, 55.552351] ] ] } @@ -9432,11 +9432,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703188, 55.552353], - [37.703188, 55.552443], - [37.703278, 55.552443], - [37.703278, 55.552353], - [37.703188, 55.552353] + [37.703187, 55.552441], + [37.703187, 55.552531], + [37.703276, 55.552531], + [37.703276, 55.552441], + [37.703187, 55.552441] ] ] } @@ -9448,11 +9448,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703188, 55.552443], - [37.703188, 55.552533], - [37.703278, 55.552533], - [37.703278, 55.552443], - [37.703188, 55.552443] + [37.703187, 55.552531], + [37.703187, 55.552621], + [37.703276, 55.552621], + [37.703276, 55.552531], + [37.703187, 55.552531] ] ] } @@ -9464,11 +9464,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703188, 55.552533], - [37.703188, 55.552623], - [37.703278, 55.552623], - [37.703278, 55.552533], - [37.703188, 55.552533] + [37.703187, 55.552621], + [37.703187, 55.552711], + [37.703276, 55.552711], + [37.703276, 55.552621], + [37.703187, 55.552621] ] ] } @@ -9480,11 +9480,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703188, 55.552623], - [37.703188, 55.552712], - [37.703278, 55.552712], - [37.703278, 55.552623], - [37.703188, 55.552623] + [37.703187, 55.552711], + [37.703187, 55.552801], + [37.703276, 55.552801], + [37.703276, 55.552711], + [37.703187, 55.552711] ] ] } @@ -9496,11 +9496,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703188, 55.552712], - [37.703188, 55.552802], - [37.703278, 55.552802], - [37.703278, 55.552712], - [37.703188, 55.552712] + [37.703187, 55.552801], + [37.703187, 55.552891], + [37.703276, 55.552891], + [37.703276, 55.552801], + [37.703187, 55.552801] ] ] } @@ -9512,11 +9512,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703188, 55.552802], - [37.703188, 55.552892], - [37.703278, 55.552892], - [37.703278, 55.552802], - [37.703188, 55.552802] + [37.703187, 55.552891], + [37.703187, 55.552981], + [37.703276, 55.552981], + [37.703276, 55.552891], + [37.703187, 55.552891] ] ] } @@ -9528,11 +9528,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703188, 55.552892], - [37.703188, 55.552982], - [37.703278, 55.552982], - [37.703278, 55.552892], - [37.703188, 55.552892] + [37.703187, 55.552981], + [37.703187, 55.553071], + [37.703276, 55.553071], + [37.703276, 55.552981], + [37.703187, 55.552981] ] ] } @@ -9544,11 +9544,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703188, 55.552982], - [37.703188, 55.553072], - [37.703278, 55.553072], - [37.703278, 55.552982], - [37.703188, 55.552982] + [37.703187, 55.553071], + [37.703187, 55.553161], + [37.703276, 55.553161], + [37.703276, 55.553071], + [37.703187, 55.553071] ] ] } @@ -9560,11 +9560,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703188, 55.553072], - [37.703188, 55.553162], - [37.703278, 55.553162], - [37.703278, 55.553072], - [37.703188, 55.553072] + [37.703187, 55.553161], + [37.703187, 55.553251], + [37.703276, 55.553251], + [37.703276, 55.553161], + [37.703187, 55.553161] ] ] } @@ -9576,11 +9576,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703188, 55.553162], - [37.703188, 55.553251], - [37.703278, 55.553251], - [37.703278, 55.553162], - [37.703188, 55.553162] + [37.703187, 55.553251], + [37.703187, 55.553341], + [37.703276, 55.553341], + [37.703276, 55.553251], + [37.703187, 55.553251] ] ] } @@ -9592,11 +9592,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703188, 55.553251], - [37.703188, 55.553341], - [37.703278, 55.553341], - [37.703278, 55.553251], - [37.703188, 55.553251] + [37.703187, 55.553341], + [37.703187, 55.553431], + [37.703276, 55.553431], + [37.703276, 55.553341], + [37.703187, 55.553341] ] ] } @@ -9608,11 +9608,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703188, 55.553341], - [37.703188, 55.553431], - [37.703278, 55.553431], - [37.703278, 55.553341], - [37.703188, 55.553341] + [37.703187, 55.553431], + [37.703187, 55.55352], + [37.703276, 55.55352], + [37.703276, 55.553431], + [37.703187, 55.553431] ] ] } @@ -9624,11 +9624,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703188, 55.553431], - [37.703188, 55.553521], - [37.703278, 55.553521], - [37.703278, 55.553431], - [37.703188, 55.553431] + [37.703187, 55.55352], + [37.703187, 55.55361], + [37.703276, 55.55361], + [37.703276, 55.55352], + [37.703187, 55.55352] ] ] } @@ -9640,11 +9640,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703188, 55.553521], - [37.703188, 55.553611], - [37.703278, 55.553611], - [37.703278, 55.553521], - [37.703188, 55.553521] + [37.703187, 55.55361], + [37.703187, 55.5537], + [37.703276, 55.5537], + [37.703276, 55.55361], + [37.703187, 55.55361] ] ] } @@ -9656,11 +9656,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703188, 55.553611], - [37.703188, 55.5537], - [37.703278, 55.5537], - [37.703278, 55.553611], - [37.703188, 55.553611] + [37.703187, 55.5537], + [37.703187, 55.55379], + [37.703276, 55.55379], + [37.703276, 55.5537], + [37.703187, 55.5537] ] ] } @@ -9672,11 +9672,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703188, 55.5537], - [37.703188, 55.55379], - [37.703278, 55.55379], - [37.703278, 55.5537], - [37.703188, 55.5537] + [37.703187, 55.55379], + [37.703187, 55.55388], + [37.703276, 55.55388], + [37.703276, 55.55379], + [37.703187, 55.55379] ] ] } @@ -9688,11 +9688,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703188, 55.55379], - [37.703188, 55.55388], - [37.703278, 55.55388], - [37.703278, 55.55379], - [37.703188, 55.55379] + [37.703187, 55.55388], + [37.703187, 55.55397], + [37.703276, 55.55397], + [37.703276, 55.55388], + [37.703187, 55.55388] ] ] } @@ -9704,11 +9704,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703188, 55.55388], - [37.703188, 55.55397], - [37.703278, 55.55397], - [37.703278, 55.55388], - [37.703188, 55.55388] + [37.703187, 55.55397], + [37.703187, 55.55406], + [37.703276, 55.55406], + [37.703276, 55.55397], + [37.703187, 55.55397] ] ] } @@ -9720,11 +9720,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703188, 55.55397], - [37.703188, 55.55406], - [37.703278, 55.55406], - [37.703278, 55.55397], - [37.703188, 55.55397] + [37.703187, 55.55406], + [37.703187, 55.55415], + [37.703276, 55.55415], + [37.703276, 55.55406], + [37.703187, 55.55406] ] ] } @@ -9736,11 +9736,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703188, 55.55406], - [37.703188, 55.55415], - [37.703278, 55.55415], - [37.703278, 55.55406], - [37.703188, 55.55406] + [37.703187, 55.55415], + [37.703187, 55.55424], + [37.703276, 55.55424], + [37.703276, 55.55415], + [37.703187, 55.55415] ] ] } @@ -9752,11 +9752,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703188, 55.55415], - [37.703188, 55.554239], - [37.703278, 55.554239], - [37.703278, 55.55415], - [37.703188, 55.55415] + [37.703187, 55.55424], + [37.703187, 55.55433], + [37.703276, 55.55433], + [37.703276, 55.55424], + [37.703187, 55.55424] ] ] } @@ -9768,11 +9768,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703188, 55.554239], - [37.703188, 55.554329], - [37.703278, 55.554329], - [37.703278, 55.554239], - [37.703188, 55.554239] + [37.703187, 55.55433], + [37.703187, 55.55442], + [37.703276, 55.55442], + [37.703276, 55.55433], + [37.703187, 55.55433] ] ] } @@ -9784,11 +9784,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703188, 55.554329], - [37.703188, 55.554419], - [37.703278, 55.554419], - [37.703278, 55.554329], - [37.703188, 55.554329] + [37.703187, 55.55442], + [37.703187, 55.55451], + [37.703276, 55.55451], + [37.703276, 55.55442], + [37.703187, 55.55442] ] ] } @@ -9800,11 +9800,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703188, 55.554419], - [37.703188, 55.554509], - [37.703278, 55.554509], - [37.703278, 55.554419], - [37.703188, 55.554419] + [37.703187, 55.55451], + [37.703187, 55.5546], + [37.703276, 55.5546], + [37.703276, 55.55451], + [37.703187, 55.55451] ] ] } @@ -9816,11 +9816,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703188, 55.554509], - [37.703188, 55.554599], - [37.703278, 55.554599], - [37.703278, 55.554509], - [37.703188, 55.554509] + [37.703187, 55.5546], + [37.703187, 55.55469], + [37.703276, 55.55469], + [37.703276, 55.5546], + [37.703187, 55.5546] ] ] } @@ -9832,11 +9832,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703188, 55.554599], - [37.703188, 55.554689], - [37.703278, 55.554689], - [37.703278, 55.554599], - [37.703188, 55.554599] + [37.703276, 55.552261], + [37.703276, 55.552351], + [37.703366, 55.552351], + [37.703366, 55.552261], + [37.703276, 55.552261] ] ] } @@ -9848,11 +9848,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703278, 55.552263], - [37.703278, 55.552353], - [37.703368, 55.552353], - [37.703368, 55.552263], - [37.703278, 55.552263] + [37.703276, 55.552351], + [37.703276, 55.552441], + [37.703366, 55.552441], + [37.703366, 55.552351], + [37.703276, 55.552351] ] ] } @@ -9864,11 +9864,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703278, 55.552353], - [37.703278, 55.552443], - [37.703368, 55.552443], - [37.703368, 55.552353], - [37.703278, 55.552353] + [37.703276, 55.552441], + [37.703276, 55.552531], + [37.703366, 55.552531], + [37.703366, 55.552441], + [37.703276, 55.552441] ] ] } @@ -9880,11 +9880,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703278, 55.552443], - [37.703278, 55.552533], - [37.703368, 55.552533], - [37.703368, 55.552443], - [37.703278, 55.552443] + [37.703276, 55.552531], + [37.703276, 55.552621], + [37.703366, 55.552621], + [37.703366, 55.552531], + [37.703276, 55.552531] ] ] } @@ -9896,11 +9896,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703278, 55.552533], - [37.703278, 55.552623], - [37.703368, 55.552623], - [37.703368, 55.552533], - [37.703278, 55.552533] + [37.703276, 55.552621], + [37.703276, 55.552711], + [37.703366, 55.552711], + [37.703366, 55.552621], + [37.703276, 55.552621] ] ] } @@ -9912,11 +9912,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703278, 55.552623], - [37.703278, 55.552712], - [37.703368, 55.552712], - [37.703368, 55.552623], - [37.703278, 55.552623] + [37.703276, 55.552711], + [37.703276, 55.552801], + [37.703366, 55.552801], + [37.703366, 55.552711], + [37.703276, 55.552711] ] ] } @@ -9928,11 +9928,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703278, 55.552712], - [37.703278, 55.552802], - [37.703368, 55.552802], - [37.703368, 55.552712], - [37.703278, 55.552712] + [37.703276, 55.552801], + [37.703276, 55.552891], + [37.703366, 55.552891], + [37.703366, 55.552801], + [37.703276, 55.552801] ] ] } @@ -9944,11 +9944,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703278, 55.552802], - [37.703278, 55.552892], - [37.703368, 55.552892], - [37.703368, 55.552802], - [37.703278, 55.552802] + [37.703276, 55.552891], + [37.703276, 55.552981], + [37.703366, 55.552981], + [37.703366, 55.552891], + [37.703276, 55.552891] ] ] } @@ -9960,11 +9960,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703278, 55.552892], - [37.703278, 55.552982], - [37.703368, 55.552982], - [37.703368, 55.552892], - [37.703278, 55.552892] + [37.703276, 55.552981], + [37.703276, 55.553071], + [37.703366, 55.553071], + [37.703366, 55.552981], + [37.703276, 55.552981] ] ] } @@ -9976,11 +9976,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703278, 55.552982], - [37.703278, 55.553072], - [37.703368, 55.553072], - [37.703368, 55.552982], - [37.703278, 55.552982] + [37.703276, 55.553071], + [37.703276, 55.553161], + [37.703366, 55.553161], + [37.703366, 55.553071], + [37.703276, 55.553071] ] ] } @@ -9992,11 +9992,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703278, 55.553072], - [37.703278, 55.553162], - [37.703368, 55.553162], - [37.703368, 55.553072], - [37.703278, 55.553072] + [37.703276, 55.553161], + [37.703276, 55.553251], + [37.703366, 55.553251], + [37.703366, 55.553161], + [37.703276, 55.553161] ] ] } @@ -10008,11 +10008,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703278, 55.553162], - [37.703278, 55.553251], - [37.703368, 55.553251], - [37.703368, 55.553162], - [37.703278, 55.553162] + [37.703276, 55.553251], + [37.703276, 55.553341], + [37.703366, 55.553341], + [37.703366, 55.553251], + [37.703276, 55.553251] ] ] } @@ -10024,11 +10024,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703278, 55.553251], - [37.703278, 55.553341], - [37.703368, 55.553341], - [37.703368, 55.553251], - [37.703278, 55.553251] + [37.703276, 55.553341], + [37.703276, 55.553431], + [37.703366, 55.553431], + [37.703366, 55.553341], + [37.703276, 55.553341] ] ] } @@ -10040,11 +10040,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703278, 55.553341], - [37.703278, 55.553431], - [37.703368, 55.553431], - [37.703368, 55.553341], - [37.703278, 55.553341] + [37.703276, 55.553431], + [37.703276, 55.55352], + [37.703366, 55.55352], + [37.703366, 55.553431], + [37.703276, 55.553431] ] ] } @@ -10056,11 +10056,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703278, 55.553431], - [37.703278, 55.553521], - [37.703368, 55.553521], - [37.703368, 55.553431], - [37.703278, 55.553431] + [37.703276, 55.55352], + [37.703276, 55.55361], + [37.703366, 55.55361], + [37.703366, 55.55352], + [37.703276, 55.55352] ] ] } @@ -10072,11 +10072,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703278, 55.553521], - [37.703278, 55.553611], - [37.703368, 55.553611], - [37.703368, 55.553521], - [37.703278, 55.553521] + [37.703276, 55.55361], + [37.703276, 55.5537], + [37.703366, 55.5537], + [37.703366, 55.55361], + [37.703276, 55.55361] ] ] } @@ -10088,11 +10088,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703278, 55.553611], - [37.703278, 55.5537], - [37.703368, 55.5537], - [37.703368, 55.553611], - [37.703278, 55.553611] + [37.703276, 55.5537], + [37.703276, 55.55379], + [37.703366, 55.55379], + [37.703366, 55.5537], + [37.703276, 55.5537] ] ] } @@ -10104,11 +10104,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703278, 55.5537], - [37.703278, 55.55379], - [37.703368, 55.55379], - [37.703368, 55.5537], - [37.703278, 55.5537] + [37.703276, 55.55379], + [37.703276, 55.55388], + [37.703366, 55.55388], + [37.703366, 55.55379], + [37.703276, 55.55379] ] ] } @@ -10120,11 +10120,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703278, 55.55379], - [37.703278, 55.55388], - [37.703368, 55.55388], - [37.703368, 55.55379], - [37.703278, 55.55379] + [37.703276, 55.55388], + [37.703276, 55.55397], + [37.703366, 55.55397], + [37.703366, 55.55388], + [37.703276, 55.55388] ] ] } @@ -10136,11 +10136,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703278, 55.55388], - [37.703278, 55.55397], - [37.703368, 55.55397], - [37.703368, 55.55388], - [37.703278, 55.55388] + [37.703276, 55.55397], + [37.703276, 55.55406], + [37.703366, 55.55406], + [37.703366, 55.55397], + [37.703276, 55.55397] ] ] } @@ -10152,11 +10152,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703278, 55.55397], - [37.703278, 55.55406], - [37.703368, 55.55406], - [37.703368, 55.55397], - [37.703278, 55.55397] + [37.703276, 55.55406], + [37.703276, 55.55415], + [37.703366, 55.55415], + [37.703366, 55.55406], + [37.703276, 55.55406] ] ] } @@ -10168,11 +10168,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703278, 55.55406], - [37.703278, 55.55415], - [37.703368, 55.55415], - [37.703368, 55.55406], - [37.703278, 55.55406] + [37.703276, 55.55415], + [37.703276, 55.55424], + [37.703366, 55.55424], + [37.703366, 55.55415], + [37.703276, 55.55415] ] ] } @@ -10184,11 +10184,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703278, 55.55415], - [37.703278, 55.554239], - [37.703368, 55.554239], - [37.703368, 55.55415], - [37.703278, 55.55415] + [37.703276, 55.55424], + [37.703276, 55.55433], + [37.703366, 55.55433], + [37.703366, 55.55424], + [37.703276, 55.55424] ] ] } @@ -10200,11 +10200,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703278, 55.554239], - [37.703278, 55.554329], - [37.703368, 55.554329], - [37.703368, 55.554239], - [37.703278, 55.554239] + [37.703276, 55.55433], + [37.703276, 55.55442], + [37.703366, 55.55442], + [37.703366, 55.55433], + [37.703276, 55.55433] ] ] } @@ -10216,11 +10216,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703278, 55.554329], - [37.703278, 55.554419], - [37.703368, 55.554419], - [37.703368, 55.554329], - [37.703278, 55.554329] + [37.703276, 55.55442], + [37.703276, 55.55451], + [37.703366, 55.55451], + [37.703366, 55.55442], + [37.703276, 55.55442] ] ] } @@ -10232,11 +10232,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703278, 55.554419], - [37.703278, 55.554509], - [37.703368, 55.554509], - [37.703368, 55.554419], - [37.703278, 55.554419] + [37.703276, 55.55451], + [37.703276, 55.5546], + [37.703366, 55.5546], + [37.703366, 55.55451], + [37.703276, 55.55451] ] ] } @@ -10248,11 +10248,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703278, 55.554509], - [37.703278, 55.554599], - [37.703368, 55.554599], - [37.703368, 55.554509], - [37.703278, 55.554509] + [37.703276, 55.5546], + [37.703276, 55.55469], + [37.703366, 55.55469], + [37.703366, 55.5546], + [37.703276, 55.5546] ] ] } @@ -10264,11 +10264,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703278, 55.554599], - [37.703278, 55.554689], - [37.703368, 55.554689], - [37.703368, 55.554599], - [37.703278, 55.554599] + [37.703366, 55.552261], + [37.703366, 55.552351], + [37.703456, 55.552351], + [37.703456, 55.552261], + [37.703366, 55.552261] ] ] } @@ -10280,11 +10280,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703368, 55.552263], - [37.703368, 55.552353], - [37.703458, 55.552353], - [37.703458, 55.552263], - [37.703368, 55.552263] + [37.703366, 55.552351], + [37.703366, 55.552441], + [37.703456, 55.552441], + [37.703456, 55.552351], + [37.703366, 55.552351] ] ] } @@ -10296,11 +10296,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703368, 55.552353], - [37.703368, 55.552443], - [37.703458, 55.552443], - [37.703458, 55.552353], - [37.703368, 55.552353] + [37.703366, 55.552441], + [37.703366, 55.552531], + [37.703456, 55.552531], + [37.703456, 55.552441], + [37.703366, 55.552441] ] ] } @@ -10312,11 +10312,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703368, 55.552443], - [37.703368, 55.552533], - [37.703458, 55.552533], - [37.703458, 55.552443], - [37.703368, 55.552443] + [37.703366, 55.552531], + [37.703366, 55.552621], + [37.703456, 55.552621], + [37.703456, 55.552531], + [37.703366, 55.552531] ] ] } @@ -10328,11 +10328,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703368, 55.552533], - [37.703368, 55.552623], - [37.703458, 55.552623], - [37.703458, 55.552533], - [37.703368, 55.552533] + [37.703366, 55.552621], + [37.703366, 55.552711], + [37.703456, 55.552711], + [37.703456, 55.552621], + [37.703366, 55.552621] ] ] } @@ -10344,11 +10344,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703368, 55.552623], - [37.703368, 55.552712], - [37.703458, 55.552712], - [37.703458, 55.552623], - [37.703368, 55.552623] + [37.703366, 55.552711], + [37.703366, 55.552801], + [37.703456, 55.552801], + [37.703456, 55.552711], + [37.703366, 55.552711] ] ] } @@ -10360,11 +10360,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703368, 55.552712], - [37.703368, 55.552802], - [37.703458, 55.552802], - [37.703458, 55.552712], - [37.703368, 55.552712] + [37.703366, 55.552801], + [37.703366, 55.552891], + [37.703456, 55.552891], + [37.703456, 55.552801], + [37.703366, 55.552801] ] ] } @@ -10376,11 +10376,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703368, 55.552802], - [37.703368, 55.552892], - [37.703458, 55.552892], - [37.703458, 55.552802], - [37.703368, 55.552802] + [37.703366, 55.552891], + [37.703366, 55.552981], + [37.703456, 55.552981], + [37.703456, 55.552891], + [37.703366, 55.552891] ] ] } @@ -10392,11 +10392,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703368, 55.552892], - [37.703368, 55.552982], - [37.703458, 55.552982], - [37.703458, 55.552892], - [37.703368, 55.552892] + [37.703366, 55.552981], + [37.703366, 55.553071], + [37.703456, 55.553071], + [37.703456, 55.552981], + [37.703366, 55.552981] ] ] } @@ -10408,11 +10408,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703368, 55.552982], - [37.703368, 55.553072], - [37.703458, 55.553072], - [37.703458, 55.552982], - [37.703368, 55.552982] + [37.703366, 55.553071], + [37.703366, 55.553161], + [37.703456, 55.553161], + [37.703456, 55.553071], + [37.703366, 55.553071] ] ] } @@ -10424,11 +10424,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703368, 55.553072], - [37.703368, 55.553162], - [37.703458, 55.553162], - [37.703458, 55.553072], - [37.703368, 55.553072] + [37.703366, 55.553161], + [37.703366, 55.553251], + [37.703456, 55.553251], + [37.703456, 55.553161], + [37.703366, 55.553161] ] ] } @@ -10440,11 +10440,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703368, 55.553162], - [37.703368, 55.553251], - [37.703458, 55.553251], - [37.703458, 55.553162], - [37.703368, 55.553162] + [37.703366, 55.553251], + [37.703366, 55.553341], + [37.703456, 55.553341], + [37.703456, 55.553251], + [37.703366, 55.553251] ] ] } @@ -10456,11 +10456,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703368, 55.553251], - [37.703368, 55.553341], - [37.703458, 55.553341], - [37.703458, 55.553251], - [37.703368, 55.553251] + [37.703366, 55.553341], + [37.703366, 55.553431], + [37.703456, 55.553431], + [37.703456, 55.553341], + [37.703366, 55.553341] ] ] } @@ -10472,11 +10472,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703368, 55.553341], - [37.703368, 55.553431], - [37.703458, 55.553431], - [37.703458, 55.553341], - [37.703368, 55.553341] + [37.703366, 55.553431], + [37.703366, 55.55352], + [37.703456, 55.55352], + [37.703456, 55.553431], + [37.703366, 55.553431] ] ] } @@ -10488,11 +10488,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703368, 55.553431], - [37.703368, 55.553521], - [37.703458, 55.553521], - [37.703458, 55.553431], - [37.703368, 55.553431] + [37.703366, 55.55352], + [37.703366, 55.55361], + [37.703456, 55.55361], + [37.703456, 55.55352], + [37.703366, 55.55352] ] ] } @@ -10504,11 +10504,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703368, 55.553521], - [37.703368, 55.553611], - [37.703458, 55.553611], - [37.703458, 55.553521], - [37.703368, 55.553521] + [37.703366, 55.55361], + [37.703366, 55.5537], + [37.703456, 55.5537], + [37.703456, 55.55361], + [37.703366, 55.55361] ] ] } @@ -10520,11 +10520,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703368, 55.553611], - [37.703368, 55.5537], - [37.703458, 55.5537], - [37.703458, 55.553611], - [37.703368, 55.553611] + [37.703366, 55.5537], + [37.703366, 55.55379], + [37.703456, 55.55379], + [37.703456, 55.5537], + [37.703366, 55.5537] ] ] } @@ -10536,11 +10536,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703368, 55.5537], - [37.703368, 55.55379], - [37.703458, 55.55379], - [37.703458, 55.5537], - [37.703368, 55.5537] + [37.703366, 55.55379], + [37.703366, 55.55388], + [37.703456, 55.55388], + [37.703456, 55.55379], + [37.703366, 55.55379] ] ] } @@ -10552,11 +10552,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703368, 55.55379], - [37.703368, 55.55388], - [37.703458, 55.55388], - [37.703458, 55.55379], - [37.703368, 55.55379] + [37.703366, 55.55388], + [37.703366, 55.55397], + [37.703456, 55.55397], + [37.703456, 55.55388], + [37.703366, 55.55388] ] ] } @@ -10568,11 +10568,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703368, 55.55388], - [37.703368, 55.55397], - [37.703458, 55.55397], - [37.703458, 55.55388], - [37.703368, 55.55388] + [37.703366, 55.55397], + [37.703366, 55.55406], + [37.703456, 55.55406], + [37.703456, 55.55397], + [37.703366, 55.55397] ] ] } @@ -10584,11 +10584,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703368, 55.55397], - [37.703368, 55.55406], - [37.703458, 55.55406], - [37.703458, 55.55397], - [37.703368, 55.55397] + [37.703366, 55.55406], + [37.703366, 55.55415], + [37.703456, 55.55415], + [37.703456, 55.55406], + [37.703366, 55.55406] ] ] } @@ -10600,11 +10600,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703368, 55.55406], - [37.703368, 55.55415], - [37.703458, 55.55415], - [37.703458, 55.55406], - [37.703368, 55.55406] + [37.703366, 55.55415], + [37.703366, 55.55424], + [37.703456, 55.55424], + [37.703456, 55.55415], + [37.703366, 55.55415] ] ] } @@ -10616,11 +10616,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703368, 55.55415], - [37.703368, 55.554239], - [37.703458, 55.554239], - [37.703458, 55.55415], - [37.703368, 55.55415] + [37.703366, 55.55424], + [37.703366, 55.55433], + [37.703456, 55.55433], + [37.703456, 55.55424], + [37.703366, 55.55424] ] ] } @@ -10632,11 +10632,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703368, 55.554239], - [37.703368, 55.554329], - [37.703458, 55.554329], - [37.703458, 55.554239], - [37.703368, 55.554239] + [37.703366, 55.55433], + [37.703366, 55.55442], + [37.703456, 55.55442], + [37.703456, 55.55433], + [37.703366, 55.55433] ] ] } @@ -10648,11 +10648,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703368, 55.554329], - [37.703368, 55.554419], - [37.703458, 55.554419], - [37.703458, 55.554329], - [37.703368, 55.554329] + [37.703366, 55.55442], + [37.703366, 55.55451], + [37.703456, 55.55451], + [37.703456, 55.55442], + [37.703366, 55.55442] ] ] } @@ -10664,11 +10664,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703368, 55.554419], - [37.703368, 55.554509], - [37.703458, 55.554509], - [37.703458, 55.554419], - [37.703368, 55.554419] + [37.703366, 55.55451], + [37.703366, 55.5546], + [37.703456, 55.5546], + [37.703456, 55.55451], + [37.703366, 55.55451] ] ] } @@ -10680,11 +10680,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703368, 55.554509], - [37.703368, 55.554599], - [37.703458, 55.554599], - [37.703458, 55.554509], - [37.703368, 55.554509] + [37.703366, 55.5546], + [37.703366, 55.55469], + [37.703456, 55.55469], + [37.703456, 55.5546], + [37.703366, 55.5546] ] ] } @@ -10696,11 +10696,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703368, 55.554599], - [37.703368, 55.554689], - [37.703458, 55.554689], - [37.703458, 55.554599], - [37.703368, 55.554599] + [37.703456, 55.552261], + [37.703456, 55.552351], + [37.703546, 55.552351], + [37.703546, 55.552261], + [37.703456, 55.552261] ] ] } @@ -10712,11 +10712,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703458, 55.552263], - [37.703458, 55.552353], - [37.703548, 55.552353], - [37.703548, 55.552263], - [37.703458, 55.552263] + [37.703456, 55.552351], + [37.703456, 55.552441], + [37.703546, 55.552441], + [37.703546, 55.552351], + [37.703456, 55.552351] ] ] } @@ -10728,11 +10728,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703458, 55.552353], - [37.703458, 55.552443], - [37.703548, 55.552443], - [37.703548, 55.552353], - [37.703458, 55.552353] + [37.703456, 55.552441], + [37.703456, 55.552531], + [37.703546, 55.552531], + [37.703546, 55.552441], + [37.703456, 55.552441] ] ] } @@ -10744,11 +10744,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703458, 55.552443], - [37.703458, 55.552533], - [37.703548, 55.552533], - [37.703548, 55.552443], - [37.703458, 55.552443] + [37.703456, 55.552531], + [37.703456, 55.552621], + [37.703546, 55.552621], + [37.703546, 55.552531], + [37.703456, 55.552531] ] ] } @@ -10760,11 +10760,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703458, 55.552533], - [37.703458, 55.552623], - [37.703548, 55.552623], - [37.703548, 55.552533], - [37.703458, 55.552533] + [37.703456, 55.552621], + [37.703456, 55.552711], + [37.703546, 55.552711], + [37.703546, 55.552621], + [37.703456, 55.552621] ] ] } @@ -10776,11 +10776,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703458, 55.552623], - [37.703458, 55.552712], - [37.703548, 55.552712], - [37.703548, 55.552623], - [37.703458, 55.552623] + [37.703456, 55.552711], + [37.703456, 55.552801], + [37.703546, 55.552801], + [37.703546, 55.552711], + [37.703456, 55.552711] ] ] } @@ -10792,11 +10792,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703458, 55.552712], - [37.703458, 55.552802], - [37.703548, 55.552802], - [37.703548, 55.552712], - [37.703458, 55.552712] + [37.703456, 55.552801], + [37.703456, 55.552891], + [37.703546, 55.552891], + [37.703546, 55.552801], + [37.703456, 55.552801] ] ] } @@ -10808,11 +10808,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703458, 55.552802], - [37.703458, 55.552892], - [37.703548, 55.552892], - [37.703548, 55.552802], - [37.703458, 55.552802] + [37.703456, 55.552891], + [37.703456, 55.552981], + [37.703546, 55.552981], + [37.703546, 55.552891], + [37.703456, 55.552891] ] ] } @@ -10824,11 +10824,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703458, 55.552892], - [37.703458, 55.552982], - [37.703548, 55.552982], - [37.703548, 55.552892], - [37.703458, 55.552892] + [37.703456, 55.552981], + [37.703456, 55.553071], + [37.703546, 55.553071], + [37.703546, 55.552981], + [37.703456, 55.552981] ] ] } @@ -10840,11 +10840,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703458, 55.552982], - [37.703458, 55.553072], - [37.703548, 55.553072], - [37.703548, 55.552982], - [37.703458, 55.552982] + [37.703456, 55.553071], + [37.703456, 55.553161], + [37.703546, 55.553161], + [37.703546, 55.553071], + [37.703456, 55.553071] ] ] } @@ -10856,11 +10856,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703458, 55.553072], - [37.703458, 55.553162], - [37.703548, 55.553162], - [37.703548, 55.553072], - [37.703458, 55.553072] + [37.703456, 55.553161], + [37.703456, 55.553251], + [37.703546, 55.553251], + [37.703546, 55.553161], + [37.703456, 55.553161] ] ] } @@ -10872,11 +10872,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703458, 55.553162], - [37.703458, 55.553251], - [37.703548, 55.553251], - [37.703548, 55.553162], - [37.703458, 55.553162] + [37.703456, 55.553251], + [37.703456, 55.553341], + [37.703546, 55.553341], + [37.703546, 55.553251], + [37.703456, 55.553251] ] ] } @@ -10888,11 +10888,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703458, 55.553251], - [37.703458, 55.553341], - [37.703548, 55.553341], - [37.703548, 55.553251], - [37.703458, 55.553251] + [37.703456, 55.553341], + [37.703456, 55.553431], + [37.703546, 55.553431], + [37.703546, 55.553341], + [37.703456, 55.553341] ] ] } @@ -10904,11 +10904,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703458, 55.553341], - [37.703458, 55.553431], - [37.703548, 55.553431], - [37.703548, 55.553341], - [37.703458, 55.553341] + [37.703456, 55.553431], + [37.703456, 55.55352], + [37.703546, 55.55352], + [37.703546, 55.553431], + [37.703456, 55.553431] ] ] } @@ -10920,11 +10920,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703458, 55.553431], - [37.703458, 55.553521], - [37.703548, 55.553521], - [37.703548, 55.553431], - [37.703458, 55.553431] + [37.703456, 55.55352], + [37.703456, 55.55361], + [37.703546, 55.55361], + [37.703546, 55.55352], + [37.703456, 55.55352] ] ] } @@ -10936,11 +10936,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703458, 55.553521], - [37.703458, 55.553611], - [37.703548, 55.553611], - [37.703548, 55.553521], - [37.703458, 55.553521] + [37.703456, 55.55361], + [37.703456, 55.5537], + [37.703546, 55.5537], + [37.703546, 55.55361], + [37.703456, 55.55361] ] ] } @@ -10952,11 +10952,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703458, 55.553611], - [37.703458, 55.5537], - [37.703548, 55.5537], - [37.703548, 55.553611], - [37.703458, 55.553611] + [37.703456, 55.5537], + [37.703456, 55.55379], + [37.703546, 55.55379], + [37.703546, 55.5537], + [37.703456, 55.5537] ] ] } @@ -10968,11 +10968,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703458, 55.5537], - [37.703458, 55.55379], - [37.703548, 55.55379], - [37.703548, 55.5537], - [37.703458, 55.5537] + [37.703456, 55.55379], + [37.703456, 55.55388], + [37.703546, 55.55388], + [37.703546, 55.55379], + [37.703456, 55.55379] ] ] } @@ -10984,11 +10984,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703458, 55.55379], - [37.703458, 55.55388], - [37.703548, 55.55388], - [37.703548, 55.55379], - [37.703458, 55.55379] + [37.703456, 55.55388], + [37.703456, 55.55397], + [37.703546, 55.55397], + [37.703546, 55.55388], + [37.703456, 55.55388] ] ] } @@ -11000,11 +11000,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703458, 55.55388], - [37.703458, 55.55397], - [37.703548, 55.55397], - [37.703548, 55.55388], - [37.703458, 55.55388] + [37.703456, 55.55397], + [37.703456, 55.55406], + [37.703546, 55.55406], + [37.703546, 55.55397], + [37.703456, 55.55397] ] ] } @@ -11016,11 +11016,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703458, 55.55397], - [37.703458, 55.55406], - [37.703548, 55.55406], - [37.703548, 55.55397], - [37.703458, 55.55397] + [37.703456, 55.55406], + [37.703456, 55.55415], + [37.703546, 55.55415], + [37.703546, 55.55406], + [37.703456, 55.55406] ] ] } @@ -11032,11 +11032,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703458, 55.55406], - [37.703458, 55.55415], - [37.703548, 55.55415], - [37.703548, 55.55406], - [37.703458, 55.55406] + [37.703456, 55.55415], + [37.703456, 55.55424], + [37.703546, 55.55424], + [37.703546, 55.55415], + [37.703456, 55.55415] ] ] } @@ -11048,11 +11048,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703458, 55.55415], - [37.703458, 55.554239], - [37.703548, 55.554239], - [37.703548, 55.55415], - [37.703458, 55.55415] + [37.703456, 55.55424], + [37.703456, 55.55433], + [37.703546, 55.55433], + [37.703546, 55.55424], + [37.703456, 55.55424] ] ] } @@ -11064,11 +11064,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703458, 55.554239], - [37.703458, 55.554329], - [37.703548, 55.554329], - [37.703548, 55.554239], - [37.703458, 55.554239] + [37.703456, 55.55433], + [37.703456, 55.55442], + [37.703546, 55.55442], + [37.703546, 55.55433], + [37.703456, 55.55433] ] ] } @@ -11080,11 +11080,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703458, 55.554329], - [37.703458, 55.554419], - [37.703548, 55.554419], - [37.703548, 55.554329], - [37.703458, 55.554329] + [37.703456, 55.55442], + [37.703456, 55.55451], + [37.703546, 55.55451], + [37.703546, 55.55442], + [37.703456, 55.55442] ] ] } @@ -11096,11 +11096,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703458, 55.554419], - [37.703458, 55.554509], - [37.703548, 55.554509], - [37.703548, 55.554419], - [37.703458, 55.554419] + [37.703456, 55.55451], + [37.703456, 55.5546], + [37.703546, 55.5546], + [37.703546, 55.55451], + [37.703456, 55.55451] ] ] } @@ -11112,11 +11112,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703458, 55.554509], - [37.703458, 55.554599], - [37.703548, 55.554599], - [37.703548, 55.554509], - [37.703458, 55.554509] + [37.703456, 55.5546], + [37.703456, 55.55469], + [37.703546, 55.55469], + [37.703546, 55.5546], + [37.703456, 55.5546] ] ] } @@ -11128,11 +11128,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703458, 55.554599], - [37.703458, 55.554689], - [37.703548, 55.554689], - [37.703548, 55.554599], - [37.703458, 55.554599] + [37.703456, 55.55469], + [37.703456, 55.55478], + [37.703546, 55.55478], + [37.703546, 55.55469], + [37.703456, 55.55469] ] ] } @@ -11144,11 +11144,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703458, 55.554689], - [37.703458, 55.554778], - [37.703548, 55.554778], - [37.703548, 55.554689], - [37.703458, 55.554689] + [37.703546, 55.552261], + [37.703546, 55.552351], + [37.703636, 55.552351], + [37.703636, 55.552261], + [37.703546, 55.552261] ] ] } @@ -11160,11 +11160,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703548, 55.552263], - [37.703548, 55.552353], - [37.703637, 55.552353], - [37.703637, 55.552263], - [37.703548, 55.552263] + [37.703546, 55.552351], + [37.703546, 55.552441], + [37.703636, 55.552441], + [37.703636, 55.552351], + [37.703546, 55.552351] ] ] } @@ -11176,11 +11176,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703548, 55.552353], - [37.703548, 55.552443], - [37.703637, 55.552443], - [37.703637, 55.552353], - [37.703548, 55.552353] + [37.703546, 55.552441], + [37.703546, 55.552531], + [37.703636, 55.552531], + [37.703636, 55.552441], + [37.703546, 55.552441] ] ] } @@ -11192,11 +11192,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703548, 55.552443], - [37.703548, 55.552533], - [37.703637, 55.552533], - [37.703637, 55.552443], - [37.703548, 55.552443] + [37.703546, 55.552531], + [37.703546, 55.552621], + [37.703636, 55.552621], + [37.703636, 55.552531], + [37.703546, 55.552531] ] ] } @@ -11208,11 +11208,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703548, 55.552533], - [37.703548, 55.552623], - [37.703637, 55.552623], - [37.703637, 55.552533], - [37.703548, 55.552533] + [37.703546, 55.552621], + [37.703546, 55.552711], + [37.703636, 55.552711], + [37.703636, 55.552621], + [37.703546, 55.552621] ] ] } @@ -11224,11 +11224,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703548, 55.552623], - [37.703548, 55.552712], - [37.703637, 55.552712], - [37.703637, 55.552623], - [37.703548, 55.552623] + [37.703546, 55.552711], + [37.703546, 55.552801], + [37.703636, 55.552801], + [37.703636, 55.552711], + [37.703546, 55.552711] ] ] } @@ -11240,11 +11240,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703548, 55.552712], - [37.703548, 55.552802], - [37.703637, 55.552802], - [37.703637, 55.552712], - [37.703548, 55.552712] + [37.703546, 55.552801], + [37.703546, 55.552891], + [37.703636, 55.552891], + [37.703636, 55.552801], + [37.703546, 55.552801] ] ] } @@ -11256,11 +11256,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703548, 55.552802], - [37.703548, 55.552892], - [37.703637, 55.552892], - [37.703637, 55.552802], - [37.703548, 55.552802] + [37.703546, 55.552891], + [37.703546, 55.552981], + [37.703636, 55.552981], + [37.703636, 55.552891], + [37.703546, 55.552891] ] ] } @@ -11272,11 +11272,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703548, 55.552892], - [37.703548, 55.552982], - [37.703637, 55.552982], - [37.703637, 55.552892], - [37.703548, 55.552892] + [37.703546, 55.552981], + [37.703546, 55.553071], + [37.703636, 55.553071], + [37.703636, 55.552981], + [37.703546, 55.552981] ] ] } @@ -11288,11 +11288,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703548, 55.552982], - [37.703548, 55.553072], - [37.703637, 55.553072], - [37.703637, 55.552982], - [37.703548, 55.552982] + [37.703546, 55.553071], + [37.703546, 55.553161], + [37.703636, 55.553161], + [37.703636, 55.553071], + [37.703546, 55.553071] ] ] } @@ -11304,11 +11304,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703548, 55.553072], - [37.703548, 55.553162], - [37.703637, 55.553162], - [37.703637, 55.553072], - [37.703548, 55.553072] + [37.703546, 55.553161], + [37.703546, 55.553251], + [37.703636, 55.553251], + [37.703636, 55.553161], + [37.703546, 55.553161] ] ] } @@ -11320,11 +11320,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703548, 55.553162], - [37.703548, 55.553251], - [37.703637, 55.553251], - [37.703637, 55.553162], - [37.703548, 55.553162] + [37.703546, 55.553251], + [37.703546, 55.553341], + [37.703636, 55.553341], + [37.703636, 55.553251], + [37.703546, 55.553251] ] ] } @@ -11336,11 +11336,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703548, 55.553251], - [37.703548, 55.553341], - [37.703637, 55.553341], - [37.703637, 55.553251], - [37.703548, 55.553251] + [37.703546, 55.553341], + [37.703546, 55.553431], + [37.703636, 55.553431], + [37.703636, 55.553341], + [37.703546, 55.553341] ] ] } @@ -11352,11 +11352,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703548, 55.553341], - [37.703548, 55.553431], - [37.703637, 55.553431], - [37.703637, 55.553341], - [37.703548, 55.553341] + [37.703546, 55.553431], + [37.703546, 55.55352], + [37.703636, 55.55352], + [37.703636, 55.553431], + [37.703546, 55.553431] ] ] } @@ -11368,11 +11368,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703548, 55.553431], - [37.703548, 55.553521], - [37.703637, 55.553521], - [37.703637, 55.553431], - [37.703548, 55.553431] + [37.703546, 55.55352], + [37.703546, 55.55361], + [37.703636, 55.55361], + [37.703636, 55.55352], + [37.703546, 55.55352] ] ] } @@ -11384,11 +11384,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703548, 55.553521], - [37.703548, 55.553611], - [37.703637, 55.553611], - [37.703637, 55.553521], - [37.703548, 55.553521] + [37.703546, 55.55361], + [37.703546, 55.5537], + [37.703636, 55.5537], + [37.703636, 55.55361], + [37.703546, 55.55361] ] ] } @@ -11400,11 +11400,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703548, 55.553611], - [37.703548, 55.5537], - [37.703637, 55.5537], - [37.703637, 55.553611], - [37.703548, 55.553611] + [37.703546, 55.5537], + [37.703546, 55.55379], + [37.703636, 55.55379], + [37.703636, 55.5537], + [37.703546, 55.5537] ] ] } @@ -11416,11 +11416,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703548, 55.5537], - [37.703548, 55.55379], - [37.703637, 55.55379], - [37.703637, 55.5537], - [37.703548, 55.5537] + [37.703546, 55.55379], + [37.703546, 55.55388], + [37.703636, 55.55388], + [37.703636, 55.55379], + [37.703546, 55.55379] ] ] } @@ -11432,11 +11432,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703548, 55.55379], - [37.703548, 55.55388], - [37.703637, 55.55388], - [37.703637, 55.55379], - [37.703548, 55.55379] + [37.703546, 55.55388], + [37.703546, 55.55397], + [37.703636, 55.55397], + [37.703636, 55.55388], + [37.703546, 55.55388] ] ] } @@ -11448,11 +11448,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703548, 55.55388], - [37.703548, 55.55397], - [37.703637, 55.55397], - [37.703637, 55.55388], - [37.703548, 55.55388] + [37.703546, 55.55397], + [37.703546, 55.55406], + [37.703636, 55.55406], + [37.703636, 55.55397], + [37.703546, 55.55397] ] ] } @@ -11464,11 +11464,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703548, 55.55397], - [37.703548, 55.55406], - [37.703637, 55.55406], - [37.703637, 55.55397], - [37.703548, 55.55397] + [37.703546, 55.55406], + [37.703546, 55.55415], + [37.703636, 55.55415], + [37.703636, 55.55406], + [37.703546, 55.55406] ] ] } @@ -11480,11 +11480,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703548, 55.55406], - [37.703548, 55.55415], - [37.703637, 55.55415], - [37.703637, 55.55406], - [37.703548, 55.55406] + [37.703546, 55.55415], + [37.703546, 55.55424], + [37.703636, 55.55424], + [37.703636, 55.55415], + [37.703546, 55.55415] ] ] } @@ -11496,11 +11496,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703548, 55.55415], - [37.703548, 55.554239], - [37.703637, 55.554239], - [37.703637, 55.55415], - [37.703548, 55.55415] + [37.703546, 55.55424], + [37.703546, 55.55433], + [37.703636, 55.55433], + [37.703636, 55.55424], + [37.703546, 55.55424] ] ] } @@ -11512,11 +11512,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703548, 55.554239], - [37.703548, 55.554329], - [37.703637, 55.554329], - [37.703637, 55.554239], - [37.703548, 55.554239] + [37.703546, 55.55433], + [37.703546, 55.55442], + [37.703636, 55.55442], + [37.703636, 55.55433], + [37.703546, 55.55433] ] ] } @@ -11528,11 +11528,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703548, 55.554329], - [37.703548, 55.554419], - [37.703637, 55.554419], - [37.703637, 55.554329], - [37.703548, 55.554329] + [37.703546, 55.55442], + [37.703546, 55.55451], + [37.703636, 55.55451], + [37.703636, 55.55442], + [37.703546, 55.55442] ] ] } @@ -11544,11 +11544,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703548, 55.554419], - [37.703548, 55.554509], - [37.703637, 55.554509], - [37.703637, 55.554419], - [37.703548, 55.554419] + [37.703546, 55.55451], + [37.703546, 55.5546], + [37.703636, 55.5546], + [37.703636, 55.55451], + [37.703546, 55.55451] ] ] } @@ -11560,11 +11560,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703548, 55.554509], - [37.703548, 55.554599], - [37.703637, 55.554599], - [37.703637, 55.554509], - [37.703548, 55.554509] + [37.703546, 55.5546], + [37.703546, 55.55469], + [37.703636, 55.55469], + [37.703636, 55.5546], + [37.703546, 55.5546] ] ] } @@ -11576,11 +11576,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703548, 55.554599], - [37.703548, 55.554689], - [37.703637, 55.554689], - [37.703637, 55.554599], - [37.703548, 55.554599] + [37.703546, 55.55469], + [37.703546, 55.55478], + [37.703636, 55.55478], + [37.703636, 55.55469], + [37.703546, 55.55469] ] ] } @@ -11592,11 +11592,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703548, 55.554689], - [37.703548, 55.554778], - [37.703637, 55.554778], - [37.703637, 55.554689], - [37.703548, 55.554689] + [37.703636, 55.552171], + [37.703636, 55.552261], + [37.703726, 55.552261], + [37.703726, 55.552171], + [37.703636, 55.552171] ] ] } @@ -11608,11 +11608,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.552173], - [37.703637, 55.552263], - [37.703727, 55.552263], - [37.703727, 55.552173], - [37.703637, 55.552173] + [37.703636, 55.552261], + [37.703636, 55.552351], + [37.703726, 55.552351], + [37.703726, 55.552261], + [37.703636, 55.552261] ] ] } @@ -11624,11 +11624,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.552263], - [37.703637, 55.552353], - [37.703727, 55.552353], - [37.703727, 55.552263], - [37.703637, 55.552263] + [37.703636, 55.552351], + [37.703636, 55.552441], + [37.703726, 55.552441], + [37.703726, 55.552351], + [37.703636, 55.552351] ] ] } @@ -11640,11 +11640,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.552353], - [37.703637, 55.552443], - [37.703727, 55.552443], - [37.703727, 55.552353], - [37.703637, 55.552353] + [37.703636, 55.552441], + [37.703636, 55.552531], + [37.703726, 55.552531], + [37.703726, 55.552441], + [37.703636, 55.552441] ] ] } @@ -11656,11 +11656,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.552443], - [37.703637, 55.552533], - [37.703727, 55.552533], - [37.703727, 55.552443], - [37.703637, 55.552443] + [37.703636, 55.552531], + [37.703636, 55.552621], + [37.703726, 55.552621], + [37.703726, 55.552531], + [37.703636, 55.552531] ] ] } @@ -11672,11 +11672,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.552533], - [37.703637, 55.552623], - [37.703727, 55.552623], - [37.703727, 55.552533], - [37.703637, 55.552533] + [37.703636, 55.552621], + [37.703636, 55.552711], + [37.703726, 55.552711], + [37.703726, 55.552621], + [37.703636, 55.552621] ] ] } @@ -11688,11 +11688,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.552623], - [37.703637, 55.552712], - [37.703727, 55.552712], - [37.703727, 55.552623], - [37.703637, 55.552623] + [37.703636, 55.552711], + [37.703636, 55.552801], + [37.703726, 55.552801], + [37.703726, 55.552711], + [37.703636, 55.552711] ] ] } @@ -11704,11 +11704,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.552712], - [37.703637, 55.552802], - [37.703727, 55.552802], - [37.703727, 55.552712], - [37.703637, 55.552712] + [37.703636, 55.552801], + [37.703636, 55.552891], + [37.703726, 55.552891], + [37.703726, 55.552801], + [37.703636, 55.552801] ] ] } @@ -11720,11 +11720,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.552802], - [37.703637, 55.552892], - [37.703727, 55.552892], - [37.703727, 55.552802], - [37.703637, 55.552802] + [37.703636, 55.552891], + [37.703636, 55.552981], + [37.703726, 55.552981], + [37.703726, 55.552891], + [37.703636, 55.552891] ] ] } @@ -11736,11 +11736,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.552892], - [37.703637, 55.552982], - [37.703727, 55.552982], - [37.703727, 55.552892], - [37.703637, 55.552892] + [37.703636, 55.552981], + [37.703636, 55.553071], + [37.703726, 55.553071], + [37.703726, 55.552981], + [37.703636, 55.552981] ] ] } @@ -11752,11 +11752,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.552982], - [37.703637, 55.553072], - [37.703727, 55.553072], - [37.703727, 55.552982], - [37.703637, 55.552982] + [37.703636, 55.553071], + [37.703636, 55.553161], + [37.703726, 55.553161], + [37.703726, 55.553071], + [37.703636, 55.553071] ] ] } @@ -11768,11 +11768,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.553072], - [37.703637, 55.553162], - [37.703727, 55.553162], - [37.703727, 55.553072], - [37.703637, 55.553072] + [37.703636, 55.553161], + [37.703636, 55.553251], + [37.703726, 55.553251], + [37.703726, 55.553161], + [37.703636, 55.553161] ] ] } @@ -11784,11 +11784,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.553162], - [37.703637, 55.553251], - [37.703727, 55.553251], - [37.703727, 55.553162], - [37.703637, 55.553162] + [37.703636, 55.553251], + [37.703636, 55.553341], + [37.703726, 55.553341], + [37.703726, 55.553251], + [37.703636, 55.553251] ] ] } @@ -11800,11 +11800,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.553251], - [37.703637, 55.553341], - [37.703727, 55.553341], - [37.703727, 55.553251], - [37.703637, 55.553251] + [37.703636, 55.553341], + [37.703636, 55.553431], + [37.703726, 55.553431], + [37.703726, 55.553341], + [37.703636, 55.553341] ] ] } @@ -11816,11 +11816,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.553341], - [37.703637, 55.553431], - [37.703727, 55.553431], - [37.703727, 55.553341], - [37.703637, 55.553341] + [37.703636, 55.553431], + [37.703636, 55.55352], + [37.703726, 55.55352], + [37.703726, 55.553431], + [37.703636, 55.553431] ] ] } @@ -11832,11 +11832,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.553431], - [37.703637, 55.553521], - [37.703727, 55.553521], - [37.703727, 55.553431], - [37.703637, 55.553431] + [37.703636, 55.55352], + [37.703636, 55.55361], + [37.703726, 55.55361], + [37.703726, 55.55352], + [37.703636, 55.55352] ] ] } @@ -11848,11 +11848,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.553521], - [37.703637, 55.553611], - [37.703727, 55.553611], - [37.703727, 55.553521], - [37.703637, 55.553521] + [37.703636, 55.55361], + [37.703636, 55.5537], + [37.703726, 55.5537], + [37.703726, 55.55361], + [37.703636, 55.55361] ] ] } @@ -11864,11 +11864,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.553611], - [37.703637, 55.5537], - [37.703727, 55.5537], - [37.703727, 55.553611], - [37.703637, 55.553611] + [37.703636, 55.5537], + [37.703636, 55.55379], + [37.703726, 55.55379], + [37.703726, 55.5537], + [37.703636, 55.5537] ] ] } @@ -11880,11 +11880,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.5537], - [37.703637, 55.55379], - [37.703727, 55.55379], - [37.703727, 55.5537], - [37.703637, 55.5537] + [37.703636, 55.55379], + [37.703636, 55.55388], + [37.703726, 55.55388], + [37.703726, 55.55379], + [37.703636, 55.55379] ] ] } @@ -11896,11 +11896,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.55379], - [37.703637, 55.55388], - [37.703727, 55.55388], - [37.703727, 55.55379], - [37.703637, 55.55379] + [37.703636, 55.55388], + [37.703636, 55.55397], + [37.703726, 55.55397], + [37.703726, 55.55388], + [37.703636, 55.55388] ] ] } @@ -11912,11 +11912,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.55388], - [37.703637, 55.55397], - [37.703727, 55.55397], - [37.703727, 55.55388], - [37.703637, 55.55388] + [37.703636, 55.55397], + [37.703636, 55.55406], + [37.703726, 55.55406], + [37.703726, 55.55397], + [37.703636, 55.55397] ] ] } @@ -11928,11 +11928,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.55397], - [37.703637, 55.55406], - [37.703727, 55.55406], - [37.703727, 55.55397], - [37.703637, 55.55397] + [37.703636, 55.55406], + [37.703636, 55.55415], + [37.703726, 55.55415], + [37.703726, 55.55406], + [37.703636, 55.55406] ] ] } @@ -11944,11 +11944,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.55406], - [37.703637, 55.55415], - [37.703727, 55.55415], - [37.703727, 55.55406], - [37.703637, 55.55406] + [37.703636, 55.55415], + [37.703636, 55.55424], + [37.703726, 55.55424], + [37.703726, 55.55415], + [37.703636, 55.55415] ] ] } @@ -11960,11 +11960,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.55415], - [37.703637, 55.554239], - [37.703727, 55.554239], - [37.703727, 55.55415], - [37.703637, 55.55415] + [37.703636, 55.55424], + [37.703636, 55.55433], + [37.703726, 55.55433], + [37.703726, 55.55424], + [37.703636, 55.55424] ] ] } @@ -11976,11 +11976,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.554239], - [37.703637, 55.554329], - [37.703727, 55.554329], - [37.703727, 55.554239], - [37.703637, 55.554239] + [37.703636, 55.55433], + [37.703636, 55.55442], + [37.703726, 55.55442], + [37.703726, 55.55433], + [37.703636, 55.55433] ] ] } @@ -11992,11 +11992,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.554329], - [37.703637, 55.554419], - [37.703727, 55.554419], - [37.703727, 55.554329], - [37.703637, 55.554329] + [37.703636, 55.55442], + [37.703636, 55.55451], + [37.703726, 55.55451], + [37.703726, 55.55442], + [37.703636, 55.55442] ] ] } @@ -12008,11 +12008,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.554419], - [37.703637, 55.554509], - [37.703727, 55.554509], - [37.703727, 55.554419], - [37.703637, 55.554419] + [37.703636, 55.55451], + [37.703636, 55.5546], + [37.703726, 55.5546], + [37.703726, 55.55451], + [37.703636, 55.55451] ] ] } @@ -12024,11 +12024,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.554509], - [37.703637, 55.554599], - [37.703727, 55.554599], - [37.703727, 55.554509], - [37.703637, 55.554509] + [37.703636, 55.5546], + [37.703636, 55.55469], + [37.703726, 55.55469], + [37.703726, 55.5546], + [37.703636, 55.5546] ] ] } @@ -12040,11 +12040,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.554599], - [37.703637, 55.554689], - [37.703727, 55.554689], - [37.703727, 55.554599], - [37.703637, 55.554599] + [37.703636, 55.55469], + [37.703636, 55.55478], + [37.703726, 55.55478], + [37.703726, 55.55469], + [37.703636, 55.55469] ] ] } @@ -12056,11 +12056,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703637, 55.554689], - [37.703637, 55.554778], - [37.703727, 55.554778], - [37.703727, 55.554689], - [37.703637, 55.554689] + [37.703726, 55.552171], + [37.703726, 55.552261], + [37.703816, 55.552261], + [37.703816, 55.552171], + [37.703726, 55.552171] ] ] } @@ -12072,11 +12072,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703727, 55.552173], - [37.703727, 55.552263], - [37.703817, 55.552263], - [37.703817, 55.552173], - [37.703727, 55.552173] + [37.703726, 55.552261], + [37.703726, 55.552351], + [37.703816, 55.552351], + [37.703816, 55.552261], + [37.703726, 55.552261] ] ] } @@ -12088,11 +12088,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703727, 55.552263], - [37.703727, 55.552353], - [37.703817, 55.552353], - [37.703817, 55.552263], - [37.703727, 55.552263] + [37.703726, 55.552351], + [37.703726, 55.552441], + [37.703816, 55.552441], + [37.703816, 55.552351], + [37.703726, 55.552351] ] ] } @@ -12104,11 +12104,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703727, 55.552353], - [37.703727, 55.552443], - [37.703817, 55.552443], - [37.703817, 55.552353], - [37.703727, 55.552353] + [37.703726, 55.552441], + [37.703726, 55.552531], + [37.703816, 55.552531], + [37.703816, 55.552441], + [37.703726, 55.552441] ] ] } @@ -12120,11 +12120,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703727, 55.552443], - [37.703727, 55.552533], - [37.703817, 55.552533], - [37.703817, 55.552443], - [37.703727, 55.552443] + [37.703726, 55.552531], + [37.703726, 55.552621], + [37.703816, 55.552621], + [37.703816, 55.552531], + [37.703726, 55.552531] ] ] } @@ -12136,11 +12136,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703727, 55.552533], - [37.703727, 55.552623], - [37.703817, 55.552623], - [37.703817, 55.552533], - [37.703727, 55.552533] + [37.703726, 55.552621], + [37.703726, 55.552711], + [37.703816, 55.552711], + [37.703816, 55.552621], + [37.703726, 55.552621] ] ] } @@ -12152,11 +12152,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703727, 55.552623], - [37.703727, 55.552712], - [37.703817, 55.552712], - [37.703817, 55.552623], - [37.703727, 55.552623] + [37.703726, 55.552711], + [37.703726, 55.552801], + [37.703816, 55.552801], + [37.703816, 55.552711], + [37.703726, 55.552711] ] ] } @@ -12168,11 +12168,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703727, 55.552712], - [37.703727, 55.552802], - [37.703817, 55.552802], - [37.703817, 55.552712], - [37.703727, 55.552712] + [37.703726, 55.552801], + [37.703726, 55.552891], + [37.703816, 55.552891], + [37.703816, 55.552801], + [37.703726, 55.552801] ] ] } @@ -12184,11 +12184,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703727, 55.552802], - [37.703727, 55.552892], - [37.703817, 55.552892], - [37.703817, 55.552802], - [37.703727, 55.552802] + [37.703726, 55.552891], + [37.703726, 55.552981], + [37.703816, 55.552981], + [37.703816, 55.552891], + [37.703726, 55.552891] ] ] } @@ -12200,11 +12200,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703727, 55.552892], - [37.703727, 55.552982], - [37.703817, 55.552982], - [37.703817, 55.552892], - [37.703727, 55.552892] + [37.703726, 55.552981], + [37.703726, 55.553071], + [37.703816, 55.553071], + [37.703816, 55.552981], + [37.703726, 55.552981] ] ] } @@ -12216,11 +12216,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703727, 55.552982], - [37.703727, 55.553072], - [37.703817, 55.553072], - [37.703817, 55.552982], - [37.703727, 55.552982] + [37.703726, 55.553071], + [37.703726, 55.553161], + [37.703816, 55.553161], + [37.703816, 55.553071], + [37.703726, 55.553071] ] ] } @@ -12232,11 +12232,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703727, 55.553072], - [37.703727, 55.553162], - [37.703817, 55.553162], - [37.703817, 55.553072], - [37.703727, 55.553072] + [37.703726, 55.553161], + [37.703726, 55.553251], + [37.703816, 55.553251], + [37.703816, 55.553161], + [37.703726, 55.553161] ] ] } @@ -12248,11 +12248,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703727, 55.553162], - [37.703727, 55.553251], - [37.703817, 55.553251], - [37.703817, 55.553162], - [37.703727, 55.553162] + [37.703726, 55.553251], + [37.703726, 55.553341], + [37.703816, 55.553341], + [37.703816, 55.553251], + [37.703726, 55.553251] ] ] } @@ -12264,11 +12264,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703727, 55.553251], - [37.703727, 55.553341], - [37.703817, 55.553341], - [37.703817, 55.553251], - [37.703727, 55.553251] + [37.703726, 55.553341], + [37.703726, 55.553431], + [37.703816, 55.553431], + [37.703816, 55.553341], + [37.703726, 55.553341] ] ] } @@ -12280,11 +12280,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703727, 55.553341], - [37.703727, 55.553431], - [37.703817, 55.553431], - [37.703817, 55.553341], - [37.703727, 55.553341] + [37.703726, 55.553431], + [37.703726, 55.55352], + [37.703816, 55.55352], + [37.703816, 55.553431], + [37.703726, 55.553431] ] ] } @@ -12296,11 +12296,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703727, 55.553431], - [37.703727, 55.553521], - [37.703817, 55.553521], - [37.703817, 55.553431], - [37.703727, 55.553431] + [37.703726, 55.55352], + [37.703726, 55.55361], + [37.703816, 55.55361], + [37.703816, 55.55352], + [37.703726, 55.55352] ] ] } @@ -12312,11 +12312,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703727, 55.553521], - [37.703727, 55.553611], - [37.703817, 55.553611], - [37.703817, 55.553521], - [37.703727, 55.553521] + [37.703726, 55.55361], + [37.703726, 55.5537], + [37.703816, 55.5537], + [37.703816, 55.55361], + [37.703726, 55.55361] ] ] } @@ -12328,11 +12328,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703727, 55.553611], - [37.703727, 55.5537], - [37.703817, 55.5537], - [37.703817, 55.553611], - [37.703727, 55.553611] + [37.703726, 55.5537], + [37.703726, 55.55379], + [37.703816, 55.55379], + [37.703816, 55.5537], + [37.703726, 55.5537] ] ] } @@ -12344,11 +12344,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703727, 55.5537], - [37.703727, 55.55379], - [37.703817, 55.55379], - [37.703817, 55.5537], - [37.703727, 55.5537] + [37.703726, 55.55379], + [37.703726, 55.55388], + [37.703816, 55.55388], + [37.703816, 55.55379], + [37.703726, 55.55379] ] ] } @@ -12360,11 +12360,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703727, 55.55379], - [37.703727, 55.55388], - [37.703817, 55.55388], - [37.703817, 55.55379], - [37.703727, 55.55379] + [37.703726, 55.55388], + [37.703726, 55.55397], + [37.703816, 55.55397], + [37.703816, 55.55388], + [37.703726, 55.55388] ] ] } @@ -12376,11 +12376,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703727, 55.55388], - [37.703727, 55.55397], - [37.703817, 55.55397], - [37.703817, 55.55388], - [37.703727, 55.55388] + [37.703726, 55.55397], + [37.703726, 55.55406], + [37.703816, 55.55406], + [37.703816, 55.55397], + [37.703726, 55.55397] ] ] } @@ -12392,11 +12392,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703727, 55.55397], - [37.703727, 55.55406], - [37.703817, 55.55406], - [37.703817, 55.55397], - [37.703727, 55.55397] + [37.703726, 55.55406], + [37.703726, 55.55415], + [37.703816, 55.55415], + [37.703816, 55.55406], + [37.703726, 55.55406] ] ] } @@ -12408,11 +12408,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703727, 55.55406], - [37.703727, 55.55415], - [37.703817, 55.55415], - [37.703817, 55.55406], - [37.703727, 55.55406] + [37.703726, 55.55415], + [37.703726, 55.55424], + [37.703816, 55.55424], + [37.703816, 55.55415], + [37.703726, 55.55415] ] ] } @@ -12424,11 +12424,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703727, 55.55415], - [37.703727, 55.554239], - [37.703817, 55.554239], - [37.703817, 55.55415], - [37.703727, 55.55415] + [37.703726, 55.55424], + [37.703726, 55.55433], + [37.703816, 55.55433], + [37.703816, 55.55424], + [37.703726, 55.55424] ] ] } @@ -12440,11 +12440,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703727, 55.554239], - [37.703727, 55.554329], - [37.703817, 55.554329], - [37.703817, 55.554239], - [37.703727, 55.554239] + [37.703726, 55.55433], + [37.703726, 55.55442], + [37.703816, 55.55442], + [37.703816, 55.55433], + [37.703726, 55.55433] ] ] } @@ -12456,11 +12456,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703727, 55.554329], - [37.703727, 55.554419], - [37.703817, 55.554419], - [37.703817, 55.554329], - [37.703727, 55.554329] + [37.703726, 55.55442], + [37.703726, 55.55451], + [37.703816, 55.55451], + [37.703816, 55.55442], + [37.703726, 55.55442] ] ] } @@ -12472,11 +12472,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703727, 55.554419], - [37.703727, 55.554509], - [37.703817, 55.554509], - [37.703817, 55.554419], - [37.703727, 55.554419] + [37.703726, 55.55451], + [37.703726, 55.5546], + [37.703816, 55.5546], + [37.703816, 55.55451], + [37.703726, 55.55451] ] ] } @@ -12488,11 +12488,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703727, 55.554509], - [37.703727, 55.554599], - [37.703817, 55.554599], - [37.703817, 55.554509], - [37.703727, 55.554509] + [37.703726, 55.5546], + [37.703726, 55.55469], + [37.703816, 55.55469], + [37.703816, 55.5546], + [37.703726, 55.5546] ] ] } @@ -12504,11 +12504,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703727, 55.554599], - [37.703727, 55.554689], - [37.703817, 55.554689], - [37.703817, 55.554599], - [37.703727, 55.554599] + [37.703726, 55.55469], + [37.703726, 55.55478], + [37.703816, 55.55478], + [37.703816, 55.55469], + [37.703726, 55.55469] ] ] } @@ -12520,11 +12520,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703727, 55.554689], - [37.703727, 55.554778], - [37.703817, 55.554778], - [37.703817, 55.554689], - [37.703727, 55.554689] + [37.703816, 55.552171], + [37.703816, 55.552261], + [37.703906, 55.552261], + [37.703906, 55.552171], + [37.703816, 55.552171] ] ] } @@ -12536,11 +12536,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703817, 55.552173], - [37.703817, 55.552263], - [37.703907, 55.552263], - [37.703907, 55.552173], - [37.703817, 55.552173] + [37.703816, 55.552261], + [37.703816, 55.552351], + [37.703906, 55.552351], + [37.703906, 55.552261], + [37.703816, 55.552261] ] ] } @@ -12552,11 +12552,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703817, 55.552263], - [37.703817, 55.552353], - [37.703907, 55.552353], - [37.703907, 55.552263], - [37.703817, 55.552263] + [37.703816, 55.552351], + [37.703816, 55.552441], + [37.703906, 55.552441], + [37.703906, 55.552351], + [37.703816, 55.552351] ] ] } @@ -12568,11 +12568,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703817, 55.552353], - [37.703817, 55.552443], - [37.703907, 55.552443], - [37.703907, 55.552353], - [37.703817, 55.552353] + [37.703816, 55.552441], + [37.703816, 55.552531], + [37.703906, 55.552531], + [37.703906, 55.552441], + [37.703816, 55.552441] ] ] } @@ -12584,11 +12584,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703817, 55.552443], - [37.703817, 55.552533], - [37.703907, 55.552533], - [37.703907, 55.552443], - [37.703817, 55.552443] + [37.703816, 55.552531], + [37.703816, 55.552621], + [37.703906, 55.552621], + [37.703906, 55.552531], + [37.703816, 55.552531] ] ] } @@ -12600,11 +12600,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703817, 55.552533], - [37.703817, 55.552623], - [37.703907, 55.552623], - [37.703907, 55.552533], - [37.703817, 55.552533] + [37.703816, 55.552621], + [37.703816, 55.552711], + [37.703906, 55.552711], + [37.703906, 55.552621], + [37.703816, 55.552621] ] ] } @@ -12616,11 +12616,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703817, 55.552623], - [37.703817, 55.552712], - [37.703907, 55.552712], - [37.703907, 55.552623], - [37.703817, 55.552623] + [37.703816, 55.552711], + [37.703816, 55.552801], + [37.703906, 55.552801], + [37.703906, 55.552711], + [37.703816, 55.552711] ] ] } @@ -12632,11 +12632,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703817, 55.552712], - [37.703817, 55.552802], - [37.703907, 55.552802], - [37.703907, 55.552712], - [37.703817, 55.552712] + [37.703816, 55.552801], + [37.703816, 55.552891], + [37.703906, 55.552891], + [37.703906, 55.552801], + [37.703816, 55.552801] ] ] } @@ -12648,11 +12648,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703817, 55.552802], - [37.703817, 55.552892], - [37.703907, 55.552892], - [37.703907, 55.552802], - [37.703817, 55.552802] + [37.703816, 55.552891], + [37.703816, 55.552981], + [37.703906, 55.552981], + [37.703906, 55.552891], + [37.703816, 55.552891] ] ] } @@ -12664,11 +12664,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703817, 55.552892], - [37.703817, 55.552982], - [37.703907, 55.552982], - [37.703907, 55.552892], - [37.703817, 55.552892] + [37.703816, 55.552981], + [37.703816, 55.553071], + [37.703906, 55.553071], + [37.703906, 55.552981], + [37.703816, 55.552981] ] ] } @@ -12680,11 +12680,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703817, 55.552982], - [37.703817, 55.553072], - [37.703907, 55.553072], - [37.703907, 55.552982], - [37.703817, 55.552982] + [37.703816, 55.553071], + [37.703816, 55.553161], + [37.703906, 55.553161], + [37.703906, 55.553071], + [37.703816, 55.553071] ] ] } @@ -12696,11 +12696,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703817, 55.553072], - [37.703817, 55.553162], - [37.703907, 55.553162], - [37.703907, 55.553072], - [37.703817, 55.553072] + [37.703816, 55.553161], + [37.703816, 55.553251], + [37.703906, 55.553251], + [37.703906, 55.553161], + [37.703816, 55.553161] ] ] } @@ -12712,11 +12712,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703817, 55.553162], - [37.703817, 55.553251], - [37.703907, 55.553251], - [37.703907, 55.553162], - [37.703817, 55.553162] + [37.703816, 55.553251], + [37.703816, 55.553341], + [37.703906, 55.553341], + [37.703906, 55.553251], + [37.703816, 55.553251] ] ] } @@ -12728,11 +12728,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703817, 55.553251], - [37.703817, 55.553341], - [37.703907, 55.553341], - [37.703907, 55.553251], - [37.703817, 55.553251] + [37.703816, 55.553341], + [37.703816, 55.553431], + [37.703906, 55.553431], + [37.703906, 55.553341], + [37.703816, 55.553341] ] ] } @@ -12744,11 +12744,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703817, 55.553341], - [37.703817, 55.553431], - [37.703907, 55.553431], - [37.703907, 55.553341], - [37.703817, 55.553341] + [37.703816, 55.553431], + [37.703816, 55.55352], + [37.703906, 55.55352], + [37.703906, 55.553431], + [37.703816, 55.553431] ] ] } @@ -12760,11 +12760,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703817, 55.553431], - [37.703817, 55.553521], - [37.703907, 55.553521], - [37.703907, 55.553431], - [37.703817, 55.553431] + [37.703816, 55.55352], + [37.703816, 55.55361], + [37.703906, 55.55361], + [37.703906, 55.55352], + [37.703816, 55.55352] ] ] } @@ -12776,11 +12776,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703817, 55.553521], - [37.703817, 55.553611], - [37.703907, 55.553611], - [37.703907, 55.553521], - [37.703817, 55.553521] + [37.703816, 55.55361], + [37.703816, 55.5537], + [37.703906, 55.5537], + [37.703906, 55.55361], + [37.703816, 55.55361] ] ] } @@ -12792,11 +12792,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703817, 55.553611], - [37.703817, 55.5537], - [37.703907, 55.5537], - [37.703907, 55.553611], - [37.703817, 55.553611] + [37.703816, 55.5537], + [37.703816, 55.55379], + [37.703906, 55.55379], + [37.703906, 55.5537], + [37.703816, 55.5537] ] ] } @@ -12808,11 +12808,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703817, 55.5537], - [37.703817, 55.55379], - [37.703907, 55.55379], - [37.703907, 55.5537], - [37.703817, 55.5537] + [37.703816, 55.55379], + [37.703816, 55.55388], + [37.703906, 55.55388], + [37.703906, 55.55379], + [37.703816, 55.55379] ] ] } @@ -12824,11 +12824,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703817, 55.55379], - [37.703817, 55.55388], - [37.703907, 55.55388], - [37.703907, 55.55379], - [37.703817, 55.55379] + [37.703816, 55.55388], + [37.703816, 55.55397], + [37.703906, 55.55397], + [37.703906, 55.55388], + [37.703816, 55.55388] ] ] } @@ -12840,11 +12840,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703817, 55.55388], - [37.703817, 55.55397], - [37.703907, 55.55397], - [37.703907, 55.55388], - [37.703817, 55.55388] + [37.703816, 55.55397], + [37.703816, 55.55406], + [37.703906, 55.55406], + [37.703906, 55.55397], + [37.703816, 55.55397] ] ] } @@ -12856,11 +12856,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703817, 55.55397], - [37.703817, 55.55406], - [37.703907, 55.55406], - [37.703907, 55.55397], - [37.703817, 55.55397] + [37.703816, 55.55406], + [37.703816, 55.55415], + [37.703906, 55.55415], + [37.703906, 55.55406], + [37.703816, 55.55406] ] ] } @@ -12872,11 +12872,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703817, 55.55406], - [37.703817, 55.55415], - [37.703907, 55.55415], - [37.703907, 55.55406], - [37.703817, 55.55406] + [37.703816, 55.55415], + [37.703816, 55.55424], + [37.703906, 55.55424], + [37.703906, 55.55415], + [37.703816, 55.55415] ] ] } @@ -12888,11 +12888,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703817, 55.55415], - [37.703817, 55.554239], - [37.703907, 55.554239], - [37.703907, 55.55415], - [37.703817, 55.55415] + [37.703816, 55.55424], + [37.703816, 55.55433], + [37.703906, 55.55433], + [37.703906, 55.55424], + [37.703816, 55.55424] ] ] } @@ -12904,11 +12904,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703817, 55.554239], - [37.703817, 55.554329], - [37.703907, 55.554329], - [37.703907, 55.554239], - [37.703817, 55.554239] + [37.703816, 55.55433], + [37.703816, 55.55442], + [37.703906, 55.55442], + [37.703906, 55.55433], + [37.703816, 55.55433] ] ] } @@ -12920,11 +12920,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703817, 55.554329], - [37.703817, 55.554419], - [37.703907, 55.554419], - [37.703907, 55.554329], - [37.703817, 55.554329] + [37.703816, 55.55442], + [37.703816, 55.55451], + [37.703906, 55.55451], + [37.703906, 55.55442], + [37.703816, 55.55442] ] ] } @@ -12936,11 +12936,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703817, 55.554419], - [37.703817, 55.554509], - [37.703907, 55.554509], - [37.703907, 55.554419], - [37.703817, 55.554419] + [37.703816, 55.55451], + [37.703816, 55.5546], + [37.703906, 55.5546], + [37.703906, 55.55451], + [37.703816, 55.55451] ] ] } @@ -12952,11 +12952,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703817, 55.554509], - [37.703817, 55.554599], - [37.703907, 55.554599], - [37.703907, 55.554509], - [37.703817, 55.554509] + [37.703816, 55.5546], + [37.703816, 55.55469], + [37.703906, 55.55469], + [37.703906, 55.5546], + [37.703816, 55.5546] ] ] } @@ -12968,11 +12968,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703817, 55.554599], - [37.703817, 55.554689], - [37.703907, 55.554689], - [37.703907, 55.554599], - [37.703817, 55.554599] + [37.703816, 55.55469], + [37.703816, 55.55478], + [37.703906, 55.55478], + [37.703906, 55.55469], + [37.703816, 55.55469] ] ] } @@ -12984,11 +12984,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703817, 55.554689], - [37.703817, 55.554778], - [37.703907, 55.554778], - [37.703907, 55.554689], - [37.703817, 55.554689] + [37.703816, 55.55478], + [37.703816, 55.554869], + [37.703906, 55.554869], + [37.703906, 55.55478], + [37.703816, 55.55478] ] ] } @@ -13000,11 +13000,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703817, 55.554778], - [37.703817, 55.554868], - [37.703907, 55.554868], - [37.703907, 55.554778], - [37.703817, 55.554778] + [37.703906, 55.552171], + [37.703906, 55.552261], + [37.703996, 55.552261], + [37.703996, 55.552171], + [37.703906, 55.552171] ] ] } @@ -13016,11 +13016,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703907, 55.552173], - [37.703907, 55.552263], - [37.703997, 55.552263], - [37.703997, 55.552173], - [37.703907, 55.552173] + [37.703906, 55.552261], + [37.703906, 55.552351], + [37.703996, 55.552351], + [37.703996, 55.552261], + [37.703906, 55.552261] ] ] } @@ -13032,11 +13032,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703907, 55.552263], - [37.703907, 55.552353], - [37.703997, 55.552353], - [37.703997, 55.552263], - [37.703907, 55.552263] + [37.703906, 55.552351], + [37.703906, 55.552441], + [37.703996, 55.552441], + [37.703996, 55.552351], + [37.703906, 55.552351] ] ] } @@ -13048,11 +13048,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703907, 55.552353], - [37.703907, 55.552443], - [37.703997, 55.552443], - [37.703997, 55.552353], - [37.703907, 55.552353] + [37.703906, 55.552441], + [37.703906, 55.552531], + [37.703996, 55.552531], + [37.703996, 55.552441], + [37.703906, 55.552441] ] ] } @@ -13064,11 +13064,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703907, 55.552443], - [37.703907, 55.552533], - [37.703997, 55.552533], - [37.703997, 55.552443], - [37.703907, 55.552443] + [37.703906, 55.552531], + [37.703906, 55.552621], + [37.703996, 55.552621], + [37.703996, 55.552531], + [37.703906, 55.552531] ] ] } @@ -13080,11 +13080,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703907, 55.552533], - [37.703907, 55.552623], - [37.703997, 55.552623], - [37.703997, 55.552533], - [37.703907, 55.552533] + [37.703906, 55.552621], + [37.703906, 55.552711], + [37.703996, 55.552711], + [37.703996, 55.552621], + [37.703906, 55.552621] ] ] } @@ -13096,11 +13096,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703907, 55.552623], - [37.703907, 55.552712], - [37.703997, 55.552712], - [37.703997, 55.552623], - [37.703907, 55.552623] + [37.703906, 55.552711], + [37.703906, 55.552801], + [37.703996, 55.552801], + [37.703996, 55.552711], + [37.703906, 55.552711] ] ] } @@ -13112,11 +13112,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703907, 55.552712], - [37.703907, 55.552802], - [37.703997, 55.552802], - [37.703997, 55.552712], - [37.703907, 55.552712] + [37.703906, 55.552801], + [37.703906, 55.552891], + [37.703996, 55.552891], + [37.703996, 55.552801], + [37.703906, 55.552801] ] ] } @@ -13128,11 +13128,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703907, 55.552802], - [37.703907, 55.552892], - [37.703997, 55.552892], - [37.703997, 55.552802], - [37.703907, 55.552802] + [37.703906, 55.552891], + [37.703906, 55.552981], + [37.703996, 55.552981], + [37.703996, 55.552891], + [37.703906, 55.552891] ] ] } @@ -13144,11 +13144,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703907, 55.552892], - [37.703907, 55.552982], - [37.703997, 55.552982], - [37.703997, 55.552892], - [37.703907, 55.552892] + [37.703906, 55.552981], + [37.703906, 55.553071], + [37.703996, 55.553071], + [37.703996, 55.552981], + [37.703906, 55.552981] ] ] } @@ -13160,11 +13160,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703907, 55.552982], - [37.703907, 55.553072], - [37.703997, 55.553072], - [37.703997, 55.552982], - [37.703907, 55.552982] + [37.703906, 55.553071], + [37.703906, 55.553161], + [37.703996, 55.553161], + [37.703996, 55.553071], + [37.703906, 55.553071] ] ] } @@ -13176,11 +13176,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703907, 55.553072], - [37.703907, 55.553162], - [37.703997, 55.553162], - [37.703997, 55.553072], - [37.703907, 55.553072] + [37.703906, 55.553161], + [37.703906, 55.553251], + [37.703996, 55.553251], + [37.703996, 55.553161], + [37.703906, 55.553161] ] ] } @@ -13192,11 +13192,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703907, 55.553162], - [37.703907, 55.553251], - [37.703997, 55.553251], - [37.703997, 55.553162], - [37.703907, 55.553162] + [37.703906, 55.553251], + [37.703906, 55.553341], + [37.703996, 55.553341], + [37.703996, 55.553251], + [37.703906, 55.553251] ] ] } @@ -13208,11 +13208,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703907, 55.553251], - [37.703907, 55.553341], - [37.703997, 55.553341], - [37.703997, 55.553251], - [37.703907, 55.553251] + [37.703906, 55.553341], + [37.703906, 55.553431], + [37.703996, 55.553431], + [37.703996, 55.553341], + [37.703906, 55.553341] ] ] } @@ -13224,11 +13224,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703907, 55.553341], - [37.703907, 55.553431], - [37.703997, 55.553431], - [37.703997, 55.553341], - [37.703907, 55.553341] + [37.703906, 55.553431], + [37.703906, 55.55352], + [37.703996, 55.55352], + [37.703996, 55.553431], + [37.703906, 55.553431] ] ] } @@ -13240,11 +13240,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703907, 55.553431], - [37.703907, 55.553521], - [37.703997, 55.553521], - [37.703997, 55.553431], - [37.703907, 55.553431] + [37.703906, 55.55352], + [37.703906, 55.55361], + [37.703996, 55.55361], + [37.703996, 55.55352], + [37.703906, 55.55352] ] ] } @@ -13256,11 +13256,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703907, 55.553521], - [37.703907, 55.553611], - [37.703997, 55.553611], - [37.703997, 55.553521], - [37.703907, 55.553521] + [37.703906, 55.55361], + [37.703906, 55.5537], + [37.703996, 55.5537], + [37.703996, 55.55361], + [37.703906, 55.55361] ] ] } @@ -13272,11 +13272,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703907, 55.553611], - [37.703907, 55.5537], - [37.703997, 55.5537], - [37.703997, 55.553611], - [37.703907, 55.553611] + [37.703906, 55.5537], + [37.703906, 55.55379], + [37.703996, 55.55379], + [37.703996, 55.5537], + [37.703906, 55.5537] ] ] } @@ -13288,11 +13288,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703907, 55.5537], - [37.703907, 55.55379], - [37.703997, 55.55379], - [37.703997, 55.5537], - [37.703907, 55.5537] + [37.703906, 55.55379], + [37.703906, 55.55388], + [37.703996, 55.55388], + [37.703996, 55.55379], + [37.703906, 55.55379] ] ] } @@ -13304,11 +13304,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703907, 55.55379], - [37.703907, 55.55388], - [37.703997, 55.55388], - [37.703997, 55.55379], - [37.703907, 55.55379] + [37.703906, 55.55388], + [37.703906, 55.55397], + [37.703996, 55.55397], + [37.703996, 55.55388], + [37.703906, 55.55388] ] ] } @@ -13320,11 +13320,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703907, 55.55388], - [37.703907, 55.55397], - [37.703997, 55.55397], - [37.703997, 55.55388], - [37.703907, 55.55388] + [37.703906, 55.55397], + [37.703906, 55.55406], + [37.703996, 55.55406], + [37.703996, 55.55397], + [37.703906, 55.55397] ] ] } @@ -13336,11 +13336,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703907, 55.55397], - [37.703907, 55.55406], - [37.703997, 55.55406], - [37.703997, 55.55397], - [37.703907, 55.55397] + [37.703906, 55.55406], + [37.703906, 55.55415], + [37.703996, 55.55415], + [37.703996, 55.55406], + [37.703906, 55.55406] ] ] } @@ -13352,11 +13352,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703907, 55.55406], - [37.703907, 55.55415], - [37.703997, 55.55415], - [37.703997, 55.55406], - [37.703907, 55.55406] + [37.703906, 55.55415], + [37.703906, 55.55424], + [37.703996, 55.55424], + [37.703996, 55.55415], + [37.703906, 55.55415] ] ] } @@ -13368,11 +13368,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703907, 55.55415], - [37.703907, 55.554239], - [37.703997, 55.554239], - [37.703997, 55.55415], - [37.703907, 55.55415] + [37.703906, 55.55424], + [37.703906, 55.55433], + [37.703996, 55.55433], + [37.703996, 55.55424], + [37.703906, 55.55424] ] ] } @@ -13384,11 +13384,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703907, 55.554239], - [37.703907, 55.554329], - [37.703997, 55.554329], - [37.703997, 55.554239], - [37.703907, 55.554239] + [37.703906, 55.55433], + [37.703906, 55.55442], + [37.703996, 55.55442], + [37.703996, 55.55433], + [37.703906, 55.55433] ] ] } @@ -13400,11 +13400,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703907, 55.554329], - [37.703907, 55.554419], - [37.703997, 55.554419], - [37.703997, 55.554329], - [37.703907, 55.554329] + [37.703906, 55.55442], + [37.703906, 55.55451], + [37.703996, 55.55451], + [37.703996, 55.55442], + [37.703906, 55.55442] ] ] } @@ -13416,11 +13416,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703907, 55.554419], - [37.703907, 55.554509], - [37.703997, 55.554509], - [37.703997, 55.554419], - [37.703907, 55.554419] + [37.703906, 55.55451], + [37.703906, 55.5546], + [37.703996, 55.5546], + [37.703996, 55.55451], + [37.703906, 55.55451] ] ] } @@ -13432,11 +13432,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703907, 55.554509], - [37.703907, 55.554599], - [37.703997, 55.554599], - [37.703997, 55.554509], - [37.703907, 55.554509] + [37.703906, 55.5546], + [37.703906, 55.55469], + [37.703996, 55.55469], + [37.703996, 55.5546], + [37.703906, 55.5546] ] ] } @@ -13448,11 +13448,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703907, 55.554599], - [37.703907, 55.554689], - [37.703997, 55.554689], - [37.703997, 55.554599], - [37.703907, 55.554599] + [37.703906, 55.55469], + [37.703906, 55.55478], + [37.703996, 55.55478], + [37.703996, 55.55469], + [37.703906, 55.55469] ] ] } @@ -13464,11 +13464,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703907, 55.554689], - [37.703907, 55.554778], - [37.703997, 55.554778], - [37.703997, 55.554689], - [37.703907, 55.554689] + [37.703906, 55.55478], + [37.703906, 55.554869], + [37.703996, 55.554869], + [37.703996, 55.55478], + [37.703906, 55.55478] ] ] } @@ -13480,11 +13480,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703907, 55.554778], - [37.703907, 55.554868], - [37.703997, 55.554868], - [37.703997, 55.554778], - [37.703907, 55.554778] + [37.703996, 55.552082], + [37.703996, 55.552171], + [37.704086, 55.552171], + [37.704086, 55.552082], + [37.703996, 55.552082] ] ] } @@ -13496,11 +13496,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703997, 55.552084], - [37.703997, 55.552173], - [37.704087, 55.552173], - [37.704087, 55.552084], - [37.703997, 55.552084] + [37.703996, 55.552171], + [37.703996, 55.552261], + [37.704086, 55.552261], + [37.704086, 55.552171], + [37.703996, 55.552171] ] ] } @@ -13512,11 +13512,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703997, 55.552173], - [37.703997, 55.552263], - [37.704087, 55.552263], - [37.704087, 55.552173], - [37.703997, 55.552173] + [37.703996, 55.552261], + [37.703996, 55.552351], + [37.704086, 55.552351], + [37.704086, 55.552261], + [37.703996, 55.552261] ] ] } @@ -13528,11 +13528,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703997, 55.552263], - [37.703997, 55.552353], - [37.704087, 55.552353], - [37.704087, 55.552263], - [37.703997, 55.552263] + [37.703996, 55.552351], + [37.703996, 55.552441], + [37.704086, 55.552441], + [37.704086, 55.552351], + [37.703996, 55.552351] ] ] } @@ -13544,11 +13544,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703997, 55.552353], - [37.703997, 55.552443], - [37.704087, 55.552443], - [37.704087, 55.552353], - [37.703997, 55.552353] + [37.703996, 55.552441], + [37.703996, 55.552531], + [37.704086, 55.552531], + [37.704086, 55.552441], + [37.703996, 55.552441] ] ] } @@ -13560,11 +13560,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703997, 55.552443], - [37.703997, 55.552533], - [37.704087, 55.552533], - [37.704087, 55.552443], - [37.703997, 55.552443] + [37.703996, 55.552531], + [37.703996, 55.552621], + [37.704086, 55.552621], + [37.704086, 55.552531], + [37.703996, 55.552531] ] ] } @@ -13576,11 +13576,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703997, 55.552533], - [37.703997, 55.552623], - [37.704087, 55.552623], - [37.704087, 55.552533], - [37.703997, 55.552533] + [37.703996, 55.552621], + [37.703996, 55.552711], + [37.704086, 55.552711], + [37.704086, 55.552621], + [37.703996, 55.552621] ] ] } @@ -13592,11 +13592,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703997, 55.552623], - [37.703997, 55.552712], - [37.704087, 55.552712], - [37.704087, 55.552623], - [37.703997, 55.552623] + [37.703996, 55.552711], + [37.703996, 55.552801], + [37.704086, 55.552801], + [37.704086, 55.552711], + [37.703996, 55.552711] ] ] } @@ -13608,11 +13608,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703997, 55.552712], - [37.703997, 55.552802], - [37.704087, 55.552802], - [37.704087, 55.552712], - [37.703997, 55.552712] + [37.703996, 55.552801], + [37.703996, 55.552891], + [37.704086, 55.552891], + [37.704086, 55.552801], + [37.703996, 55.552801] ] ] } @@ -13624,11 +13624,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703997, 55.552802], - [37.703997, 55.552892], - [37.704087, 55.552892], - [37.704087, 55.552802], - [37.703997, 55.552802] + [37.703996, 55.552891], + [37.703996, 55.552981], + [37.704086, 55.552981], + [37.704086, 55.552891], + [37.703996, 55.552891] ] ] } @@ -13640,11 +13640,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703997, 55.552892], - [37.703997, 55.552982], - [37.704087, 55.552982], - [37.704087, 55.552892], - [37.703997, 55.552892] + [37.703996, 55.552981], + [37.703996, 55.553071], + [37.704086, 55.553071], + [37.704086, 55.552981], + [37.703996, 55.552981] ] ] } @@ -13656,11 +13656,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703997, 55.552982], - [37.703997, 55.553072], - [37.704087, 55.553072], - [37.704087, 55.552982], - [37.703997, 55.552982] + [37.703996, 55.553071], + [37.703996, 55.553161], + [37.704086, 55.553161], + [37.704086, 55.553071], + [37.703996, 55.553071] ] ] } @@ -13672,11 +13672,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703997, 55.553072], - [37.703997, 55.553162], - [37.704087, 55.553162], - [37.704087, 55.553072], - [37.703997, 55.553072] + [37.703996, 55.553161], + [37.703996, 55.553251], + [37.704086, 55.553251], + [37.704086, 55.553161], + [37.703996, 55.553161] ] ] } @@ -13688,11 +13688,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703997, 55.553162], - [37.703997, 55.553251], - [37.704087, 55.553251], - [37.704087, 55.553162], - [37.703997, 55.553162] + [37.703996, 55.553251], + [37.703996, 55.553341], + [37.704086, 55.553341], + [37.704086, 55.553251], + [37.703996, 55.553251] ] ] } @@ -13704,11 +13704,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703997, 55.553251], - [37.703997, 55.553341], - [37.704087, 55.553341], - [37.704087, 55.553251], - [37.703997, 55.553251] + [37.703996, 55.553341], + [37.703996, 55.553431], + [37.704086, 55.553431], + [37.704086, 55.553341], + [37.703996, 55.553341] ] ] } @@ -13720,11 +13720,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703997, 55.553341], - [37.703997, 55.553431], - [37.704087, 55.553431], - [37.704087, 55.553341], - [37.703997, 55.553341] + [37.703996, 55.553431], + [37.703996, 55.55352], + [37.704086, 55.55352], + [37.704086, 55.553431], + [37.703996, 55.553431] ] ] } @@ -13736,11 +13736,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703997, 55.553431], - [37.703997, 55.553521], - [37.704087, 55.553521], - [37.704087, 55.553431], - [37.703997, 55.553431] + [37.703996, 55.55352], + [37.703996, 55.55361], + [37.704086, 55.55361], + [37.704086, 55.55352], + [37.703996, 55.55352] ] ] } @@ -13752,11 +13752,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703997, 55.553521], - [37.703997, 55.553611], - [37.704087, 55.553611], - [37.704087, 55.553521], - [37.703997, 55.553521] + [37.703996, 55.55361], + [37.703996, 55.5537], + [37.704086, 55.5537], + [37.704086, 55.55361], + [37.703996, 55.55361] ] ] } @@ -13768,11 +13768,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703997, 55.553611], - [37.703997, 55.5537], - [37.704087, 55.5537], - [37.704087, 55.553611], - [37.703997, 55.553611] + [37.703996, 55.5537], + [37.703996, 55.55379], + [37.704086, 55.55379], + [37.704086, 55.5537], + [37.703996, 55.5537] ] ] } @@ -13784,11 +13784,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703997, 55.5537], - [37.703997, 55.55379], - [37.704087, 55.55379], - [37.704087, 55.5537], - [37.703997, 55.5537] + [37.703996, 55.55379], + [37.703996, 55.55388], + [37.704086, 55.55388], + [37.704086, 55.55379], + [37.703996, 55.55379] ] ] } @@ -13800,11 +13800,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703997, 55.55379], - [37.703997, 55.55388], - [37.704087, 55.55388], - [37.704087, 55.55379], - [37.703997, 55.55379] + [37.703996, 55.55388], + [37.703996, 55.55397], + [37.704086, 55.55397], + [37.704086, 55.55388], + [37.703996, 55.55388] ] ] } @@ -13816,11 +13816,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703997, 55.55388], - [37.703997, 55.55397], - [37.704087, 55.55397], - [37.704087, 55.55388], - [37.703997, 55.55388] + [37.703996, 55.55397], + [37.703996, 55.55406], + [37.704086, 55.55406], + [37.704086, 55.55397], + [37.703996, 55.55397] ] ] } @@ -13832,11 +13832,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703997, 55.55397], - [37.703997, 55.55406], - [37.704087, 55.55406], - [37.704087, 55.55397], - [37.703997, 55.55397] + [37.703996, 55.55406], + [37.703996, 55.55415], + [37.704086, 55.55415], + [37.704086, 55.55406], + [37.703996, 55.55406] ] ] } @@ -13848,11 +13848,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703997, 55.55406], - [37.703997, 55.55415], - [37.704087, 55.55415], - [37.704087, 55.55406], - [37.703997, 55.55406] + [37.703996, 55.55415], + [37.703996, 55.55424], + [37.704086, 55.55424], + [37.704086, 55.55415], + [37.703996, 55.55415] ] ] } @@ -13864,11 +13864,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703997, 55.55415], - [37.703997, 55.554239], - [37.704087, 55.554239], - [37.704087, 55.55415], - [37.703997, 55.55415] + [37.703996, 55.55424], + [37.703996, 55.55433], + [37.704086, 55.55433], + [37.704086, 55.55424], + [37.703996, 55.55424] ] ] } @@ -13880,11 +13880,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703997, 55.554239], - [37.703997, 55.554329], - [37.704087, 55.554329], - [37.704087, 55.554239], - [37.703997, 55.554239] + [37.703996, 55.55433], + [37.703996, 55.55442], + [37.704086, 55.55442], + [37.704086, 55.55433], + [37.703996, 55.55433] ] ] } @@ -13896,11 +13896,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703997, 55.554329], - [37.703997, 55.554419], - [37.704087, 55.554419], - [37.704087, 55.554329], - [37.703997, 55.554329] + [37.703996, 55.55442], + [37.703996, 55.55451], + [37.704086, 55.55451], + [37.704086, 55.55442], + [37.703996, 55.55442] ] ] } @@ -13912,11 +13912,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703997, 55.554419], - [37.703997, 55.554509], - [37.704087, 55.554509], - [37.704087, 55.554419], - [37.703997, 55.554419] + [37.703996, 55.55451], + [37.703996, 55.5546], + [37.704086, 55.5546], + [37.704086, 55.55451], + [37.703996, 55.55451] ] ] } @@ -13928,11 +13928,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703997, 55.554509], - [37.703997, 55.554599], - [37.704087, 55.554599], - [37.704087, 55.554509], - [37.703997, 55.554509] + [37.703996, 55.5546], + [37.703996, 55.55469], + [37.704086, 55.55469], + [37.704086, 55.5546], + [37.703996, 55.5546] ] ] } @@ -13944,11 +13944,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703997, 55.554599], - [37.703997, 55.554689], - [37.704087, 55.554689], - [37.704087, 55.554599], - [37.703997, 55.554599] + [37.703996, 55.55469], + [37.703996, 55.55478], + [37.704086, 55.55478], + [37.704086, 55.55469], + [37.703996, 55.55469] ] ] } @@ -13960,11 +13960,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703997, 55.554689], - [37.703997, 55.554778], - [37.704087, 55.554778], - [37.704087, 55.554689], - [37.703997, 55.554689] + [37.703996, 55.55478], + [37.703996, 55.554869], + [37.704086, 55.554869], + [37.704086, 55.55478], + [37.703996, 55.55478] ] ] } @@ -13976,11 +13976,11 @@ "type": "Polygon", "coordinates": [ [ - [37.703997, 55.554778], - [37.703997, 55.554868], - [37.704087, 55.554868], - [37.704087, 55.554778], - [37.703997, 55.554778] + [37.704086, 55.552082], + [37.704086, 55.552171], + [37.704176, 55.552171], + [37.704176, 55.552082], + [37.704086, 55.552082] ] ] } @@ -13992,11 +13992,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704087, 55.552084], - [37.704087, 55.552173], - [37.704176, 55.552173], - [37.704176, 55.552084], - [37.704087, 55.552084] + [37.704086, 55.552171], + [37.704086, 55.552261], + [37.704176, 55.552261], + [37.704176, 55.552171], + [37.704086, 55.552171] ] ] } @@ -14008,11 +14008,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704087, 55.552173], - [37.704087, 55.552263], - [37.704176, 55.552263], - [37.704176, 55.552173], - [37.704087, 55.552173] + [37.704086, 55.552261], + [37.704086, 55.552351], + [37.704176, 55.552351], + [37.704176, 55.552261], + [37.704086, 55.552261] ] ] } @@ -14024,11 +14024,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704087, 55.552263], - [37.704087, 55.552353], - [37.704176, 55.552353], - [37.704176, 55.552263], - [37.704087, 55.552263] + [37.704086, 55.552351], + [37.704086, 55.552441], + [37.704176, 55.552441], + [37.704176, 55.552351], + [37.704086, 55.552351] ] ] } @@ -14040,11 +14040,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704087, 55.552353], - [37.704087, 55.552443], - [37.704176, 55.552443], - [37.704176, 55.552353], - [37.704087, 55.552353] + [37.704086, 55.552441], + [37.704086, 55.552531], + [37.704176, 55.552531], + [37.704176, 55.552441], + [37.704086, 55.552441] ] ] } @@ -14056,11 +14056,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704087, 55.552443], - [37.704087, 55.552533], - [37.704176, 55.552533], - [37.704176, 55.552443], - [37.704087, 55.552443] + [37.704086, 55.552531], + [37.704086, 55.552621], + [37.704176, 55.552621], + [37.704176, 55.552531], + [37.704086, 55.552531] ] ] } @@ -14072,11 +14072,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704087, 55.552533], - [37.704087, 55.552623], - [37.704176, 55.552623], - [37.704176, 55.552533], - [37.704087, 55.552533] + [37.704086, 55.552621], + [37.704086, 55.552711], + [37.704176, 55.552711], + [37.704176, 55.552621], + [37.704086, 55.552621] ] ] } @@ -14088,11 +14088,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704087, 55.552623], - [37.704087, 55.552712], - [37.704176, 55.552712], - [37.704176, 55.552623], - [37.704087, 55.552623] + [37.704086, 55.552711], + [37.704086, 55.552801], + [37.704176, 55.552801], + [37.704176, 55.552711], + [37.704086, 55.552711] ] ] } @@ -14104,11 +14104,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704087, 55.552712], - [37.704087, 55.552802], - [37.704176, 55.552802], - [37.704176, 55.552712], - [37.704087, 55.552712] + [37.704086, 55.552801], + [37.704086, 55.552891], + [37.704176, 55.552891], + [37.704176, 55.552801], + [37.704086, 55.552801] ] ] } @@ -14120,11 +14120,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704087, 55.552802], - [37.704087, 55.552892], - [37.704176, 55.552892], - [37.704176, 55.552802], - [37.704087, 55.552802] + [37.704086, 55.552891], + [37.704086, 55.552981], + [37.704176, 55.552981], + [37.704176, 55.552891], + [37.704086, 55.552891] ] ] } @@ -14136,11 +14136,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704087, 55.552892], - [37.704087, 55.552982], - [37.704176, 55.552982], - [37.704176, 55.552892], - [37.704087, 55.552892] + [37.704086, 55.552981], + [37.704086, 55.553071], + [37.704176, 55.553071], + [37.704176, 55.552981], + [37.704086, 55.552981] ] ] } @@ -14152,11 +14152,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704087, 55.552982], - [37.704087, 55.553072], - [37.704176, 55.553072], - [37.704176, 55.552982], - [37.704087, 55.552982] + [37.704086, 55.553071], + [37.704086, 55.553161], + [37.704176, 55.553161], + [37.704176, 55.553071], + [37.704086, 55.553071] ] ] } @@ -14168,27 +14168,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704087, 55.553072], - [37.704087, 55.553162], - [37.704176, 55.553162], - [37.704176, 55.553072], - [37.704087, 55.553072] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.704087, 55.553162], - [37.704087, 55.553251], + [37.704086, 55.553161], + [37.704086, 55.553251], [37.704176, 55.553251], - [37.704176, 55.553162], - [37.704087, 55.553162] + [37.704176, 55.553161], + [37.704086, 55.553161] ] ] } @@ -14200,11 +14184,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704087, 55.553251], - [37.704087, 55.553341], + [37.704086, 55.553251], + [37.704086, 55.553341], [37.704176, 55.553341], [37.704176, 55.553251], - [37.704087, 55.553251] + [37.704086, 55.553251] ] ] } @@ -14216,11 +14200,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704087, 55.553341], - [37.704087, 55.553431], + [37.704086, 55.553341], + [37.704086, 55.553431], [37.704176, 55.553431], [37.704176, 55.553341], - [37.704087, 55.553341] + [37.704086, 55.553341] ] ] } @@ -14232,11 +14216,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704087, 55.553431], - [37.704087, 55.553521], - [37.704176, 55.553521], + [37.704086, 55.553431], + [37.704086, 55.55352], + [37.704176, 55.55352], [37.704176, 55.553431], - [37.704087, 55.553431] + [37.704086, 55.553431] ] ] } @@ -14248,11 +14232,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704087, 55.553521], - [37.704087, 55.553611], - [37.704176, 55.553611], - [37.704176, 55.553521], - [37.704087, 55.553521] + [37.704086, 55.55352], + [37.704086, 55.55361], + [37.704176, 55.55361], + [37.704176, 55.55352], + [37.704086, 55.55352] ] ] } @@ -14264,11 +14248,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704087, 55.553611], - [37.704087, 55.5537], + [37.704086, 55.55361], + [37.704086, 55.5537], [37.704176, 55.5537], - [37.704176, 55.553611], - [37.704087, 55.553611] + [37.704176, 55.55361], + [37.704086, 55.55361] ] ] } @@ -14280,11 +14264,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704087, 55.5537], - [37.704087, 55.55379], + [37.704086, 55.5537], + [37.704086, 55.55379], [37.704176, 55.55379], [37.704176, 55.5537], - [37.704087, 55.5537] + [37.704086, 55.5537] ] ] } @@ -14296,11 +14280,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704087, 55.55379], - [37.704087, 55.55388], + [37.704086, 55.55379], + [37.704086, 55.55388], [37.704176, 55.55388], [37.704176, 55.55379], - [37.704087, 55.55379] + [37.704086, 55.55379] ] ] } @@ -14312,11 +14296,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704087, 55.55388], - [37.704087, 55.55397], + [37.704086, 55.55388], + [37.704086, 55.55397], [37.704176, 55.55397], [37.704176, 55.55388], - [37.704087, 55.55388] + [37.704086, 55.55388] ] ] } @@ -14328,11 +14312,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704087, 55.55397], - [37.704087, 55.55406], + [37.704086, 55.55397], + [37.704086, 55.55406], [37.704176, 55.55406], [37.704176, 55.55397], - [37.704087, 55.55397] + [37.704086, 55.55397] ] ] } @@ -14344,11 +14328,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704087, 55.55406], - [37.704087, 55.55415], + [37.704086, 55.55406], + [37.704086, 55.55415], [37.704176, 55.55415], [37.704176, 55.55406], - [37.704087, 55.55406] + [37.704086, 55.55406] ] ] } @@ -14360,11 +14344,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704087, 55.55415], - [37.704087, 55.554239], - [37.704176, 55.554239], + [37.704086, 55.55415], + [37.704086, 55.55424], + [37.704176, 55.55424], [37.704176, 55.55415], - [37.704087, 55.55415] + [37.704086, 55.55415] ] ] } @@ -14376,11 +14360,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704087, 55.554239], - [37.704087, 55.554329], - [37.704176, 55.554329], - [37.704176, 55.554239], - [37.704087, 55.554239] + [37.704086, 55.55424], + [37.704086, 55.55433], + [37.704176, 55.55433], + [37.704176, 55.55424], + [37.704086, 55.55424] ] ] } @@ -14392,11 +14376,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704087, 55.554329], - [37.704087, 55.554419], - [37.704176, 55.554419], - [37.704176, 55.554329], - [37.704087, 55.554329] + [37.704086, 55.55433], + [37.704086, 55.55442], + [37.704176, 55.55442], + [37.704176, 55.55433], + [37.704086, 55.55433] ] ] } @@ -14408,11 +14392,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704087, 55.554419], - [37.704087, 55.554509], - [37.704176, 55.554509], - [37.704176, 55.554419], - [37.704087, 55.554419] + [37.704086, 55.55442], + [37.704086, 55.55451], + [37.704176, 55.55451], + [37.704176, 55.55442], + [37.704086, 55.55442] ] ] } @@ -14424,11 +14408,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704087, 55.554509], - [37.704087, 55.554599], - [37.704176, 55.554599], - [37.704176, 55.554509], - [37.704087, 55.554509] + [37.704086, 55.55451], + [37.704086, 55.5546], + [37.704176, 55.5546], + [37.704176, 55.55451], + [37.704086, 55.55451] ] ] } @@ -14440,11 +14424,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704087, 55.554599], - [37.704087, 55.554689], - [37.704176, 55.554689], - [37.704176, 55.554599], - [37.704087, 55.554599] + [37.704086, 55.5546], + [37.704086, 55.55469], + [37.704176, 55.55469], + [37.704176, 55.5546], + [37.704086, 55.5546] ] ] } @@ -14456,11 +14440,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704087, 55.554689], - [37.704087, 55.554778], - [37.704176, 55.554778], - [37.704176, 55.554689], - [37.704087, 55.554689] + [37.704086, 55.55469], + [37.704086, 55.55478], + [37.704176, 55.55478], + [37.704176, 55.55469], + [37.704086, 55.55469] ] ] } @@ -14472,11 +14456,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704087, 55.554778], - [37.704087, 55.554868], - [37.704176, 55.554868], - [37.704176, 55.554778], - [37.704087, 55.554778] + [37.704086, 55.55478], + [37.704086, 55.554869], + [37.704176, 55.554869], + [37.704176, 55.55478], + [37.704086, 55.55478] ] ] } @@ -14488,11 +14472,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704087, 55.554868], - [37.704087, 55.554958], - [37.704176, 55.554958], - [37.704176, 55.554868], - [37.704087, 55.554868] + [37.704086, 55.554869], + [37.704086, 55.554959], + [37.704176, 55.554959], + [37.704176, 55.554869], + [37.704086, 55.554869] ] ] } @@ -14504,11 +14488,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704176, 55.552084], - [37.704176, 55.552173], - [37.704266, 55.552173], - [37.704266, 55.552084], - [37.704176, 55.552084] + [37.704176, 55.552082], + [37.704176, 55.552171], + [37.704266, 55.552171], + [37.704266, 55.552082], + [37.704176, 55.552082] ] ] } @@ -14520,11 +14504,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704176, 55.552173], - [37.704176, 55.552263], - [37.704266, 55.552263], - [37.704266, 55.552173], - [37.704176, 55.552173] + [37.704176, 55.552171], + [37.704176, 55.552261], + [37.704266, 55.552261], + [37.704266, 55.552171], + [37.704176, 55.552171] ] ] } @@ -14536,11 +14520,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704176, 55.552263], - [37.704176, 55.552353], - [37.704266, 55.552353], - [37.704266, 55.552263], - [37.704176, 55.552263] + [37.704176, 55.552261], + [37.704176, 55.552351], + [37.704266, 55.552351], + [37.704266, 55.552261], + [37.704176, 55.552261] ] ] } @@ -14552,11 +14536,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704176, 55.552353], - [37.704176, 55.552443], - [37.704266, 55.552443], - [37.704266, 55.552353], - [37.704176, 55.552353] + [37.704176, 55.552351], + [37.704176, 55.552441], + [37.704266, 55.552441], + [37.704266, 55.552351], + [37.704176, 55.552351] ] ] } @@ -14568,11 +14552,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704176, 55.552443], - [37.704176, 55.552533], - [37.704266, 55.552533], - [37.704266, 55.552443], - [37.704176, 55.552443] + [37.704176, 55.552441], + [37.704176, 55.552531], + [37.704266, 55.552531], + [37.704266, 55.552441], + [37.704176, 55.552441] ] ] } @@ -14584,11 +14568,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704176, 55.552533], - [37.704176, 55.552623], - [37.704266, 55.552623], - [37.704266, 55.552533], - [37.704176, 55.552533] + [37.704176, 55.552531], + [37.704176, 55.552621], + [37.704266, 55.552621], + [37.704266, 55.552531], + [37.704176, 55.552531] ] ] } @@ -14600,11 +14584,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704176, 55.552623], - [37.704176, 55.552712], - [37.704266, 55.552712], - [37.704266, 55.552623], - [37.704176, 55.552623] + [37.704176, 55.552621], + [37.704176, 55.552711], + [37.704266, 55.552711], + [37.704266, 55.552621], + [37.704176, 55.552621] ] ] } @@ -14616,11 +14600,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704176, 55.552712], - [37.704176, 55.552802], - [37.704266, 55.552802], - [37.704266, 55.552712], - [37.704176, 55.552712] + [37.704176, 55.552711], + [37.704176, 55.552801], + [37.704266, 55.552801], + [37.704266, 55.552711], + [37.704176, 55.552711] ] ] } @@ -14632,11 +14616,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704176, 55.552802], - [37.704176, 55.552892], - [37.704266, 55.552892], - [37.704266, 55.552802], - [37.704176, 55.552802] + [37.704176, 55.552801], + [37.704176, 55.552891], + [37.704266, 55.552891], + [37.704266, 55.552801], + [37.704176, 55.552801] ] ] } @@ -14648,11 +14632,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704176, 55.552892], - [37.704176, 55.552982], - [37.704266, 55.552982], - [37.704266, 55.552892], - [37.704176, 55.552892] + [37.704176, 55.552891], + [37.704176, 55.552981], + [37.704266, 55.552981], + [37.704266, 55.552891], + [37.704176, 55.552891] ] ] } @@ -14664,11 +14648,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704176, 55.552982], - [37.704176, 55.553072], - [37.704266, 55.553072], - [37.704266, 55.552982], - [37.704176, 55.552982] + [37.704176, 55.552981], + [37.704176, 55.553071], + [37.704266, 55.553071], + [37.704266, 55.552981], + [37.704176, 55.552981] ] ] } @@ -14680,11 +14664,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704176, 55.553072], - [37.704176, 55.553162], - [37.704266, 55.553162], - [37.704266, 55.553072], - [37.704176, 55.553072] + [37.704176, 55.553071], + [37.704176, 55.553161], + [37.704266, 55.553161], + [37.704266, 55.553071], + [37.704176, 55.553071] ] ] } @@ -14696,11 +14680,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704176, 55.553162], + [37.704176, 55.553161], [37.704176, 55.553251], [37.704266, 55.553251], - [37.704266, 55.553162], - [37.704176, 55.553162] + [37.704266, 55.553161], + [37.704176, 55.553161] ] ] } @@ -14745,8 +14729,8 @@ "coordinates": [ [ [37.704176, 55.553431], - [37.704176, 55.553521], - [37.704266, 55.553521], + [37.704176, 55.55352], + [37.704266, 55.55352], [37.704266, 55.553431], [37.704176, 55.553431] ] @@ -14760,11 +14744,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704176, 55.553521], - [37.704176, 55.553611], - [37.704266, 55.553611], - [37.704266, 55.553521], - [37.704176, 55.553521] + [37.704176, 55.55352], + [37.704176, 55.55361], + [37.704266, 55.55361], + [37.704266, 55.55352], + [37.704176, 55.55352] ] ] } @@ -14776,11 +14760,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704176, 55.553611], + [37.704176, 55.55361], [37.704176, 55.5537], [37.704266, 55.5537], - [37.704266, 55.553611], - [37.704176, 55.553611] + [37.704266, 55.55361], + [37.704176, 55.55361] ] ] } @@ -14873,8 +14857,8 @@ "coordinates": [ [ [37.704176, 55.55415], - [37.704176, 55.554239], - [37.704266, 55.554239], + [37.704176, 55.55424], + [37.704266, 55.55424], [37.704266, 55.55415], [37.704176, 55.55415] ] @@ -14888,11 +14872,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704176, 55.554239], - [37.704176, 55.554329], - [37.704266, 55.554329], - [37.704266, 55.554239], - [37.704176, 55.554239] + [37.704176, 55.55424], + [37.704176, 55.55433], + [37.704266, 55.55433], + [37.704266, 55.55424], + [37.704176, 55.55424] ] ] } @@ -14904,11 +14888,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704176, 55.554329], - [37.704176, 55.554419], - [37.704266, 55.554419], - [37.704266, 55.554329], - [37.704176, 55.554329] + [37.704176, 55.55433], + [37.704176, 55.55442], + [37.704266, 55.55442], + [37.704266, 55.55433], + [37.704176, 55.55433] ] ] } @@ -14920,11 +14904,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704176, 55.554419], - [37.704176, 55.554509], - [37.704266, 55.554509], - [37.704266, 55.554419], - [37.704176, 55.554419] + [37.704176, 55.55442], + [37.704176, 55.55451], + [37.704266, 55.55451], + [37.704266, 55.55442], + [37.704176, 55.55442] ] ] } @@ -14936,11 +14920,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704176, 55.554509], - [37.704176, 55.554599], - [37.704266, 55.554599], - [37.704266, 55.554509], - [37.704176, 55.554509] + [37.704176, 55.55451], + [37.704176, 55.5546], + [37.704266, 55.5546], + [37.704266, 55.55451], + [37.704176, 55.55451] ] ] } @@ -14952,11 +14936,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704176, 55.554599], - [37.704176, 55.554689], - [37.704266, 55.554689], - [37.704266, 55.554599], - [37.704176, 55.554599] + [37.704176, 55.5546], + [37.704176, 55.55469], + [37.704266, 55.55469], + [37.704266, 55.5546], + [37.704176, 55.5546] ] ] } @@ -14968,11 +14952,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704176, 55.554689], - [37.704176, 55.554778], - [37.704266, 55.554778], - [37.704266, 55.554689], - [37.704176, 55.554689] + [37.704176, 55.55469], + [37.704176, 55.55478], + [37.704266, 55.55478], + [37.704266, 55.55469], + [37.704176, 55.55469] ] ] } @@ -14984,11 +14968,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704176, 55.554778], - [37.704176, 55.554868], - [37.704266, 55.554868], - [37.704266, 55.554778], - [37.704176, 55.554778] + [37.704176, 55.55478], + [37.704176, 55.554869], + [37.704266, 55.554869], + [37.704266, 55.55478], + [37.704176, 55.55478] ] ] } @@ -15000,11 +14984,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704176, 55.554868], - [37.704176, 55.554958], - [37.704266, 55.554958], - [37.704266, 55.554868], - [37.704176, 55.554868] + [37.704176, 55.554869], + [37.704176, 55.554959], + [37.704266, 55.554959], + [37.704266, 55.554869], + [37.704176, 55.554869] ] ] } @@ -15016,11 +15000,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704266, 55.551994], - [37.704266, 55.552084], - [37.704356, 55.552084], - [37.704356, 55.551994], - [37.704266, 55.551994] + [37.704266, 55.551992], + [37.704266, 55.552082], + [37.704356, 55.552082], + [37.704356, 55.551992], + [37.704266, 55.551992] ] ] } @@ -15032,11 +15016,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704266, 55.552084], - [37.704266, 55.552173], - [37.704356, 55.552173], - [37.704356, 55.552084], - [37.704266, 55.552084] + [37.704266, 55.552082], + [37.704266, 55.552171], + [37.704356, 55.552171], + [37.704356, 55.552082], + [37.704266, 55.552082] ] ] } @@ -15048,11 +15032,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704266, 55.552173], - [37.704266, 55.552263], - [37.704356, 55.552263], - [37.704356, 55.552173], - [37.704266, 55.552173] + [37.704266, 55.552171], + [37.704266, 55.552261], + [37.704356, 55.552261], + [37.704356, 55.552171], + [37.704266, 55.552171] ] ] } @@ -15064,11 +15048,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704266, 55.552263], - [37.704266, 55.552353], - [37.704356, 55.552353], - [37.704356, 55.552263], - [37.704266, 55.552263] + [37.704266, 55.552261], + [37.704266, 55.552351], + [37.704356, 55.552351], + [37.704356, 55.552261], + [37.704266, 55.552261] ] ] } @@ -15080,11 +15064,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704266, 55.552353], - [37.704266, 55.552443], - [37.704356, 55.552443], - [37.704356, 55.552353], - [37.704266, 55.552353] + [37.704266, 55.552351], + [37.704266, 55.552441], + [37.704356, 55.552441], + [37.704356, 55.552351], + [37.704266, 55.552351] ] ] } @@ -15096,11 +15080,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704266, 55.552443], - [37.704266, 55.552533], - [37.704356, 55.552533], - [37.704356, 55.552443], - [37.704266, 55.552443] + [37.704266, 55.552441], + [37.704266, 55.552531], + [37.704356, 55.552531], + [37.704356, 55.552441], + [37.704266, 55.552441] ] ] } @@ -15112,11 +15096,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704266, 55.552533], - [37.704266, 55.552623], - [37.704356, 55.552623], - [37.704356, 55.552533], - [37.704266, 55.552533] + [37.704266, 55.552531], + [37.704266, 55.552621], + [37.704356, 55.552621], + [37.704356, 55.552531], + [37.704266, 55.552531] ] ] } @@ -15128,11 +15112,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704266, 55.552623], - [37.704266, 55.552712], - [37.704356, 55.552712], - [37.704356, 55.552623], - [37.704266, 55.552623] + [37.704266, 55.552621], + [37.704266, 55.552711], + [37.704356, 55.552711], + [37.704356, 55.552621], + [37.704266, 55.552621] ] ] } @@ -15144,11 +15128,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704266, 55.552712], - [37.704266, 55.552802], - [37.704356, 55.552802], - [37.704356, 55.552712], - [37.704266, 55.552712] + [37.704266, 55.552711], + [37.704266, 55.552801], + [37.704356, 55.552801], + [37.704356, 55.552711], + [37.704266, 55.552711] ] ] } @@ -15160,11 +15144,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704266, 55.552802], - [37.704266, 55.552892], - [37.704356, 55.552892], - [37.704356, 55.552802], - [37.704266, 55.552802] + [37.704266, 55.552801], + [37.704266, 55.552891], + [37.704356, 55.552891], + [37.704356, 55.552801], + [37.704266, 55.552801] ] ] } @@ -15176,11 +15160,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704266, 55.552892], - [37.704266, 55.552982], - [37.704356, 55.552982], - [37.704356, 55.552892], - [37.704266, 55.552892] + [37.704266, 55.552891], + [37.704266, 55.552981], + [37.704356, 55.552981], + [37.704356, 55.552891], + [37.704266, 55.552891] ] ] } @@ -15192,11 +15176,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704266, 55.552982], - [37.704266, 55.553072], - [37.704356, 55.553072], - [37.704356, 55.552982], - [37.704266, 55.552982] + [37.704266, 55.552981], + [37.704266, 55.553071], + [37.704356, 55.553071], + [37.704356, 55.552981], + [37.704266, 55.552981] ] ] } @@ -15208,11 +15192,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704266, 55.553072], - [37.704266, 55.553162], - [37.704356, 55.553162], - [37.704356, 55.553072], - [37.704266, 55.553072] + [37.704266, 55.553071], + [37.704266, 55.553161], + [37.704356, 55.553161], + [37.704356, 55.553071], + [37.704266, 55.553071] ] ] } @@ -15224,11 +15208,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704266, 55.553162], + [37.704266, 55.553161], [37.704266, 55.553251], [37.704356, 55.553251], - [37.704356, 55.553162], - [37.704266, 55.553162] + [37.704356, 55.553161], + [37.704266, 55.553161] ] ] } @@ -15273,8 +15257,8 @@ "coordinates": [ [ [37.704266, 55.553431], - [37.704266, 55.553521], - [37.704356, 55.553521], + [37.704266, 55.55352], + [37.704356, 55.55352], [37.704356, 55.553431], [37.704266, 55.553431] ] @@ -15288,11 +15272,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704266, 55.553521], - [37.704266, 55.553611], - [37.704356, 55.553611], - [37.704356, 55.553521], - [37.704266, 55.553521] + [37.704266, 55.55352], + [37.704266, 55.55361], + [37.704356, 55.55361], + [37.704356, 55.55352], + [37.704266, 55.55352] ] ] } @@ -15304,11 +15288,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704266, 55.553611], + [37.704266, 55.55361], [37.704266, 55.5537], [37.704356, 55.5537], - [37.704356, 55.553611], - [37.704266, 55.553611] + [37.704356, 55.55361], + [37.704266, 55.55361] ] ] } @@ -15401,8 +15385,8 @@ "coordinates": [ [ [37.704266, 55.55415], - [37.704266, 55.554239], - [37.704356, 55.554239], + [37.704266, 55.55424], + [37.704356, 55.55424], [37.704356, 55.55415], [37.704266, 55.55415] ] @@ -15416,11 +15400,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704266, 55.554239], - [37.704266, 55.554329], - [37.704356, 55.554329], - [37.704356, 55.554239], - [37.704266, 55.554239] + [37.704266, 55.55424], + [37.704266, 55.55433], + [37.704356, 55.55433], + [37.704356, 55.55424], + [37.704266, 55.55424] ] ] } @@ -15432,11 +15416,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704266, 55.554329], - [37.704266, 55.554419], - [37.704356, 55.554419], - [37.704356, 55.554329], - [37.704266, 55.554329] + [37.704266, 55.55433], + [37.704266, 55.55442], + [37.704356, 55.55442], + [37.704356, 55.55433], + [37.704266, 55.55433] ] ] } @@ -15448,11 +15432,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704266, 55.554419], - [37.704266, 55.554509], - [37.704356, 55.554509], - [37.704356, 55.554419], - [37.704266, 55.554419] + [37.704266, 55.55442], + [37.704266, 55.55451], + [37.704356, 55.55451], + [37.704356, 55.55442], + [37.704266, 55.55442] ] ] } @@ -15464,11 +15448,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704266, 55.554509], - [37.704266, 55.554599], - [37.704356, 55.554599], - [37.704356, 55.554509], - [37.704266, 55.554509] + [37.704266, 55.55451], + [37.704266, 55.5546], + [37.704356, 55.5546], + [37.704356, 55.55451], + [37.704266, 55.55451] ] ] } @@ -15480,11 +15464,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704266, 55.554599], - [37.704266, 55.554689], - [37.704356, 55.554689], - [37.704356, 55.554599], - [37.704266, 55.554599] + [37.704266, 55.5546], + [37.704266, 55.55469], + [37.704356, 55.55469], + [37.704356, 55.5546], + [37.704266, 55.5546] ] ] } @@ -15496,11 +15480,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704266, 55.554689], - [37.704266, 55.554778], - [37.704356, 55.554778], - [37.704356, 55.554689], - [37.704266, 55.554689] + [37.704266, 55.55469], + [37.704266, 55.55478], + [37.704356, 55.55478], + [37.704356, 55.55469], + [37.704266, 55.55469] ] ] } @@ -15512,11 +15496,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704266, 55.554778], - [37.704266, 55.554868], - [37.704356, 55.554868], - [37.704356, 55.554778], - [37.704266, 55.554778] + [37.704266, 55.55478], + [37.704266, 55.554869], + [37.704356, 55.554869], + [37.704356, 55.55478], + [37.704266, 55.55478] ] ] } @@ -15528,11 +15512,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704266, 55.554868], - [37.704266, 55.554958], - [37.704356, 55.554958], - [37.704356, 55.554868], - [37.704266, 55.554868] + [37.704266, 55.554869], + [37.704266, 55.554959], + [37.704356, 55.554959], + [37.704356, 55.554869], + [37.704266, 55.554869] ] ] } @@ -15544,11 +15528,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704356, 55.551994], - [37.704356, 55.552084], - [37.704446, 55.552084], - [37.704446, 55.551994], - [37.704356, 55.551994] + [37.704356, 55.551992], + [37.704356, 55.552082], + [37.704446, 55.552082], + [37.704446, 55.551992], + [37.704356, 55.551992] ] ] } @@ -15560,11 +15544,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704356, 55.552084], - [37.704356, 55.552173], - [37.704446, 55.552173], - [37.704446, 55.552084], - [37.704356, 55.552084] + [37.704356, 55.552082], + [37.704356, 55.552171], + [37.704446, 55.552171], + [37.704446, 55.552082], + [37.704356, 55.552082] ] ] } @@ -15576,11 +15560,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704356, 55.552173], - [37.704356, 55.552263], - [37.704446, 55.552263], - [37.704446, 55.552173], - [37.704356, 55.552173] + [37.704356, 55.552171], + [37.704356, 55.552261], + [37.704446, 55.552261], + [37.704446, 55.552171], + [37.704356, 55.552171] ] ] } @@ -15592,11 +15576,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704356, 55.552263], - [37.704356, 55.552353], - [37.704446, 55.552353], - [37.704446, 55.552263], - [37.704356, 55.552263] + [37.704356, 55.552261], + [37.704356, 55.552351], + [37.704446, 55.552351], + [37.704446, 55.552261], + [37.704356, 55.552261] ] ] } @@ -15608,11 +15592,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704356, 55.552353], - [37.704356, 55.552443], - [37.704446, 55.552443], - [37.704446, 55.552353], - [37.704356, 55.552353] + [37.704356, 55.552351], + [37.704356, 55.552441], + [37.704446, 55.552441], + [37.704446, 55.552351], + [37.704356, 55.552351] ] ] } @@ -15624,11 +15608,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704356, 55.552443], - [37.704356, 55.552533], - [37.704446, 55.552533], - [37.704446, 55.552443], - [37.704356, 55.552443] + [37.704356, 55.552441], + [37.704356, 55.552531], + [37.704446, 55.552531], + [37.704446, 55.552441], + [37.704356, 55.552441] ] ] } @@ -15640,11 +15624,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704356, 55.552533], - [37.704356, 55.552623], - [37.704446, 55.552623], - [37.704446, 55.552533], - [37.704356, 55.552533] + [37.704356, 55.552531], + [37.704356, 55.552621], + [37.704446, 55.552621], + [37.704446, 55.552531], + [37.704356, 55.552531] ] ] } @@ -15656,11 +15640,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704356, 55.552623], - [37.704356, 55.552712], - [37.704446, 55.552712], - [37.704446, 55.552623], - [37.704356, 55.552623] + [37.704356, 55.552621], + [37.704356, 55.552711], + [37.704446, 55.552711], + [37.704446, 55.552621], + [37.704356, 55.552621] ] ] } @@ -15672,11 +15656,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704356, 55.552712], - [37.704356, 55.552802], - [37.704446, 55.552802], - [37.704446, 55.552712], - [37.704356, 55.552712] + [37.704356, 55.552711], + [37.704356, 55.552801], + [37.704446, 55.552801], + [37.704446, 55.552711], + [37.704356, 55.552711] ] ] } @@ -15688,11 +15672,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704356, 55.552802], - [37.704356, 55.552892], - [37.704446, 55.552892], - [37.704446, 55.552802], - [37.704356, 55.552802] + [37.704356, 55.552801], + [37.704356, 55.552891], + [37.704446, 55.552891], + [37.704446, 55.552801], + [37.704356, 55.552801] ] ] } @@ -15704,11 +15688,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704356, 55.552892], - [37.704356, 55.552982], - [37.704446, 55.552982], - [37.704446, 55.552892], - [37.704356, 55.552892] + [37.704356, 55.552891], + [37.704356, 55.552981], + [37.704446, 55.552981], + [37.704446, 55.552891], + [37.704356, 55.552891] ] ] } @@ -15720,11 +15704,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704356, 55.552982], - [37.704356, 55.553072], - [37.704446, 55.553072], - [37.704446, 55.552982], - [37.704356, 55.552982] + [37.704356, 55.552981], + [37.704356, 55.553071], + [37.704446, 55.553071], + [37.704446, 55.552981], + [37.704356, 55.552981] ] ] } @@ -15736,11 +15720,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704356, 55.553072], - [37.704356, 55.553162], - [37.704446, 55.553162], - [37.704446, 55.553072], - [37.704356, 55.553072] + [37.704356, 55.553071], + [37.704356, 55.553161], + [37.704446, 55.553161], + [37.704446, 55.553071], + [37.704356, 55.553071] ] ] } @@ -15752,11 +15736,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704356, 55.553162], + [37.704356, 55.553161], [37.704356, 55.553251], [37.704446, 55.553251], - [37.704446, 55.553162], - [37.704356, 55.553162] + [37.704446, 55.553161], + [37.704356, 55.553161] ] ] } @@ -15801,8 +15785,8 @@ "coordinates": [ [ [37.704356, 55.553431], - [37.704356, 55.553521], - [37.704446, 55.553521], + [37.704356, 55.55352], + [37.704446, 55.55352], [37.704446, 55.553431], [37.704356, 55.553431] ] @@ -15816,11 +15800,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704356, 55.553521], - [37.704356, 55.553611], - [37.704446, 55.553611], - [37.704446, 55.553521], - [37.704356, 55.553521] + [37.704356, 55.55352], + [37.704356, 55.55361], + [37.704446, 55.55361], + [37.704446, 55.55352], + [37.704356, 55.55352] ] ] } @@ -15832,11 +15816,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704356, 55.553611], + [37.704356, 55.55361], [37.704356, 55.5537], [37.704446, 55.5537], - [37.704446, 55.553611], - [37.704356, 55.553611] + [37.704446, 55.55361], + [37.704356, 55.55361] ] ] } @@ -15929,8 +15913,8 @@ "coordinates": [ [ [37.704356, 55.55415], - [37.704356, 55.554239], - [37.704446, 55.554239], + [37.704356, 55.55424], + [37.704446, 55.55424], [37.704446, 55.55415], [37.704356, 55.55415] ] @@ -15944,11 +15928,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704356, 55.554239], - [37.704356, 55.554329], - [37.704446, 55.554329], - [37.704446, 55.554239], - [37.704356, 55.554239] + [37.704356, 55.55424], + [37.704356, 55.55433], + [37.704446, 55.55433], + [37.704446, 55.55424], + [37.704356, 55.55424] ] ] } @@ -15960,11 +15944,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704356, 55.554329], - [37.704356, 55.554419], - [37.704446, 55.554419], - [37.704446, 55.554329], - [37.704356, 55.554329] + [37.704356, 55.55433], + [37.704356, 55.55442], + [37.704446, 55.55442], + [37.704446, 55.55433], + [37.704356, 55.55433] ] ] } @@ -15976,11 +15960,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704356, 55.554419], - [37.704356, 55.554509], - [37.704446, 55.554509], - [37.704446, 55.554419], - [37.704356, 55.554419] + [37.704356, 55.55442], + [37.704356, 55.55451], + [37.704446, 55.55451], + [37.704446, 55.55442], + [37.704356, 55.55442] ] ] } @@ -15992,11 +15976,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704356, 55.554509], - [37.704356, 55.554599], - [37.704446, 55.554599], - [37.704446, 55.554509], - [37.704356, 55.554509] + [37.704356, 55.55451], + [37.704356, 55.5546], + [37.704446, 55.5546], + [37.704446, 55.55451], + [37.704356, 55.55451] ] ] } @@ -16008,11 +15992,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704356, 55.554599], - [37.704356, 55.554689], - [37.704446, 55.554689], - [37.704446, 55.554599], - [37.704356, 55.554599] + [37.704356, 55.5546], + [37.704356, 55.55469], + [37.704446, 55.55469], + [37.704446, 55.5546], + [37.704356, 55.5546] ] ] } @@ -16024,11 +16008,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704356, 55.554689], - [37.704356, 55.554778], - [37.704446, 55.554778], - [37.704446, 55.554689], - [37.704356, 55.554689] + [37.704356, 55.55469], + [37.704356, 55.55478], + [37.704446, 55.55478], + [37.704446, 55.55469], + [37.704356, 55.55469] ] ] } @@ -16040,11 +16024,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704356, 55.554778], - [37.704356, 55.554868], - [37.704446, 55.554868], - [37.704446, 55.554778], - [37.704356, 55.554778] + [37.704356, 55.55478], + [37.704356, 55.554869], + [37.704446, 55.554869], + [37.704446, 55.55478], + [37.704356, 55.55478] ] ] } @@ -16056,11 +16040,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704356, 55.554868], - [37.704356, 55.554958], - [37.704446, 55.554958], - [37.704446, 55.554868], - [37.704356, 55.554868] + [37.704356, 55.554869], + [37.704356, 55.554959], + [37.704446, 55.554959], + [37.704446, 55.554869], + [37.704356, 55.554869] ] ] } @@ -16072,11 +16056,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704446, 55.551994], - [37.704446, 55.552084], - [37.704536, 55.552084], - [37.704536, 55.551994], - [37.704446, 55.551994] + [37.704446, 55.551992], + [37.704446, 55.552082], + [37.704536, 55.552082], + [37.704536, 55.551992], + [37.704446, 55.551992] ] ] } @@ -16088,11 +16072,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704446, 55.552084], - [37.704446, 55.552173], - [37.704536, 55.552173], - [37.704536, 55.552084], - [37.704446, 55.552084] + [37.704446, 55.552082], + [37.704446, 55.552171], + [37.704536, 55.552171], + [37.704536, 55.552082], + [37.704446, 55.552082] ] ] } @@ -16104,11 +16088,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704446, 55.552173], - [37.704446, 55.552263], - [37.704536, 55.552263], - [37.704536, 55.552173], - [37.704446, 55.552173] + [37.704446, 55.552171], + [37.704446, 55.552261], + [37.704536, 55.552261], + [37.704536, 55.552171], + [37.704446, 55.552171] ] ] } @@ -16120,11 +16104,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704446, 55.552263], - [37.704446, 55.552353], - [37.704536, 55.552353], - [37.704536, 55.552263], - [37.704446, 55.552263] + [37.704446, 55.552261], + [37.704446, 55.552351], + [37.704536, 55.552351], + [37.704536, 55.552261], + [37.704446, 55.552261] ] ] } @@ -16136,11 +16120,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704446, 55.552353], - [37.704446, 55.552443], - [37.704536, 55.552443], - [37.704536, 55.552353], - [37.704446, 55.552353] + [37.704446, 55.552351], + [37.704446, 55.552441], + [37.704536, 55.552441], + [37.704536, 55.552351], + [37.704446, 55.552351] ] ] } @@ -16152,11 +16136,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704446, 55.552443], - [37.704446, 55.552533], - [37.704536, 55.552533], - [37.704536, 55.552443], - [37.704446, 55.552443] + [37.704446, 55.552441], + [37.704446, 55.552531], + [37.704536, 55.552531], + [37.704536, 55.552441], + [37.704446, 55.552441] ] ] } @@ -16168,11 +16152,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704446, 55.552533], - [37.704446, 55.552623], - [37.704536, 55.552623], - [37.704536, 55.552533], - [37.704446, 55.552533] + [37.704446, 55.552531], + [37.704446, 55.552621], + [37.704536, 55.552621], + [37.704536, 55.552531], + [37.704446, 55.552531] ] ] } @@ -16184,11 +16168,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704446, 55.552623], - [37.704446, 55.552712], - [37.704536, 55.552712], - [37.704536, 55.552623], - [37.704446, 55.552623] + [37.704446, 55.552621], + [37.704446, 55.552711], + [37.704536, 55.552711], + [37.704536, 55.552621], + [37.704446, 55.552621] ] ] } @@ -16200,11 +16184,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704446, 55.552712], - [37.704446, 55.552802], - [37.704536, 55.552802], - [37.704536, 55.552712], - [37.704446, 55.552712] + [37.704446, 55.552711], + [37.704446, 55.552801], + [37.704536, 55.552801], + [37.704536, 55.552711], + [37.704446, 55.552711] ] ] } @@ -16216,11 +16200,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704446, 55.552802], - [37.704446, 55.552892], - [37.704536, 55.552892], - [37.704536, 55.552802], - [37.704446, 55.552802] + [37.704446, 55.552801], + [37.704446, 55.552891], + [37.704536, 55.552891], + [37.704536, 55.552801], + [37.704446, 55.552801] ] ] } @@ -16232,11 +16216,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704446, 55.552892], - [37.704446, 55.552982], - [37.704536, 55.552982], - [37.704536, 55.552892], - [37.704446, 55.552892] + [37.704446, 55.552891], + [37.704446, 55.552981], + [37.704536, 55.552981], + [37.704536, 55.552891], + [37.704446, 55.552891] ] ] } @@ -16248,11 +16232,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704446, 55.552982], - [37.704446, 55.553072], - [37.704536, 55.553072], - [37.704536, 55.552982], - [37.704446, 55.552982] + [37.704446, 55.552981], + [37.704446, 55.553071], + [37.704536, 55.553071], + [37.704536, 55.552981], + [37.704446, 55.552981] ] ] } @@ -16264,11 +16248,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704446, 55.553072], - [37.704446, 55.553162], - [37.704536, 55.553162], - [37.704536, 55.553072], - [37.704446, 55.553072] + [37.704446, 55.553071], + [37.704446, 55.553161], + [37.704536, 55.553161], + [37.704536, 55.553071], + [37.704446, 55.553071] ] ] } @@ -16280,11 +16264,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704446, 55.553162], + [37.704446, 55.553161], [37.704446, 55.553251], [37.704536, 55.553251], - [37.704536, 55.553162], - [37.704446, 55.553162] + [37.704536, 55.553161], + [37.704446, 55.553161] ] ] } @@ -16329,8 +16313,8 @@ "coordinates": [ [ [37.704446, 55.553431], - [37.704446, 55.553521], - [37.704536, 55.553521], + [37.704446, 55.55352], + [37.704536, 55.55352], [37.704536, 55.553431], [37.704446, 55.553431] ] @@ -16344,11 +16328,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704446, 55.553521], - [37.704446, 55.553611], - [37.704536, 55.553611], - [37.704536, 55.553521], - [37.704446, 55.553521] + [37.704446, 55.55352], + [37.704446, 55.55361], + [37.704536, 55.55361], + [37.704536, 55.55352], + [37.704446, 55.55352] ] ] } @@ -16360,11 +16344,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704446, 55.553611], + [37.704446, 55.55361], [37.704446, 55.5537], [37.704536, 55.5537], - [37.704536, 55.553611], - [37.704446, 55.553611] + [37.704536, 55.55361], + [37.704446, 55.55361] ] ] } @@ -16457,8 +16441,8 @@ "coordinates": [ [ [37.704446, 55.55415], - [37.704446, 55.554239], - [37.704536, 55.554239], + [37.704446, 55.55424], + [37.704536, 55.55424], [37.704536, 55.55415], [37.704446, 55.55415] ] @@ -16472,11 +16456,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704446, 55.554239], - [37.704446, 55.554329], - [37.704536, 55.554329], - [37.704536, 55.554239], - [37.704446, 55.554239] + [37.704446, 55.55424], + [37.704446, 55.55433], + [37.704536, 55.55433], + [37.704536, 55.55424], + [37.704446, 55.55424] ] ] } @@ -16488,11 +16472,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704446, 55.554329], - [37.704446, 55.554419], - [37.704536, 55.554419], - [37.704536, 55.554329], - [37.704446, 55.554329] + [37.704446, 55.55433], + [37.704446, 55.55442], + [37.704536, 55.55442], + [37.704536, 55.55433], + [37.704446, 55.55433] ] ] } @@ -16504,11 +16488,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704446, 55.554419], - [37.704446, 55.554509], - [37.704536, 55.554509], - [37.704536, 55.554419], - [37.704446, 55.554419] + [37.704446, 55.55442], + [37.704446, 55.55451], + [37.704536, 55.55451], + [37.704536, 55.55442], + [37.704446, 55.55442] ] ] } @@ -16520,11 +16504,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704446, 55.554509], - [37.704446, 55.554599], - [37.704536, 55.554599], - [37.704536, 55.554509], - [37.704446, 55.554509] + [37.704446, 55.55451], + [37.704446, 55.5546], + [37.704536, 55.5546], + [37.704536, 55.55451], + [37.704446, 55.55451] ] ] } @@ -16536,11 +16520,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704446, 55.554599], - [37.704446, 55.554689], - [37.704536, 55.554689], - [37.704536, 55.554599], - [37.704446, 55.554599] + [37.704446, 55.5546], + [37.704446, 55.55469], + [37.704536, 55.55469], + [37.704536, 55.5546], + [37.704446, 55.5546] ] ] } @@ -16552,11 +16536,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704446, 55.554689], - [37.704446, 55.554778], - [37.704536, 55.554778], - [37.704536, 55.554689], - [37.704446, 55.554689] + [37.704446, 55.55469], + [37.704446, 55.55478], + [37.704536, 55.55478], + [37.704536, 55.55469], + [37.704446, 55.55469] ] ] } @@ -16568,11 +16552,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704446, 55.554778], - [37.704446, 55.554868], - [37.704536, 55.554868], - [37.704536, 55.554778], - [37.704446, 55.554778] + [37.704446, 55.55478], + [37.704446, 55.554869], + [37.704536, 55.554869], + [37.704536, 55.55478], + [37.704446, 55.55478] ] ] } @@ -16584,11 +16568,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704446, 55.554868], - [37.704446, 55.554958], - [37.704536, 55.554958], - [37.704536, 55.554868], - [37.704446, 55.554868] + [37.704446, 55.554869], + [37.704446, 55.554959], + [37.704536, 55.554959], + [37.704536, 55.554869], + [37.704446, 55.554869] ] ] } @@ -16600,11 +16584,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704446, 55.554958], - [37.704446, 55.555048], - [37.704536, 55.555048], - [37.704536, 55.554958], - [37.704446, 55.554958] + [37.704446, 55.554959], + [37.704446, 55.555049], + [37.704536, 55.555049], + [37.704536, 55.554959], + [37.704446, 55.554959] ] ] } @@ -16616,11 +16600,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704536, 55.551994], - [37.704536, 55.552084], - [37.704626, 55.552084], - [37.704626, 55.551994], - [37.704536, 55.551994] + [37.704536, 55.551992], + [37.704536, 55.552082], + [37.704625, 55.552082], + [37.704625, 55.551992], + [37.704536, 55.551992] ] ] } @@ -16632,11 +16616,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704536, 55.552084], - [37.704536, 55.552173], - [37.704626, 55.552173], - [37.704626, 55.552084], - [37.704536, 55.552084] + [37.704536, 55.552082], + [37.704536, 55.552171], + [37.704625, 55.552171], + [37.704625, 55.552082], + [37.704536, 55.552082] ] ] } @@ -16648,11 +16632,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704536, 55.552173], - [37.704536, 55.552263], - [37.704626, 55.552263], - [37.704626, 55.552173], - [37.704536, 55.552173] + [37.704536, 55.552171], + [37.704536, 55.552261], + [37.704625, 55.552261], + [37.704625, 55.552171], + [37.704536, 55.552171] ] ] } @@ -16664,11 +16648,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704536, 55.552263], - [37.704536, 55.552353], - [37.704626, 55.552353], - [37.704626, 55.552263], - [37.704536, 55.552263] + [37.704536, 55.552261], + [37.704536, 55.552351], + [37.704625, 55.552351], + [37.704625, 55.552261], + [37.704536, 55.552261] ] ] } @@ -16680,11 +16664,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704536, 55.552353], - [37.704536, 55.552443], - [37.704626, 55.552443], - [37.704626, 55.552353], - [37.704536, 55.552353] + [37.704536, 55.552351], + [37.704536, 55.552441], + [37.704625, 55.552441], + [37.704625, 55.552351], + [37.704536, 55.552351] ] ] } @@ -16696,11 +16680,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704536, 55.552443], - [37.704536, 55.552533], - [37.704626, 55.552533], - [37.704626, 55.552443], - [37.704536, 55.552443] + [37.704536, 55.552441], + [37.704536, 55.552531], + [37.704625, 55.552531], + [37.704625, 55.552441], + [37.704536, 55.552441] ] ] } @@ -16712,11 +16696,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704536, 55.552533], - [37.704536, 55.552623], - [37.704626, 55.552623], - [37.704626, 55.552533], - [37.704536, 55.552533] + [37.704536, 55.552531], + [37.704536, 55.552621], + [37.704625, 55.552621], + [37.704625, 55.552531], + [37.704536, 55.552531] ] ] } @@ -16728,11 +16712,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704536, 55.552623], - [37.704536, 55.552712], - [37.704626, 55.552712], - [37.704626, 55.552623], - [37.704536, 55.552623] + [37.704536, 55.552621], + [37.704536, 55.552711], + [37.704625, 55.552711], + [37.704625, 55.552621], + [37.704536, 55.552621] ] ] } @@ -16744,11 +16728,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704536, 55.552712], - [37.704536, 55.552802], - [37.704626, 55.552802], - [37.704626, 55.552712], - [37.704536, 55.552712] + [37.704536, 55.552711], + [37.704536, 55.552801], + [37.704625, 55.552801], + [37.704625, 55.552711], + [37.704536, 55.552711] ] ] } @@ -16760,11 +16744,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704536, 55.552802], - [37.704536, 55.552892], - [37.704626, 55.552892], - [37.704626, 55.552802], - [37.704536, 55.552802] + [37.704536, 55.552801], + [37.704536, 55.552891], + [37.704625, 55.552891], + [37.704625, 55.552801], + [37.704536, 55.552801] ] ] } @@ -16776,11 +16760,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704536, 55.552892], - [37.704536, 55.552982], - [37.704626, 55.552982], - [37.704626, 55.552892], - [37.704536, 55.552892] + [37.704536, 55.552891], + [37.704536, 55.552981], + [37.704625, 55.552981], + [37.704625, 55.552891], + [37.704536, 55.552891] ] ] } @@ -16792,11 +16776,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704536, 55.552982], - [37.704536, 55.553072], - [37.704626, 55.553072], - [37.704626, 55.552982], - [37.704536, 55.552982] + [37.704536, 55.552981], + [37.704536, 55.553071], + [37.704625, 55.553071], + [37.704625, 55.552981], + [37.704536, 55.552981] ] ] } @@ -16808,11 +16792,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704536, 55.553072], - [37.704536, 55.553162], - [37.704626, 55.553162], - [37.704626, 55.553072], - [37.704536, 55.553072] + [37.704536, 55.553071], + [37.704536, 55.553161], + [37.704625, 55.553161], + [37.704625, 55.553071], + [37.704536, 55.553071] ] ] } @@ -16824,11 +16808,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704536, 55.553162], + [37.704536, 55.553161], [37.704536, 55.553251], - [37.704626, 55.553251], - [37.704626, 55.553162], - [37.704536, 55.553162] + [37.704625, 55.553251], + [37.704625, 55.553161], + [37.704536, 55.553161] ] ] } @@ -16842,8 +16826,8 @@ [ [37.704536, 55.553251], [37.704536, 55.553341], - [37.704626, 55.553341], - [37.704626, 55.553251], + [37.704625, 55.553341], + [37.704625, 55.553251], [37.704536, 55.553251] ] ] @@ -16858,8 +16842,8 @@ [ [37.704536, 55.553341], [37.704536, 55.553431], - [37.704626, 55.553431], - [37.704626, 55.553341], + [37.704625, 55.553431], + [37.704625, 55.553341], [37.704536, 55.553341] ] ] @@ -16873,9 +16857,9 @@ "coordinates": [ [ [37.704536, 55.553431], - [37.704536, 55.553521], - [37.704626, 55.553521], - [37.704626, 55.553431], + [37.704536, 55.55352], + [37.704625, 55.55352], + [37.704625, 55.553431], [37.704536, 55.553431] ] ] @@ -16888,11 +16872,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704536, 55.553521], - [37.704536, 55.553611], - [37.704626, 55.553611], - [37.704626, 55.553521], - [37.704536, 55.553521] + [37.704536, 55.55352], + [37.704536, 55.55361], + [37.704625, 55.55361], + [37.704625, 55.55352], + [37.704536, 55.55352] ] ] } @@ -16904,11 +16888,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704536, 55.553611], + [37.704536, 55.55361], [37.704536, 55.5537], - [37.704626, 55.5537], - [37.704626, 55.553611], - [37.704536, 55.553611] + [37.704625, 55.5537], + [37.704625, 55.55361], + [37.704536, 55.55361] ] ] } @@ -16922,8 +16906,8 @@ [ [37.704536, 55.5537], [37.704536, 55.55379], - [37.704626, 55.55379], - [37.704626, 55.5537], + [37.704625, 55.55379], + [37.704625, 55.5537], [37.704536, 55.5537] ] ] @@ -16938,8 +16922,8 @@ [ [37.704536, 55.55379], [37.704536, 55.55388], - [37.704626, 55.55388], - [37.704626, 55.55379], + [37.704625, 55.55388], + [37.704625, 55.55379], [37.704536, 55.55379] ] ] @@ -16954,8 +16938,8 @@ [ [37.704536, 55.55388], [37.704536, 55.55397], - [37.704626, 55.55397], - [37.704626, 55.55388], + [37.704625, 55.55397], + [37.704625, 55.55388], [37.704536, 55.55388] ] ] @@ -16970,8 +16954,8 @@ [ [37.704536, 55.55397], [37.704536, 55.55406], - [37.704626, 55.55406], - [37.704626, 55.55397], + [37.704625, 55.55406], + [37.704625, 55.55397], [37.704536, 55.55397] ] ] @@ -16986,8 +16970,8 @@ [ [37.704536, 55.55406], [37.704536, 55.55415], - [37.704626, 55.55415], - [37.704626, 55.55406], + [37.704625, 55.55415], + [37.704625, 55.55406], [37.704536, 55.55406] ] ] @@ -17001,9 +16985,9 @@ "coordinates": [ [ [37.704536, 55.55415], - [37.704536, 55.554239], - [37.704626, 55.554239], - [37.704626, 55.55415], + [37.704536, 55.55424], + [37.704625, 55.55424], + [37.704625, 55.55415], [37.704536, 55.55415] ] ] @@ -17016,11 +17000,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704536, 55.554239], - [37.704536, 55.554329], - [37.704626, 55.554329], - [37.704626, 55.554239], - [37.704536, 55.554239] + [37.704536, 55.55424], + [37.704536, 55.55433], + [37.704625, 55.55433], + [37.704625, 55.55424], + [37.704536, 55.55424] ] ] } @@ -17032,11 +17016,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704536, 55.554329], - [37.704536, 55.554419], - [37.704626, 55.554419], - [37.704626, 55.554329], - [37.704536, 55.554329] + [37.704536, 55.55433], + [37.704536, 55.55442], + [37.704625, 55.55442], + [37.704625, 55.55433], + [37.704536, 55.55433] ] ] } @@ -17048,11 +17032,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704536, 55.554419], - [37.704536, 55.554509], - [37.704626, 55.554509], - [37.704626, 55.554419], - [37.704536, 55.554419] + [37.704536, 55.55442], + [37.704536, 55.55451], + [37.704625, 55.55451], + [37.704625, 55.55442], + [37.704536, 55.55442] ] ] } @@ -17064,11 +17048,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704536, 55.554509], - [37.704536, 55.554599], - [37.704626, 55.554599], - [37.704626, 55.554509], - [37.704536, 55.554509] + [37.704536, 55.55451], + [37.704536, 55.5546], + [37.704625, 55.5546], + [37.704625, 55.55451], + [37.704536, 55.55451] ] ] } @@ -17080,11 +17064,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704536, 55.554599], - [37.704536, 55.554689], - [37.704626, 55.554689], - [37.704626, 55.554599], - [37.704536, 55.554599] + [37.704536, 55.5546], + [37.704536, 55.55469], + [37.704625, 55.55469], + [37.704625, 55.5546], + [37.704536, 55.5546] ] ] } @@ -17096,11 +17080,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704536, 55.554689], - [37.704536, 55.554778], - [37.704626, 55.554778], - [37.704626, 55.554689], - [37.704536, 55.554689] + [37.704536, 55.55469], + [37.704536, 55.55478], + [37.704625, 55.55478], + [37.704625, 55.55469], + [37.704536, 55.55469] ] ] } @@ -17112,11 +17096,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704536, 55.554778], - [37.704536, 55.554868], - [37.704626, 55.554868], - [37.704626, 55.554778], - [37.704536, 55.554778] + [37.704536, 55.55478], + [37.704536, 55.554869], + [37.704625, 55.554869], + [37.704625, 55.55478], + [37.704536, 55.55478] ] ] } @@ -17128,11 +17112,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704536, 55.554868], - [37.704536, 55.554958], - [37.704626, 55.554958], - [37.704626, 55.554868], - [37.704536, 55.554868] + [37.704536, 55.554869], + [37.704536, 55.554959], + [37.704625, 55.554959], + [37.704625, 55.554869], + [37.704536, 55.554869] ] ] } @@ -17144,11 +17128,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704536, 55.554958], - [37.704536, 55.555048], - [37.704626, 55.555048], - [37.704626, 55.554958], - [37.704536, 55.554958] + [37.704536, 55.554959], + [37.704536, 55.555049], + [37.704625, 55.555049], + [37.704625, 55.554959], + [37.704536, 55.554959] ] ] } @@ -17160,11 +17144,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704626, 55.551904], - [37.704626, 55.551994], - [37.704715, 55.551994], - [37.704715, 55.551904], - [37.704626, 55.551904] + [37.704625, 55.551902], + [37.704625, 55.551992], + [37.704715, 55.551992], + [37.704715, 55.551902], + [37.704625, 55.551902] ] ] } @@ -17176,11 +17160,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704626, 55.551994], - [37.704626, 55.552084], - [37.704715, 55.552084], - [37.704715, 55.551994], - [37.704626, 55.551994] + [37.704625, 55.551992], + [37.704625, 55.552082], + [37.704715, 55.552082], + [37.704715, 55.551992], + [37.704625, 55.551992] ] ] } @@ -17192,11 +17176,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704626, 55.552084], - [37.704626, 55.552173], - [37.704715, 55.552173], - [37.704715, 55.552084], - [37.704626, 55.552084] + [37.704625, 55.552082], + [37.704625, 55.552171], + [37.704715, 55.552171], + [37.704715, 55.552082], + [37.704625, 55.552082] ] ] } @@ -17208,11 +17192,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704626, 55.552173], - [37.704626, 55.552263], - [37.704715, 55.552263], - [37.704715, 55.552173], - [37.704626, 55.552173] + [37.704625, 55.552171], + [37.704625, 55.552261], + [37.704715, 55.552261], + [37.704715, 55.552171], + [37.704625, 55.552171] ] ] } @@ -17224,11 +17208,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704626, 55.552263], - [37.704626, 55.552353], - [37.704715, 55.552353], - [37.704715, 55.552263], - [37.704626, 55.552263] + [37.704625, 55.552261], + [37.704625, 55.552351], + [37.704715, 55.552351], + [37.704715, 55.552261], + [37.704625, 55.552261] ] ] } @@ -17240,11 +17224,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704626, 55.552353], - [37.704626, 55.552443], - [37.704715, 55.552443], - [37.704715, 55.552353], - [37.704626, 55.552353] + [37.704625, 55.552351], + [37.704625, 55.552441], + [37.704715, 55.552441], + [37.704715, 55.552351], + [37.704625, 55.552351] ] ] } @@ -17256,11 +17240,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704626, 55.552443], - [37.704626, 55.552533], - [37.704715, 55.552533], - [37.704715, 55.552443], - [37.704626, 55.552443] + [37.704625, 55.552441], + [37.704625, 55.552531], + [37.704715, 55.552531], + [37.704715, 55.552441], + [37.704625, 55.552441] ] ] } @@ -17272,11 +17256,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704626, 55.552533], - [37.704626, 55.552623], - [37.704715, 55.552623], - [37.704715, 55.552533], - [37.704626, 55.552533] + [37.704625, 55.552531], + [37.704625, 55.552621], + [37.704715, 55.552621], + [37.704715, 55.552531], + [37.704625, 55.552531] ] ] } @@ -17288,11 +17272,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704626, 55.552623], - [37.704626, 55.552712], - [37.704715, 55.552712], - [37.704715, 55.552623], - [37.704626, 55.552623] + [37.704625, 55.552621], + [37.704625, 55.552711], + [37.704715, 55.552711], + [37.704715, 55.552621], + [37.704625, 55.552621] ] ] } @@ -17304,11 +17288,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704626, 55.552712], - [37.704626, 55.552802], - [37.704715, 55.552802], - [37.704715, 55.552712], - [37.704626, 55.552712] + [37.704625, 55.552711], + [37.704625, 55.552801], + [37.704715, 55.552801], + [37.704715, 55.552711], + [37.704625, 55.552711] ] ] } @@ -17320,11 +17304,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704626, 55.552802], - [37.704626, 55.552892], - [37.704715, 55.552892], - [37.704715, 55.552802], - [37.704626, 55.552802] + [37.704625, 55.552801], + [37.704625, 55.552891], + [37.704715, 55.552891], + [37.704715, 55.552801], + [37.704625, 55.552801] ] ] } @@ -17336,11 +17320,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704626, 55.552892], - [37.704626, 55.552982], - [37.704715, 55.552982], - [37.704715, 55.552892], - [37.704626, 55.552892] + [37.704625, 55.552891], + [37.704625, 55.552981], + [37.704715, 55.552981], + [37.704715, 55.552891], + [37.704625, 55.552891] ] ] } @@ -17352,11 +17336,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704626, 55.552982], - [37.704626, 55.553072], - [37.704715, 55.553072], - [37.704715, 55.552982], - [37.704626, 55.552982] + [37.704625, 55.552981], + [37.704625, 55.553071], + [37.704715, 55.553071], + [37.704715, 55.552981], + [37.704625, 55.552981] ] ] } @@ -17368,11 +17352,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704626, 55.553072], - [37.704626, 55.553162], - [37.704715, 55.553162], - [37.704715, 55.553072], - [37.704626, 55.553072] + [37.704625, 55.553071], + [37.704625, 55.553161], + [37.704715, 55.553161], + [37.704715, 55.553071], + [37.704625, 55.553071] ] ] } @@ -17384,11 +17368,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704626, 55.553162], - [37.704626, 55.553251], + [37.704625, 55.553161], + [37.704625, 55.553251], [37.704715, 55.553251], - [37.704715, 55.553162], - [37.704626, 55.553162] + [37.704715, 55.553161], + [37.704625, 55.553161] ] ] } @@ -17400,11 +17384,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704626, 55.553251], - [37.704626, 55.553341], + [37.704625, 55.553251], + [37.704625, 55.553341], [37.704715, 55.553341], [37.704715, 55.553251], - [37.704626, 55.553251] + [37.704625, 55.553251] ] ] } @@ -17416,11 +17400,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704626, 55.553341], - [37.704626, 55.553431], + [37.704625, 55.553341], + [37.704625, 55.553431], [37.704715, 55.553431], [37.704715, 55.553341], - [37.704626, 55.553341] + [37.704625, 55.553341] ] ] } @@ -17432,11 +17416,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704626, 55.553431], - [37.704626, 55.553521], - [37.704715, 55.553521], + [37.704625, 55.553431], + [37.704625, 55.55352], + [37.704715, 55.55352], [37.704715, 55.553431], - [37.704626, 55.553431] + [37.704625, 55.553431] ] ] } @@ -17448,11 +17432,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704626, 55.553521], - [37.704626, 55.553611], - [37.704715, 55.553611], - [37.704715, 55.553521], - [37.704626, 55.553521] + [37.704625, 55.55352], + [37.704625, 55.55361], + [37.704715, 55.55361], + [37.704715, 55.55352], + [37.704625, 55.55352] ] ] } @@ -17464,11 +17448,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704626, 55.553611], - [37.704626, 55.5537], + [37.704625, 55.55361], + [37.704625, 55.5537], [37.704715, 55.5537], - [37.704715, 55.553611], - [37.704626, 55.553611] + [37.704715, 55.55361], + [37.704625, 55.55361] ] ] } @@ -17480,11 +17464,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704626, 55.5537], - [37.704626, 55.55379], + [37.704625, 55.5537], + [37.704625, 55.55379], [37.704715, 55.55379], [37.704715, 55.5537], - [37.704626, 55.5537] + [37.704625, 55.5537] ] ] } @@ -17496,11 +17480,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704626, 55.55379], - [37.704626, 55.55388], + [37.704625, 55.55379], + [37.704625, 55.55388], [37.704715, 55.55388], [37.704715, 55.55379], - [37.704626, 55.55379] + [37.704625, 55.55379] ] ] } @@ -17512,11 +17496,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704626, 55.55388], - [37.704626, 55.55397], + [37.704625, 55.55388], + [37.704625, 55.55397], [37.704715, 55.55397], [37.704715, 55.55388], - [37.704626, 55.55388] + [37.704625, 55.55388] ] ] } @@ -17528,11 +17512,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704626, 55.55397], - [37.704626, 55.55406], + [37.704625, 55.55397], + [37.704625, 55.55406], [37.704715, 55.55406], [37.704715, 55.55397], - [37.704626, 55.55397] + [37.704625, 55.55397] ] ] } @@ -17544,11 +17528,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704626, 55.55406], - [37.704626, 55.55415], + [37.704625, 55.55406], + [37.704625, 55.55415], [37.704715, 55.55415], [37.704715, 55.55406], - [37.704626, 55.55406] + [37.704625, 55.55406] ] ] } @@ -17560,11 +17544,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704626, 55.55415], - [37.704626, 55.554239], - [37.704715, 55.554239], + [37.704625, 55.55415], + [37.704625, 55.55424], + [37.704715, 55.55424], [37.704715, 55.55415], - [37.704626, 55.55415] + [37.704625, 55.55415] ] ] } @@ -17576,11 +17560,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704626, 55.554239], - [37.704626, 55.554329], - [37.704715, 55.554329], - [37.704715, 55.554239], - [37.704626, 55.554239] + [37.704625, 55.55424], + [37.704625, 55.55433], + [37.704715, 55.55433], + [37.704715, 55.55424], + [37.704625, 55.55424] ] ] } @@ -17592,11 +17576,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704626, 55.554329], - [37.704626, 55.554419], - [37.704715, 55.554419], - [37.704715, 55.554329], - [37.704626, 55.554329] + [37.704625, 55.55433], + [37.704625, 55.55442], + [37.704715, 55.55442], + [37.704715, 55.55433], + [37.704625, 55.55433] ] ] } @@ -17608,11 +17592,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704626, 55.554419], - [37.704626, 55.554509], - [37.704715, 55.554509], - [37.704715, 55.554419], - [37.704626, 55.554419] + [37.704625, 55.55442], + [37.704625, 55.55451], + [37.704715, 55.55451], + [37.704715, 55.55442], + [37.704625, 55.55442] ] ] } @@ -17624,11 +17608,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704626, 55.554509], - [37.704626, 55.554599], - [37.704715, 55.554599], - [37.704715, 55.554509], - [37.704626, 55.554509] + [37.704625, 55.55451], + [37.704625, 55.5546], + [37.704715, 55.5546], + [37.704715, 55.55451], + [37.704625, 55.55451] ] ] } @@ -17640,11 +17624,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704626, 55.554599], - [37.704626, 55.554689], - [37.704715, 55.554689], - [37.704715, 55.554599], - [37.704626, 55.554599] + [37.704625, 55.5546], + [37.704625, 55.55469], + [37.704715, 55.55469], + [37.704715, 55.5546], + [37.704625, 55.5546] ] ] } @@ -17656,11 +17640,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704626, 55.554689], - [37.704626, 55.554778], - [37.704715, 55.554778], - [37.704715, 55.554689], - [37.704626, 55.554689] + [37.704625, 55.55469], + [37.704625, 55.55478], + [37.704715, 55.55478], + [37.704715, 55.55469], + [37.704625, 55.55469] ] ] } @@ -17672,11 +17656,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704626, 55.554778], - [37.704626, 55.554868], - [37.704715, 55.554868], - [37.704715, 55.554778], - [37.704626, 55.554778] + [37.704625, 55.55478], + [37.704625, 55.554869], + [37.704715, 55.554869], + [37.704715, 55.55478], + [37.704625, 55.55478] ] ] } @@ -17688,11 +17672,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704626, 55.554868], - [37.704626, 55.554958], - [37.704715, 55.554958], - [37.704715, 55.554868], - [37.704626, 55.554868] + [37.704625, 55.554869], + [37.704625, 55.554959], + [37.704715, 55.554959], + [37.704715, 55.554869], + [37.704625, 55.554869] ] ] } @@ -17704,11 +17688,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704626, 55.554958], - [37.704626, 55.555048], - [37.704715, 55.555048], - [37.704715, 55.554958], - [37.704626, 55.554958] + [37.704625, 55.554959], + [37.704625, 55.555049], + [37.704715, 55.555049], + [37.704715, 55.554959], + [37.704625, 55.554959] ] ] } @@ -17720,11 +17704,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704715, 55.551904], - [37.704715, 55.551994], - [37.704805, 55.551994], - [37.704805, 55.551904], - [37.704715, 55.551904] + [37.704715, 55.551902], + [37.704715, 55.551992], + [37.704805, 55.551992], + [37.704805, 55.551902], + [37.704715, 55.551902] ] ] } @@ -17736,11 +17720,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704715, 55.551994], - [37.704715, 55.552084], - [37.704805, 55.552084], - [37.704805, 55.551994], - [37.704715, 55.551994] + [37.704715, 55.551992], + [37.704715, 55.552082], + [37.704805, 55.552082], + [37.704805, 55.551992], + [37.704715, 55.551992] ] ] } @@ -17752,11 +17736,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704715, 55.552084], - [37.704715, 55.552173], - [37.704805, 55.552173], - [37.704805, 55.552084], - [37.704715, 55.552084] + [37.704715, 55.552082], + [37.704715, 55.552171], + [37.704805, 55.552171], + [37.704805, 55.552082], + [37.704715, 55.552082] ] ] } @@ -17768,11 +17752,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704715, 55.552173], - [37.704715, 55.552263], - [37.704805, 55.552263], - [37.704805, 55.552173], - [37.704715, 55.552173] + [37.704715, 55.552171], + [37.704715, 55.552261], + [37.704805, 55.552261], + [37.704805, 55.552171], + [37.704715, 55.552171] ] ] } @@ -17784,11 +17768,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704715, 55.552263], - [37.704715, 55.552353], - [37.704805, 55.552353], - [37.704805, 55.552263], - [37.704715, 55.552263] + [37.704715, 55.552261], + [37.704715, 55.552351], + [37.704805, 55.552351], + [37.704805, 55.552261], + [37.704715, 55.552261] ] ] } @@ -17800,11 +17784,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704715, 55.552353], - [37.704715, 55.552443], - [37.704805, 55.552443], - [37.704805, 55.552353], - [37.704715, 55.552353] + [37.704715, 55.552351], + [37.704715, 55.552441], + [37.704805, 55.552441], + [37.704805, 55.552351], + [37.704715, 55.552351] ] ] } @@ -17816,11 +17800,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704715, 55.552443], - [37.704715, 55.552533], - [37.704805, 55.552533], - [37.704805, 55.552443], - [37.704715, 55.552443] + [37.704715, 55.552441], + [37.704715, 55.552531], + [37.704805, 55.552531], + [37.704805, 55.552441], + [37.704715, 55.552441] ] ] } @@ -17832,11 +17816,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704715, 55.552533], - [37.704715, 55.552623], - [37.704805, 55.552623], - [37.704805, 55.552533], - [37.704715, 55.552533] + [37.704715, 55.552531], + [37.704715, 55.552621], + [37.704805, 55.552621], + [37.704805, 55.552531], + [37.704715, 55.552531] ] ] } @@ -17848,11 +17832,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704715, 55.552623], - [37.704715, 55.552712], - [37.704805, 55.552712], - [37.704805, 55.552623], - [37.704715, 55.552623] + [37.704715, 55.552621], + [37.704715, 55.552711], + [37.704805, 55.552711], + [37.704805, 55.552621], + [37.704715, 55.552621] ] ] } @@ -17864,11 +17848,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704715, 55.552712], - [37.704715, 55.552802], - [37.704805, 55.552802], - [37.704805, 55.552712], - [37.704715, 55.552712] + [37.704715, 55.552711], + [37.704715, 55.552801], + [37.704805, 55.552801], + [37.704805, 55.552711], + [37.704715, 55.552711] ] ] } @@ -17880,11 +17864,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704715, 55.552802], - [37.704715, 55.552892], - [37.704805, 55.552892], - [37.704805, 55.552802], - [37.704715, 55.552802] + [37.704715, 55.552801], + [37.704715, 55.552891], + [37.704805, 55.552891], + [37.704805, 55.552801], + [37.704715, 55.552801] ] ] } @@ -17896,11 +17880,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704715, 55.552892], - [37.704715, 55.552982], - [37.704805, 55.552982], - [37.704805, 55.552892], - [37.704715, 55.552892] + [37.704715, 55.552891], + [37.704715, 55.552981], + [37.704805, 55.552981], + [37.704805, 55.552891], + [37.704715, 55.552891] ] ] } @@ -17912,11 +17896,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704715, 55.552982], - [37.704715, 55.553072], - [37.704805, 55.553072], - [37.704805, 55.552982], - [37.704715, 55.552982] + [37.704715, 55.552981], + [37.704715, 55.553071], + [37.704805, 55.553071], + [37.704805, 55.552981], + [37.704715, 55.552981] ] ] } @@ -17928,11 +17912,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704715, 55.553072], - [37.704715, 55.553162], - [37.704805, 55.553162], - [37.704805, 55.553072], - [37.704715, 55.553072] + [37.704715, 55.553071], + [37.704715, 55.553161], + [37.704805, 55.553161], + [37.704805, 55.553071], + [37.704715, 55.553071] ] ] } @@ -17944,11 +17928,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704715, 55.553162], + [37.704715, 55.553161], [37.704715, 55.553251], [37.704805, 55.553251], - [37.704805, 55.553162], - [37.704715, 55.553162] + [37.704805, 55.553161], + [37.704715, 55.553161] ] ] } @@ -17993,8 +17977,8 @@ "coordinates": [ [ [37.704715, 55.553431], - [37.704715, 55.553521], - [37.704805, 55.553521], + [37.704715, 55.55352], + [37.704805, 55.55352], [37.704805, 55.553431], [37.704715, 55.553431] ] @@ -18008,11 +17992,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704715, 55.553521], - [37.704715, 55.553611], - [37.704805, 55.553611], - [37.704805, 55.553521], - [37.704715, 55.553521] + [37.704715, 55.55352], + [37.704715, 55.55361], + [37.704805, 55.55361], + [37.704805, 55.55352], + [37.704715, 55.55352] ] ] } @@ -18024,11 +18008,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704715, 55.553611], + [37.704715, 55.55361], [37.704715, 55.5537], [37.704805, 55.5537], - [37.704805, 55.553611], - [37.704715, 55.553611] + [37.704805, 55.55361], + [37.704715, 55.55361] ] ] } @@ -18121,8 +18105,8 @@ "coordinates": [ [ [37.704715, 55.55415], - [37.704715, 55.554239], - [37.704805, 55.554239], + [37.704715, 55.55424], + [37.704805, 55.55424], [37.704805, 55.55415], [37.704715, 55.55415] ] @@ -18136,11 +18120,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704715, 55.554239], - [37.704715, 55.554329], - [37.704805, 55.554329], - [37.704805, 55.554239], - [37.704715, 55.554239] + [37.704715, 55.55424], + [37.704715, 55.55433], + [37.704805, 55.55433], + [37.704805, 55.55424], + [37.704715, 55.55424] ] ] } @@ -18152,11 +18136,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704715, 55.554329], - [37.704715, 55.554419], - [37.704805, 55.554419], - [37.704805, 55.554329], - [37.704715, 55.554329] + [37.704715, 55.55433], + [37.704715, 55.55442], + [37.704805, 55.55442], + [37.704805, 55.55433], + [37.704715, 55.55433] ] ] } @@ -18168,11 +18152,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704715, 55.554419], - [37.704715, 55.554509], - [37.704805, 55.554509], - [37.704805, 55.554419], - [37.704715, 55.554419] + [37.704715, 55.55442], + [37.704715, 55.55451], + [37.704805, 55.55451], + [37.704805, 55.55442], + [37.704715, 55.55442] ] ] } @@ -18184,11 +18168,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704715, 55.554509], - [37.704715, 55.554599], - [37.704805, 55.554599], - [37.704805, 55.554509], - [37.704715, 55.554509] + [37.704715, 55.55451], + [37.704715, 55.5546], + [37.704805, 55.5546], + [37.704805, 55.55451], + [37.704715, 55.55451] ] ] } @@ -18200,11 +18184,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704715, 55.554599], - [37.704715, 55.554689], - [37.704805, 55.554689], - [37.704805, 55.554599], - [37.704715, 55.554599] + [37.704715, 55.5546], + [37.704715, 55.55469], + [37.704805, 55.55469], + [37.704805, 55.5546], + [37.704715, 55.5546] ] ] } @@ -18216,11 +18200,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704715, 55.554689], - [37.704715, 55.554778], - [37.704805, 55.554778], - [37.704805, 55.554689], - [37.704715, 55.554689] + [37.704715, 55.55469], + [37.704715, 55.55478], + [37.704805, 55.55478], + [37.704805, 55.55469], + [37.704715, 55.55469] ] ] } @@ -18232,11 +18216,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704715, 55.554778], - [37.704715, 55.554868], - [37.704805, 55.554868], - [37.704805, 55.554778], - [37.704715, 55.554778] + [37.704715, 55.55478], + [37.704715, 55.554869], + [37.704805, 55.554869], + [37.704805, 55.55478], + [37.704715, 55.55478] ] ] } @@ -18248,11 +18232,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704715, 55.554868], - [37.704715, 55.554958], - [37.704805, 55.554958], - [37.704805, 55.554868], - [37.704715, 55.554868] + [37.704715, 55.554869], + [37.704715, 55.554959], + [37.704805, 55.554959], + [37.704805, 55.554869], + [37.704715, 55.554869] ] ] } @@ -18264,11 +18248,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704715, 55.554958], - [37.704715, 55.555048], - [37.704805, 55.555048], - [37.704805, 55.554958], - [37.704715, 55.554958] + [37.704715, 55.554959], + [37.704715, 55.555049], + [37.704805, 55.555049], + [37.704805, 55.554959], + [37.704715, 55.554959] ] ] } @@ -18280,11 +18264,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704805, 55.551904], - [37.704805, 55.551994], - [37.704895, 55.551994], - [37.704895, 55.551904], - [37.704805, 55.551904] + [37.704805, 55.551902], + [37.704805, 55.551992], + [37.704895, 55.551992], + [37.704895, 55.551902], + [37.704805, 55.551902] ] ] } @@ -18296,11 +18280,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704805, 55.551994], - [37.704805, 55.552084], - [37.704895, 55.552084], - [37.704895, 55.551994], - [37.704805, 55.551994] + [37.704805, 55.551992], + [37.704805, 55.552082], + [37.704895, 55.552082], + [37.704895, 55.551992], + [37.704805, 55.551992] ] ] } @@ -18312,11 +18296,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704805, 55.552084], - [37.704805, 55.552173], - [37.704895, 55.552173], - [37.704895, 55.552084], - [37.704805, 55.552084] + [37.704805, 55.552082], + [37.704805, 55.552171], + [37.704895, 55.552171], + [37.704895, 55.552082], + [37.704805, 55.552082] ] ] } @@ -18328,11 +18312,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704805, 55.552173], - [37.704805, 55.552263], - [37.704895, 55.552263], - [37.704895, 55.552173], - [37.704805, 55.552173] + [37.704805, 55.552171], + [37.704805, 55.552261], + [37.704895, 55.552261], + [37.704895, 55.552171], + [37.704805, 55.552171] ] ] } @@ -18344,11 +18328,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704805, 55.552263], - [37.704805, 55.552353], - [37.704895, 55.552353], - [37.704895, 55.552263], - [37.704805, 55.552263] + [37.704805, 55.552261], + [37.704805, 55.552351], + [37.704895, 55.552351], + [37.704895, 55.552261], + [37.704805, 55.552261] ] ] } @@ -18360,11 +18344,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704805, 55.552353], - [37.704805, 55.552443], - [37.704895, 55.552443], - [37.704895, 55.552353], - [37.704805, 55.552353] + [37.704805, 55.552351], + [37.704805, 55.552441], + [37.704895, 55.552441], + [37.704895, 55.552351], + [37.704805, 55.552351] ] ] } @@ -18376,11 +18360,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704805, 55.552443], - [37.704805, 55.552533], - [37.704895, 55.552533], - [37.704895, 55.552443], - [37.704805, 55.552443] + [37.704805, 55.552441], + [37.704805, 55.552531], + [37.704895, 55.552531], + [37.704895, 55.552441], + [37.704805, 55.552441] ] ] } @@ -18392,11 +18376,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704805, 55.552533], - [37.704805, 55.552623], - [37.704895, 55.552623], - [37.704895, 55.552533], - [37.704805, 55.552533] + [37.704805, 55.552531], + [37.704805, 55.552621], + [37.704895, 55.552621], + [37.704895, 55.552531], + [37.704805, 55.552531] ] ] } @@ -18408,11 +18392,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704805, 55.552623], - [37.704805, 55.552712], - [37.704895, 55.552712], - [37.704895, 55.552623], - [37.704805, 55.552623] + [37.704805, 55.552621], + [37.704805, 55.552711], + [37.704895, 55.552711], + [37.704895, 55.552621], + [37.704805, 55.552621] ] ] } @@ -18424,11 +18408,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704805, 55.552712], - [37.704805, 55.552802], - [37.704895, 55.552802], - [37.704895, 55.552712], - [37.704805, 55.552712] + [37.704805, 55.552711], + [37.704805, 55.552801], + [37.704895, 55.552801], + [37.704895, 55.552711], + [37.704805, 55.552711] ] ] } @@ -18440,11 +18424,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704805, 55.552802], - [37.704805, 55.552892], - [37.704895, 55.552892], - [37.704895, 55.552802], - [37.704805, 55.552802] + [37.704805, 55.552801], + [37.704805, 55.552891], + [37.704895, 55.552891], + [37.704895, 55.552801], + [37.704805, 55.552801] ] ] } @@ -18456,11 +18440,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704805, 55.552892], - [37.704805, 55.552982], - [37.704895, 55.552982], - [37.704895, 55.552892], - [37.704805, 55.552892] + [37.704805, 55.552891], + [37.704805, 55.552981], + [37.704895, 55.552981], + [37.704895, 55.552891], + [37.704805, 55.552891] ] ] } @@ -18472,11 +18456,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704805, 55.552982], - [37.704805, 55.553072], - [37.704895, 55.553072], - [37.704895, 55.552982], - [37.704805, 55.552982] + [37.704805, 55.552981], + [37.704805, 55.553071], + [37.704895, 55.553071], + [37.704895, 55.552981], + [37.704805, 55.552981] ] ] } @@ -18488,11 +18472,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704805, 55.553072], - [37.704805, 55.553162], - [37.704895, 55.553162], - [37.704895, 55.553072], - [37.704805, 55.553072] + [37.704805, 55.553071], + [37.704805, 55.553161], + [37.704895, 55.553161], + [37.704895, 55.553071], + [37.704805, 55.553071] ] ] } @@ -18504,11 +18488,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704805, 55.553162], + [37.704805, 55.553161], [37.704805, 55.553251], [37.704895, 55.553251], - [37.704895, 55.553162], - [37.704805, 55.553162] + [37.704895, 55.553161], + [37.704805, 55.553161] ] ] } @@ -18553,8 +18537,8 @@ "coordinates": [ [ [37.704805, 55.553431], - [37.704805, 55.553521], - [37.704895, 55.553521], + [37.704805, 55.55352], + [37.704895, 55.55352], [37.704895, 55.553431], [37.704805, 55.553431] ] @@ -18568,11 +18552,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704805, 55.553521], - [37.704805, 55.553611], - [37.704895, 55.553611], - [37.704895, 55.553521], - [37.704805, 55.553521] + [37.704805, 55.55352], + [37.704805, 55.55361], + [37.704895, 55.55361], + [37.704895, 55.55352], + [37.704805, 55.55352] ] ] } @@ -18584,11 +18568,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704805, 55.553611], + [37.704805, 55.55361], [37.704805, 55.5537], [37.704895, 55.5537], - [37.704895, 55.553611], - [37.704805, 55.553611] + [37.704895, 55.55361], + [37.704805, 55.55361] ] ] } @@ -18681,8 +18665,8 @@ "coordinates": [ [ [37.704805, 55.55415], - [37.704805, 55.554239], - [37.704895, 55.554239], + [37.704805, 55.55424], + [37.704895, 55.55424], [37.704895, 55.55415], [37.704805, 55.55415] ] @@ -18696,11 +18680,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704805, 55.554239], - [37.704805, 55.554329], - [37.704895, 55.554329], - [37.704895, 55.554239], - [37.704805, 55.554239] + [37.704805, 55.55424], + [37.704805, 55.55433], + [37.704895, 55.55433], + [37.704895, 55.55424], + [37.704805, 55.55424] ] ] } @@ -18712,11 +18696,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704805, 55.554329], - [37.704805, 55.554419], - [37.704895, 55.554419], - [37.704895, 55.554329], - [37.704805, 55.554329] + [37.704805, 55.55433], + [37.704805, 55.55442], + [37.704895, 55.55442], + [37.704895, 55.55433], + [37.704805, 55.55433] ] ] } @@ -18728,11 +18712,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704805, 55.554419], - [37.704805, 55.554509], - [37.704895, 55.554509], - [37.704895, 55.554419], - [37.704805, 55.554419] + [37.704805, 55.55442], + [37.704805, 55.55451], + [37.704895, 55.55451], + [37.704895, 55.55442], + [37.704805, 55.55442] ] ] } @@ -18744,11 +18728,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704805, 55.554509], - [37.704805, 55.554599], - [37.704895, 55.554599], - [37.704895, 55.554509], - [37.704805, 55.554509] + [37.704805, 55.55451], + [37.704805, 55.5546], + [37.704895, 55.5546], + [37.704895, 55.55451], + [37.704805, 55.55451] ] ] } @@ -18760,11 +18744,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704805, 55.554599], - [37.704805, 55.554689], - [37.704895, 55.554689], - [37.704895, 55.554599], - [37.704805, 55.554599] + [37.704805, 55.5546], + [37.704805, 55.55469], + [37.704895, 55.55469], + [37.704895, 55.5546], + [37.704805, 55.5546] ] ] } @@ -18776,11 +18760,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704805, 55.554689], - [37.704805, 55.554778], - [37.704895, 55.554778], - [37.704895, 55.554689], - [37.704805, 55.554689] + [37.704805, 55.55469], + [37.704805, 55.55478], + [37.704895, 55.55478], + [37.704895, 55.55469], + [37.704805, 55.55469] ] ] } @@ -18792,11 +18776,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704805, 55.554778], - [37.704805, 55.554868], - [37.704895, 55.554868], - [37.704895, 55.554778], - [37.704805, 55.554778] + [37.704805, 55.55478], + [37.704805, 55.554869], + [37.704895, 55.554869], + [37.704895, 55.55478], + [37.704805, 55.55478] ] ] } @@ -18808,11 +18792,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704805, 55.554868], - [37.704805, 55.554958], - [37.704895, 55.554958], - [37.704895, 55.554868], - [37.704805, 55.554868] + [37.704805, 55.554869], + [37.704805, 55.554959], + [37.704895, 55.554959], + [37.704895, 55.554869], + [37.704805, 55.554869] ] ] } @@ -18824,11 +18808,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704805, 55.554958], - [37.704805, 55.555048], - [37.704895, 55.555048], - [37.704895, 55.554958], - [37.704805, 55.554958] + [37.704805, 55.554959], + [37.704805, 55.555049], + [37.704895, 55.555049], + [37.704895, 55.554959], + [37.704805, 55.554959] ] ] } @@ -18840,11 +18824,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704805, 55.555048], - [37.704805, 55.555138], - [37.704895, 55.555138], - [37.704895, 55.555048], - [37.704805, 55.555048] + [37.704805, 55.555049], + [37.704805, 55.555139], + [37.704895, 55.555139], + [37.704895, 55.555049], + [37.704805, 55.555049] ] ] } @@ -18856,11 +18840,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704895, 55.551904], - [37.704895, 55.551994], - [37.704985, 55.551994], - [37.704985, 55.551904], - [37.704895, 55.551904] + [37.704895, 55.551902], + [37.704895, 55.551992], + [37.704985, 55.551992], + [37.704985, 55.551902], + [37.704895, 55.551902] ] ] } @@ -18872,11 +18856,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704895, 55.551994], - [37.704895, 55.552084], - [37.704985, 55.552084], - [37.704985, 55.551994], - [37.704895, 55.551994] + [37.704895, 55.551992], + [37.704895, 55.552082], + [37.704985, 55.552082], + [37.704985, 55.551992], + [37.704895, 55.551992] ] ] } @@ -18888,11 +18872,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704895, 55.552084], - [37.704895, 55.552173], - [37.704985, 55.552173], - [37.704985, 55.552084], - [37.704895, 55.552084] + [37.704895, 55.552082], + [37.704895, 55.552171], + [37.704985, 55.552171], + [37.704985, 55.552082], + [37.704895, 55.552082] ] ] } @@ -18904,11 +18888,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704895, 55.552173], - [37.704895, 55.552263], - [37.704985, 55.552263], - [37.704985, 55.552173], - [37.704895, 55.552173] + [37.704895, 55.552171], + [37.704895, 55.552261], + [37.704985, 55.552261], + [37.704985, 55.552171], + [37.704895, 55.552171] ] ] } @@ -18920,11 +18904,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704895, 55.552263], - [37.704895, 55.552353], - [37.704985, 55.552353], - [37.704985, 55.552263], - [37.704895, 55.552263] + [37.704895, 55.552261], + [37.704895, 55.552351], + [37.704985, 55.552351], + [37.704985, 55.552261], + [37.704895, 55.552261] ] ] } @@ -18936,11 +18920,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704895, 55.552353], - [37.704895, 55.552443], - [37.704985, 55.552443], - [37.704985, 55.552353], - [37.704895, 55.552353] + [37.704895, 55.552351], + [37.704895, 55.552441], + [37.704985, 55.552441], + [37.704985, 55.552351], + [37.704895, 55.552351] ] ] } @@ -18952,11 +18936,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704895, 55.552443], - [37.704895, 55.552533], - [37.704985, 55.552533], - [37.704985, 55.552443], - [37.704895, 55.552443] + [37.704895, 55.552441], + [37.704895, 55.552531], + [37.704985, 55.552531], + [37.704985, 55.552441], + [37.704895, 55.552441] ] ] } @@ -18968,11 +18952,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704895, 55.552533], - [37.704895, 55.552623], - [37.704985, 55.552623], - [37.704985, 55.552533], - [37.704895, 55.552533] + [37.704895, 55.552531], + [37.704895, 55.552621], + [37.704985, 55.552621], + [37.704985, 55.552531], + [37.704895, 55.552531] ] ] } @@ -18984,11 +18968,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704895, 55.552623], - [37.704895, 55.552712], - [37.704985, 55.552712], - [37.704985, 55.552623], - [37.704895, 55.552623] + [37.704895, 55.552621], + [37.704895, 55.552711], + [37.704985, 55.552711], + [37.704985, 55.552621], + [37.704895, 55.552621] ] ] } @@ -19000,11 +18984,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704895, 55.552712], - [37.704895, 55.552802], - [37.704985, 55.552802], - [37.704985, 55.552712], - [37.704895, 55.552712] + [37.704895, 55.552711], + [37.704895, 55.552801], + [37.704985, 55.552801], + [37.704985, 55.552711], + [37.704895, 55.552711] ] ] } @@ -19016,11 +19000,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704895, 55.552802], - [37.704895, 55.552892], - [37.704985, 55.552892], - [37.704985, 55.552802], - [37.704895, 55.552802] + [37.704895, 55.552801], + [37.704895, 55.552891], + [37.704985, 55.552891], + [37.704985, 55.552801], + [37.704895, 55.552801] ] ] } @@ -19032,11 +19016,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704895, 55.552892], - [37.704895, 55.552982], - [37.704985, 55.552982], - [37.704985, 55.552892], - [37.704895, 55.552892] + [37.704895, 55.552891], + [37.704895, 55.552981], + [37.704985, 55.552981], + [37.704985, 55.552891], + [37.704895, 55.552891] ] ] } @@ -19048,11 +19032,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704895, 55.552982], - [37.704895, 55.553072], - [37.704985, 55.553072], - [37.704985, 55.552982], - [37.704895, 55.552982] + [37.704895, 55.552981], + [37.704895, 55.553071], + [37.704985, 55.553071], + [37.704985, 55.552981], + [37.704895, 55.552981] ] ] } @@ -19064,11 +19048,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704895, 55.553072], - [37.704895, 55.553162], - [37.704985, 55.553162], - [37.704985, 55.553072], - [37.704895, 55.553072] + [37.704895, 55.553071], + [37.704895, 55.553161], + [37.704985, 55.553161], + [37.704985, 55.553071], + [37.704895, 55.553071] ] ] } @@ -19080,11 +19064,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704895, 55.553162], + [37.704895, 55.553161], [37.704895, 55.553251], [37.704985, 55.553251], - [37.704985, 55.553162], - [37.704895, 55.553162] + [37.704985, 55.553161], + [37.704895, 55.553161] ] ] } @@ -19129,8 +19113,8 @@ "coordinates": [ [ [37.704895, 55.553431], - [37.704895, 55.553521], - [37.704985, 55.553521], + [37.704895, 55.55352], + [37.704985, 55.55352], [37.704985, 55.553431], [37.704895, 55.553431] ] @@ -19144,11 +19128,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704895, 55.553521], - [37.704895, 55.553611], - [37.704985, 55.553611], - [37.704985, 55.553521], - [37.704895, 55.553521] + [37.704895, 55.55352], + [37.704895, 55.55361], + [37.704985, 55.55361], + [37.704985, 55.55352], + [37.704895, 55.55352] ] ] } @@ -19160,11 +19144,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704895, 55.553611], + [37.704895, 55.55361], [37.704895, 55.5537], [37.704985, 55.5537], - [37.704985, 55.553611], - [37.704895, 55.553611] + [37.704985, 55.55361], + [37.704895, 55.55361] ] ] } @@ -19257,8 +19241,8 @@ "coordinates": [ [ [37.704895, 55.55415], - [37.704895, 55.554239], - [37.704985, 55.554239], + [37.704895, 55.55424], + [37.704985, 55.55424], [37.704985, 55.55415], [37.704895, 55.55415] ] @@ -19272,11 +19256,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704895, 55.554239], - [37.704895, 55.554329], - [37.704985, 55.554329], - [37.704985, 55.554239], - [37.704895, 55.554239] + [37.704895, 55.55424], + [37.704895, 55.55433], + [37.704985, 55.55433], + [37.704985, 55.55424], + [37.704895, 55.55424] ] ] } @@ -19288,11 +19272,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704895, 55.554329], - [37.704895, 55.554419], - [37.704985, 55.554419], - [37.704985, 55.554329], - [37.704895, 55.554329] + [37.704895, 55.55433], + [37.704895, 55.55442], + [37.704985, 55.55442], + [37.704985, 55.55433], + [37.704895, 55.55433] ] ] } @@ -19304,11 +19288,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704895, 55.554419], - [37.704895, 55.554509], - [37.704985, 55.554509], - [37.704985, 55.554419], - [37.704895, 55.554419] + [37.704895, 55.55442], + [37.704895, 55.55451], + [37.704985, 55.55451], + [37.704985, 55.55442], + [37.704895, 55.55442] ] ] } @@ -19320,11 +19304,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704895, 55.554509], - [37.704895, 55.554599], - [37.704985, 55.554599], - [37.704985, 55.554509], - [37.704895, 55.554509] + [37.704895, 55.55451], + [37.704895, 55.5546], + [37.704985, 55.5546], + [37.704985, 55.55451], + [37.704895, 55.55451] ] ] } @@ -19336,11 +19320,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704895, 55.554599], - [37.704895, 55.554689], - [37.704985, 55.554689], - [37.704985, 55.554599], - [37.704895, 55.554599] + [37.704895, 55.5546], + [37.704895, 55.55469], + [37.704985, 55.55469], + [37.704985, 55.5546], + [37.704895, 55.5546] ] ] } @@ -19352,11 +19336,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704895, 55.554689], - [37.704895, 55.554778], - [37.704985, 55.554778], - [37.704985, 55.554689], - [37.704895, 55.554689] + [37.704895, 55.55469], + [37.704895, 55.55478], + [37.704985, 55.55478], + [37.704985, 55.55469], + [37.704895, 55.55469] ] ] } @@ -19368,11 +19352,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704895, 55.554778], - [37.704895, 55.554868], - [37.704985, 55.554868], - [37.704985, 55.554778], - [37.704895, 55.554778] + [37.704895, 55.55478], + [37.704895, 55.554869], + [37.704985, 55.554869], + [37.704985, 55.55478], + [37.704895, 55.55478] ] ] } @@ -19384,11 +19368,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704895, 55.554868], - [37.704895, 55.554958], - [37.704985, 55.554958], - [37.704985, 55.554868], - [37.704895, 55.554868] + [37.704895, 55.554869], + [37.704895, 55.554959], + [37.704985, 55.554959], + [37.704985, 55.554869], + [37.704895, 55.554869] ] ] } @@ -19400,11 +19384,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704895, 55.554958], - [37.704895, 55.555048], - [37.704985, 55.555048], - [37.704985, 55.554958], - [37.704895, 55.554958] + [37.704895, 55.554959], + [37.704895, 55.555049], + [37.704985, 55.555049], + [37.704985, 55.554959], + [37.704895, 55.554959] ] ] } @@ -19416,11 +19400,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704895, 55.555048], - [37.704895, 55.555138], - [37.704985, 55.555138], - [37.704985, 55.555048], - [37.704895, 55.555048] + [37.704895, 55.555049], + [37.704895, 55.555139], + [37.704985, 55.555139], + [37.704985, 55.555049], + [37.704895, 55.555049] ] ] } @@ -19432,11 +19416,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704985, 55.551814], - [37.704985, 55.551904], - [37.705075, 55.551904], - [37.705075, 55.551814], - [37.704985, 55.551814] + [37.704985, 55.551812], + [37.704985, 55.551902], + [37.705075, 55.551902], + [37.705075, 55.551812], + [37.704985, 55.551812] ] ] } @@ -19448,11 +19432,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704985, 55.551904], - [37.704985, 55.551994], - [37.705075, 55.551994], - [37.705075, 55.551904], - [37.704985, 55.551904] + [37.704985, 55.551902], + [37.704985, 55.551992], + [37.705075, 55.551992], + [37.705075, 55.551902], + [37.704985, 55.551902] ] ] } @@ -19464,11 +19448,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704985, 55.551994], - [37.704985, 55.552084], - [37.705075, 55.552084], - [37.705075, 55.551994], - [37.704985, 55.551994] + [37.704985, 55.551992], + [37.704985, 55.552082], + [37.705075, 55.552082], + [37.705075, 55.551992], + [37.704985, 55.551992] ] ] } @@ -19480,11 +19464,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704985, 55.552084], - [37.704985, 55.552173], - [37.705075, 55.552173], - [37.705075, 55.552084], - [37.704985, 55.552084] + [37.704985, 55.552082], + [37.704985, 55.552171], + [37.705075, 55.552171], + [37.705075, 55.552082], + [37.704985, 55.552082] ] ] } @@ -19496,11 +19480,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704985, 55.552173], - [37.704985, 55.552263], - [37.705075, 55.552263], - [37.705075, 55.552173], - [37.704985, 55.552173] + [37.704985, 55.552171], + [37.704985, 55.552261], + [37.705075, 55.552261], + [37.705075, 55.552171], + [37.704985, 55.552171] ] ] } @@ -19512,11 +19496,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704985, 55.552263], - [37.704985, 55.552353], - [37.705075, 55.552353], - [37.705075, 55.552263], - [37.704985, 55.552263] + [37.704985, 55.552261], + [37.704985, 55.552351], + [37.705075, 55.552351], + [37.705075, 55.552261], + [37.704985, 55.552261] ] ] } @@ -19528,11 +19512,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704985, 55.552353], - [37.704985, 55.552443], - [37.705075, 55.552443], - [37.705075, 55.552353], - [37.704985, 55.552353] + [37.704985, 55.552351], + [37.704985, 55.552441], + [37.705075, 55.552441], + [37.705075, 55.552351], + [37.704985, 55.552351] ] ] } @@ -19544,11 +19528,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704985, 55.552443], - [37.704985, 55.552533], - [37.705075, 55.552533], - [37.705075, 55.552443], - [37.704985, 55.552443] + [37.704985, 55.552441], + [37.704985, 55.552531], + [37.705075, 55.552531], + [37.705075, 55.552441], + [37.704985, 55.552441] ] ] } @@ -19560,11 +19544,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704985, 55.552533], - [37.704985, 55.552623], - [37.705075, 55.552623], - [37.705075, 55.552533], - [37.704985, 55.552533] + [37.704985, 55.552531], + [37.704985, 55.552621], + [37.705075, 55.552621], + [37.705075, 55.552531], + [37.704985, 55.552531] ] ] } @@ -19576,11 +19560,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704985, 55.552623], - [37.704985, 55.552712], - [37.705075, 55.552712], - [37.705075, 55.552623], - [37.704985, 55.552623] + [37.704985, 55.552621], + [37.704985, 55.552711], + [37.705075, 55.552711], + [37.705075, 55.552621], + [37.704985, 55.552621] ] ] } @@ -19592,11 +19576,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704985, 55.552712], - [37.704985, 55.552802], - [37.705075, 55.552802], - [37.705075, 55.552712], - [37.704985, 55.552712] + [37.704985, 55.552711], + [37.704985, 55.552801], + [37.705075, 55.552801], + [37.705075, 55.552711], + [37.704985, 55.552711] ] ] } @@ -19608,11 +19592,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704985, 55.552802], - [37.704985, 55.552892], - [37.705075, 55.552892], - [37.705075, 55.552802], - [37.704985, 55.552802] + [37.704985, 55.552801], + [37.704985, 55.552891], + [37.705075, 55.552891], + [37.705075, 55.552801], + [37.704985, 55.552801] ] ] } @@ -19624,11 +19608,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704985, 55.552892], - [37.704985, 55.552982], - [37.705075, 55.552982], - [37.705075, 55.552892], - [37.704985, 55.552892] + [37.704985, 55.552891], + [37.704985, 55.552981], + [37.705075, 55.552981], + [37.705075, 55.552891], + [37.704985, 55.552891] ] ] } @@ -19640,11 +19624,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704985, 55.552982], - [37.704985, 55.553072], - [37.705075, 55.553072], - [37.705075, 55.552982], - [37.704985, 55.552982] + [37.704985, 55.552981], + [37.704985, 55.553071], + [37.705075, 55.553071], + [37.705075, 55.552981], + [37.704985, 55.552981] ] ] } @@ -19656,11 +19640,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704985, 55.553072], - [37.704985, 55.553162], - [37.705075, 55.553162], - [37.705075, 55.553072], - [37.704985, 55.553072] + [37.704985, 55.553071], + [37.704985, 55.553161], + [37.705075, 55.553161], + [37.705075, 55.553071], + [37.704985, 55.553071] ] ] } @@ -19672,11 +19656,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704985, 55.553162], + [37.704985, 55.553161], [37.704985, 55.553251], [37.705075, 55.553251], - [37.705075, 55.553162], - [37.704985, 55.553162] + [37.705075, 55.553161], + [37.704985, 55.553161] ] ] } @@ -19721,8 +19705,8 @@ "coordinates": [ [ [37.704985, 55.553431], - [37.704985, 55.553521], - [37.705075, 55.553521], + [37.704985, 55.55352], + [37.705075, 55.55352], [37.705075, 55.553431], [37.704985, 55.553431] ] @@ -19736,11 +19720,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704985, 55.553521], - [37.704985, 55.553611], - [37.705075, 55.553611], - [37.705075, 55.553521], - [37.704985, 55.553521] + [37.704985, 55.55352], + [37.704985, 55.55361], + [37.705075, 55.55361], + [37.705075, 55.55352], + [37.704985, 55.55352] ] ] } @@ -19752,11 +19736,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704985, 55.553611], + [37.704985, 55.55361], [37.704985, 55.5537], [37.705075, 55.5537], - [37.705075, 55.553611], - [37.704985, 55.553611] + [37.705075, 55.55361], + [37.704985, 55.55361] ] ] } @@ -19849,8 +19833,8 @@ "coordinates": [ [ [37.704985, 55.55415], - [37.704985, 55.554239], - [37.705075, 55.554239], + [37.704985, 55.55424], + [37.705075, 55.55424], [37.705075, 55.55415], [37.704985, 55.55415] ] @@ -19864,11 +19848,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704985, 55.554239], - [37.704985, 55.554329], - [37.705075, 55.554329], - [37.705075, 55.554239], - [37.704985, 55.554239] + [37.704985, 55.55424], + [37.704985, 55.55433], + [37.705075, 55.55433], + [37.705075, 55.55424], + [37.704985, 55.55424] ] ] } @@ -19880,11 +19864,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704985, 55.554329], - [37.704985, 55.554419], - [37.705075, 55.554419], - [37.705075, 55.554329], - [37.704985, 55.554329] + [37.704985, 55.55433], + [37.704985, 55.55442], + [37.705075, 55.55442], + [37.705075, 55.55433], + [37.704985, 55.55433] ] ] } @@ -19896,11 +19880,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704985, 55.554419], - [37.704985, 55.554509], - [37.705075, 55.554509], - [37.705075, 55.554419], - [37.704985, 55.554419] + [37.704985, 55.55442], + [37.704985, 55.55451], + [37.705075, 55.55451], + [37.705075, 55.55442], + [37.704985, 55.55442] ] ] } @@ -19912,11 +19896,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704985, 55.554509], - [37.704985, 55.554599], - [37.705075, 55.554599], - [37.705075, 55.554509], - [37.704985, 55.554509] + [37.704985, 55.55451], + [37.704985, 55.5546], + [37.705075, 55.5546], + [37.705075, 55.55451], + [37.704985, 55.55451] ] ] } @@ -19928,11 +19912,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704985, 55.554599], - [37.704985, 55.554689], - [37.705075, 55.554689], - [37.705075, 55.554599], - [37.704985, 55.554599] + [37.704985, 55.5546], + [37.704985, 55.55469], + [37.705075, 55.55469], + [37.705075, 55.5546], + [37.704985, 55.5546] ] ] } @@ -19944,11 +19928,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704985, 55.554689], - [37.704985, 55.554778], - [37.705075, 55.554778], - [37.705075, 55.554689], - [37.704985, 55.554689] + [37.704985, 55.55469], + [37.704985, 55.55478], + [37.705075, 55.55478], + [37.705075, 55.55469], + [37.704985, 55.55469] ] ] } @@ -19960,11 +19944,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704985, 55.554778], - [37.704985, 55.554868], - [37.705075, 55.554868], - [37.705075, 55.554778], - [37.704985, 55.554778] + [37.704985, 55.55478], + [37.704985, 55.554869], + [37.705075, 55.554869], + [37.705075, 55.55478], + [37.704985, 55.55478] ] ] } @@ -19976,11 +19960,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704985, 55.554868], - [37.704985, 55.554958], - [37.705075, 55.554958], - [37.705075, 55.554868], - [37.704985, 55.554868] + [37.704985, 55.554869], + [37.704985, 55.554959], + [37.705075, 55.554959], + [37.705075, 55.554869], + [37.704985, 55.554869] ] ] } @@ -19992,11 +19976,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704985, 55.554958], - [37.704985, 55.555048], - [37.705075, 55.555048], - [37.705075, 55.554958], - [37.704985, 55.554958] + [37.704985, 55.554959], + [37.704985, 55.555049], + [37.705075, 55.555049], + [37.705075, 55.554959], + [37.704985, 55.554959] ] ] } @@ -20008,11 +19992,11 @@ "type": "Polygon", "coordinates": [ [ - [37.704985, 55.555048], - [37.704985, 55.555138], - [37.705075, 55.555138], - [37.705075, 55.555048], - [37.704985, 55.555048] + [37.704985, 55.555049], + [37.704985, 55.555139], + [37.705075, 55.555139], + [37.705075, 55.555049], + [37.704985, 55.555049] ] ] } @@ -20024,11 +20008,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705075, 55.551814], - [37.705075, 55.551904], - [37.705164, 55.551904], - [37.705164, 55.551814], - [37.705075, 55.551814] + [37.705075, 55.551812], + [37.705075, 55.551902], + [37.705165, 55.551902], + [37.705165, 55.551812], + [37.705075, 55.551812] ] ] } @@ -20040,11 +20024,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705075, 55.551904], - [37.705075, 55.551994], - [37.705164, 55.551994], - [37.705164, 55.551904], - [37.705075, 55.551904] + [37.705075, 55.551902], + [37.705075, 55.551992], + [37.705165, 55.551992], + [37.705165, 55.551902], + [37.705075, 55.551902] ] ] } @@ -20056,11 +20040,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705075, 55.551994], - [37.705075, 55.552084], - [37.705164, 55.552084], - [37.705164, 55.551994], - [37.705075, 55.551994] + [37.705075, 55.551992], + [37.705075, 55.552082], + [37.705165, 55.552082], + [37.705165, 55.551992], + [37.705075, 55.551992] ] ] } @@ -20072,11 +20056,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705075, 55.552084], - [37.705075, 55.552173], - [37.705164, 55.552173], - [37.705164, 55.552084], - [37.705075, 55.552084] + [37.705075, 55.552082], + [37.705075, 55.552171], + [37.705165, 55.552171], + [37.705165, 55.552082], + [37.705075, 55.552082] ] ] } @@ -20088,11 +20072,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705075, 55.552173], - [37.705075, 55.552263], - [37.705164, 55.552263], - [37.705164, 55.552173], - [37.705075, 55.552173] + [37.705075, 55.552171], + [37.705075, 55.552261], + [37.705165, 55.552261], + [37.705165, 55.552171], + [37.705075, 55.552171] ] ] } @@ -20104,11 +20088,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705075, 55.552263], - [37.705075, 55.552353], - [37.705164, 55.552353], - [37.705164, 55.552263], - [37.705075, 55.552263] + [37.705075, 55.552261], + [37.705075, 55.552351], + [37.705165, 55.552351], + [37.705165, 55.552261], + [37.705075, 55.552261] ] ] } @@ -20120,11 +20104,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705075, 55.552353], - [37.705075, 55.552443], - [37.705164, 55.552443], - [37.705164, 55.552353], - [37.705075, 55.552353] + [37.705075, 55.552351], + [37.705075, 55.552441], + [37.705165, 55.552441], + [37.705165, 55.552351], + [37.705075, 55.552351] ] ] } @@ -20136,11 +20120,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705075, 55.552443], - [37.705075, 55.552533], - [37.705164, 55.552533], - [37.705164, 55.552443], - [37.705075, 55.552443] + [37.705075, 55.552441], + [37.705075, 55.552531], + [37.705165, 55.552531], + [37.705165, 55.552441], + [37.705075, 55.552441] ] ] } @@ -20152,11 +20136,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705075, 55.552533], - [37.705075, 55.552623], - [37.705164, 55.552623], - [37.705164, 55.552533], - [37.705075, 55.552533] + [37.705075, 55.552531], + [37.705075, 55.552621], + [37.705165, 55.552621], + [37.705165, 55.552531], + [37.705075, 55.552531] ] ] } @@ -20168,11 +20152,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705075, 55.552623], - [37.705075, 55.552712], - [37.705164, 55.552712], - [37.705164, 55.552623], - [37.705075, 55.552623] + [37.705075, 55.552621], + [37.705075, 55.552711], + [37.705165, 55.552711], + [37.705165, 55.552621], + [37.705075, 55.552621] ] ] } @@ -20184,11 +20168,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705075, 55.552712], - [37.705075, 55.552802], - [37.705164, 55.552802], - [37.705164, 55.552712], - [37.705075, 55.552712] + [37.705075, 55.552711], + [37.705075, 55.552801], + [37.705165, 55.552801], + [37.705165, 55.552711], + [37.705075, 55.552711] ] ] } @@ -20200,11 +20184,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705075, 55.552802], - [37.705075, 55.552892], - [37.705164, 55.552892], - [37.705164, 55.552802], - [37.705075, 55.552802] + [37.705075, 55.552801], + [37.705075, 55.552891], + [37.705165, 55.552891], + [37.705165, 55.552801], + [37.705075, 55.552801] ] ] } @@ -20216,11 +20200,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705075, 55.552892], - [37.705075, 55.552982], - [37.705164, 55.552982], - [37.705164, 55.552892], - [37.705075, 55.552892] + [37.705075, 55.552891], + [37.705075, 55.552981], + [37.705165, 55.552981], + [37.705165, 55.552891], + [37.705075, 55.552891] ] ] } @@ -20232,11 +20216,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705075, 55.552982], - [37.705075, 55.553072], - [37.705164, 55.553072], - [37.705164, 55.552982], - [37.705075, 55.552982] + [37.705075, 55.552981], + [37.705075, 55.553071], + [37.705165, 55.553071], + [37.705165, 55.552981], + [37.705075, 55.552981] ] ] } @@ -20248,11 +20232,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705075, 55.553072], - [37.705075, 55.553162], - [37.705164, 55.553162], - [37.705164, 55.553072], - [37.705075, 55.553072] + [37.705075, 55.553071], + [37.705075, 55.553161], + [37.705165, 55.553161], + [37.705165, 55.553071], + [37.705075, 55.553071] ] ] } @@ -20264,11 +20248,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705075, 55.553162], + [37.705075, 55.553161], [37.705075, 55.553251], - [37.705164, 55.553251], - [37.705164, 55.553162], - [37.705075, 55.553162] + [37.705165, 55.553251], + [37.705165, 55.553161], + [37.705075, 55.553161] ] ] } @@ -20282,8 +20266,8 @@ [ [37.705075, 55.553251], [37.705075, 55.553341], - [37.705164, 55.553341], - [37.705164, 55.553251], + [37.705165, 55.553341], + [37.705165, 55.553251], [37.705075, 55.553251] ] ] @@ -20298,8 +20282,8 @@ [ [37.705075, 55.553341], [37.705075, 55.553431], - [37.705164, 55.553431], - [37.705164, 55.553341], + [37.705165, 55.553431], + [37.705165, 55.553341], [37.705075, 55.553341] ] ] @@ -20313,9 +20297,9 @@ "coordinates": [ [ [37.705075, 55.553431], - [37.705075, 55.553521], - [37.705164, 55.553521], - [37.705164, 55.553431], + [37.705075, 55.55352], + [37.705165, 55.55352], + [37.705165, 55.553431], [37.705075, 55.553431] ] ] @@ -20328,11 +20312,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705075, 55.553521], - [37.705075, 55.553611], - [37.705164, 55.553611], - [37.705164, 55.553521], - [37.705075, 55.553521] + [37.705075, 55.55352], + [37.705075, 55.55361], + [37.705165, 55.55361], + [37.705165, 55.55352], + [37.705075, 55.55352] ] ] } @@ -20344,11 +20328,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705075, 55.553611], + [37.705075, 55.55361], [37.705075, 55.5537], - [37.705164, 55.5537], - [37.705164, 55.553611], - [37.705075, 55.553611] + [37.705165, 55.5537], + [37.705165, 55.55361], + [37.705075, 55.55361] ] ] } @@ -20362,8 +20346,8 @@ [ [37.705075, 55.5537], [37.705075, 55.55379], - [37.705164, 55.55379], - [37.705164, 55.5537], + [37.705165, 55.55379], + [37.705165, 55.5537], [37.705075, 55.5537] ] ] @@ -20378,8 +20362,8 @@ [ [37.705075, 55.55379], [37.705075, 55.55388], - [37.705164, 55.55388], - [37.705164, 55.55379], + [37.705165, 55.55388], + [37.705165, 55.55379], [37.705075, 55.55379] ] ] @@ -20394,8 +20378,8 @@ [ [37.705075, 55.55388], [37.705075, 55.55397], - [37.705164, 55.55397], - [37.705164, 55.55388], + [37.705165, 55.55397], + [37.705165, 55.55388], [37.705075, 55.55388] ] ] @@ -20410,8 +20394,8 @@ [ [37.705075, 55.55397], [37.705075, 55.55406], - [37.705164, 55.55406], - [37.705164, 55.55397], + [37.705165, 55.55406], + [37.705165, 55.55397], [37.705075, 55.55397] ] ] @@ -20426,8 +20410,8 @@ [ [37.705075, 55.55406], [37.705075, 55.55415], - [37.705164, 55.55415], - [37.705164, 55.55406], + [37.705165, 55.55415], + [37.705165, 55.55406], [37.705075, 55.55406] ] ] @@ -20441,9 +20425,9 @@ "coordinates": [ [ [37.705075, 55.55415], - [37.705075, 55.554239], - [37.705164, 55.554239], - [37.705164, 55.55415], + [37.705075, 55.55424], + [37.705165, 55.55424], + [37.705165, 55.55415], [37.705075, 55.55415] ] ] @@ -20456,59 +20440,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705075, 55.554239], - [37.705075, 55.554329], - [37.705164, 55.554329], - [37.705164, 55.554239], - [37.705075, 55.554239] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705075, 55.554329], - [37.705075, 55.554419], - [37.705164, 55.554419], - [37.705164, 55.554329], - [37.705075, 55.554329] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705075, 55.554419], - [37.705075, 55.554509], - [37.705164, 55.554509], - [37.705164, 55.554419], - [37.705075, 55.554419] - ] - ] - } - }, - { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [37.705075, 55.554509], - [37.705075, 55.554599], - [37.705164, 55.554599], - [37.705164, 55.554509], - [37.705075, 55.554509] + [37.705075, 55.55424], + [37.705075, 55.55433], + [37.705165, 55.55433], + [37.705165, 55.55424], + [37.705075, 55.55424] ] ] } @@ -20520,11 +20456,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705075, 55.554599], - [37.705075, 55.554689], - [37.705164, 55.554689], - [37.705164, 55.554599], - [37.705075, 55.554599] + [37.705075, 55.55433], + [37.705075, 55.55442], + [37.705165, 55.55442], + [37.705165, 55.55433], + [37.705075, 55.55433] ] ] } @@ -20536,11 +20472,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705075, 55.554689], - [37.705075, 55.554778], - [37.705164, 55.554778], - [37.705164, 55.554689], - [37.705075, 55.554689] + [37.705075, 55.55442], + [37.705075, 55.55451], + [37.705165, 55.55451], + [37.705165, 55.55442], + [37.705075, 55.55442] ] ] } @@ -20552,11 +20488,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705075, 55.554778], - [37.705075, 55.554868], - [37.705164, 55.554868], - [37.705164, 55.554778], - [37.705075, 55.554778] + [37.705075, 55.55451], + [37.705075, 55.5546], + [37.705165, 55.5546], + [37.705165, 55.55451], + [37.705075, 55.55451] ] ] } @@ -20568,11 +20504,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705075, 55.554868], - [37.705075, 55.554958], - [37.705164, 55.554958], - [37.705164, 55.554868], - [37.705075, 55.554868] + [37.705075, 55.5546], + [37.705075, 55.55469], + [37.705165, 55.55469], + [37.705165, 55.5546], + [37.705075, 55.5546] ] ] } @@ -20584,11 +20520,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705075, 55.554958], - [37.705075, 55.555048], - [37.705164, 55.555048], - [37.705164, 55.554958], - [37.705075, 55.554958] + [37.705075, 55.55469], + [37.705075, 55.55478], + [37.705165, 55.55478], + [37.705165, 55.55469], + [37.705075, 55.55469] ] ] } @@ -20600,11 +20536,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705075, 55.555048], - [37.705075, 55.555138], - [37.705164, 55.555138], - [37.705164, 55.555048], - [37.705075, 55.555048] + [37.705075, 55.55478], + [37.705075, 55.554869], + [37.705165, 55.554869], + [37.705165, 55.55478], + [37.705075, 55.55478] ] ] } @@ -20616,11 +20552,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705075, 55.555138], - [37.705075, 55.555228], - [37.705164, 55.555228], - [37.705164, 55.555138], - [37.705075, 55.555138] + [37.705075, 55.554869], + [37.705075, 55.554959], + [37.705165, 55.554959], + [37.705165, 55.554869], + [37.705075, 55.554869] ] ] } @@ -20632,11 +20568,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705164, 55.551814], - [37.705164, 55.551904], - [37.705254, 55.551904], - [37.705254, 55.551814], - [37.705164, 55.551814] + [37.705075, 55.554959], + [37.705075, 55.555049], + [37.705165, 55.555049], + [37.705165, 55.554959], + [37.705075, 55.554959] ] ] } @@ -20648,11 +20584,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705164, 55.551904], - [37.705164, 55.551994], - [37.705254, 55.551994], - [37.705254, 55.551904], - [37.705164, 55.551904] + [37.705075, 55.555049], + [37.705075, 55.555139], + [37.705165, 55.555139], + [37.705165, 55.555049], + [37.705075, 55.555049] ] ] } @@ -20664,11 +20600,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705164, 55.551994], - [37.705164, 55.552084], - [37.705254, 55.552084], - [37.705254, 55.551994], - [37.705164, 55.551994] + [37.705075, 55.555139], + [37.705075, 55.555229], + [37.705165, 55.555229], + [37.705165, 55.555139], + [37.705075, 55.555139] ] ] } @@ -20680,11 +20616,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705164, 55.552084], - [37.705164, 55.552173], - [37.705254, 55.552173], - [37.705254, 55.552084], - [37.705164, 55.552084] + [37.705165, 55.551812], + [37.705165, 55.551902], + [37.705255, 55.551902], + [37.705255, 55.551812], + [37.705165, 55.551812] ] ] } @@ -20696,11 +20632,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705164, 55.552173], - [37.705164, 55.552263], - [37.705254, 55.552263], - [37.705254, 55.552173], - [37.705164, 55.552173] + [37.705165, 55.551902], + [37.705165, 55.551992], + [37.705255, 55.551992], + [37.705255, 55.551902], + [37.705165, 55.551902] ] ] } @@ -20712,11 +20648,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705164, 55.552263], - [37.705164, 55.552353], - [37.705254, 55.552353], - [37.705254, 55.552263], - [37.705164, 55.552263] + [37.705165, 55.551992], + [37.705165, 55.552082], + [37.705255, 55.552082], + [37.705255, 55.551992], + [37.705165, 55.551992] ] ] } @@ -20728,11 +20664,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705164, 55.552353], - [37.705164, 55.552443], - [37.705254, 55.552443], - [37.705254, 55.552353], - [37.705164, 55.552353] + [37.705165, 55.552082], + [37.705165, 55.552171], + [37.705255, 55.552171], + [37.705255, 55.552082], + [37.705165, 55.552082] ] ] } @@ -20744,11 +20680,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705164, 55.552443], - [37.705164, 55.552533], - [37.705254, 55.552533], - [37.705254, 55.552443], - [37.705164, 55.552443] + [37.705165, 55.552171], + [37.705165, 55.552261], + [37.705255, 55.552261], + [37.705255, 55.552171], + [37.705165, 55.552171] ] ] } @@ -20760,11 +20696,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705164, 55.552533], - [37.705164, 55.552623], - [37.705254, 55.552623], - [37.705254, 55.552533], - [37.705164, 55.552533] + [37.705165, 55.552261], + [37.705165, 55.552351], + [37.705255, 55.552351], + [37.705255, 55.552261], + [37.705165, 55.552261] ] ] } @@ -20776,11 +20712,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705164, 55.552623], - [37.705164, 55.552712], - [37.705254, 55.552712], - [37.705254, 55.552623], - [37.705164, 55.552623] + [37.705165, 55.552351], + [37.705165, 55.552441], + [37.705255, 55.552441], + [37.705255, 55.552351], + [37.705165, 55.552351] ] ] } @@ -20792,11 +20728,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705164, 55.552712], - [37.705164, 55.552802], - [37.705254, 55.552802], - [37.705254, 55.552712], - [37.705164, 55.552712] + [37.705165, 55.552441], + [37.705165, 55.552531], + [37.705255, 55.552531], + [37.705255, 55.552441], + [37.705165, 55.552441] ] ] } @@ -20808,11 +20744,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705164, 55.552802], - [37.705164, 55.552892], - [37.705254, 55.552892], - [37.705254, 55.552802], - [37.705164, 55.552802] + [37.705165, 55.552531], + [37.705165, 55.552621], + [37.705255, 55.552621], + [37.705255, 55.552531], + [37.705165, 55.552531] ] ] } @@ -20824,11 +20760,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705164, 55.552892], - [37.705164, 55.552982], - [37.705254, 55.552982], - [37.705254, 55.552892], - [37.705164, 55.552892] + [37.705165, 55.552621], + [37.705165, 55.552711], + [37.705255, 55.552711], + [37.705255, 55.552621], + [37.705165, 55.552621] ] ] } @@ -20840,11 +20776,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705164, 55.552982], - [37.705164, 55.553072], - [37.705254, 55.553072], - [37.705254, 55.552982], - [37.705164, 55.552982] + [37.705165, 55.552711], + [37.705165, 55.552801], + [37.705255, 55.552801], + [37.705255, 55.552711], + [37.705165, 55.552711] ] ] } @@ -20856,11 +20792,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705164, 55.553072], - [37.705164, 55.553162], - [37.705254, 55.553162], - [37.705254, 55.553072], - [37.705164, 55.553072] + [37.705165, 55.552801], + [37.705165, 55.552891], + [37.705255, 55.552891], + [37.705255, 55.552801], + [37.705165, 55.552801] ] ] } @@ -20872,11 +20808,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705164, 55.553162], - [37.705164, 55.553251], - [37.705254, 55.553251], - [37.705254, 55.553162], - [37.705164, 55.553162] + [37.705165, 55.552891], + [37.705165, 55.552981], + [37.705255, 55.552981], + [37.705255, 55.552891], + [37.705165, 55.552891] ] ] } @@ -20888,11 +20824,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705164, 55.553251], - [37.705164, 55.553341], - [37.705254, 55.553341], - [37.705254, 55.553251], - [37.705164, 55.553251] + [37.705165, 55.552981], + [37.705165, 55.553071], + [37.705255, 55.553071], + [37.705255, 55.552981], + [37.705165, 55.552981] ] ] } @@ -20904,11 +20840,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705164, 55.553341], - [37.705164, 55.553431], - [37.705254, 55.553431], - [37.705254, 55.553341], - [37.705164, 55.553341] + [37.705165, 55.553071], + [37.705165, 55.553161], + [37.705255, 55.553161], + [37.705255, 55.553071], + [37.705165, 55.553071] ] ] } @@ -20920,11 +20856,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705164, 55.553431], - [37.705164, 55.553521], - [37.705254, 55.553521], - [37.705254, 55.553431], - [37.705164, 55.553431] + [37.705165, 55.553161], + [37.705165, 55.553251], + [37.705255, 55.553251], + [37.705255, 55.553161], + [37.705165, 55.553161] ] ] } @@ -20936,11 +20872,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705164, 55.553521], - [37.705164, 55.553611], - [37.705254, 55.553611], - [37.705254, 55.553521], - [37.705164, 55.553521] + [37.705165, 55.553251], + [37.705165, 55.553341], + [37.705255, 55.553341], + [37.705255, 55.553251], + [37.705165, 55.553251] ] ] } @@ -20952,11 +20888,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705164, 55.553611], - [37.705164, 55.5537], - [37.705254, 55.5537], - [37.705254, 55.553611], - [37.705164, 55.553611] + [37.705165, 55.553341], + [37.705165, 55.553431], + [37.705255, 55.553431], + [37.705255, 55.553341], + [37.705165, 55.553341] ] ] } @@ -20968,11 +20904,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705164, 55.5537], - [37.705164, 55.55379], - [37.705254, 55.55379], - [37.705254, 55.5537], - [37.705164, 55.5537] + [37.705165, 55.553431], + [37.705165, 55.55352], + [37.705255, 55.55352], + [37.705255, 55.553431], + [37.705165, 55.553431] ] ] } @@ -20984,11 +20920,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705164, 55.55379], - [37.705164, 55.55388], - [37.705254, 55.55388], - [37.705254, 55.55379], - [37.705164, 55.55379] + [37.705165, 55.55352], + [37.705165, 55.55361], + [37.705255, 55.55361], + [37.705255, 55.55352], + [37.705165, 55.55352] ] ] } @@ -21000,11 +20936,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705164, 55.55388], - [37.705164, 55.55397], - [37.705254, 55.55397], - [37.705254, 55.55388], - [37.705164, 55.55388] + [37.705165, 55.55361], + [37.705165, 55.5537], + [37.705255, 55.5537], + [37.705255, 55.55361], + [37.705165, 55.55361] ] ] } @@ -21016,11 +20952,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705164, 55.55397], - [37.705164, 55.55406], - [37.705254, 55.55406], - [37.705254, 55.55397], - [37.705164, 55.55397] + [37.705165, 55.5537], + [37.705165, 55.55379], + [37.705255, 55.55379], + [37.705255, 55.5537], + [37.705165, 55.5537] ] ] } @@ -21032,11 +20968,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705164, 55.55406], - [37.705164, 55.55415], - [37.705254, 55.55415], - [37.705254, 55.55406], - [37.705164, 55.55406] + [37.705165, 55.55379], + [37.705165, 55.55388], + [37.705255, 55.55388], + [37.705255, 55.55379], + [37.705165, 55.55379] ] ] } @@ -21048,11 +20984,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705164, 55.55415], - [37.705164, 55.554239], - [37.705254, 55.554239], - [37.705254, 55.55415], - [37.705164, 55.55415] + [37.705165, 55.55388], + [37.705165, 55.55397], + [37.705255, 55.55397], + [37.705255, 55.55388], + [37.705165, 55.55388] ] ] } @@ -21064,11 +21000,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705164, 55.554239], - [37.705164, 55.554329], - [37.705254, 55.554329], - [37.705254, 55.554239], - [37.705164, 55.554239] + [37.705165, 55.55397], + [37.705165, 55.55406], + [37.705255, 55.55406], + [37.705255, 55.55397], + [37.705165, 55.55397] ] ] } @@ -21080,11 +21016,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705164, 55.554329], - [37.705164, 55.554419], - [37.705254, 55.554419], - [37.705254, 55.554329], - [37.705164, 55.554329] + [37.705165, 55.55406], + [37.705165, 55.55415], + [37.705255, 55.55415], + [37.705255, 55.55406], + [37.705165, 55.55406] ] ] } @@ -21096,11 +21032,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705164, 55.554419], - [37.705164, 55.554509], - [37.705254, 55.554509], - [37.705254, 55.554419], - [37.705164, 55.554419] + [37.705165, 55.55415], + [37.705165, 55.55424], + [37.705255, 55.55424], + [37.705255, 55.55415], + [37.705165, 55.55415] ] ] } @@ -21112,11 +21048,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705164, 55.554509], - [37.705164, 55.554599], - [37.705254, 55.554599], - [37.705254, 55.554509], - [37.705164, 55.554509] + [37.705165, 55.55424], + [37.705165, 55.55433], + [37.705255, 55.55433], + [37.705255, 55.55424], + [37.705165, 55.55424] ] ] } @@ -21128,11 +21064,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705164, 55.554599], - [37.705164, 55.554689], - [37.705254, 55.554689], - [37.705254, 55.554599], - [37.705164, 55.554599] + [37.705165, 55.55433], + [37.705165, 55.55442], + [37.705255, 55.55442], + [37.705255, 55.55433], + [37.705165, 55.55433] ] ] } @@ -21144,11 +21080,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705164, 55.554689], - [37.705164, 55.554778], - [37.705254, 55.554778], - [37.705254, 55.554689], - [37.705164, 55.554689] + [37.705165, 55.55442], + [37.705165, 55.55451], + [37.705255, 55.55451], + [37.705255, 55.55442], + [37.705165, 55.55442] ] ] } @@ -21160,11 +21096,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705164, 55.554778], - [37.705164, 55.554868], - [37.705254, 55.554868], - [37.705254, 55.554778], - [37.705164, 55.554778] + [37.705165, 55.55451], + [37.705165, 55.5546], + [37.705255, 55.5546], + [37.705255, 55.55451], + [37.705165, 55.55451] ] ] } @@ -21176,11 +21112,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705164, 55.554868], - [37.705164, 55.554958], - [37.705254, 55.554958], - [37.705254, 55.554868], - [37.705164, 55.554868] + [37.705165, 55.5546], + [37.705165, 55.55469], + [37.705255, 55.55469], + [37.705255, 55.5546], + [37.705165, 55.5546] ] ] } @@ -21192,11 +21128,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705164, 55.554958], - [37.705164, 55.555048], - [37.705254, 55.555048], - [37.705254, 55.554958], - [37.705164, 55.554958] + [37.705165, 55.55469], + [37.705165, 55.55478], + [37.705255, 55.55478], + [37.705255, 55.55469], + [37.705165, 55.55469] ] ] } @@ -21208,11 +21144,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705164, 55.555048], - [37.705164, 55.555138], - [37.705254, 55.555138], - [37.705254, 55.555048], - [37.705164, 55.555048] + [37.705165, 55.55478], + [37.705165, 55.554869], + [37.705255, 55.554869], + [37.705255, 55.55478], + [37.705165, 55.55478] ] ] } @@ -21224,11 +21160,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705164, 55.555138], - [37.705164, 55.555228], - [37.705254, 55.555228], - [37.705254, 55.555138], - [37.705164, 55.555138] + [37.705165, 55.554869], + [37.705165, 55.554959], + [37.705255, 55.554959], + [37.705255, 55.554869], + [37.705165, 55.554869] ] ] } @@ -21240,11 +21176,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705254, 55.551814], - [37.705254, 55.551904], - [37.705344, 55.551904], - [37.705344, 55.551814], - [37.705254, 55.551814] + [37.705165, 55.554959], + [37.705165, 55.555049], + [37.705255, 55.555049], + [37.705255, 55.554959], + [37.705165, 55.554959] ] ] } @@ -21256,11 +21192,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705254, 55.551904], - [37.705254, 55.551994], - [37.705344, 55.551994], - [37.705344, 55.551904], - [37.705254, 55.551904] + [37.705165, 55.555049], + [37.705165, 55.555139], + [37.705255, 55.555139], + [37.705255, 55.555049], + [37.705165, 55.555049] ] ] } @@ -21272,11 +21208,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705254, 55.551994], - [37.705254, 55.552084], - [37.705344, 55.552084], - [37.705344, 55.551994], - [37.705254, 55.551994] + [37.705165, 55.555139], + [37.705165, 55.555229], + [37.705255, 55.555229], + [37.705255, 55.555139], + [37.705165, 55.555139] ] ] } @@ -21288,11 +21224,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705254, 55.552084], - [37.705254, 55.552173], - [37.705344, 55.552173], - [37.705344, 55.552084], - [37.705254, 55.552084] + [37.705255, 55.551812], + [37.705255, 55.551902], + [37.705345, 55.551902], + [37.705345, 55.551812], + [37.705255, 55.551812] ] ] } @@ -21304,11 +21240,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705254, 55.552173], - [37.705254, 55.552263], - [37.705344, 55.552263], - [37.705344, 55.552173], - [37.705254, 55.552173] + [37.705255, 55.551902], + [37.705255, 55.551992], + [37.705345, 55.551992], + [37.705345, 55.551902], + [37.705255, 55.551902] ] ] } @@ -21320,11 +21256,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705254, 55.552263], - [37.705254, 55.552353], - [37.705344, 55.552353], - [37.705344, 55.552263], - [37.705254, 55.552263] + [37.705255, 55.551992], + [37.705255, 55.552082], + [37.705345, 55.552082], + [37.705345, 55.551992], + [37.705255, 55.551992] ] ] } @@ -21336,11 +21272,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705254, 55.552353], - [37.705254, 55.552443], - [37.705344, 55.552443], - [37.705344, 55.552353], - [37.705254, 55.552353] + [37.705255, 55.552082], + [37.705255, 55.552171], + [37.705345, 55.552171], + [37.705345, 55.552082], + [37.705255, 55.552082] ] ] } @@ -21352,11 +21288,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705254, 55.552443], - [37.705254, 55.552533], - [37.705344, 55.552533], - [37.705344, 55.552443], - [37.705254, 55.552443] + [37.705255, 55.552171], + [37.705255, 55.552261], + [37.705345, 55.552261], + [37.705345, 55.552171], + [37.705255, 55.552171] ] ] } @@ -21368,11 +21304,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705254, 55.552533], - [37.705254, 55.552623], - [37.705344, 55.552623], - [37.705344, 55.552533], - [37.705254, 55.552533] + [37.705255, 55.552261], + [37.705255, 55.552351], + [37.705345, 55.552351], + [37.705345, 55.552261], + [37.705255, 55.552261] ] ] } @@ -21384,11 +21320,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705254, 55.552623], - [37.705254, 55.552712], - [37.705344, 55.552712], - [37.705344, 55.552623], - [37.705254, 55.552623] + [37.705255, 55.552351], + [37.705255, 55.552441], + [37.705345, 55.552441], + [37.705345, 55.552351], + [37.705255, 55.552351] ] ] } @@ -21400,11 +21336,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705254, 55.552712], - [37.705254, 55.552802], - [37.705344, 55.552802], - [37.705344, 55.552712], - [37.705254, 55.552712] + [37.705255, 55.552441], + [37.705255, 55.552531], + [37.705345, 55.552531], + [37.705345, 55.552441], + [37.705255, 55.552441] ] ] } @@ -21416,11 +21352,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705254, 55.552802], - [37.705254, 55.552892], - [37.705344, 55.552892], - [37.705344, 55.552802], - [37.705254, 55.552802] + [37.705255, 55.552531], + [37.705255, 55.552621], + [37.705345, 55.552621], + [37.705345, 55.552531], + [37.705255, 55.552531] ] ] } @@ -21432,11 +21368,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705254, 55.552892], - [37.705254, 55.552982], - [37.705344, 55.552982], - [37.705344, 55.552892], - [37.705254, 55.552892] + [37.705255, 55.552621], + [37.705255, 55.552711], + [37.705345, 55.552711], + [37.705345, 55.552621], + [37.705255, 55.552621] ] ] } @@ -21448,11 +21384,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705254, 55.552982], - [37.705254, 55.553072], - [37.705344, 55.553072], - [37.705344, 55.552982], - [37.705254, 55.552982] + [37.705255, 55.552711], + [37.705255, 55.552801], + [37.705345, 55.552801], + [37.705345, 55.552711], + [37.705255, 55.552711] ] ] } @@ -21464,11 +21400,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705254, 55.553072], - [37.705254, 55.553162], - [37.705344, 55.553162], - [37.705344, 55.553072], - [37.705254, 55.553072] + [37.705255, 55.552801], + [37.705255, 55.552891], + [37.705345, 55.552891], + [37.705345, 55.552801], + [37.705255, 55.552801] ] ] } @@ -21480,11 +21416,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705254, 55.553162], - [37.705254, 55.553251], - [37.705344, 55.553251], - [37.705344, 55.553162], - [37.705254, 55.553162] + [37.705255, 55.552891], + [37.705255, 55.552981], + [37.705345, 55.552981], + [37.705345, 55.552891], + [37.705255, 55.552891] ] ] } @@ -21496,11 +21432,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705254, 55.553251], - [37.705254, 55.553341], - [37.705344, 55.553341], - [37.705344, 55.553251], - [37.705254, 55.553251] + [37.705255, 55.552981], + [37.705255, 55.553071], + [37.705345, 55.553071], + [37.705345, 55.552981], + [37.705255, 55.552981] ] ] } @@ -21512,11 +21448,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705254, 55.553341], - [37.705254, 55.553431], - [37.705344, 55.553431], - [37.705344, 55.553341], - [37.705254, 55.553341] + [37.705255, 55.553071], + [37.705255, 55.553161], + [37.705345, 55.553161], + [37.705345, 55.553071], + [37.705255, 55.553071] ] ] } @@ -21528,11 +21464,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705254, 55.553431], - [37.705254, 55.553521], - [37.705344, 55.553521], - [37.705344, 55.553431], - [37.705254, 55.553431] + [37.705255, 55.553161], + [37.705255, 55.553251], + [37.705345, 55.553251], + [37.705345, 55.553161], + [37.705255, 55.553161] ] ] } @@ -21544,11 +21480,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705254, 55.553521], - [37.705254, 55.553611], - [37.705344, 55.553611], - [37.705344, 55.553521], - [37.705254, 55.553521] + [37.705255, 55.553251], + [37.705255, 55.553341], + [37.705345, 55.553341], + [37.705345, 55.553251], + [37.705255, 55.553251] ] ] } @@ -21560,11 +21496,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705254, 55.553611], - [37.705254, 55.5537], - [37.705344, 55.5537], - [37.705344, 55.553611], - [37.705254, 55.553611] + [37.705255, 55.553341], + [37.705255, 55.553431], + [37.705345, 55.553431], + [37.705345, 55.553341], + [37.705255, 55.553341] ] ] } @@ -21576,11 +21512,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705254, 55.5537], - [37.705254, 55.55379], - [37.705344, 55.55379], - [37.705344, 55.5537], - [37.705254, 55.5537] + [37.705255, 55.553431], + [37.705255, 55.55352], + [37.705345, 55.55352], + [37.705345, 55.553431], + [37.705255, 55.553431] ] ] } @@ -21592,11 +21528,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705254, 55.55379], - [37.705254, 55.55388], - [37.705344, 55.55388], - [37.705344, 55.55379], - [37.705254, 55.55379] + [37.705255, 55.55352], + [37.705255, 55.55361], + [37.705345, 55.55361], + [37.705345, 55.55352], + [37.705255, 55.55352] ] ] } @@ -21608,11 +21544,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705254, 55.55388], - [37.705254, 55.55397], - [37.705344, 55.55397], - [37.705344, 55.55388], - [37.705254, 55.55388] + [37.705255, 55.55361], + [37.705255, 55.5537], + [37.705345, 55.5537], + [37.705345, 55.55361], + [37.705255, 55.55361] ] ] } @@ -21624,11 +21560,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705254, 55.55397], - [37.705254, 55.55406], - [37.705344, 55.55406], - [37.705344, 55.55397], - [37.705254, 55.55397] + [37.705255, 55.5537], + [37.705255, 55.55379], + [37.705345, 55.55379], + [37.705345, 55.5537], + [37.705255, 55.5537] ] ] } @@ -21640,11 +21576,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705254, 55.55406], - [37.705254, 55.55415], - [37.705344, 55.55415], - [37.705344, 55.55406], - [37.705254, 55.55406] + [37.705255, 55.55379], + [37.705255, 55.55388], + [37.705345, 55.55388], + [37.705345, 55.55379], + [37.705255, 55.55379] ] ] } @@ -21656,11 +21592,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705254, 55.55415], - [37.705254, 55.554239], - [37.705344, 55.554239], - [37.705344, 55.55415], - [37.705254, 55.55415] + [37.705255, 55.55388], + [37.705255, 55.55397], + [37.705345, 55.55397], + [37.705345, 55.55388], + [37.705255, 55.55388] ] ] } @@ -21672,11 +21608,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705254, 55.554239], - [37.705254, 55.554329], - [37.705344, 55.554329], - [37.705344, 55.554239], - [37.705254, 55.554239] + [37.705255, 55.55397], + [37.705255, 55.55406], + [37.705345, 55.55406], + [37.705345, 55.55397], + [37.705255, 55.55397] ] ] } @@ -21688,11 +21624,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705254, 55.554329], - [37.705254, 55.554419], - [37.705344, 55.554419], - [37.705344, 55.554329], - [37.705254, 55.554329] + [37.705255, 55.55406], + [37.705255, 55.55415], + [37.705345, 55.55415], + [37.705345, 55.55406], + [37.705255, 55.55406] ] ] } @@ -21704,11 +21640,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705254, 55.554419], - [37.705254, 55.554509], - [37.705344, 55.554509], - [37.705344, 55.554419], - [37.705254, 55.554419] + [37.705255, 55.55415], + [37.705255, 55.55424], + [37.705345, 55.55424], + [37.705345, 55.55415], + [37.705255, 55.55415] ] ] } @@ -21720,11 +21656,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705254, 55.554509], - [37.705254, 55.554599], - [37.705344, 55.554599], - [37.705344, 55.554509], - [37.705254, 55.554509] + [37.705255, 55.55424], + [37.705255, 55.55433], + [37.705345, 55.55433], + [37.705345, 55.55424], + [37.705255, 55.55424] ] ] } @@ -21736,11 +21672,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705254, 55.554599], - [37.705254, 55.554689], - [37.705344, 55.554689], - [37.705344, 55.554599], - [37.705254, 55.554599] + [37.705255, 55.55433], + [37.705255, 55.55442], + [37.705345, 55.55442], + [37.705345, 55.55433], + [37.705255, 55.55433] ] ] } @@ -21752,11 +21688,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705254, 55.554689], - [37.705254, 55.554778], - [37.705344, 55.554778], - [37.705344, 55.554689], - [37.705254, 55.554689] + [37.705255, 55.55442], + [37.705255, 55.55451], + [37.705345, 55.55451], + [37.705345, 55.55442], + [37.705255, 55.55442] ] ] } @@ -21768,11 +21704,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705254, 55.554778], - [37.705254, 55.554868], - [37.705344, 55.554868], - [37.705344, 55.554778], - [37.705254, 55.554778] + [37.705255, 55.55451], + [37.705255, 55.5546], + [37.705345, 55.5546], + [37.705345, 55.55451], + [37.705255, 55.55451] ] ] } @@ -21784,11 +21720,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705254, 55.554868], - [37.705254, 55.554958], - [37.705344, 55.554958], - [37.705344, 55.554868], - [37.705254, 55.554868] + [37.705255, 55.5546], + [37.705255, 55.55469], + [37.705345, 55.55469], + [37.705345, 55.5546], + [37.705255, 55.5546] ] ] } @@ -21800,11 +21736,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705254, 55.554958], - [37.705254, 55.555048], - [37.705344, 55.555048], - [37.705344, 55.554958], - [37.705254, 55.554958] + [37.705255, 55.55469], + [37.705255, 55.55478], + [37.705345, 55.55478], + [37.705345, 55.55469], + [37.705255, 55.55469] ] ] } @@ -21816,11 +21752,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705254, 55.555048], - [37.705254, 55.555138], - [37.705344, 55.555138], - [37.705344, 55.555048], - [37.705254, 55.555048] + [37.705255, 55.55478], + [37.705255, 55.554869], + [37.705345, 55.554869], + [37.705345, 55.55478], + [37.705255, 55.55478] ] ] } @@ -21832,11 +21768,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705254, 55.555138], - [37.705254, 55.555228], - [37.705344, 55.555228], - [37.705344, 55.555138], - [37.705254, 55.555138] + [37.705255, 55.554869], + [37.705255, 55.554959], + [37.705345, 55.554959], + [37.705345, 55.554869], + [37.705255, 55.554869] ] ] } @@ -21848,11 +21784,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705344, 55.551724], - [37.705344, 55.551814], - [37.705434, 55.551814], - [37.705434, 55.551724], - [37.705344, 55.551724] + [37.705255, 55.554959], + [37.705255, 55.555049], + [37.705345, 55.555049], + [37.705345, 55.554959], + [37.705255, 55.554959] ] ] } @@ -21864,11 +21800,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705344, 55.551814], - [37.705344, 55.551904], - [37.705434, 55.551904], - [37.705434, 55.551814], - [37.705344, 55.551814] + [37.705255, 55.555049], + [37.705255, 55.555139], + [37.705345, 55.555139], + [37.705345, 55.555049], + [37.705255, 55.555049] ] ] } @@ -21880,11 +21816,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705344, 55.551904], - [37.705344, 55.551994], - [37.705434, 55.551994], - [37.705434, 55.551904], - [37.705344, 55.551904] + [37.705255, 55.555139], + [37.705255, 55.555229], + [37.705345, 55.555229], + [37.705345, 55.555139], + [37.705255, 55.555139] ] ] } @@ -21896,11 +21832,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705344, 55.551994], - [37.705344, 55.552084], - [37.705434, 55.552084], - [37.705434, 55.551994], - [37.705344, 55.551994] + [37.705345, 55.551722], + [37.705345, 55.551812], + [37.705435, 55.551812], + [37.705435, 55.551722], + [37.705345, 55.551722] ] ] } @@ -21912,11 +21848,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705344, 55.552084], - [37.705344, 55.552173], - [37.705434, 55.552173], - [37.705434, 55.552084], - [37.705344, 55.552084] + [37.705345, 55.551812], + [37.705345, 55.551902], + [37.705435, 55.551902], + [37.705435, 55.551812], + [37.705345, 55.551812] ] ] } @@ -21928,11 +21864,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705344, 55.552173], - [37.705344, 55.552263], - [37.705434, 55.552263], - [37.705434, 55.552173], - [37.705344, 55.552173] + [37.705345, 55.551902], + [37.705345, 55.551992], + [37.705435, 55.551992], + [37.705435, 55.551902], + [37.705345, 55.551902] ] ] } @@ -21944,11 +21880,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705344, 55.552263], - [37.705344, 55.552353], - [37.705434, 55.552353], - [37.705434, 55.552263], - [37.705344, 55.552263] + [37.705345, 55.551992], + [37.705345, 55.552082], + [37.705435, 55.552082], + [37.705435, 55.551992], + [37.705345, 55.551992] ] ] } @@ -21960,11 +21896,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705344, 55.552353], - [37.705344, 55.552443], - [37.705434, 55.552443], - [37.705434, 55.552353], - [37.705344, 55.552353] + [37.705345, 55.552082], + [37.705345, 55.552171], + [37.705435, 55.552171], + [37.705435, 55.552082], + [37.705345, 55.552082] ] ] } @@ -21976,11 +21912,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705344, 55.552443], - [37.705344, 55.552533], - [37.705434, 55.552533], - [37.705434, 55.552443], - [37.705344, 55.552443] + [37.705345, 55.552171], + [37.705345, 55.552261], + [37.705435, 55.552261], + [37.705435, 55.552171], + [37.705345, 55.552171] ] ] } @@ -21992,11 +21928,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705344, 55.552533], - [37.705344, 55.552623], - [37.705434, 55.552623], - [37.705434, 55.552533], - [37.705344, 55.552533] + [37.705345, 55.552261], + [37.705345, 55.552351], + [37.705435, 55.552351], + [37.705435, 55.552261], + [37.705345, 55.552261] ] ] } @@ -22008,11 +21944,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705344, 55.552623], - [37.705344, 55.552712], - [37.705434, 55.552712], - [37.705434, 55.552623], - [37.705344, 55.552623] + [37.705345, 55.552351], + [37.705345, 55.552441], + [37.705435, 55.552441], + [37.705435, 55.552351], + [37.705345, 55.552351] ] ] } @@ -22024,11 +21960,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705344, 55.552712], - [37.705344, 55.552802], - [37.705434, 55.552802], - [37.705434, 55.552712], - [37.705344, 55.552712] + [37.705345, 55.552441], + [37.705345, 55.552531], + [37.705435, 55.552531], + [37.705435, 55.552441], + [37.705345, 55.552441] ] ] } @@ -22040,11 +21976,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705344, 55.552802], - [37.705344, 55.552892], - [37.705434, 55.552892], - [37.705434, 55.552802], - [37.705344, 55.552802] + [37.705345, 55.552531], + [37.705345, 55.552621], + [37.705435, 55.552621], + [37.705435, 55.552531], + [37.705345, 55.552531] ] ] } @@ -22056,11 +21992,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705344, 55.552892], - [37.705344, 55.552982], - [37.705434, 55.552982], - [37.705434, 55.552892], - [37.705344, 55.552892] + [37.705345, 55.552621], + [37.705345, 55.552711], + [37.705435, 55.552711], + [37.705435, 55.552621], + [37.705345, 55.552621] ] ] } @@ -22072,11 +22008,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705344, 55.552982], - [37.705344, 55.553072], - [37.705434, 55.553072], - [37.705434, 55.552982], - [37.705344, 55.552982] + [37.705345, 55.552711], + [37.705345, 55.552801], + [37.705435, 55.552801], + [37.705435, 55.552711], + [37.705345, 55.552711] ] ] } @@ -22088,11 +22024,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705344, 55.553072], - [37.705344, 55.553162], - [37.705434, 55.553162], - [37.705434, 55.553072], - [37.705344, 55.553072] + [37.705345, 55.552801], + [37.705345, 55.552891], + [37.705435, 55.552891], + [37.705435, 55.552801], + [37.705345, 55.552801] ] ] } @@ -22104,11 +22040,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705344, 55.553162], - [37.705344, 55.553251], - [37.705434, 55.553251], - [37.705434, 55.553162], - [37.705344, 55.553162] + [37.705345, 55.552891], + [37.705345, 55.552981], + [37.705435, 55.552981], + [37.705435, 55.552891], + [37.705345, 55.552891] ] ] } @@ -22120,11 +22056,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705344, 55.553251], - [37.705344, 55.553341], - [37.705434, 55.553341], - [37.705434, 55.553251], - [37.705344, 55.553251] + [37.705345, 55.552981], + [37.705345, 55.553071], + [37.705435, 55.553071], + [37.705435, 55.552981], + [37.705345, 55.552981] ] ] } @@ -22136,11 +22072,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705344, 55.553341], - [37.705344, 55.553431], - [37.705434, 55.553431], - [37.705434, 55.553341], - [37.705344, 55.553341] + [37.705345, 55.553071], + [37.705345, 55.553161], + [37.705435, 55.553161], + [37.705435, 55.553071], + [37.705345, 55.553071] ] ] } @@ -22152,11 +22088,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705344, 55.553431], - [37.705344, 55.553521], - [37.705434, 55.553521], - [37.705434, 55.553431], - [37.705344, 55.553431] + [37.705345, 55.553161], + [37.705345, 55.553251], + [37.705435, 55.553251], + [37.705435, 55.553161], + [37.705345, 55.553161] ] ] } @@ -22168,11 +22104,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705344, 55.553521], - [37.705344, 55.553611], - [37.705434, 55.553611], - [37.705434, 55.553521], - [37.705344, 55.553521] + [37.705345, 55.553251], + [37.705345, 55.553341], + [37.705435, 55.553341], + [37.705435, 55.553251], + [37.705345, 55.553251] ] ] } @@ -22184,11 +22120,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705344, 55.553611], - [37.705344, 55.5537], - [37.705434, 55.5537], - [37.705434, 55.553611], - [37.705344, 55.553611] + [37.705345, 55.553341], + [37.705345, 55.553431], + [37.705435, 55.553431], + [37.705435, 55.553341], + [37.705345, 55.553341] ] ] } @@ -22200,11 +22136,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705344, 55.5537], - [37.705344, 55.55379], - [37.705434, 55.55379], - [37.705434, 55.5537], - [37.705344, 55.5537] + [37.705345, 55.553431], + [37.705345, 55.55352], + [37.705435, 55.55352], + [37.705435, 55.553431], + [37.705345, 55.553431] ] ] } @@ -22216,11 +22152,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705344, 55.55379], - [37.705344, 55.55388], - [37.705434, 55.55388], - [37.705434, 55.55379], - [37.705344, 55.55379] + [37.705345, 55.55352], + [37.705345, 55.55361], + [37.705435, 55.55361], + [37.705435, 55.55352], + [37.705345, 55.55352] ] ] } @@ -22232,11 +22168,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705344, 55.55388], - [37.705344, 55.55397], - [37.705434, 55.55397], - [37.705434, 55.55388], - [37.705344, 55.55388] + [37.705345, 55.55361], + [37.705345, 55.5537], + [37.705435, 55.5537], + [37.705435, 55.55361], + [37.705345, 55.55361] ] ] } @@ -22248,11 +22184,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705344, 55.55397], - [37.705344, 55.55406], - [37.705434, 55.55406], - [37.705434, 55.55397], - [37.705344, 55.55397] + [37.705345, 55.5537], + [37.705345, 55.55379], + [37.705435, 55.55379], + [37.705435, 55.5537], + [37.705345, 55.5537] ] ] } @@ -22264,11 +22200,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705344, 55.55406], - [37.705344, 55.55415], - [37.705434, 55.55415], - [37.705434, 55.55406], - [37.705344, 55.55406] + [37.705345, 55.55379], + [37.705345, 55.55388], + [37.705435, 55.55388], + [37.705435, 55.55379], + [37.705345, 55.55379] ] ] } @@ -22280,11 +22216,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705344, 55.55415], - [37.705344, 55.554239], - [37.705434, 55.554239], - [37.705434, 55.55415], - [37.705344, 55.55415] + [37.705345, 55.55388], + [37.705345, 55.55397], + [37.705435, 55.55397], + [37.705435, 55.55388], + [37.705345, 55.55388] ] ] } @@ -22296,11 +22232,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705344, 55.554239], - [37.705344, 55.554329], - [37.705434, 55.554329], - [37.705434, 55.554239], - [37.705344, 55.554239] + [37.705345, 55.55397], + [37.705345, 55.55406], + [37.705435, 55.55406], + [37.705435, 55.55397], + [37.705345, 55.55397] ] ] } @@ -22312,11 +22248,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705344, 55.554329], - [37.705344, 55.554419], - [37.705434, 55.554419], - [37.705434, 55.554329], - [37.705344, 55.554329] + [37.705345, 55.55406], + [37.705345, 55.55415], + [37.705435, 55.55415], + [37.705435, 55.55406], + [37.705345, 55.55406] ] ] } @@ -22328,11 +22264,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705344, 55.554419], - [37.705344, 55.554509], - [37.705434, 55.554509], - [37.705434, 55.554419], - [37.705344, 55.554419] + [37.705345, 55.55415], + [37.705345, 55.55424], + [37.705435, 55.55424], + [37.705435, 55.55415], + [37.705345, 55.55415] ] ] } @@ -22344,11 +22280,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705344, 55.554509], - [37.705344, 55.554599], - [37.705434, 55.554599], - [37.705434, 55.554509], - [37.705344, 55.554509] + [37.705345, 55.55424], + [37.705345, 55.55433], + [37.705435, 55.55433], + [37.705435, 55.55424], + [37.705345, 55.55424] ] ] } @@ -22360,11 +22296,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705344, 55.554599], - [37.705344, 55.554689], - [37.705434, 55.554689], - [37.705434, 55.554599], - [37.705344, 55.554599] + [37.705345, 55.55433], + [37.705345, 55.55442], + [37.705435, 55.55442], + [37.705435, 55.55433], + [37.705345, 55.55433] ] ] } @@ -22376,11 +22312,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705344, 55.554689], - [37.705344, 55.554778], - [37.705434, 55.554778], - [37.705434, 55.554689], - [37.705344, 55.554689] + [37.705345, 55.55442], + [37.705345, 55.55451], + [37.705435, 55.55451], + [37.705435, 55.55442], + [37.705345, 55.55442] ] ] } @@ -22392,11 +22328,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705344, 55.554778], - [37.705344, 55.554868], - [37.705434, 55.554868], - [37.705434, 55.554778], - [37.705344, 55.554778] + [37.705345, 55.55451], + [37.705345, 55.5546], + [37.705435, 55.5546], + [37.705435, 55.55451], + [37.705345, 55.55451] ] ] } @@ -22408,11 +22344,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705344, 55.554868], - [37.705344, 55.554958], - [37.705434, 55.554958], - [37.705434, 55.554868], - [37.705344, 55.554868] + [37.705345, 55.5546], + [37.705345, 55.55469], + [37.705435, 55.55469], + [37.705435, 55.5546], + [37.705345, 55.5546] ] ] } @@ -22424,11 +22360,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705344, 55.554958], - [37.705344, 55.555048], - [37.705434, 55.555048], - [37.705434, 55.554958], - [37.705344, 55.554958] + [37.705345, 55.55469], + [37.705345, 55.55478], + [37.705435, 55.55478], + [37.705435, 55.55469], + [37.705345, 55.55469] ] ] } @@ -22440,11 +22376,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705344, 55.555048], - [37.705344, 55.555138], - [37.705434, 55.555138], - [37.705434, 55.555048], - [37.705344, 55.555048] + [37.705345, 55.55478], + [37.705345, 55.554869], + [37.705435, 55.554869], + [37.705435, 55.55478], + [37.705345, 55.55478] ] ] } @@ -22456,11 +22392,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705344, 55.555138], - [37.705344, 55.555228], - [37.705434, 55.555228], - [37.705434, 55.555138], - [37.705344, 55.555138] + [37.705345, 55.554869], + [37.705345, 55.554959], + [37.705435, 55.554959], + [37.705435, 55.554869], + [37.705345, 55.554869] ] ] } @@ -22472,11 +22408,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705434, 55.551724], - [37.705434, 55.551814], - [37.705524, 55.551814], - [37.705524, 55.551724], - [37.705434, 55.551724] + [37.705345, 55.554959], + [37.705345, 55.555049], + [37.705435, 55.555049], + [37.705435, 55.554959], + [37.705345, 55.554959] ] ] } @@ -22488,11 +22424,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705434, 55.551814], - [37.705434, 55.551904], - [37.705524, 55.551904], - [37.705524, 55.551814], - [37.705434, 55.551814] + [37.705345, 55.555049], + [37.705345, 55.555139], + [37.705435, 55.555139], + [37.705435, 55.555049], + [37.705345, 55.555049] ] ] } @@ -22504,11 +22440,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705434, 55.551904], - [37.705434, 55.551994], - [37.705524, 55.551994], - [37.705524, 55.551904], - [37.705434, 55.551904] + [37.705345, 55.555139], + [37.705345, 55.555229], + [37.705435, 55.555229], + [37.705435, 55.555139], + [37.705345, 55.555139] ] ] } @@ -22520,11 +22456,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705434, 55.551994], - [37.705434, 55.552084], - [37.705524, 55.552084], - [37.705524, 55.551994], - [37.705434, 55.551994] + [37.705435, 55.551722], + [37.705435, 55.551812], + [37.705525, 55.551812], + [37.705525, 55.551722], + [37.705435, 55.551722] ] ] } @@ -22536,11 +22472,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705434, 55.552084], - [37.705434, 55.552173], - [37.705524, 55.552173], - [37.705524, 55.552084], - [37.705434, 55.552084] + [37.705435, 55.551812], + [37.705435, 55.551902], + [37.705525, 55.551902], + [37.705525, 55.551812], + [37.705435, 55.551812] ] ] } @@ -22552,11 +22488,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705434, 55.552173], - [37.705434, 55.552263], - [37.705524, 55.552263], - [37.705524, 55.552173], - [37.705434, 55.552173] + [37.705435, 55.551902], + [37.705435, 55.551992], + [37.705525, 55.551992], + [37.705525, 55.551902], + [37.705435, 55.551902] ] ] } @@ -22568,11 +22504,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705434, 55.552263], - [37.705434, 55.552353], - [37.705524, 55.552353], - [37.705524, 55.552263], - [37.705434, 55.552263] + [37.705435, 55.551992], + [37.705435, 55.552082], + [37.705525, 55.552082], + [37.705525, 55.551992], + [37.705435, 55.551992] ] ] } @@ -22584,11 +22520,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705434, 55.552353], - [37.705434, 55.552443], - [37.705524, 55.552443], - [37.705524, 55.552353], - [37.705434, 55.552353] + [37.705435, 55.552082], + [37.705435, 55.552171], + [37.705525, 55.552171], + [37.705525, 55.552082], + [37.705435, 55.552082] ] ] } @@ -22600,11 +22536,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705434, 55.552443], - [37.705434, 55.552533], - [37.705524, 55.552533], - [37.705524, 55.552443], - [37.705434, 55.552443] + [37.705435, 55.552171], + [37.705435, 55.552261], + [37.705525, 55.552261], + [37.705525, 55.552171], + [37.705435, 55.552171] ] ] } @@ -22616,11 +22552,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705434, 55.552533], - [37.705434, 55.552623], - [37.705524, 55.552623], - [37.705524, 55.552533], - [37.705434, 55.552533] + [37.705435, 55.552261], + [37.705435, 55.552351], + [37.705525, 55.552351], + [37.705525, 55.552261], + [37.705435, 55.552261] ] ] } @@ -22632,11 +22568,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705434, 55.552623], - [37.705434, 55.552712], - [37.705524, 55.552712], - [37.705524, 55.552623], - [37.705434, 55.552623] + [37.705435, 55.552351], + [37.705435, 55.552441], + [37.705525, 55.552441], + [37.705525, 55.552351], + [37.705435, 55.552351] ] ] } @@ -22648,11 +22584,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705434, 55.552712], - [37.705434, 55.552802], - [37.705524, 55.552802], - [37.705524, 55.552712], - [37.705434, 55.552712] + [37.705435, 55.552441], + [37.705435, 55.552531], + [37.705525, 55.552531], + [37.705525, 55.552441], + [37.705435, 55.552441] ] ] } @@ -22664,11 +22600,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705434, 55.552802], - [37.705434, 55.552892], - [37.705524, 55.552892], - [37.705524, 55.552802], - [37.705434, 55.552802] + [37.705435, 55.552531], + [37.705435, 55.552621], + [37.705525, 55.552621], + [37.705525, 55.552531], + [37.705435, 55.552531] ] ] } @@ -22680,11 +22616,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705434, 55.552892], - [37.705434, 55.552982], - [37.705524, 55.552982], - [37.705524, 55.552892], - [37.705434, 55.552892] + [37.705435, 55.552621], + [37.705435, 55.552711], + [37.705525, 55.552711], + [37.705525, 55.552621], + [37.705435, 55.552621] ] ] } @@ -22696,11 +22632,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705434, 55.552982], - [37.705434, 55.553072], - [37.705524, 55.553072], - [37.705524, 55.552982], - [37.705434, 55.552982] + [37.705435, 55.552711], + [37.705435, 55.552801], + [37.705525, 55.552801], + [37.705525, 55.552711], + [37.705435, 55.552711] ] ] } @@ -22712,11 +22648,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705434, 55.553072], - [37.705434, 55.553162], - [37.705524, 55.553162], - [37.705524, 55.553072], - [37.705434, 55.553072] + [37.705435, 55.552801], + [37.705435, 55.552891], + [37.705525, 55.552891], + [37.705525, 55.552801], + [37.705435, 55.552801] ] ] } @@ -22728,11 +22664,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705434, 55.553162], - [37.705434, 55.553251], - [37.705524, 55.553251], - [37.705524, 55.553162], - [37.705434, 55.553162] + [37.705435, 55.552891], + [37.705435, 55.552981], + [37.705525, 55.552981], + [37.705525, 55.552891], + [37.705435, 55.552891] ] ] } @@ -22744,11 +22680,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705434, 55.553251], - [37.705434, 55.553341], - [37.705524, 55.553341], - [37.705524, 55.553251], - [37.705434, 55.553251] + [37.705435, 55.552981], + [37.705435, 55.553071], + [37.705525, 55.553071], + [37.705525, 55.552981], + [37.705435, 55.552981] ] ] } @@ -22760,11 +22696,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705434, 55.553341], - [37.705434, 55.553431], - [37.705524, 55.553431], - [37.705524, 55.553341], - [37.705434, 55.553341] + [37.705435, 55.553071], + [37.705435, 55.553161], + [37.705525, 55.553161], + [37.705525, 55.553071], + [37.705435, 55.553071] ] ] } @@ -22776,11 +22712,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705434, 55.553431], - [37.705434, 55.553521], - [37.705524, 55.553521], - [37.705524, 55.553431], - [37.705434, 55.553431] + [37.705435, 55.553161], + [37.705435, 55.553251], + [37.705525, 55.553251], + [37.705525, 55.553161], + [37.705435, 55.553161] ] ] } @@ -22792,11 +22728,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705434, 55.553521], - [37.705434, 55.553611], - [37.705524, 55.553611], - [37.705524, 55.553521], - [37.705434, 55.553521] + [37.705435, 55.553251], + [37.705435, 55.553341], + [37.705525, 55.553341], + [37.705525, 55.553251], + [37.705435, 55.553251] ] ] } @@ -22808,11 +22744,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705434, 55.553611], - [37.705434, 55.5537], - [37.705524, 55.5537], - [37.705524, 55.553611], - [37.705434, 55.553611] + [37.705435, 55.553341], + [37.705435, 55.553431], + [37.705525, 55.553431], + [37.705525, 55.553341], + [37.705435, 55.553341] ] ] } @@ -22824,11 +22760,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705434, 55.5537], - [37.705434, 55.55379], - [37.705524, 55.55379], - [37.705524, 55.5537], - [37.705434, 55.5537] + [37.705435, 55.553431], + [37.705435, 55.55352], + [37.705525, 55.55352], + [37.705525, 55.553431], + [37.705435, 55.553431] ] ] } @@ -22840,11 +22776,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705434, 55.55379], - [37.705434, 55.55388], - [37.705524, 55.55388], - [37.705524, 55.55379], - [37.705434, 55.55379] + [37.705435, 55.55352], + [37.705435, 55.55361], + [37.705525, 55.55361], + [37.705525, 55.55352], + [37.705435, 55.55352] ] ] } @@ -22856,11 +22792,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705434, 55.55388], - [37.705434, 55.55397], - [37.705524, 55.55397], - [37.705524, 55.55388], - [37.705434, 55.55388] + [37.705435, 55.55361], + [37.705435, 55.5537], + [37.705525, 55.5537], + [37.705525, 55.55361], + [37.705435, 55.55361] ] ] } @@ -22872,11 +22808,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705434, 55.55397], - [37.705434, 55.55406], - [37.705524, 55.55406], - [37.705524, 55.55397], - [37.705434, 55.55397] + [37.705435, 55.5537], + [37.705435, 55.55379], + [37.705525, 55.55379], + [37.705525, 55.5537], + [37.705435, 55.5537] ] ] } @@ -22888,11 +22824,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705434, 55.55406], - [37.705434, 55.55415], - [37.705524, 55.55415], - [37.705524, 55.55406], - [37.705434, 55.55406] + [37.705435, 55.55379], + [37.705435, 55.55388], + [37.705525, 55.55388], + [37.705525, 55.55379], + [37.705435, 55.55379] ] ] } @@ -22904,11 +22840,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705434, 55.55415], - [37.705434, 55.554239], - [37.705524, 55.554239], - [37.705524, 55.55415], - [37.705434, 55.55415] + [37.705435, 55.55388], + [37.705435, 55.55397], + [37.705525, 55.55397], + [37.705525, 55.55388], + [37.705435, 55.55388] ] ] } @@ -22920,11 +22856,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705434, 55.554239], - [37.705434, 55.554329], - [37.705524, 55.554329], - [37.705524, 55.554239], - [37.705434, 55.554239] + [37.705435, 55.55397], + [37.705435, 55.55406], + [37.705525, 55.55406], + [37.705525, 55.55397], + [37.705435, 55.55397] ] ] } @@ -22936,11 +22872,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705434, 55.554329], - [37.705434, 55.554419], - [37.705524, 55.554419], - [37.705524, 55.554329], - [37.705434, 55.554329] + [37.705435, 55.55406], + [37.705435, 55.55415], + [37.705525, 55.55415], + [37.705525, 55.55406], + [37.705435, 55.55406] ] ] } @@ -22952,11 +22888,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705434, 55.554419], - [37.705434, 55.554509], - [37.705524, 55.554509], - [37.705524, 55.554419], - [37.705434, 55.554419] + [37.705435, 55.55415], + [37.705435, 55.55424], + [37.705525, 55.55424], + [37.705525, 55.55415], + [37.705435, 55.55415] ] ] } @@ -22968,11 +22904,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705434, 55.554509], - [37.705434, 55.554599], - [37.705524, 55.554599], - [37.705524, 55.554509], - [37.705434, 55.554509] + [37.705435, 55.55424], + [37.705435, 55.55433], + [37.705525, 55.55433], + [37.705525, 55.55424], + [37.705435, 55.55424] ] ] } @@ -22984,11 +22920,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705434, 55.554599], - [37.705434, 55.554689], - [37.705524, 55.554689], - [37.705524, 55.554599], - [37.705434, 55.554599] + [37.705435, 55.55433], + [37.705435, 55.55442], + [37.705525, 55.55442], + [37.705525, 55.55433], + [37.705435, 55.55433] ] ] } @@ -23000,11 +22936,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705434, 55.554689], - [37.705434, 55.554778], - [37.705524, 55.554778], - [37.705524, 55.554689], - [37.705434, 55.554689] + [37.705435, 55.55442], + [37.705435, 55.55451], + [37.705525, 55.55451], + [37.705525, 55.55442], + [37.705435, 55.55442] ] ] } @@ -23016,11 +22952,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705434, 55.554778], - [37.705434, 55.554868], - [37.705524, 55.554868], - [37.705524, 55.554778], - [37.705434, 55.554778] + [37.705435, 55.55451], + [37.705435, 55.5546], + [37.705525, 55.5546], + [37.705525, 55.55451], + [37.705435, 55.55451] ] ] } @@ -23032,11 +22968,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705434, 55.554868], - [37.705434, 55.554958], - [37.705524, 55.554958], - [37.705524, 55.554868], - [37.705434, 55.554868] + [37.705435, 55.5546], + [37.705435, 55.55469], + [37.705525, 55.55469], + [37.705525, 55.5546], + [37.705435, 55.5546] ] ] } @@ -23048,11 +22984,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705434, 55.554958], - [37.705434, 55.555048], - [37.705524, 55.555048], - [37.705524, 55.554958], - [37.705434, 55.554958] + [37.705435, 55.55469], + [37.705435, 55.55478], + [37.705525, 55.55478], + [37.705525, 55.55469], + [37.705435, 55.55469] ] ] } @@ -23064,11 +23000,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705434, 55.555048], - [37.705434, 55.555138], - [37.705524, 55.555138], - [37.705524, 55.555048], - [37.705434, 55.555048] + [37.705435, 55.55478], + [37.705435, 55.554869], + [37.705525, 55.554869], + [37.705525, 55.55478], + [37.705435, 55.55478] ] ] } @@ -23080,11 +23016,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705434, 55.555138], - [37.705434, 55.555228], - [37.705524, 55.555228], - [37.705524, 55.555138], - [37.705434, 55.555138] + [37.705435, 55.554869], + [37.705435, 55.554959], + [37.705525, 55.554959], + [37.705525, 55.554869], + [37.705435, 55.554869] ] ] } @@ -23096,11 +23032,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705434, 55.555228], - [37.705434, 55.555317], - [37.705524, 55.555317], - [37.705524, 55.555228], - [37.705434, 55.555228] + [37.705435, 55.554959], + [37.705435, 55.555049], + [37.705525, 55.555049], + [37.705525, 55.554959], + [37.705435, 55.554959] ] ] } @@ -23112,11 +23048,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705524, 55.551724], - [37.705524, 55.551814], - [37.705614, 55.551814], - [37.705614, 55.551724], - [37.705524, 55.551724] + [37.705435, 55.555049], + [37.705435, 55.555139], + [37.705525, 55.555139], + [37.705525, 55.555049], + [37.705435, 55.555049] ] ] } @@ -23128,11 +23064,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705524, 55.551814], - [37.705524, 55.551904], - [37.705614, 55.551904], - [37.705614, 55.551814], - [37.705524, 55.551814] + [37.705435, 55.555139], + [37.705435, 55.555229], + [37.705525, 55.555229], + [37.705525, 55.555139], + [37.705435, 55.555139] ] ] } @@ -23144,11 +23080,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705524, 55.551904], - [37.705524, 55.551994], - [37.705614, 55.551994], - [37.705614, 55.551904], - [37.705524, 55.551904] + [37.705435, 55.555229], + [37.705435, 55.555319], + [37.705525, 55.555319], + [37.705525, 55.555229], + [37.705435, 55.555229] ] ] } @@ -23160,11 +23096,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705524, 55.551994], - [37.705524, 55.552084], - [37.705614, 55.552084], - [37.705614, 55.551994], - [37.705524, 55.551994] + [37.705525, 55.551722], + [37.705525, 55.551812], + [37.705615, 55.551812], + [37.705615, 55.551722], + [37.705525, 55.551722] ] ] } @@ -23176,11 +23112,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705524, 55.552084], - [37.705524, 55.552173], - [37.705614, 55.552173], - [37.705614, 55.552084], - [37.705524, 55.552084] + [37.705525, 55.551812], + [37.705525, 55.551902], + [37.705615, 55.551902], + [37.705615, 55.551812], + [37.705525, 55.551812] ] ] } @@ -23192,11 +23128,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705524, 55.552173], - [37.705524, 55.552263], - [37.705614, 55.552263], - [37.705614, 55.552173], - [37.705524, 55.552173] + [37.705525, 55.551902], + [37.705525, 55.551992], + [37.705615, 55.551992], + [37.705615, 55.551902], + [37.705525, 55.551902] ] ] } @@ -23208,11 +23144,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705524, 55.552263], - [37.705524, 55.552353], - [37.705614, 55.552353], - [37.705614, 55.552263], - [37.705524, 55.552263] + [37.705525, 55.551992], + [37.705525, 55.552082], + [37.705615, 55.552082], + [37.705615, 55.551992], + [37.705525, 55.551992] ] ] } @@ -23224,11 +23160,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705524, 55.552353], - [37.705524, 55.552443], - [37.705614, 55.552443], - [37.705614, 55.552353], - [37.705524, 55.552353] + [37.705525, 55.552082], + [37.705525, 55.552171], + [37.705615, 55.552171], + [37.705615, 55.552082], + [37.705525, 55.552082] ] ] } @@ -23240,11 +23176,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705524, 55.552443], - [37.705524, 55.552533], - [37.705614, 55.552533], - [37.705614, 55.552443], - [37.705524, 55.552443] + [37.705525, 55.552171], + [37.705525, 55.552261], + [37.705615, 55.552261], + [37.705615, 55.552171], + [37.705525, 55.552171] ] ] } @@ -23256,11 +23192,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705524, 55.552533], - [37.705524, 55.552623], - [37.705614, 55.552623], - [37.705614, 55.552533], - [37.705524, 55.552533] + [37.705525, 55.552261], + [37.705525, 55.552351], + [37.705615, 55.552351], + [37.705615, 55.552261], + [37.705525, 55.552261] ] ] } @@ -23272,11 +23208,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705524, 55.552623], - [37.705524, 55.552712], - [37.705614, 55.552712], - [37.705614, 55.552623], - [37.705524, 55.552623] + [37.705525, 55.552351], + [37.705525, 55.552441], + [37.705615, 55.552441], + [37.705615, 55.552351], + [37.705525, 55.552351] ] ] } @@ -23288,11 +23224,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705524, 55.552712], - [37.705524, 55.552802], - [37.705614, 55.552802], - [37.705614, 55.552712], - [37.705524, 55.552712] + [37.705525, 55.552441], + [37.705525, 55.552531], + [37.705615, 55.552531], + [37.705615, 55.552441], + [37.705525, 55.552441] ] ] } @@ -23304,11 +23240,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705524, 55.552802], - [37.705524, 55.552892], - [37.705614, 55.552892], - [37.705614, 55.552802], - [37.705524, 55.552802] + [37.705525, 55.552531], + [37.705525, 55.552621], + [37.705615, 55.552621], + [37.705615, 55.552531], + [37.705525, 55.552531] ] ] } @@ -23320,11 +23256,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705524, 55.552892], - [37.705524, 55.552982], - [37.705614, 55.552982], - [37.705614, 55.552892], - [37.705524, 55.552892] + [37.705525, 55.552621], + [37.705525, 55.552711], + [37.705615, 55.552711], + [37.705615, 55.552621], + [37.705525, 55.552621] ] ] } @@ -23336,11 +23272,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705524, 55.552982], - [37.705524, 55.553072], - [37.705614, 55.553072], - [37.705614, 55.552982], - [37.705524, 55.552982] + [37.705525, 55.552711], + [37.705525, 55.552801], + [37.705615, 55.552801], + [37.705615, 55.552711], + [37.705525, 55.552711] ] ] } @@ -23352,11 +23288,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705524, 55.553072], - [37.705524, 55.553162], - [37.705614, 55.553162], - [37.705614, 55.553072], - [37.705524, 55.553072] + [37.705525, 55.552801], + [37.705525, 55.552891], + [37.705615, 55.552891], + [37.705615, 55.552801], + [37.705525, 55.552801] ] ] } @@ -23368,11 +23304,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705524, 55.553162], - [37.705524, 55.553251], - [37.705614, 55.553251], - [37.705614, 55.553162], - [37.705524, 55.553162] + [37.705525, 55.552891], + [37.705525, 55.552981], + [37.705615, 55.552981], + [37.705615, 55.552891], + [37.705525, 55.552891] ] ] } @@ -23384,11 +23320,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705524, 55.553251], - [37.705524, 55.553341], - [37.705614, 55.553341], - [37.705614, 55.553251], - [37.705524, 55.553251] + [37.705525, 55.552981], + [37.705525, 55.553071], + [37.705615, 55.553071], + [37.705615, 55.552981], + [37.705525, 55.552981] ] ] } @@ -23400,11 +23336,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705524, 55.553341], - [37.705524, 55.553431], - [37.705614, 55.553431], - [37.705614, 55.553341], - [37.705524, 55.553341] + [37.705525, 55.553071], + [37.705525, 55.553161], + [37.705615, 55.553161], + [37.705615, 55.553071], + [37.705525, 55.553071] ] ] } @@ -23416,11 +23352,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705524, 55.553431], - [37.705524, 55.553521], - [37.705614, 55.553521], - [37.705614, 55.553431], - [37.705524, 55.553431] + [37.705525, 55.553161], + [37.705525, 55.553251], + [37.705615, 55.553251], + [37.705615, 55.553161], + [37.705525, 55.553161] ] ] } @@ -23432,11 +23368,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705524, 55.553521], - [37.705524, 55.553611], - [37.705614, 55.553611], - [37.705614, 55.553521], - [37.705524, 55.553521] + [37.705525, 55.553251], + [37.705525, 55.553341], + [37.705615, 55.553341], + [37.705615, 55.553251], + [37.705525, 55.553251] ] ] } @@ -23448,11 +23384,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705524, 55.553611], - [37.705524, 55.5537], - [37.705614, 55.5537], - [37.705614, 55.553611], - [37.705524, 55.553611] + [37.705525, 55.553341], + [37.705525, 55.553431], + [37.705615, 55.553431], + [37.705615, 55.553341], + [37.705525, 55.553341] ] ] } @@ -23464,11 +23400,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705524, 55.5537], - [37.705524, 55.55379], - [37.705614, 55.55379], - [37.705614, 55.5537], - [37.705524, 55.5537] + [37.705525, 55.553431], + [37.705525, 55.55352], + [37.705615, 55.55352], + [37.705615, 55.553431], + [37.705525, 55.553431] ] ] } @@ -23480,11 +23416,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705524, 55.55379], - [37.705524, 55.55388], - [37.705614, 55.55388], - [37.705614, 55.55379], - [37.705524, 55.55379] + [37.705525, 55.55352], + [37.705525, 55.55361], + [37.705615, 55.55361], + [37.705615, 55.55352], + [37.705525, 55.55352] ] ] } @@ -23496,11 +23432,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705524, 55.55388], - [37.705524, 55.55397], - [37.705614, 55.55397], - [37.705614, 55.55388], - [37.705524, 55.55388] + [37.705525, 55.55361], + [37.705525, 55.5537], + [37.705615, 55.5537], + [37.705615, 55.55361], + [37.705525, 55.55361] ] ] } @@ -23512,11 +23448,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705524, 55.55397], - [37.705524, 55.55406], - [37.705614, 55.55406], - [37.705614, 55.55397], - [37.705524, 55.55397] + [37.705525, 55.5537], + [37.705525, 55.55379], + [37.705615, 55.55379], + [37.705615, 55.5537], + [37.705525, 55.5537] ] ] } @@ -23528,11 +23464,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705524, 55.55406], - [37.705524, 55.55415], - [37.705614, 55.55415], - [37.705614, 55.55406], - [37.705524, 55.55406] + [37.705525, 55.55379], + [37.705525, 55.55388], + [37.705615, 55.55388], + [37.705615, 55.55379], + [37.705525, 55.55379] ] ] } @@ -23544,11 +23480,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705524, 55.55415], - [37.705524, 55.554239], - [37.705614, 55.554239], - [37.705614, 55.55415], - [37.705524, 55.55415] + [37.705525, 55.55388], + [37.705525, 55.55397], + [37.705615, 55.55397], + [37.705615, 55.55388], + [37.705525, 55.55388] ] ] } @@ -23560,11 +23496,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705524, 55.554239], - [37.705524, 55.554329], - [37.705614, 55.554329], - [37.705614, 55.554239], - [37.705524, 55.554239] + [37.705525, 55.55397], + [37.705525, 55.55406], + [37.705615, 55.55406], + [37.705615, 55.55397], + [37.705525, 55.55397] ] ] } @@ -23576,11 +23512,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705524, 55.554329], - [37.705524, 55.554419], - [37.705614, 55.554419], - [37.705614, 55.554329], - [37.705524, 55.554329] + [37.705525, 55.55406], + [37.705525, 55.55415], + [37.705615, 55.55415], + [37.705615, 55.55406], + [37.705525, 55.55406] ] ] } @@ -23592,11 +23528,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705524, 55.554419], - [37.705524, 55.554509], - [37.705614, 55.554509], - [37.705614, 55.554419], - [37.705524, 55.554419] + [37.705525, 55.55415], + [37.705525, 55.55424], + [37.705615, 55.55424], + [37.705615, 55.55415], + [37.705525, 55.55415] ] ] } @@ -23608,11 +23544,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705524, 55.554509], - [37.705524, 55.554599], - [37.705614, 55.554599], - [37.705614, 55.554509], - [37.705524, 55.554509] + [37.705525, 55.55424], + [37.705525, 55.55433], + [37.705615, 55.55433], + [37.705615, 55.55424], + [37.705525, 55.55424] ] ] } @@ -23624,11 +23560,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705524, 55.554599], - [37.705524, 55.554689], - [37.705614, 55.554689], - [37.705614, 55.554599], - [37.705524, 55.554599] + [37.705525, 55.55433], + [37.705525, 55.55442], + [37.705615, 55.55442], + [37.705615, 55.55433], + [37.705525, 55.55433] ] ] } @@ -23640,11 +23576,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705524, 55.554689], - [37.705524, 55.554778], - [37.705614, 55.554778], - [37.705614, 55.554689], - [37.705524, 55.554689] + [37.705525, 55.55442], + [37.705525, 55.55451], + [37.705615, 55.55451], + [37.705615, 55.55442], + [37.705525, 55.55442] ] ] } @@ -23656,11 +23592,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705524, 55.554778], - [37.705524, 55.554868], - [37.705614, 55.554868], - [37.705614, 55.554778], - [37.705524, 55.554778] + [37.705525, 55.55451], + [37.705525, 55.5546], + [37.705615, 55.5546], + [37.705615, 55.55451], + [37.705525, 55.55451] ] ] } @@ -23672,11 +23608,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705524, 55.554868], - [37.705524, 55.554958], - [37.705614, 55.554958], - [37.705614, 55.554868], - [37.705524, 55.554868] + [37.705525, 55.5546], + [37.705525, 55.55469], + [37.705615, 55.55469], + [37.705615, 55.5546], + [37.705525, 55.5546] ] ] } @@ -23688,11 +23624,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705524, 55.554958], - [37.705524, 55.555048], - [37.705614, 55.555048], - [37.705614, 55.554958], - [37.705524, 55.554958] + [37.705525, 55.55469], + [37.705525, 55.55478], + [37.705615, 55.55478], + [37.705615, 55.55469], + [37.705525, 55.55469] ] ] } @@ -23704,11 +23640,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705524, 55.555048], - [37.705524, 55.555138], - [37.705614, 55.555138], - [37.705614, 55.555048], - [37.705524, 55.555048] + [37.705525, 55.55478], + [37.705525, 55.554869], + [37.705615, 55.554869], + [37.705615, 55.55478], + [37.705525, 55.55478] ] ] } @@ -23720,11 +23656,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705524, 55.555138], - [37.705524, 55.555228], - [37.705614, 55.555228], - [37.705614, 55.555138], - [37.705524, 55.555138] + [37.705525, 55.554869], + [37.705525, 55.554959], + [37.705615, 55.554959], + [37.705615, 55.554869], + [37.705525, 55.554869] ] ] } @@ -23736,11 +23672,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705524, 55.555228], - [37.705524, 55.555317], - [37.705614, 55.555317], - [37.705614, 55.555228], - [37.705524, 55.555228] + [37.705525, 55.554959], + [37.705525, 55.555049], + [37.705615, 55.555049], + [37.705615, 55.554959], + [37.705525, 55.554959] ] ] } @@ -23752,11 +23688,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705614, 55.551724], - [37.705614, 55.551814], - [37.705703, 55.551814], - [37.705703, 55.551724], - [37.705614, 55.551724] + [37.705525, 55.555049], + [37.705525, 55.555139], + [37.705615, 55.555139], + [37.705615, 55.555049], + [37.705525, 55.555049] ] ] } @@ -23768,11 +23704,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705614, 55.551814], - [37.705614, 55.551904], - [37.705703, 55.551904], - [37.705703, 55.551814], - [37.705614, 55.551814] + [37.705525, 55.555139], + [37.705525, 55.555229], + [37.705615, 55.555229], + [37.705615, 55.555139], + [37.705525, 55.555139] ] ] } @@ -23784,11 +23720,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705614, 55.551904], - [37.705614, 55.551994], - [37.705703, 55.551994], - [37.705703, 55.551904], - [37.705614, 55.551904] + [37.705525, 55.555229], + [37.705525, 55.555319], + [37.705615, 55.555319], + [37.705615, 55.555229], + [37.705525, 55.555229] ] ] } @@ -23800,11 +23736,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705614, 55.551994], - [37.705614, 55.552084], - [37.705703, 55.552084], - [37.705703, 55.551994], - [37.705614, 55.551994] + [37.705615, 55.551722], + [37.705615, 55.551812], + [37.705705, 55.551812], + [37.705705, 55.551722], + [37.705615, 55.551722] ] ] } @@ -23816,11 +23752,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705614, 55.552084], - [37.705614, 55.552173], - [37.705703, 55.552173], - [37.705703, 55.552084], - [37.705614, 55.552084] + [37.705615, 55.551812], + [37.705615, 55.551902], + [37.705705, 55.551902], + [37.705705, 55.551812], + [37.705615, 55.551812] ] ] } @@ -23832,11 +23768,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705614, 55.552173], - [37.705614, 55.552263], - [37.705703, 55.552263], - [37.705703, 55.552173], - [37.705614, 55.552173] + [37.705615, 55.551902], + [37.705615, 55.551992], + [37.705705, 55.551992], + [37.705705, 55.551902], + [37.705615, 55.551902] ] ] } @@ -23848,11 +23784,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705614, 55.552263], - [37.705614, 55.552353], - [37.705703, 55.552353], - [37.705703, 55.552263], - [37.705614, 55.552263] + [37.705615, 55.551992], + [37.705615, 55.552082], + [37.705705, 55.552082], + [37.705705, 55.551992], + [37.705615, 55.551992] ] ] } @@ -23864,11 +23800,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705614, 55.552353], - [37.705614, 55.552443], - [37.705703, 55.552443], - [37.705703, 55.552353], - [37.705614, 55.552353] + [37.705615, 55.552082], + [37.705615, 55.552171], + [37.705705, 55.552171], + [37.705705, 55.552082], + [37.705615, 55.552082] ] ] } @@ -23880,11 +23816,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705614, 55.552443], - [37.705614, 55.552533], - [37.705703, 55.552533], - [37.705703, 55.552443], - [37.705614, 55.552443] + [37.705615, 55.552171], + [37.705615, 55.552261], + [37.705705, 55.552261], + [37.705705, 55.552171], + [37.705615, 55.552171] ] ] } @@ -23896,11 +23832,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705614, 55.552533], - [37.705614, 55.552623], - [37.705703, 55.552623], - [37.705703, 55.552533], - [37.705614, 55.552533] + [37.705615, 55.552261], + [37.705615, 55.552351], + [37.705705, 55.552351], + [37.705705, 55.552261], + [37.705615, 55.552261] ] ] } @@ -23912,11 +23848,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705614, 55.552623], - [37.705614, 55.552712], - [37.705703, 55.552712], - [37.705703, 55.552623], - [37.705614, 55.552623] + [37.705615, 55.552351], + [37.705615, 55.552441], + [37.705705, 55.552441], + [37.705705, 55.552351], + [37.705615, 55.552351] ] ] } @@ -23928,11 +23864,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705614, 55.552712], - [37.705614, 55.552802], - [37.705703, 55.552802], - [37.705703, 55.552712], - [37.705614, 55.552712] + [37.705615, 55.552441], + [37.705615, 55.552531], + [37.705705, 55.552531], + [37.705705, 55.552441], + [37.705615, 55.552441] ] ] } @@ -23944,11 +23880,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705614, 55.552802], - [37.705614, 55.552892], - [37.705703, 55.552892], - [37.705703, 55.552802], - [37.705614, 55.552802] + [37.705615, 55.552531], + [37.705615, 55.552621], + [37.705705, 55.552621], + [37.705705, 55.552531], + [37.705615, 55.552531] ] ] } @@ -23960,11 +23896,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705614, 55.552892], - [37.705614, 55.552982], - [37.705703, 55.552982], - [37.705703, 55.552892], - [37.705614, 55.552892] + [37.705615, 55.552621], + [37.705615, 55.552711], + [37.705705, 55.552711], + [37.705705, 55.552621], + [37.705615, 55.552621] ] ] } @@ -23976,11 +23912,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705614, 55.552982], - [37.705614, 55.553072], - [37.705703, 55.553072], - [37.705703, 55.552982], - [37.705614, 55.552982] + [37.705615, 55.552711], + [37.705615, 55.552801], + [37.705705, 55.552801], + [37.705705, 55.552711], + [37.705615, 55.552711] ] ] } @@ -23992,11 +23928,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705614, 55.553072], - [37.705614, 55.553162], - [37.705703, 55.553162], - [37.705703, 55.553072], - [37.705614, 55.553072] + [37.705615, 55.552801], + [37.705615, 55.552891], + [37.705705, 55.552891], + [37.705705, 55.552801], + [37.705615, 55.552801] ] ] } @@ -24008,11 +23944,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705614, 55.553162], - [37.705614, 55.553251], - [37.705703, 55.553251], - [37.705703, 55.553162], - [37.705614, 55.553162] + [37.705615, 55.552891], + [37.705615, 55.552981], + [37.705705, 55.552981], + [37.705705, 55.552891], + [37.705615, 55.552891] ] ] } @@ -24024,11 +23960,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705614, 55.553251], - [37.705614, 55.553341], - [37.705703, 55.553341], - [37.705703, 55.553251], - [37.705614, 55.553251] + [37.705615, 55.552981], + [37.705615, 55.553071], + [37.705705, 55.553071], + [37.705705, 55.552981], + [37.705615, 55.552981] ] ] } @@ -24040,11 +23976,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705614, 55.553341], - [37.705614, 55.553431], - [37.705703, 55.553431], - [37.705703, 55.553341], - [37.705614, 55.553341] + [37.705615, 55.553071], + [37.705615, 55.553161], + [37.705705, 55.553161], + [37.705705, 55.553071], + [37.705615, 55.553071] ] ] } @@ -24056,11 +23992,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705614, 55.553431], - [37.705614, 55.553521], - [37.705703, 55.553521], - [37.705703, 55.553431], - [37.705614, 55.553431] + [37.705615, 55.553161], + [37.705615, 55.553251], + [37.705705, 55.553251], + [37.705705, 55.553161], + [37.705615, 55.553161] ] ] } @@ -24072,11 +24008,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705614, 55.553521], - [37.705614, 55.553611], - [37.705703, 55.553611], - [37.705703, 55.553521], - [37.705614, 55.553521] + [37.705615, 55.553251], + [37.705615, 55.553341], + [37.705705, 55.553341], + [37.705705, 55.553251], + [37.705615, 55.553251] ] ] } @@ -24088,11 +24024,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705614, 55.553611], - [37.705614, 55.5537], - [37.705703, 55.5537], - [37.705703, 55.553611], - [37.705614, 55.553611] + [37.705615, 55.553341], + [37.705615, 55.553431], + [37.705705, 55.553431], + [37.705705, 55.553341], + [37.705615, 55.553341] ] ] } @@ -24104,11 +24040,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705614, 55.5537], - [37.705614, 55.55379], - [37.705703, 55.55379], - [37.705703, 55.5537], - [37.705614, 55.5537] + [37.705615, 55.553431], + [37.705615, 55.55352], + [37.705705, 55.55352], + [37.705705, 55.553431], + [37.705615, 55.553431] ] ] } @@ -24120,11 +24056,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705614, 55.55379], - [37.705614, 55.55388], - [37.705703, 55.55388], - [37.705703, 55.55379], - [37.705614, 55.55379] + [37.705615, 55.55352], + [37.705615, 55.55361], + [37.705705, 55.55361], + [37.705705, 55.55352], + [37.705615, 55.55352] ] ] } @@ -24136,11 +24072,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705614, 55.55388], - [37.705614, 55.55397], - [37.705703, 55.55397], - [37.705703, 55.55388], - [37.705614, 55.55388] + [37.705615, 55.55361], + [37.705615, 55.5537], + [37.705705, 55.5537], + [37.705705, 55.55361], + [37.705615, 55.55361] ] ] } @@ -24152,11 +24088,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705614, 55.55397], - [37.705614, 55.55406], - [37.705703, 55.55406], - [37.705703, 55.55397], - [37.705614, 55.55397] + [37.705615, 55.5537], + [37.705615, 55.55379], + [37.705705, 55.55379], + [37.705705, 55.5537], + [37.705615, 55.5537] ] ] } @@ -24168,11 +24104,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705614, 55.55406], - [37.705614, 55.55415], - [37.705703, 55.55415], - [37.705703, 55.55406], - [37.705614, 55.55406] + [37.705615, 55.55379], + [37.705615, 55.55388], + [37.705705, 55.55388], + [37.705705, 55.55379], + [37.705615, 55.55379] ] ] } @@ -24184,11 +24120,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705614, 55.55415], - [37.705614, 55.554239], - [37.705703, 55.554239], - [37.705703, 55.55415], - [37.705614, 55.55415] + [37.705615, 55.55388], + [37.705615, 55.55397], + [37.705705, 55.55397], + [37.705705, 55.55388], + [37.705615, 55.55388] ] ] } @@ -24200,11 +24136,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705614, 55.554239], - [37.705614, 55.554329], - [37.705703, 55.554329], - [37.705703, 55.554239], - [37.705614, 55.554239] + [37.705615, 55.55397], + [37.705615, 55.55406], + [37.705705, 55.55406], + [37.705705, 55.55397], + [37.705615, 55.55397] ] ] } @@ -24216,11 +24152,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705614, 55.554329], - [37.705614, 55.554419], - [37.705703, 55.554419], - [37.705703, 55.554329], - [37.705614, 55.554329] + [37.705615, 55.55406], + [37.705615, 55.55415], + [37.705705, 55.55415], + [37.705705, 55.55406], + [37.705615, 55.55406] ] ] } @@ -24232,11 +24168,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705614, 55.554419], - [37.705614, 55.554509], - [37.705703, 55.554509], - [37.705703, 55.554419], - [37.705614, 55.554419] + [37.705615, 55.55415], + [37.705615, 55.55424], + [37.705705, 55.55424], + [37.705705, 55.55415], + [37.705615, 55.55415] ] ] } @@ -24248,11 +24184,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705614, 55.554509], - [37.705614, 55.554599], - [37.705703, 55.554599], - [37.705703, 55.554509], - [37.705614, 55.554509] + [37.705615, 55.55424], + [37.705615, 55.55433], + [37.705705, 55.55433], + [37.705705, 55.55424], + [37.705615, 55.55424] ] ] } @@ -24264,11 +24200,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705614, 55.554599], - [37.705614, 55.554689], - [37.705703, 55.554689], - [37.705703, 55.554599], - [37.705614, 55.554599] + [37.705615, 55.55433], + [37.705615, 55.55442], + [37.705705, 55.55442], + [37.705705, 55.55433], + [37.705615, 55.55433] ] ] } @@ -24280,11 +24216,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705614, 55.554689], - [37.705614, 55.554778], - [37.705703, 55.554778], - [37.705703, 55.554689], - [37.705614, 55.554689] + [37.705615, 55.55442], + [37.705615, 55.55451], + [37.705705, 55.55451], + [37.705705, 55.55442], + [37.705615, 55.55442] ] ] } @@ -24296,11 +24232,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705614, 55.554778], - [37.705614, 55.554868], - [37.705703, 55.554868], - [37.705703, 55.554778], - [37.705614, 55.554778] + [37.705615, 55.55451], + [37.705615, 55.5546], + [37.705705, 55.5546], + [37.705705, 55.55451], + [37.705615, 55.55451] ] ] } @@ -24312,11 +24248,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705614, 55.554868], - [37.705614, 55.554958], - [37.705703, 55.554958], - [37.705703, 55.554868], - [37.705614, 55.554868] + [37.705615, 55.5546], + [37.705615, 55.55469], + [37.705705, 55.55469], + [37.705705, 55.5546], + [37.705615, 55.5546] ] ] } @@ -24328,11 +24264,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705614, 55.554958], - [37.705614, 55.555048], - [37.705703, 55.555048], - [37.705703, 55.554958], - [37.705614, 55.554958] + [37.705615, 55.55469], + [37.705615, 55.55478], + [37.705705, 55.55478], + [37.705705, 55.55469], + [37.705615, 55.55469] ] ] } @@ -24344,11 +24280,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705614, 55.555048], - [37.705614, 55.555138], - [37.705703, 55.555138], - [37.705703, 55.555048], - [37.705614, 55.555048] + [37.705615, 55.55478], + [37.705615, 55.554869], + [37.705705, 55.554869], + [37.705705, 55.55478], + [37.705615, 55.55478] ] ] } @@ -24360,11 +24296,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705614, 55.555138], - [37.705614, 55.555228], - [37.705703, 55.555228], - [37.705703, 55.555138], - [37.705614, 55.555138] + [37.705615, 55.554869], + [37.705615, 55.554959], + [37.705705, 55.554959], + [37.705705, 55.554869], + [37.705615, 55.554869] ] ] } @@ -24376,11 +24312,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705614, 55.555228], - [37.705614, 55.555317], - [37.705703, 55.555317], - [37.705703, 55.555228], - [37.705614, 55.555228] + [37.705615, 55.554959], + [37.705615, 55.555049], + [37.705705, 55.555049], + [37.705705, 55.554959], + [37.705615, 55.554959] ] ] } @@ -24392,11 +24328,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705703, 55.551634], - [37.705703, 55.551724], - [37.705793, 55.551724], - [37.705793, 55.551634], - [37.705703, 55.551634] + [37.705615, 55.555049], + [37.705615, 55.555139], + [37.705705, 55.555139], + [37.705705, 55.555049], + [37.705615, 55.555049] ] ] } @@ -24408,11 +24344,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705703, 55.551724], - [37.705703, 55.551814], - [37.705793, 55.551814], - [37.705793, 55.551724], - [37.705703, 55.551724] + [37.705615, 55.555139], + [37.705615, 55.555229], + [37.705705, 55.555229], + [37.705705, 55.555139], + [37.705615, 55.555139] ] ] } @@ -24424,11 +24360,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705703, 55.551814], - [37.705703, 55.551904], - [37.705793, 55.551904], - [37.705793, 55.551814], - [37.705703, 55.551814] + [37.705615, 55.555229], + [37.705615, 55.555319], + [37.705705, 55.555319], + [37.705705, 55.555229], + [37.705615, 55.555229] ] ] } @@ -24440,11 +24376,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705703, 55.551904], - [37.705703, 55.551994], - [37.705793, 55.551994], - [37.705793, 55.551904], - [37.705703, 55.551904] + [37.705705, 55.551632], + [37.705705, 55.551722], + [37.705795, 55.551722], + [37.705795, 55.551632], + [37.705705, 55.551632] ] ] } @@ -24456,11 +24392,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705703, 55.551994], - [37.705703, 55.552084], - [37.705793, 55.552084], - [37.705793, 55.551994], - [37.705703, 55.551994] + [37.705705, 55.551722], + [37.705705, 55.551812], + [37.705795, 55.551812], + [37.705795, 55.551722], + [37.705705, 55.551722] ] ] } @@ -24472,11 +24408,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705703, 55.552084], - [37.705703, 55.552173], - [37.705793, 55.552173], - [37.705793, 55.552084], - [37.705703, 55.552084] + [37.705705, 55.551812], + [37.705705, 55.551902], + [37.705795, 55.551902], + [37.705795, 55.551812], + [37.705705, 55.551812] ] ] } @@ -24488,11 +24424,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705703, 55.552173], - [37.705703, 55.552263], - [37.705793, 55.552263], - [37.705793, 55.552173], - [37.705703, 55.552173] + [37.705705, 55.551902], + [37.705705, 55.551992], + [37.705795, 55.551992], + [37.705795, 55.551902], + [37.705705, 55.551902] ] ] } @@ -24504,11 +24440,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705703, 55.552263], - [37.705703, 55.552353], - [37.705793, 55.552353], - [37.705793, 55.552263], - [37.705703, 55.552263] + [37.705705, 55.551992], + [37.705705, 55.552082], + [37.705795, 55.552082], + [37.705795, 55.551992], + [37.705705, 55.551992] ] ] } @@ -24520,11 +24456,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705703, 55.552353], - [37.705703, 55.552443], - [37.705793, 55.552443], - [37.705793, 55.552353], - [37.705703, 55.552353] + [37.705705, 55.552082], + [37.705705, 55.552171], + [37.705795, 55.552171], + [37.705795, 55.552082], + [37.705705, 55.552082] ] ] } @@ -24536,11 +24472,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705703, 55.552443], - [37.705703, 55.552533], - [37.705793, 55.552533], - [37.705793, 55.552443], - [37.705703, 55.552443] + [37.705705, 55.552171], + [37.705705, 55.552261], + [37.705795, 55.552261], + [37.705795, 55.552171], + [37.705705, 55.552171] ] ] } @@ -24552,11 +24488,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705703, 55.552533], - [37.705703, 55.552623], - [37.705793, 55.552623], - [37.705793, 55.552533], - [37.705703, 55.552533] + [37.705705, 55.552261], + [37.705705, 55.552351], + [37.705795, 55.552351], + [37.705795, 55.552261], + [37.705705, 55.552261] ] ] } @@ -24568,11 +24504,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705703, 55.552623], - [37.705703, 55.552712], - [37.705793, 55.552712], - [37.705793, 55.552623], - [37.705703, 55.552623] + [37.705705, 55.552351], + [37.705705, 55.552441], + [37.705795, 55.552441], + [37.705795, 55.552351], + [37.705705, 55.552351] ] ] } @@ -24584,11 +24520,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705703, 55.552712], - [37.705703, 55.552802], - [37.705793, 55.552802], - [37.705793, 55.552712], - [37.705703, 55.552712] + [37.705705, 55.552441], + [37.705705, 55.552531], + [37.705795, 55.552531], + [37.705795, 55.552441], + [37.705705, 55.552441] ] ] } @@ -24600,11 +24536,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705703, 55.552802], - [37.705703, 55.552892], - [37.705793, 55.552892], - [37.705793, 55.552802], - [37.705703, 55.552802] + [37.705705, 55.552531], + [37.705705, 55.552621], + [37.705795, 55.552621], + [37.705795, 55.552531], + [37.705705, 55.552531] ] ] } @@ -24616,11 +24552,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705703, 55.552892], - [37.705703, 55.552982], - [37.705793, 55.552982], - [37.705793, 55.552892], - [37.705703, 55.552892] + [37.705705, 55.552621], + [37.705705, 55.552711], + [37.705795, 55.552711], + [37.705795, 55.552621], + [37.705705, 55.552621] ] ] } @@ -24632,11 +24568,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705703, 55.552982], - [37.705703, 55.553072], - [37.705793, 55.553072], - [37.705793, 55.552982], - [37.705703, 55.552982] + [37.705705, 55.552711], + [37.705705, 55.552801], + [37.705795, 55.552801], + [37.705795, 55.552711], + [37.705705, 55.552711] ] ] } @@ -24648,11 +24584,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705703, 55.553072], - [37.705703, 55.553162], - [37.705793, 55.553162], - [37.705793, 55.553072], - [37.705703, 55.553072] + [37.705705, 55.552801], + [37.705705, 55.552891], + [37.705795, 55.552891], + [37.705795, 55.552801], + [37.705705, 55.552801] ] ] } @@ -24664,11 +24600,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705703, 55.553162], - [37.705703, 55.553251], - [37.705793, 55.553251], - [37.705793, 55.553162], - [37.705703, 55.553162] + [37.705705, 55.552891], + [37.705705, 55.552981], + [37.705795, 55.552981], + [37.705795, 55.552891], + [37.705705, 55.552891] ] ] } @@ -24680,11 +24616,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705703, 55.553251], - [37.705703, 55.553341], - [37.705793, 55.553341], - [37.705793, 55.553251], - [37.705703, 55.553251] + [37.705705, 55.552981], + [37.705705, 55.553071], + [37.705795, 55.553071], + [37.705795, 55.552981], + [37.705705, 55.552981] ] ] } @@ -24696,11 +24632,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705703, 55.553341], - [37.705703, 55.553431], - [37.705793, 55.553431], - [37.705793, 55.553341], - [37.705703, 55.553341] + [37.705705, 55.553071], + [37.705705, 55.553161], + [37.705795, 55.553161], + [37.705795, 55.553071], + [37.705705, 55.553071] ] ] } @@ -24712,11 +24648,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705703, 55.553431], - [37.705703, 55.553521], - [37.705793, 55.553521], - [37.705793, 55.553431], - [37.705703, 55.553431] + [37.705705, 55.553161], + [37.705705, 55.553251], + [37.705795, 55.553251], + [37.705795, 55.553161], + [37.705705, 55.553161] ] ] } @@ -24728,11 +24664,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705703, 55.553521], - [37.705703, 55.553611], - [37.705793, 55.553611], - [37.705793, 55.553521], - [37.705703, 55.553521] + [37.705705, 55.553251], + [37.705705, 55.553341], + [37.705795, 55.553341], + [37.705795, 55.553251], + [37.705705, 55.553251] ] ] } @@ -24744,11 +24680,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705703, 55.553611], - [37.705703, 55.5537], - [37.705793, 55.5537], - [37.705793, 55.553611], - [37.705703, 55.553611] + [37.705705, 55.553341], + [37.705705, 55.553431], + [37.705795, 55.553431], + [37.705795, 55.553341], + [37.705705, 55.553341] ] ] } @@ -24760,11 +24696,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705703, 55.5537], - [37.705703, 55.55379], - [37.705793, 55.55379], - [37.705793, 55.5537], - [37.705703, 55.5537] + [37.705705, 55.553431], + [37.705705, 55.55352], + [37.705795, 55.55352], + [37.705795, 55.553431], + [37.705705, 55.553431] ] ] } @@ -24776,11 +24712,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705703, 55.55379], - [37.705703, 55.55388], - [37.705793, 55.55388], - [37.705793, 55.55379], - [37.705703, 55.55379] + [37.705705, 55.55352], + [37.705705, 55.55361], + [37.705795, 55.55361], + [37.705795, 55.55352], + [37.705705, 55.55352] ] ] } @@ -24792,11 +24728,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705703, 55.55388], - [37.705703, 55.55397], - [37.705793, 55.55397], - [37.705793, 55.55388], - [37.705703, 55.55388] + [37.705705, 55.55361], + [37.705705, 55.5537], + [37.705795, 55.5537], + [37.705795, 55.55361], + [37.705705, 55.55361] ] ] } @@ -24808,11 +24744,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705703, 55.55397], - [37.705703, 55.55406], - [37.705793, 55.55406], - [37.705793, 55.55397], - [37.705703, 55.55397] + [37.705705, 55.5537], + [37.705705, 55.55379], + [37.705795, 55.55379], + [37.705795, 55.5537], + [37.705705, 55.5537] ] ] } @@ -24824,11 +24760,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705703, 55.55406], - [37.705703, 55.55415], - [37.705793, 55.55415], - [37.705793, 55.55406], - [37.705703, 55.55406] + [37.705705, 55.55379], + [37.705705, 55.55388], + [37.705795, 55.55388], + [37.705795, 55.55379], + [37.705705, 55.55379] ] ] } @@ -24840,11 +24776,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705703, 55.55415], - [37.705703, 55.554239], - [37.705793, 55.554239], - [37.705793, 55.55415], - [37.705703, 55.55415] + [37.705705, 55.55388], + [37.705705, 55.55397], + [37.705795, 55.55397], + [37.705795, 55.55388], + [37.705705, 55.55388] ] ] } @@ -24856,11 +24792,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705703, 55.554239], - [37.705703, 55.554329], - [37.705793, 55.554329], - [37.705793, 55.554239], - [37.705703, 55.554239] + [37.705705, 55.55397], + [37.705705, 55.55406], + [37.705795, 55.55406], + [37.705795, 55.55397], + [37.705705, 55.55397] ] ] } @@ -24872,11 +24808,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705703, 55.554329], - [37.705703, 55.554419], - [37.705793, 55.554419], - [37.705793, 55.554329], - [37.705703, 55.554329] + [37.705705, 55.55406], + [37.705705, 55.55415], + [37.705795, 55.55415], + [37.705795, 55.55406], + [37.705705, 55.55406] ] ] } @@ -24888,11 +24824,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705703, 55.554419], - [37.705703, 55.554509], - [37.705793, 55.554509], - [37.705793, 55.554419], - [37.705703, 55.554419] + [37.705705, 55.55415], + [37.705705, 55.55424], + [37.705795, 55.55424], + [37.705795, 55.55415], + [37.705705, 55.55415] ] ] } @@ -24904,11 +24840,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705703, 55.554509], - [37.705703, 55.554599], - [37.705793, 55.554599], - [37.705793, 55.554509], - [37.705703, 55.554509] + [37.705705, 55.55424], + [37.705705, 55.55433], + [37.705795, 55.55433], + [37.705795, 55.55424], + [37.705705, 55.55424] ] ] } @@ -24920,11 +24856,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705703, 55.554599], - [37.705703, 55.554689], - [37.705793, 55.554689], - [37.705793, 55.554599], - [37.705703, 55.554599] + [37.705705, 55.55433], + [37.705705, 55.55442], + [37.705795, 55.55442], + [37.705795, 55.55433], + [37.705705, 55.55433] ] ] } @@ -24936,11 +24872,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705703, 55.554689], - [37.705703, 55.554778], - [37.705793, 55.554778], - [37.705793, 55.554689], - [37.705703, 55.554689] + [37.705705, 55.55442], + [37.705705, 55.55451], + [37.705795, 55.55451], + [37.705795, 55.55442], + [37.705705, 55.55442] ] ] } @@ -24952,11 +24888,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705703, 55.554778], - [37.705703, 55.554868], - [37.705793, 55.554868], - [37.705793, 55.554778], - [37.705703, 55.554778] + [37.705705, 55.55451], + [37.705705, 55.5546], + [37.705795, 55.5546], + [37.705795, 55.55451], + [37.705705, 55.55451] ] ] } @@ -24968,11 +24904,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705703, 55.554868], - [37.705703, 55.554958], - [37.705793, 55.554958], - [37.705793, 55.554868], - [37.705703, 55.554868] + [37.705705, 55.5546], + [37.705705, 55.55469], + [37.705795, 55.55469], + [37.705795, 55.5546], + [37.705705, 55.5546] ] ] } @@ -24984,11 +24920,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705703, 55.554958], - [37.705703, 55.555048], - [37.705793, 55.555048], - [37.705793, 55.554958], - [37.705703, 55.554958] + [37.705705, 55.55469], + [37.705705, 55.55478], + [37.705795, 55.55478], + [37.705795, 55.55469], + [37.705705, 55.55469] ] ] } @@ -25000,11 +24936,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705703, 55.555048], - [37.705703, 55.555138], - [37.705793, 55.555138], - [37.705793, 55.555048], - [37.705703, 55.555048] + [37.705705, 55.55478], + [37.705705, 55.554869], + [37.705795, 55.554869], + [37.705795, 55.55478], + [37.705705, 55.55478] ] ] } @@ -25016,11 +24952,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705703, 55.555138], - [37.705703, 55.555228], - [37.705793, 55.555228], - [37.705793, 55.555138], - [37.705703, 55.555138] + [37.705705, 55.554869], + [37.705705, 55.554959], + [37.705795, 55.554959], + [37.705795, 55.554869], + [37.705705, 55.554869] ] ] } @@ -25032,11 +24968,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705703, 55.555228], - [37.705703, 55.555317], - [37.705793, 55.555317], - [37.705793, 55.555228], - [37.705703, 55.555228] + [37.705705, 55.554959], + [37.705705, 55.555049], + [37.705795, 55.555049], + [37.705795, 55.554959], + [37.705705, 55.554959] ] ] } @@ -25048,11 +24984,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705703, 55.555317], - [37.705703, 55.555407], - [37.705793, 55.555407], - [37.705793, 55.555317], - [37.705703, 55.555317] + [37.705705, 55.555049], + [37.705705, 55.555139], + [37.705795, 55.555139], + [37.705795, 55.555049], + [37.705705, 55.555049] ] ] } @@ -25064,11 +25000,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705793, 55.551634], - [37.705793, 55.551724], - [37.705883, 55.551724], - [37.705883, 55.551634], - [37.705793, 55.551634] + [37.705705, 55.555139], + [37.705705, 55.555229], + [37.705795, 55.555229], + [37.705795, 55.555139], + [37.705705, 55.555139] ] ] } @@ -25080,11 +25016,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705793, 55.551724], - [37.705793, 55.551814], - [37.705883, 55.551814], - [37.705883, 55.551724], - [37.705793, 55.551724] + [37.705705, 55.555229], + [37.705705, 55.555319], + [37.705795, 55.555319], + [37.705795, 55.555229], + [37.705705, 55.555229] ] ] } @@ -25096,11 +25032,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705793, 55.551814], - [37.705793, 55.551904], - [37.705883, 55.551904], - [37.705883, 55.551814], - [37.705793, 55.551814] + [37.705795, 55.551632], + [37.705795, 55.551722], + [37.705885, 55.551722], + [37.705885, 55.551632], + [37.705795, 55.551632] ] ] } @@ -25112,11 +25048,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705793, 55.551904], - [37.705793, 55.551994], - [37.705883, 55.551994], - [37.705883, 55.551904], - [37.705793, 55.551904] + [37.705795, 55.551722], + [37.705795, 55.551812], + [37.705885, 55.551812], + [37.705885, 55.551722], + [37.705795, 55.551722] ] ] } @@ -25128,11 +25064,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705793, 55.551994], - [37.705793, 55.552084], - [37.705883, 55.552084], - [37.705883, 55.551994], - [37.705793, 55.551994] + [37.705795, 55.551812], + [37.705795, 55.551902], + [37.705885, 55.551902], + [37.705885, 55.551812], + [37.705795, 55.551812] ] ] } @@ -25144,11 +25080,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705793, 55.552084], - [37.705793, 55.552173], - [37.705883, 55.552173], - [37.705883, 55.552084], - [37.705793, 55.552084] + [37.705795, 55.551902], + [37.705795, 55.551992], + [37.705885, 55.551992], + [37.705885, 55.551902], + [37.705795, 55.551902] ] ] } @@ -25160,11 +25096,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705793, 55.552173], - [37.705793, 55.552263], - [37.705883, 55.552263], - [37.705883, 55.552173], - [37.705793, 55.552173] + [37.705795, 55.551992], + [37.705795, 55.552082], + [37.705885, 55.552082], + [37.705885, 55.551992], + [37.705795, 55.551992] ] ] } @@ -25176,11 +25112,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705793, 55.552263], - [37.705793, 55.552353], - [37.705883, 55.552353], - [37.705883, 55.552263], - [37.705793, 55.552263] + [37.705795, 55.552082], + [37.705795, 55.552171], + [37.705885, 55.552171], + [37.705885, 55.552082], + [37.705795, 55.552082] ] ] } @@ -25192,11 +25128,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705793, 55.552353], - [37.705793, 55.552443], - [37.705883, 55.552443], - [37.705883, 55.552353], - [37.705793, 55.552353] + [37.705795, 55.552171], + [37.705795, 55.552261], + [37.705885, 55.552261], + [37.705885, 55.552171], + [37.705795, 55.552171] ] ] } @@ -25208,11 +25144,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705793, 55.552443], - [37.705793, 55.552533], - [37.705883, 55.552533], - [37.705883, 55.552443], - [37.705793, 55.552443] + [37.705795, 55.552261], + [37.705795, 55.552351], + [37.705885, 55.552351], + [37.705885, 55.552261], + [37.705795, 55.552261] ] ] } @@ -25224,11 +25160,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705793, 55.552533], - [37.705793, 55.552623], - [37.705883, 55.552623], - [37.705883, 55.552533], - [37.705793, 55.552533] + [37.705795, 55.552351], + [37.705795, 55.552441], + [37.705885, 55.552441], + [37.705885, 55.552351], + [37.705795, 55.552351] ] ] } @@ -25240,11 +25176,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705793, 55.552623], - [37.705793, 55.552712], - [37.705883, 55.552712], - [37.705883, 55.552623], - [37.705793, 55.552623] + [37.705795, 55.552441], + [37.705795, 55.552531], + [37.705885, 55.552531], + [37.705885, 55.552441], + [37.705795, 55.552441] ] ] } @@ -25256,11 +25192,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705793, 55.552712], - [37.705793, 55.552802], - [37.705883, 55.552802], - [37.705883, 55.552712], - [37.705793, 55.552712] + [37.705795, 55.552531], + [37.705795, 55.552621], + [37.705885, 55.552621], + [37.705885, 55.552531], + [37.705795, 55.552531] ] ] } @@ -25272,11 +25208,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705793, 55.552802], - [37.705793, 55.552892], - [37.705883, 55.552892], - [37.705883, 55.552802], - [37.705793, 55.552802] + [37.705795, 55.552621], + [37.705795, 55.552711], + [37.705885, 55.552711], + [37.705885, 55.552621], + [37.705795, 55.552621] ] ] } @@ -25288,11 +25224,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705793, 55.552892], - [37.705793, 55.552982], - [37.705883, 55.552982], - [37.705883, 55.552892], - [37.705793, 55.552892] + [37.705795, 55.552711], + [37.705795, 55.552801], + [37.705885, 55.552801], + [37.705885, 55.552711], + [37.705795, 55.552711] ] ] } @@ -25304,11 +25240,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705793, 55.552982], - [37.705793, 55.553072], - [37.705883, 55.553072], - [37.705883, 55.552982], - [37.705793, 55.552982] + [37.705795, 55.552801], + [37.705795, 55.552891], + [37.705885, 55.552891], + [37.705885, 55.552801], + [37.705795, 55.552801] ] ] } @@ -25320,11 +25256,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705793, 55.553072], - [37.705793, 55.553162], - [37.705883, 55.553162], - [37.705883, 55.553072], - [37.705793, 55.553072] + [37.705795, 55.552891], + [37.705795, 55.552981], + [37.705885, 55.552981], + [37.705885, 55.552891], + [37.705795, 55.552891] ] ] } @@ -25336,11 +25272,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705793, 55.553162], - [37.705793, 55.553251], - [37.705883, 55.553251], - [37.705883, 55.553162], - [37.705793, 55.553162] + [37.705795, 55.552981], + [37.705795, 55.553071], + [37.705885, 55.553071], + [37.705885, 55.552981], + [37.705795, 55.552981] ] ] } @@ -25352,11 +25288,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705793, 55.553251], - [37.705793, 55.553341], - [37.705883, 55.553341], - [37.705883, 55.553251], - [37.705793, 55.553251] + [37.705795, 55.553071], + [37.705795, 55.553161], + [37.705885, 55.553161], + [37.705885, 55.553071], + [37.705795, 55.553071] ] ] } @@ -25368,11 +25304,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705793, 55.553341], - [37.705793, 55.553431], - [37.705883, 55.553431], - [37.705883, 55.553341], - [37.705793, 55.553341] + [37.705795, 55.553161], + [37.705795, 55.553251], + [37.705885, 55.553251], + [37.705885, 55.553161], + [37.705795, 55.553161] ] ] } @@ -25384,11 +25320,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705793, 55.553431], - [37.705793, 55.553521], - [37.705883, 55.553521], - [37.705883, 55.553431], - [37.705793, 55.553431] + [37.705795, 55.553251], + [37.705795, 55.553341], + [37.705885, 55.553341], + [37.705885, 55.553251], + [37.705795, 55.553251] ] ] } @@ -25400,11 +25336,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705793, 55.553521], - [37.705793, 55.553611], - [37.705883, 55.553611], - [37.705883, 55.553521], - [37.705793, 55.553521] + [37.705795, 55.553341], + [37.705795, 55.553431], + [37.705885, 55.553431], + [37.705885, 55.553341], + [37.705795, 55.553341] ] ] } @@ -25416,11 +25352,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705793, 55.553611], - [37.705793, 55.5537], - [37.705883, 55.5537], - [37.705883, 55.553611], - [37.705793, 55.553611] + [37.705795, 55.553431], + [37.705795, 55.55352], + [37.705885, 55.55352], + [37.705885, 55.553431], + [37.705795, 55.553431] ] ] } @@ -25432,11 +25368,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705793, 55.5537], - [37.705793, 55.55379], - [37.705883, 55.55379], - [37.705883, 55.5537], - [37.705793, 55.5537] + [37.705795, 55.55352], + [37.705795, 55.55361], + [37.705885, 55.55361], + [37.705885, 55.55352], + [37.705795, 55.55352] ] ] } @@ -25448,11 +25384,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705793, 55.55379], - [37.705793, 55.55388], - [37.705883, 55.55388], - [37.705883, 55.55379], - [37.705793, 55.55379] + [37.705795, 55.55361], + [37.705795, 55.5537], + [37.705885, 55.5537], + [37.705885, 55.55361], + [37.705795, 55.55361] ] ] } @@ -25464,11 +25400,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705793, 55.55388], - [37.705793, 55.55397], - [37.705883, 55.55397], - [37.705883, 55.55388], - [37.705793, 55.55388] + [37.705795, 55.5537], + [37.705795, 55.55379], + [37.705885, 55.55379], + [37.705885, 55.5537], + [37.705795, 55.5537] ] ] } @@ -25480,11 +25416,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705793, 55.55397], - [37.705793, 55.55406], - [37.705883, 55.55406], - [37.705883, 55.55397], - [37.705793, 55.55397] + [37.705795, 55.55379], + [37.705795, 55.55388], + [37.705885, 55.55388], + [37.705885, 55.55379], + [37.705795, 55.55379] ] ] } @@ -25496,11 +25432,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705793, 55.55406], - [37.705793, 55.55415], - [37.705883, 55.55415], - [37.705883, 55.55406], - [37.705793, 55.55406] + [37.705795, 55.55388], + [37.705795, 55.55397], + [37.705885, 55.55397], + [37.705885, 55.55388], + [37.705795, 55.55388] ] ] } @@ -25512,11 +25448,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705793, 55.55415], - [37.705793, 55.554239], - [37.705883, 55.554239], - [37.705883, 55.55415], - [37.705793, 55.55415] + [37.705795, 55.55397], + [37.705795, 55.55406], + [37.705885, 55.55406], + [37.705885, 55.55397], + [37.705795, 55.55397] ] ] } @@ -25528,11 +25464,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705793, 55.554239], - [37.705793, 55.554329], - [37.705883, 55.554329], - [37.705883, 55.554239], - [37.705793, 55.554239] + [37.705795, 55.55406], + [37.705795, 55.55415], + [37.705885, 55.55415], + [37.705885, 55.55406], + [37.705795, 55.55406] ] ] } @@ -25544,11 +25480,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705793, 55.554329], - [37.705793, 55.554419], - [37.705883, 55.554419], - [37.705883, 55.554329], - [37.705793, 55.554329] + [37.705795, 55.55415], + [37.705795, 55.55424], + [37.705885, 55.55424], + [37.705885, 55.55415], + [37.705795, 55.55415] ] ] } @@ -25560,11 +25496,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705793, 55.554419], - [37.705793, 55.554509], - [37.705883, 55.554509], - [37.705883, 55.554419], - [37.705793, 55.554419] + [37.705795, 55.55424], + [37.705795, 55.55433], + [37.705885, 55.55433], + [37.705885, 55.55424], + [37.705795, 55.55424] ] ] } @@ -25576,11 +25512,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705793, 55.554509], - [37.705793, 55.554599], - [37.705883, 55.554599], - [37.705883, 55.554509], - [37.705793, 55.554509] + [37.705795, 55.55433], + [37.705795, 55.55442], + [37.705885, 55.55442], + [37.705885, 55.55433], + [37.705795, 55.55433] ] ] } @@ -25592,11 +25528,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705793, 55.554599], - [37.705793, 55.554689], - [37.705883, 55.554689], - [37.705883, 55.554599], - [37.705793, 55.554599] + [37.705795, 55.55442], + [37.705795, 55.55451], + [37.705885, 55.55451], + [37.705885, 55.55442], + [37.705795, 55.55442] ] ] } @@ -25608,11 +25544,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705793, 55.554689], - [37.705793, 55.554778], - [37.705883, 55.554778], - [37.705883, 55.554689], - [37.705793, 55.554689] + [37.705795, 55.55451], + [37.705795, 55.5546], + [37.705885, 55.5546], + [37.705885, 55.55451], + [37.705795, 55.55451] ] ] } @@ -25624,11 +25560,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705793, 55.554778], - [37.705793, 55.554868], - [37.705883, 55.554868], - [37.705883, 55.554778], - [37.705793, 55.554778] + [37.705795, 55.5546], + [37.705795, 55.55469], + [37.705885, 55.55469], + [37.705885, 55.5546], + [37.705795, 55.5546] ] ] } @@ -25640,11 +25576,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705793, 55.554868], - [37.705793, 55.554958], - [37.705883, 55.554958], - [37.705883, 55.554868], - [37.705793, 55.554868] + [37.705795, 55.55469], + [37.705795, 55.55478], + [37.705885, 55.55478], + [37.705885, 55.55469], + [37.705795, 55.55469] ] ] } @@ -25656,11 +25592,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705793, 55.554958], - [37.705793, 55.555048], - [37.705883, 55.555048], - [37.705883, 55.554958], - [37.705793, 55.554958] + [37.705795, 55.55478], + [37.705795, 55.554869], + [37.705885, 55.554869], + [37.705885, 55.55478], + [37.705795, 55.55478] ] ] } @@ -25672,11 +25608,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705793, 55.555048], - [37.705793, 55.555138], - [37.705883, 55.555138], - [37.705883, 55.555048], - [37.705793, 55.555048] + [37.705795, 55.554869], + [37.705795, 55.554959], + [37.705885, 55.554959], + [37.705885, 55.554869], + [37.705795, 55.554869] ] ] } @@ -25688,11 +25624,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705793, 55.555138], - [37.705793, 55.555228], - [37.705883, 55.555228], - [37.705883, 55.555138], - [37.705793, 55.555138] + [37.705795, 55.554959], + [37.705795, 55.555049], + [37.705885, 55.555049], + [37.705885, 55.554959], + [37.705795, 55.554959] ] ] } @@ -25704,11 +25640,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705793, 55.555228], - [37.705793, 55.555317], - [37.705883, 55.555317], - [37.705883, 55.555228], - [37.705793, 55.555228] + [37.705795, 55.555049], + [37.705795, 55.555139], + [37.705885, 55.555139], + [37.705885, 55.555049], + [37.705795, 55.555049] ] ] } @@ -25720,11 +25656,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705793, 55.555317], - [37.705793, 55.555407], - [37.705883, 55.555407], - [37.705883, 55.555317], - [37.705793, 55.555317] + [37.705795, 55.555139], + [37.705795, 55.555229], + [37.705885, 55.555229], + [37.705885, 55.555139], + [37.705795, 55.555139] ] ] } @@ -25736,11 +25672,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705883, 55.551634], - [37.705883, 55.551724], - [37.705973, 55.551724], - [37.705973, 55.551634], - [37.705883, 55.551634] + [37.705795, 55.555229], + [37.705795, 55.555319], + [37.705885, 55.555319], + [37.705885, 55.555229], + [37.705795, 55.555229] ] ] } @@ -25752,11 +25688,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705883, 55.551724], - [37.705883, 55.551814], - [37.705973, 55.551814], - [37.705973, 55.551724], - [37.705883, 55.551724] + [37.705795, 55.555319], + [37.705795, 55.555409], + [37.705885, 55.555409], + [37.705885, 55.555319], + [37.705795, 55.555319] ] ] } @@ -25768,11 +25704,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705883, 55.551814], - [37.705883, 55.551904], - [37.705973, 55.551904], - [37.705973, 55.551814], - [37.705883, 55.551814] + [37.705885, 55.551632], + [37.705885, 55.551722], + [37.705974, 55.551722], + [37.705974, 55.551632], + [37.705885, 55.551632] ] ] } @@ -25784,11 +25720,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705883, 55.551904], - [37.705883, 55.551994], - [37.705973, 55.551994], - [37.705973, 55.551904], - [37.705883, 55.551904] + [37.705885, 55.551722], + [37.705885, 55.551812], + [37.705974, 55.551812], + [37.705974, 55.551722], + [37.705885, 55.551722] ] ] } @@ -25800,11 +25736,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705883, 55.551994], - [37.705883, 55.552084], - [37.705973, 55.552084], - [37.705973, 55.551994], - [37.705883, 55.551994] + [37.705885, 55.551812], + [37.705885, 55.551902], + [37.705974, 55.551902], + [37.705974, 55.551812], + [37.705885, 55.551812] ] ] } @@ -25816,11 +25752,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705883, 55.552084], - [37.705883, 55.552173], - [37.705973, 55.552173], - [37.705973, 55.552084], - [37.705883, 55.552084] + [37.705885, 55.551902], + [37.705885, 55.551992], + [37.705974, 55.551992], + [37.705974, 55.551902], + [37.705885, 55.551902] ] ] } @@ -25832,11 +25768,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705883, 55.552173], - [37.705883, 55.552263], - [37.705973, 55.552263], - [37.705973, 55.552173], - [37.705883, 55.552173] + [37.705885, 55.551992], + [37.705885, 55.552082], + [37.705974, 55.552082], + [37.705974, 55.551992], + [37.705885, 55.551992] ] ] } @@ -25848,11 +25784,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705883, 55.552263], - [37.705883, 55.552353], - [37.705973, 55.552353], - [37.705973, 55.552263], - [37.705883, 55.552263] + [37.705885, 55.552082], + [37.705885, 55.552171], + [37.705974, 55.552171], + [37.705974, 55.552082], + [37.705885, 55.552082] ] ] } @@ -25864,11 +25800,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705883, 55.552353], - [37.705883, 55.552443], - [37.705973, 55.552443], - [37.705973, 55.552353], - [37.705883, 55.552353] + [37.705885, 55.552171], + [37.705885, 55.552261], + [37.705974, 55.552261], + [37.705974, 55.552171], + [37.705885, 55.552171] ] ] } @@ -25880,11 +25816,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705883, 55.552443], - [37.705883, 55.552533], - [37.705973, 55.552533], - [37.705973, 55.552443], - [37.705883, 55.552443] + [37.705885, 55.552261], + [37.705885, 55.552351], + [37.705974, 55.552351], + [37.705974, 55.552261], + [37.705885, 55.552261] ] ] } @@ -25896,11 +25832,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705883, 55.552533], - [37.705883, 55.552623], - [37.705973, 55.552623], - [37.705973, 55.552533], - [37.705883, 55.552533] + [37.705885, 55.552351], + [37.705885, 55.552441], + [37.705974, 55.552441], + [37.705974, 55.552351], + [37.705885, 55.552351] ] ] } @@ -25912,11 +25848,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705883, 55.552623], - [37.705883, 55.552712], - [37.705973, 55.552712], - [37.705973, 55.552623], - [37.705883, 55.552623] + [37.705885, 55.552441], + [37.705885, 55.552531], + [37.705974, 55.552531], + [37.705974, 55.552441], + [37.705885, 55.552441] ] ] } @@ -25928,11 +25864,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705883, 55.552712], - [37.705883, 55.552802], - [37.705973, 55.552802], - [37.705973, 55.552712], - [37.705883, 55.552712] + [37.705885, 55.552531], + [37.705885, 55.552621], + [37.705974, 55.552621], + [37.705974, 55.552531], + [37.705885, 55.552531] ] ] } @@ -25944,11 +25880,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705883, 55.552802], - [37.705883, 55.552892], - [37.705973, 55.552892], - [37.705973, 55.552802], - [37.705883, 55.552802] + [37.705885, 55.552621], + [37.705885, 55.552711], + [37.705974, 55.552711], + [37.705974, 55.552621], + [37.705885, 55.552621] ] ] } @@ -25960,11 +25896,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705883, 55.552892], - [37.705883, 55.552982], - [37.705973, 55.552982], - [37.705973, 55.552892], - [37.705883, 55.552892] + [37.705885, 55.552711], + [37.705885, 55.552801], + [37.705974, 55.552801], + [37.705974, 55.552711], + [37.705885, 55.552711] ] ] } @@ -25976,11 +25912,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705883, 55.552982], - [37.705883, 55.553072], - [37.705973, 55.553072], - [37.705973, 55.552982], - [37.705883, 55.552982] + [37.705885, 55.552801], + [37.705885, 55.552891], + [37.705974, 55.552891], + [37.705974, 55.552801], + [37.705885, 55.552801] ] ] } @@ -25992,11 +25928,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705883, 55.553072], - [37.705883, 55.553162], - [37.705973, 55.553162], - [37.705973, 55.553072], - [37.705883, 55.553072] + [37.705885, 55.552891], + [37.705885, 55.552981], + [37.705974, 55.552981], + [37.705974, 55.552891], + [37.705885, 55.552891] ] ] } @@ -26008,11 +25944,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705883, 55.553162], - [37.705883, 55.553251], - [37.705973, 55.553251], - [37.705973, 55.553162], - [37.705883, 55.553162] + [37.705885, 55.552981], + [37.705885, 55.553071], + [37.705974, 55.553071], + [37.705974, 55.552981], + [37.705885, 55.552981] ] ] } @@ -26024,11 +25960,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705883, 55.553251], - [37.705883, 55.553341], - [37.705973, 55.553341], - [37.705973, 55.553251], - [37.705883, 55.553251] + [37.705885, 55.553071], + [37.705885, 55.553161], + [37.705974, 55.553161], + [37.705974, 55.553071], + [37.705885, 55.553071] ] ] } @@ -26040,11 +25976,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705883, 55.553341], - [37.705883, 55.553431], - [37.705973, 55.553431], - [37.705973, 55.553341], - [37.705883, 55.553341] + [37.705885, 55.553161], + [37.705885, 55.553251], + [37.705974, 55.553251], + [37.705974, 55.553161], + [37.705885, 55.553161] ] ] } @@ -26056,11 +25992,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705883, 55.553431], - [37.705883, 55.553521], - [37.705973, 55.553521], - [37.705973, 55.553431], - [37.705883, 55.553431] + [37.705885, 55.553251], + [37.705885, 55.553341], + [37.705974, 55.553341], + [37.705974, 55.553251], + [37.705885, 55.553251] ] ] } @@ -26072,11 +26008,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705883, 55.553521], - [37.705883, 55.553611], - [37.705973, 55.553611], - [37.705973, 55.553521], - [37.705883, 55.553521] + [37.705885, 55.553341], + [37.705885, 55.553431], + [37.705974, 55.553431], + [37.705974, 55.553341], + [37.705885, 55.553341] ] ] } @@ -26088,11 +26024,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705883, 55.553611], - [37.705883, 55.5537], - [37.705973, 55.5537], - [37.705973, 55.553611], - [37.705883, 55.553611] + [37.705885, 55.553431], + [37.705885, 55.55352], + [37.705974, 55.55352], + [37.705974, 55.553431], + [37.705885, 55.553431] ] ] } @@ -26104,11 +26040,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705883, 55.5537], - [37.705883, 55.55379], - [37.705973, 55.55379], - [37.705973, 55.5537], - [37.705883, 55.5537] + [37.705885, 55.55352], + [37.705885, 55.55361], + [37.705974, 55.55361], + [37.705974, 55.55352], + [37.705885, 55.55352] ] ] } @@ -26120,11 +26056,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705883, 55.55379], - [37.705883, 55.55388], - [37.705973, 55.55388], - [37.705973, 55.55379], - [37.705883, 55.55379] + [37.705885, 55.55361], + [37.705885, 55.5537], + [37.705974, 55.5537], + [37.705974, 55.55361], + [37.705885, 55.55361] ] ] } @@ -26136,11 +26072,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705883, 55.55388], - [37.705883, 55.55397], - [37.705973, 55.55397], - [37.705973, 55.55388], - [37.705883, 55.55388] + [37.705885, 55.5537], + [37.705885, 55.55379], + [37.705974, 55.55379], + [37.705974, 55.5537], + [37.705885, 55.5537] ] ] } @@ -26152,11 +26088,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705883, 55.55397], - [37.705883, 55.55406], - [37.705973, 55.55406], - [37.705973, 55.55397], - [37.705883, 55.55397] + [37.705885, 55.55379], + [37.705885, 55.55388], + [37.705974, 55.55388], + [37.705974, 55.55379], + [37.705885, 55.55379] ] ] } @@ -26168,11 +26104,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705883, 55.55406], - [37.705883, 55.55415], - [37.705973, 55.55415], - [37.705973, 55.55406], - [37.705883, 55.55406] + [37.705885, 55.55388], + [37.705885, 55.55397], + [37.705974, 55.55397], + [37.705974, 55.55388], + [37.705885, 55.55388] ] ] } @@ -26184,11 +26120,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705883, 55.55415], - [37.705883, 55.554239], - [37.705973, 55.554239], - [37.705973, 55.55415], - [37.705883, 55.55415] + [37.705885, 55.55397], + [37.705885, 55.55406], + [37.705974, 55.55406], + [37.705974, 55.55397], + [37.705885, 55.55397] ] ] } @@ -26200,11 +26136,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705883, 55.554239], - [37.705883, 55.554329], - [37.705973, 55.554329], - [37.705973, 55.554239], - [37.705883, 55.554239] + [37.705885, 55.55406], + [37.705885, 55.55415], + [37.705974, 55.55415], + [37.705974, 55.55406], + [37.705885, 55.55406] ] ] } @@ -26216,11 +26152,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705883, 55.554329], - [37.705883, 55.554419], - [37.705973, 55.554419], - [37.705973, 55.554329], - [37.705883, 55.554329] + [37.705885, 55.55415], + [37.705885, 55.55424], + [37.705974, 55.55424], + [37.705974, 55.55415], + [37.705885, 55.55415] ] ] } @@ -26232,11 +26168,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705883, 55.554419], - [37.705883, 55.554509], - [37.705973, 55.554509], - [37.705973, 55.554419], - [37.705883, 55.554419] + [37.705885, 55.55424], + [37.705885, 55.55433], + [37.705974, 55.55433], + [37.705974, 55.55424], + [37.705885, 55.55424] ] ] } @@ -26248,11 +26184,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705883, 55.554509], - [37.705883, 55.554599], - [37.705973, 55.554599], - [37.705973, 55.554509], - [37.705883, 55.554509] + [37.705885, 55.55433], + [37.705885, 55.55442], + [37.705974, 55.55442], + [37.705974, 55.55433], + [37.705885, 55.55433] ] ] } @@ -26264,11 +26200,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705883, 55.554599], - [37.705883, 55.554689], - [37.705973, 55.554689], - [37.705973, 55.554599], - [37.705883, 55.554599] + [37.705885, 55.55442], + [37.705885, 55.55451], + [37.705974, 55.55451], + [37.705974, 55.55442], + [37.705885, 55.55442] ] ] } @@ -26280,11 +26216,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705883, 55.554689], - [37.705883, 55.554778], - [37.705973, 55.554778], - [37.705973, 55.554689], - [37.705883, 55.554689] + [37.705885, 55.55451], + [37.705885, 55.5546], + [37.705974, 55.5546], + [37.705974, 55.55451], + [37.705885, 55.55451] ] ] } @@ -26296,11 +26232,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705883, 55.554778], - [37.705883, 55.554868], - [37.705973, 55.554868], - [37.705973, 55.554778], - [37.705883, 55.554778] + [37.705885, 55.5546], + [37.705885, 55.55469], + [37.705974, 55.55469], + [37.705974, 55.5546], + [37.705885, 55.5546] ] ] } @@ -26312,11 +26248,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705883, 55.554868], - [37.705883, 55.554958], - [37.705973, 55.554958], - [37.705973, 55.554868], - [37.705883, 55.554868] + [37.705885, 55.55469], + [37.705885, 55.55478], + [37.705974, 55.55478], + [37.705974, 55.55469], + [37.705885, 55.55469] ] ] } @@ -26328,11 +26264,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705883, 55.554958], - [37.705883, 55.555048], - [37.705973, 55.555048], - [37.705973, 55.554958], - [37.705883, 55.554958] + [37.705885, 55.55478], + [37.705885, 55.554869], + [37.705974, 55.554869], + [37.705974, 55.55478], + [37.705885, 55.55478] ] ] } @@ -26344,11 +26280,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705883, 55.555048], - [37.705883, 55.555138], - [37.705973, 55.555138], - [37.705973, 55.555048], - [37.705883, 55.555048] + [37.705885, 55.554869], + [37.705885, 55.554959], + [37.705974, 55.554959], + [37.705974, 55.554869], + [37.705885, 55.554869] ] ] } @@ -26360,11 +26296,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705883, 55.555138], - [37.705883, 55.555228], - [37.705973, 55.555228], - [37.705973, 55.555138], - [37.705883, 55.555138] + [37.705885, 55.554959], + [37.705885, 55.555049], + [37.705974, 55.555049], + [37.705974, 55.554959], + [37.705885, 55.554959] ] ] } @@ -26376,11 +26312,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705883, 55.555228], - [37.705883, 55.555317], - [37.705973, 55.555317], - [37.705973, 55.555228], - [37.705883, 55.555228] + [37.705885, 55.555049], + [37.705885, 55.555139], + [37.705974, 55.555139], + [37.705974, 55.555049], + [37.705885, 55.555049] ] ] } @@ -26392,11 +26328,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705883, 55.555317], - [37.705883, 55.555407], - [37.705973, 55.555407], - [37.705973, 55.555317], - [37.705883, 55.555317] + [37.705885, 55.555139], + [37.705885, 55.555229], + [37.705974, 55.555229], + [37.705974, 55.555139], + [37.705885, 55.555139] ] ] } @@ -26408,11 +26344,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705973, 55.551545], - [37.705973, 55.551634], - [37.706063, 55.551634], - [37.706063, 55.551545], - [37.705973, 55.551545] + [37.705885, 55.555229], + [37.705885, 55.555319], + [37.705974, 55.555319], + [37.705974, 55.555229], + [37.705885, 55.555229] ] ] } @@ -26424,11 +26360,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705973, 55.551634], - [37.705973, 55.551724], - [37.706063, 55.551724], - [37.706063, 55.551634], - [37.705973, 55.551634] + [37.705885, 55.555319], + [37.705885, 55.555409], + [37.705974, 55.555409], + [37.705974, 55.555319], + [37.705885, 55.555319] ] ] } @@ -26440,11 +26376,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705973, 55.551724], - [37.705973, 55.551814], - [37.706063, 55.551814], - [37.706063, 55.551724], - [37.705973, 55.551724] + [37.705974, 55.551542], + [37.705974, 55.551632], + [37.706064, 55.551632], + [37.706064, 55.551542], + [37.705974, 55.551542] ] ] } @@ -26456,11 +26392,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705973, 55.551814], - [37.705973, 55.551904], - [37.706063, 55.551904], - [37.706063, 55.551814], - [37.705973, 55.551814] + [37.705974, 55.551632], + [37.705974, 55.551722], + [37.706064, 55.551722], + [37.706064, 55.551632], + [37.705974, 55.551632] ] ] } @@ -26472,11 +26408,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705973, 55.551904], - [37.705973, 55.551994], - [37.706063, 55.551994], - [37.706063, 55.551904], - [37.705973, 55.551904] + [37.705974, 55.551722], + [37.705974, 55.551812], + [37.706064, 55.551812], + [37.706064, 55.551722], + [37.705974, 55.551722] ] ] } @@ -26488,11 +26424,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705973, 55.551994], - [37.705973, 55.552084], - [37.706063, 55.552084], - [37.706063, 55.551994], - [37.705973, 55.551994] + [37.705974, 55.551812], + [37.705974, 55.551902], + [37.706064, 55.551902], + [37.706064, 55.551812], + [37.705974, 55.551812] ] ] } @@ -26504,11 +26440,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705973, 55.552084], - [37.705973, 55.552173], - [37.706063, 55.552173], - [37.706063, 55.552084], - [37.705973, 55.552084] + [37.705974, 55.551902], + [37.705974, 55.551992], + [37.706064, 55.551992], + [37.706064, 55.551902], + [37.705974, 55.551902] ] ] } @@ -26520,11 +26456,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705973, 55.552173], - [37.705973, 55.552263], - [37.706063, 55.552263], - [37.706063, 55.552173], - [37.705973, 55.552173] + [37.705974, 55.551992], + [37.705974, 55.552082], + [37.706064, 55.552082], + [37.706064, 55.551992], + [37.705974, 55.551992] ] ] } @@ -26536,11 +26472,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705973, 55.552263], - [37.705973, 55.552353], - [37.706063, 55.552353], - [37.706063, 55.552263], - [37.705973, 55.552263] + [37.705974, 55.552082], + [37.705974, 55.552171], + [37.706064, 55.552171], + [37.706064, 55.552082], + [37.705974, 55.552082] ] ] } @@ -26552,11 +26488,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705973, 55.552353], - [37.705973, 55.552443], - [37.706063, 55.552443], - [37.706063, 55.552353], - [37.705973, 55.552353] + [37.705974, 55.552171], + [37.705974, 55.552261], + [37.706064, 55.552261], + [37.706064, 55.552171], + [37.705974, 55.552171] ] ] } @@ -26568,11 +26504,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705973, 55.552443], - [37.705973, 55.552533], - [37.706063, 55.552533], - [37.706063, 55.552443], - [37.705973, 55.552443] + [37.705974, 55.552261], + [37.705974, 55.552351], + [37.706064, 55.552351], + [37.706064, 55.552261], + [37.705974, 55.552261] ] ] } @@ -26584,11 +26520,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705973, 55.552533], - [37.705973, 55.552623], - [37.706063, 55.552623], - [37.706063, 55.552533], - [37.705973, 55.552533] + [37.705974, 55.552351], + [37.705974, 55.552441], + [37.706064, 55.552441], + [37.706064, 55.552351], + [37.705974, 55.552351] ] ] } @@ -26600,11 +26536,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705973, 55.552623], - [37.705973, 55.552712], - [37.706063, 55.552712], - [37.706063, 55.552623], - [37.705973, 55.552623] + [37.705974, 55.552441], + [37.705974, 55.552531], + [37.706064, 55.552531], + [37.706064, 55.552441], + [37.705974, 55.552441] ] ] } @@ -26616,11 +26552,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705973, 55.552712], - [37.705973, 55.552802], - [37.706063, 55.552802], - [37.706063, 55.552712], - [37.705973, 55.552712] + [37.705974, 55.552531], + [37.705974, 55.552621], + [37.706064, 55.552621], + [37.706064, 55.552531], + [37.705974, 55.552531] ] ] } @@ -26632,11 +26568,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705973, 55.552802], - [37.705973, 55.552892], - [37.706063, 55.552892], - [37.706063, 55.552802], - [37.705973, 55.552802] + [37.705974, 55.552621], + [37.705974, 55.552711], + [37.706064, 55.552711], + [37.706064, 55.552621], + [37.705974, 55.552621] ] ] } @@ -26648,11 +26584,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705973, 55.552892], - [37.705973, 55.552982], - [37.706063, 55.552982], - [37.706063, 55.552892], - [37.705973, 55.552892] + [37.705974, 55.552711], + [37.705974, 55.552801], + [37.706064, 55.552801], + [37.706064, 55.552711], + [37.705974, 55.552711] ] ] } @@ -26664,11 +26600,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705973, 55.552982], - [37.705973, 55.553072], - [37.706063, 55.553072], - [37.706063, 55.552982], - [37.705973, 55.552982] + [37.705974, 55.552801], + [37.705974, 55.552891], + [37.706064, 55.552891], + [37.706064, 55.552801], + [37.705974, 55.552801] ] ] } @@ -26680,11 +26616,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705973, 55.553072], - [37.705973, 55.553162], - [37.706063, 55.553162], - [37.706063, 55.553072], - [37.705973, 55.553072] + [37.705974, 55.552891], + [37.705974, 55.552981], + [37.706064, 55.552981], + [37.706064, 55.552891], + [37.705974, 55.552891] ] ] } @@ -26696,11 +26632,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705973, 55.553162], - [37.705973, 55.553251], - [37.706063, 55.553251], - [37.706063, 55.553162], - [37.705973, 55.553162] + [37.705974, 55.552981], + [37.705974, 55.553071], + [37.706064, 55.553071], + [37.706064, 55.552981], + [37.705974, 55.552981] ] ] } @@ -26712,11 +26648,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705973, 55.553251], - [37.705973, 55.553341], - [37.706063, 55.553341], - [37.706063, 55.553251], - [37.705973, 55.553251] + [37.705974, 55.553071], + [37.705974, 55.553161], + [37.706064, 55.553161], + [37.706064, 55.553071], + [37.705974, 55.553071] ] ] } @@ -26728,11 +26664,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705973, 55.553341], - [37.705973, 55.553431], - [37.706063, 55.553431], - [37.706063, 55.553341], - [37.705973, 55.553341] + [37.705974, 55.553161], + [37.705974, 55.553251], + [37.706064, 55.553251], + [37.706064, 55.553161], + [37.705974, 55.553161] ] ] } @@ -26744,11 +26680,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705973, 55.553431], - [37.705973, 55.553521], - [37.706063, 55.553521], - [37.706063, 55.553431], - [37.705973, 55.553431] + [37.705974, 55.553251], + [37.705974, 55.553341], + [37.706064, 55.553341], + [37.706064, 55.553251], + [37.705974, 55.553251] ] ] } @@ -26760,11 +26696,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705973, 55.553521], - [37.705973, 55.553611], - [37.706063, 55.553611], - [37.706063, 55.553521], - [37.705973, 55.553521] + [37.705974, 55.553341], + [37.705974, 55.553431], + [37.706064, 55.553431], + [37.706064, 55.553341], + [37.705974, 55.553341] ] ] } @@ -26776,11 +26712,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705973, 55.553611], - [37.705973, 55.5537], - [37.706063, 55.5537], - [37.706063, 55.553611], - [37.705973, 55.553611] + [37.705974, 55.553431], + [37.705974, 55.55352], + [37.706064, 55.55352], + [37.706064, 55.553431], + [37.705974, 55.553431] ] ] } @@ -26792,11 +26728,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705973, 55.5537], - [37.705973, 55.55379], - [37.706063, 55.55379], - [37.706063, 55.5537], - [37.705973, 55.5537] + [37.705974, 55.55352], + [37.705974, 55.55361], + [37.706064, 55.55361], + [37.706064, 55.55352], + [37.705974, 55.55352] ] ] } @@ -26808,11 +26744,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705973, 55.55379], - [37.705973, 55.55388], - [37.706063, 55.55388], - [37.706063, 55.55379], - [37.705973, 55.55379] + [37.705974, 55.55361], + [37.705974, 55.5537], + [37.706064, 55.5537], + [37.706064, 55.55361], + [37.705974, 55.55361] ] ] } @@ -26824,11 +26760,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705973, 55.55388], - [37.705973, 55.55397], - [37.706063, 55.55397], - [37.706063, 55.55388], - [37.705973, 55.55388] + [37.705974, 55.5537], + [37.705974, 55.55379], + [37.706064, 55.55379], + [37.706064, 55.5537], + [37.705974, 55.5537] ] ] } @@ -26840,11 +26776,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705973, 55.55397], - [37.705973, 55.55406], - [37.706063, 55.55406], - [37.706063, 55.55397], - [37.705973, 55.55397] + [37.705974, 55.55379], + [37.705974, 55.55388], + [37.706064, 55.55388], + [37.706064, 55.55379], + [37.705974, 55.55379] ] ] } @@ -26856,11 +26792,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705973, 55.55406], - [37.705973, 55.55415], - [37.706063, 55.55415], - [37.706063, 55.55406], - [37.705973, 55.55406] + [37.705974, 55.55388], + [37.705974, 55.55397], + [37.706064, 55.55397], + [37.706064, 55.55388], + [37.705974, 55.55388] ] ] } @@ -26872,11 +26808,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705973, 55.55415], - [37.705973, 55.554239], - [37.706063, 55.554239], - [37.706063, 55.55415], - [37.705973, 55.55415] + [37.705974, 55.55397], + [37.705974, 55.55406], + [37.706064, 55.55406], + [37.706064, 55.55397], + [37.705974, 55.55397] ] ] } @@ -26888,11 +26824,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705973, 55.554239], - [37.705973, 55.554329], - [37.706063, 55.554329], - [37.706063, 55.554239], - [37.705973, 55.554239] + [37.705974, 55.55406], + [37.705974, 55.55415], + [37.706064, 55.55415], + [37.706064, 55.55406], + [37.705974, 55.55406] ] ] } @@ -26904,11 +26840,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705973, 55.554329], - [37.705973, 55.554419], - [37.706063, 55.554419], - [37.706063, 55.554329], - [37.705973, 55.554329] + [37.705974, 55.55415], + [37.705974, 55.55424], + [37.706064, 55.55424], + [37.706064, 55.55415], + [37.705974, 55.55415] ] ] } @@ -26920,11 +26856,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705973, 55.554419], - [37.705973, 55.554509], - [37.706063, 55.554509], - [37.706063, 55.554419], - [37.705973, 55.554419] + [37.705974, 55.55424], + [37.705974, 55.55433], + [37.706064, 55.55433], + [37.706064, 55.55424], + [37.705974, 55.55424] ] ] } @@ -26936,11 +26872,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705973, 55.554509], - [37.705973, 55.554599], - [37.706063, 55.554599], - [37.706063, 55.554509], - [37.705973, 55.554509] + [37.705974, 55.55433], + [37.705974, 55.55442], + [37.706064, 55.55442], + [37.706064, 55.55433], + [37.705974, 55.55433] ] ] } @@ -26952,11 +26888,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705973, 55.554599], - [37.705973, 55.554689], - [37.706063, 55.554689], - [37.706063, 55.554599], - [37.705973, 55.554599] + [37.705974, 55.55442], + [37.705974, 55.55451], + [37.706064, 55.55451], + [37.706064, 55.55442], + [37.705974, 55.55442] ] ] } @@ -26968,11 +26904,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705973, 55.554689], - [37.705973, 55.554778], - [37.706063, 55.554778], - [37.706063, 55.554689], - [37.705973, 55.554689] + [37.705974, 55.55451], + [37.705974, 55.5546], + [37.706064, 55.5546], + [37.706064, 55.55451], + [37.705974, 55.55451] ] ] } @@ -26984,11 +26920,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705973, 55.554778], - [37.705973, 55.554868], - [37.706063, 55.554868], - [37.706063, 55.554778], - [37.705973, 55.554778] + [37.705974, 55.5546], + [37.705974, 55.55469], + [37.706064, 55.55469], + [37.706064, 55.5546], + [37.705974, 55.5546] ] ] } @@ -27000,11 +26936,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705973, 55.554868], - [37.705973, 55.554958], - [37.706063, 55.554958], - [37.706063, 55.554868], - [37.705973, 55.554868] + [37.705974, 55.55469], + [37.705974, 55.55478], + [37.706064, 55.55478], + [37.706064, 55.55469], + [37.705974, 55.55469] ] ] } @@ -27016,11 +26952,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705973, 55.554958], - [37.705973, 55.555048], - [37.706063, 55.555048], - [37.706063, 55.554958], - [37.705973, 55.554958] + [37.705974, 55.55478], + [37.705974, 55.554869], + [37.706064, 55.554869], + [37.706064, 55.55478], + [37.705974, 55.55478] ] ] } @@ -27032,11 +26968,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705973, 55.555048], - [37.705973, 55.555138], - [37.706063, 55.555138], - [37.706063, 55.555048], - [37.705973, 55.555048] + [37.705974, 55.554869], + [37.705974, 55.554959], + [37.706064, 55.554959], + [37.706064, 55.554869], + [37.705974, 55.554869] ] ] } @@ -27048,11 +26984,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705973, 55.555138], - [37.705973, 55.555228], - [37.706063, 55.555228], - [37.706063, 55.555138], - [37.705973, 55.555138] + [37.705974, 55.554959], + [37.705974, 55.555049], + [37.706064, 55.555049], + [37.706064, 55.554959], + [37.705974, 55.554959] ] ] } @@ -27064,11 +27000,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705973, 55.555228], - [37.705973, 55.555317], - [37.706063, 55.555317], - [37.706063, 55.555228], - [37.705973, 55.555228] + [37.705974, 55.555049], + [37.705974, 55.555139], + [37.706064, 55.555139], + [37.706064, 55.555049], + [37.705974, 55.555049] ] ] } @@ -27080,11 +27016,11 @@ "type": "Polygon", "coordinates": [ [ - [37.705973, 55.555317], - [37.705973, 55.555407], - [37.706063, 55.555407], - [37.706063, 55.555317], - [37.705973, 55.555317] + [37.705974, 55.555139], + [37.705974, 55.555229], + [37.706064, 55.555229], + [37.706064, 55.555139], + [37.705974, 55.555139] ] ] } @@ -27096,11 +27032,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706063, 55.551545], - [37.706063, 55.551634], - [37.706153, 55.551634], - [37.706153, 55.551545], - [37.706063, 55.551545] + [37.705974, 55.555229], + [37.705974, 55.555319], + [37.706064, 55.555319], + [37.706064, 55.555229], + [37.705974, 55.555229] ] ] } @@ -27112,11 +27048,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706063, 55.551634], - [37.706063, 55.551724], - [37.706153, 55.551724], - [37.706153, 55.551634], - [37.706063, 55.551634] + [37.705974, 55.555319], + [37.705974, 55.555409], + [37.706064, 55.555409], + [37.706064, 55.555319], + [37.705974, 55.555319] ] ] } @@ -27128,11 +27064,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706063, 55.551724], - [37.706063, 55.551814], - [37.706153, 55.551814], - [37.706153, 55.551724], - [37.706063, 55.551724] + [37.706064, 55.551542], + [37.706064, 55.551632], + [37.706154, 55.551632], + [37.706154, 55.551542], + [37.706064, 55.551542] ] ] } @@ -27144,11 +27080,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706063, 55.551814], - [37.706063, 55.551904], - [37.706153, 55.551904], - [37.706153, 55.551814], - [37.706063, 55.551814] + [37.706064, 55.551632], + [37.706064, 55.551722], + [37.706154, 55.551722], + [37.706154, 55.551632], + [37.706064, 55.551632] ] ] } @@ -27160,11 +27096,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706063, 55.551904], - [37.706063, 55.551994], - [37.706153, 55.551994], - [37.706153, 55.551904], - [37.706063, 55.551904] + [37.706064, 55.551722], + [37.706064, 55.551812], + [37.706154, 55.551812], + [37.706154, 55.551722], + [37.706064, 55.551722] ] ] } @@ -27176,11 +27112,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706063, 55.551994], - [37.706063, 55.552084], - [37.706153, 55.552084], - [37.706153, 55.551994], - [37.706063, 55.551994] + [37.706064, 55.551812], + [37.706064, 55.551902], + [37.706154, 55.551902], + [37.706154, 55.551812], + [37.706064, 55.551812] ] ] } @@ -27192,11 +27128,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706063, 55.552084], - [37.706063, 55.552173], - [37.706153, 55.552173], - [37.706153, 55.552084], - [37.706063, 55.552084] + [37.706064, 55.551902], + [37.706064, 55.551992], + [37.706154, 55.551992], + [37.706154, 55.551902], + [37.706064, 55.551902] ] ] } @@ -27208,11 +27144,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706063, 55.552173], - [37.706063, 55.552263], - [37.706153, 55.552263], - [37.706153, 55.552173], - [37.706063, 55.552173] + [37.706064, 55.551992], + [37.706064, 55.552082], + [37.706154, 55.552082], + [37.706154, 55.551992], + [37.706064, 55.551992] ] ] } @@ -27224,11 +27160,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706063, 55.552263], - [37.706063, 55.552353], - [37.706153, 55.552353], - [37.706153, 55.552263], - [37.706063, 55.552263] + [37.706064, 55.552082], + [37.706064, 55.552171], + [37.706154, 55.552171], + [37.706154, 55.552082], + [37.706064, 55.552082] ] ] } @@ -27240,11 +27176,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706063, 55.552353], - [37.706063, 55.552443], - [37.706153, 55.552443], - [37.706153, 55.552353], - [37.706063, 55.552353] + [37.706064, 55.552171], + [37.706064, 55.552261], + [37.706154, 55.552261], + [37.706154, 55.552171], + [37.706064, 55.552171] ] ] } @@ -27256,11 +27192,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706063, 55.552443], - [37.706063, 55.552533], - [37.706153, 55.552533], - [37.706153, 55.552443], - [37.706063, 55.552443] + [37.706064, 55.552261], + [37.706064, 55.552351], + [37.706154, 55.552351], + [37.706154, 55.552261], + [37.706064, 55.552261] ] ] } @@ -27272,11 +27208,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706063, 55.552533], - [37.706063, 55.552623], - [37.706153, 55.552623], - [37.706153, 55.552533], - [37.706063, 55.552533] + [37.706064, 55.552351], + [37.706064, 55.552441], + [37.706154, 55.552441], + [37.706154, 55.552351], + [37.706064, 55.552351] ] ] } @@ -27288,11 +27224,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706063, 55.552623], - [37.706063, 55.552712], - [37.706153, 55.552712], - [37.706153, 55.552623], - [37.706063, 55.552623] + [37.706064, 55.552441], + [37.706064, 55.552531], + [37.706154, 55.552531], + [37.706154, 55.552441], + [37.706064, 55.552441] ] ] } @@ -27304,11 +27240,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706063, 55.552712], - [37.706063, 55.552802], - [37.706153, 55.552802], - [37.706153, 55.552712], - [37.706063, 55.552712] + [37.706064, 55.552531], + [37.706064, 55.552621], + [37.706154, 55.552621], + [37.706154, 55.552531], + [37.706064, 55.552531] ] ] } @@ -27320,11 +27256,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706063, 55.552802], - [37.706063, 55.552892], - [37.706153, 55.552892], - [37.706153, 55.552802], - [37.706063, 55.552802] + [37.706064, 55.552621], + [37.706064, 55.552711], + [37.706154, 55.552711], + [37.706154, 55.552621], + [37.706064, 55.552621] ] ] } @@ -27336,11 +27272,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706063, 55.552892], - [37.706063, 55.552982], - [37.706153, 55.552982], - [37.706153, 55.552892], - [37.706063, 55.552892] + [37.706064, 55.552711], + [37.706064, 55.552801], + [37.706154, 55.552801], + [37.706154, 55.552711], + [37.706064, 55.552711] ] ] } @@ -27352,11 +27288,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706063, 55.552982], - [37.706063, 55.553072], - [37.706153, 55.553072], - [37.706153, 55.552982], - [37.706063, 55.552982] + [37.706064, 55.552801], + [37.706064, 55.552891], + [37.706154, 55.552891], + [37.706154, 55.552801], + [37.706064, 55.552801] ] ] } @@ -27368,11 +27304,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706063, 55.553072], - [37.706063, 55.553162], - [37.706153, 55.553162], - [37.706153, 55.553072], - [37.706063, 55.553072] + [37.706064, 55.552891], + [37.706064, 55.552981], + [37.706154, 55.552981], + [37.706154, 55.552891], + [37.706064, 55.552891] ] ] } @@ -27384,11 +27320,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706063, 55.553162], - [37.706063, 55.553251], - [37.706153, 55.553251], - [37.706153, 55.553162], - [37.706063, 55.553162] + [37.706064, 55.552981], + [37.706064, 55.553071], + [37.706154, 55.553071], + [37.706154, 55.552981], + [37.706064, 55.552981] ] ] } @@ -27400,11 +27336,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706063, 55.553251], - [37.706063, 55.553341], - [37.706153, 55.553341], - [37.706153, 55.553251], - [37.706063, 55.553251] + [37.706064, 55.553071], + [37.706064, 55.553161], + [37.706154, 55.553161], + [37.706154, 55.553071], + [37.706064, 55.553071] ] ] } @@ -27416,11 +27352,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706063, 55.553341], - [37.706063, 55.553431], - [37.706153, 55.553431], - [37.706153, 55.553341], - [37.706063, 55.553341] + [37.706064, 55.553161], + [37.706064, 55.553251], + [37.706154, 55.553251], + [37.706154, 55.553161], + [37.706064, 55.553161] ] ] } @@ -27432,11 +27368,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706063, 55.553431], - [37.706063, 55.553521], - [37.706153, 55.553521], - [37.706153, 55.553431], - [37.706063, 55.553431] + [37.706064, 55.553251], + [37.706064, 55.553341], + [37.706154, 55.553341], + [37.706154, 55.553251], + [37.706064, 55.553251] ] ] } @@ -27448,11 +27384,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706063, 55.553521], - [37.706063, 55.553611], - [37.706153, 55.553611], - [37.706153, 55.553521], - [37.706063, 55.553521] + [37.706064, 55.553341], + [37.706064, 55.553431], + [37.706154, 55.553431], + [37.706154, 55.553341], + [37.706064, 55.553341] ] ] } @@ -27464,11 +27400,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706063, 55.553611], - [37.706063, 55.5537], - [37.706153, 55.5537], - [37.706153, 55.553611], - [37.706063, 55.553611] + [37.706064, 55.553431], + [37.706064, 55.55352], + [37.706154, 55.55352], + [37.706154, 55.553431], + [37.706064, 55.553431] ] ] } @@ -27480,11 +27416,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706063, 55.5537], - [37.706063, 55.55379], - [37.706153, 55.55379], - [37.706153, 55.5537], - [37.706063, 55.5537] + [37.706064, 55.55352], + [37.706064, 55.55361], + [37.706154, 55.55361], + [37.706154, 55.55352], + [37.706064, 55.55352] ] ] } @@ -27496,11 +27432,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706063, 55.55379], - [37.706063, 55.55388], - [37.706153, 55.55388], - [37.706153, 55.55379], - [37.706063, 55.55379] + [37.706064, 55.55361], + [37.706064, 55.5537], + [37.706154, 55.5537], + [37.706154, 55.55361], + [37.706064, 55.55361] ] ] } @@ -27512,11 +27448,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706063, 55.55388], - [37.706063, 55.55397], - [37.706153, 55.55397], - [37.706153, 55.55388], - [37.706063, 55.55388] + [37.706064, 55.5537], + [37.706064, 55.55379], + [37.706154, 55.55379], + [37.706154, 55.5537], + [37.706064, 55.5537] ] ] } @@ -27528,11 +27464,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706063, 55.55397], - [37.706063, 55.55406], - [37.706153, 55.55406], - [37.706153, 55.55397], - [37.706063, 55.55397] + [37.706064, 55.55379], + [37.706064, 55.55388], + [37.706154, 55.55388], + [37.706154, 55.55379], + [37.706064, 55.55379] ] ] } @@ -27544,11 +27480,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706063, 55.55406], - [37.706063, 55.55415], - [37.706153, 55.55415], - [37.706153, 55.55406], - [37.706063, 55.55406] + [37.706064, 55.55388], + [37.706064, 55.55397], + [37.706154, 55.55397], + [37.706154, 55.55388], + [37.706064, 55.55388] ] ] } @@ -27560,11 +27496,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706063, 55.55415], - [37.706063, 55.554239], - [37.706153, 55.554239], - [37.706153, 55.55415], - [37.706063, 55.55415] + [37.706064, 55.55397], + [37.706064, 55.55406], + [37.706154, 55.55406], + [37.706154, 55.55397], + [37.706064, 55.55397] ] ] } @@ -27576,11 +27512,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706063, 55.554239], - [37.706063, 55.554329], - [37.706153, 55.554329], - [37.706153, 55.554239], - [37.706063, 55.554239] + [37.706064, 55.55406], + [37.706064, 55.55415], + [37.706154, 55.55415], + [37.706154, 55.55406], + [37.706064, 55.55406] ] ] } @@ -27592,11 +27528,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706063, 55.554329], - [37.706063, 55.554419], - [37.706153, 55.554419], - [37.706153, 55.554329], - [37.706063, 55.554329] + [37.706064, 55.55415], + [37.706064, 55.55424], + [37.706154, 55.55424], + [37.706154, 55.55415], + [37.706064, 55.55415] ] ] } @@ -27608,11 +27544,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706063, 55.554419], - [37.706063, 55.554509], - [37.706153, 55.554509], - [37.706153, 55.554419], - [37.706063, 55.554419] + [37.706064, 55.55424], + [37.706064, 55.55433], + [37.706154, 55.55433], + [37.706154, 55.55424], + [37.706064, 55.55424] ] ] } @@ -27624,11 +27560,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706063, 55.554509], - [37.706063, 55.554599], - [37.706153, 55.554599], - [37.706153, 55.554509], - [37.706063, 55.554509] + [37.706064, 55.55433], + [37.706064, 55.55442], + [37.706154, 55.55442], + [37.706154, 55.55433], + [37.706064, 55.55433] ] ] } @@ -27640,11 +27576,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706063, 55.554599], - [37.706063, 55.554689], - [37.706153, 55.554689], - [37.706153, 55.554599], - [37.706063, 55.554599] + [37.706064, 55.55442], + [37.706064, 55.55451], + [37.706154, 55.55451], + [37.706154, 55.55442], + [37.706064, 55.55442] ] ] } @@ -27656,11 +27592,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706063, 55.554689], - [37.706063, 55.554778], - [37.706153, 55.554778], - [37.706153, 55.554689], - [37.706063, 55.554689] + [37.706064, 55.55451], + [37.706064, 55.5546], + [37.706154, 55.5546], + [37.706154, 55.55451], + [37.706064, 55.55451] ] ] } @@ -27672,11 +27608,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706063, 55.554778], - [37.706063, 55.554868], - [37.706153, 55.554868], - [37.706153, 55.554778], - [37.706063, 55.554778] + [37.706064, 55.5546], + [37.706064, 55.55469], + [37.706154, 55.55469], + [37.706154, 55.5546], + [37.706064, 55.5546] ] ] } @@ -27688,11 +27624,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706063, 55.554868], - [37.706063, 55.554958], - [37.706153, 55.554958], - [37.706153, 55.554868], - [37.706063, 55.554868] + [37.706064, 55.55469], + [37.706064, 55.55478], + [37.706154, 55.55478], + [37.706154, 55.55469], + [37.706064, 55.55469] ] ] } @@ -27704,11 +27640,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706063, 55.554958], - [37.706063, 55.555048], - [37.706153, 55.555048], - [37.706153, 55.554958], - [37.706063, 55.554958] + [37.706064, 55.55478], + [37.706064, 55.554869], + [37.706154, 55.554869], + [37.706154, 55.55478], + [37.706064, 55.55478] ] ] } @@ -27720,11 +27656,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706063, 55.555048], - [37.706063, 55.555138], - [37.706153, 55.555138], - [37.706153, 55.555048], - [37.706063, 55.555048] + [37.706064, 55.554869], + [37.706064, 55.554959], + [37.706154, 55.554959], + [37.706154, 55.554869], + [37.706064, 55.554869] ] ] } @@ -27736,11 +27672,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706063, 55.555138], - [37.706063, 55.555228], - [37.706153, 55.555228], - [37.706153, 55.555138], - [37.706063, 55.555138] + [37.706064, 55.554959], + [37.706064, 55.555049], + [37.706154, 55.555049], + [37.706154, 55.554959], + [37.706064, 55.554959] ] ] } @@ -27752,11 +27688,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706063, 55.555228], - [37.706063, 55.555317], - [37.706153, 55.555317], - [37.706153, 55.555228], - [37.706063, 55.555228] + [37.706064, 55.555049], + [37.706064, 55.555139], + [37.706154, 55.555139], + [37.706154, 55.555049], + [37.706064, 55.555049] ] ] } @@ -27768,11 +27704,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706063, 55.555317], - [37.706063, 55.555407], - [37.706153, 55.555407], - [37.706153, 55.555317], - [37.706063, 55.555317] + [37.706064, 55.555139], + [37.706064, 55.555229], + [37.706154, 55.555229], + [37.706154, 55.555139], + [37.706064, 55.555139] ] ] } @@ -27784,11 +27720,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706063, 55.555407], - [37.706063, 55.555497], - [37.706153, 55.555497], - [37.706153, 55.555407], - [37.706063, 55.555407] + [37.706064, 55.555229], + [37.706064, 55.555319], + [37.706154, 55.555319], + [37.706154, 55.555229], + [37.706064, 55.555229] ] ] } @@ -27800,11 +27736,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706153, 55.551545], - [37.706153, 55.551634], - [37.706242, 55.551634], - [37.706242, 55.551545], - [37.706153, 55.551545] + [37.706064, 55.555319], + [37.706064, 55.555409], + [37.706154, 55.555409], + [37.706154, 55.555319], + [37.706064, 55.555319] ] ] } @@ -27816,11 +27752,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706153, 55.551634], - [37.706153, 55.551724], - [37.706242, 55.551724], - [37.706242, 55.551634], - [37.706153, 55.551634] + [37.706064, 55.555409], + [37.706064, 55.555499], + [37.706154, 55.555499], + [37.706154, 55.555409], + [37.706064, 55.555409] ] ] } @@ -27832,11 +27768,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706153, 55.551724], - [37.706153, 55.551814], - [37.706242, 55.551814], - [37.706242, 55.551724], - [37.706153, 55.551724] + [37.706154, 55.551542], + [37.706154, 55.551632], + [37.706244, 55.551632], + [37.706244, 55.551542], + [37.706154, 55.551542] ] ] } @@ -27848,11 +27784,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706153, 55.551814], - [37.706153, 55.551904], - [37.706242, 55.551904], - [37.706242, 55.551814], - [37.706153, 55.551814] + [37.706154, 55.551632], + [37.706154, 55.551722], + [37.706244, 55.551722], + [37.706244, 55.551632], + [37.706154, 55.551632] ] ] } @@ -27864,11 +27800,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706153, 55.551904], - [37.706153, 55.551994], - [37.706242, 55.551994], - [37.706242, 55.551904], - [37.706153, 55.551904] + [37.706154, 55.551722], + [37.706154, 55.551812], + [37.706244, 55.551812], + [37.706244, 55.551722], + [37.706154, 55.551722] ] ] } @@ -27880,11 +27816,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706153, 55.551994], - [37.706153, 55.552084], - [37.706242, 55.552084], - [37.706242, 55.551994], - [37.706153, 55.551994] + [37.706154, 55.551812], + [37.706154, 55.551902], + [37.706244, 55.551902], + [37.706244, 55.551812], + [37.706154, 55.551812] ] ] } @@ -27896,11 +27832,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706153, 55.552084], - [37.706153, 55.552173], - [37.706242, 55.552173], - [37.706242, 55.552084], - [37.706153, 55.552084] + [37.706154, 55.551902], + [37.706154, 55.551992], + [37.706244, 55.551992], + [37.706244, 55.551902], + [37.706154, 55.551902] ] ] } @@ -27912,11 +27848,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706153, 55.552173], - [37.706153, 55.552263], - [37.706242, 55.552263], - [37.706242, 55.552173], - [37.706153, 55.552173] + [37.706154, 55.551992], + [37.706154, 55.552082], + [37.706244, 55.552082], + [37.706244, 55.551992], + [37.706154, 55.551992] ] ] } @@ -27928,11 +27864,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706153, 55.552263], - [37.706153, 55.552353], - [37.706242, 55.552353], - [37.706242, 55.552263], - [37.706153, 55.552263] + [37.706154, 55.552082], + [37.706154, 55.552171], + [37.706244, 55.552171], + [37.706244, 55.552082], + [37.706154, 55.552082] ] ] } @@ -27944,11 +27880,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706153, 55.552353], - [37.706153, 55.552443], - [37.706242, 55.552443], - [37.706242, 55.552353], - [37.706153, 55.552353] + [37.706154, 55.552171], + [37.706154, 55.552261], + [37.706244, 55.552261], + [37.706244, 55.552171], + [37.706154, 55.552171] ] ] } @@ -27960,11 +27896,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706153, 55.552443], - [37.706153, 55.552533], - [37.706242, 55.552533], - [37.706242, 55.552443], - [37.706153, 55.552443] + [37.706154, 55.552261], + [37.706154, 55.552351], + [37.706244, 55.552351], + [37.706244, 55.552261], + [37.706154, 55.552261] ] ] } @@ -27976,11 +27912,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706153, 55.552533], - [37.706153, 55.552623], - [37.706242, 55.552623], - [37.706242, 55.552533], - [37.706153, 55.552533] + [37.706154, 55.552351], + [37.706154, 55.552441], + [37.706244, 55.552441], + [37.706244, 55.552351], + [37.706154, 55.552351] ] ] } @@ -27992,11 +27928,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706153, 55.552623], - [37.706153, 55.552712], - [37.706242, 55.552712], - [37.706242, 55.552623], - [37.706153, 55.552623] + [37.706154, 55.552441], + [37.706154, 55.552531], + [37.706244, 55.552531], + [37.706244, 55.552441], + [37.706154, 55.552441] ] ] } @@ -28008,11 +27944,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706153, 55.552712], - [37.706153, 55.552802], - [37.706242, 55.552802], - [37.706242, 55.552712], - [37.706153, 55.552712] + [37.706154, 55.552531], + [37.706154, 55.552621], + [37.706244, 55.552621], + [37.706244, 55.552531], + [37.706154, 55.552531] ] ] } @@ -28024,11 +27960,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706153, 55.552802], - [37.706153, 55.552892], - [37.706242, 55.552892], - [37.706242, 55.552802], - [37.706153, 55.552802] + [37.706154, 55.552621], + [37.706154, 55.552711], + [37.706244, 55.552711], + [37.706244, 55.552621], + [37.706154, 55.552621] ] ] } @@ -28040,11 +27976,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706153, 55.552892], - [37.706153, 55.552982], - [37.706242, 55.552982], - [37.706242, 55.552892], - [37.706153, 55.552892] + [37.706154, 55.552711], + [37.706154, 55.552801], + [37.706244, 55.552801], + [37.706244, 55.552711], + [37.706154, 55.552711] ] ] } @@ -28056,11 +27992,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706153, 55.552982], - [37.706153, 55.553072], - [37.706242, 55.553072], - [37.706242, 55.552982], - [37.706153, 55.552982] + [37.706154, 55.552801], + [37.706154, 55.552891], + [37.706244, 55.552891], + [37.706244, 55.552801], + [37.706154, 55.552801] ] ] } @@ -28072,11 +28008,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706153, 55.553072], - [37.706153, 55.553162], - [37.706242, 55.553162], - [37.706242, 55.553072], - [37.706153, 55.553072] + [37.706154, 55.552891], + [37.706154, 55.552981], + [37.706244, 55.552981], + [37.706244, 55.552891], + [37.706154, 55.552891] ] ] } @@ -28088,11 +28024,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706153, 55.553162], - [37.706153, 55.553251], - [37.706242, 55.553251], - [37.706242, 55.553162], - [37.706153, 55.553162] + [37.706154, 55.552981], + [37.706154, 55.553071], + [37.706244, 55.553071], + [37.706244, 55.552981], + [37.706154, 55.552981] ] ] } @@ -28104,11 +28040,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706153, 55.553251], - [37.706153, 55.553341], - [37.706242, 55.553341], - [37.706242, 55.553251], - [37.706153, 55.553251] + [37.706154, 55.553071], + [37.706154, 55.553161], + [37.706244, 55.553161], + [37.706244, 55.553071], + [37.706154, 55.553071] ] ] } @@ -28120,11 +28056,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706153, 55.553341], - [37.706153, 55.553431], - [37.706242, 55.553431], - [37.706242, 55.553341], - [37.706153, 55.553341] + [37.706154, 55.553161], + [37.706154, 55.553251], + [37.706244, 55.553251], + [37.706244, 55.553161], + [37.706154, 55.553161] ] ] } @@ -28136,11 +28072,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706153, 55.553431], - [37.706153, 55.553521], - [37.706242, 55.553521], - [37.706242, 55.553431], - [37.706153, 55.553431] + [37.706154, 55.553251], + [37.706154, 55.553341], + [37.706244, 55.553341], + [37.706244, 55.553251], + [37.706154, 55.553251] ] ] } @@ -28152,11 +28088,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706153, 55.553521], - [37.706153, 55.553611], - [37.706242, 55.553611], - [37.706242, 55.553521], - [37.706153, 55.553521] + [37.706154, 55.553341], + [37.706154, 55.553431], + [37.706244, 55.553431], + [37.706244, 55.553341], + [37.706154, 55.553341] ] ] } @@ -28168,11 +28104,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706153, 55.553611], - [37.706153, 55.5537], - [37.706242, 55.5537], - [37.706242, 55.553611], - [37.706153, 55.553611] + [37.706154, 55.553431], + [37.706154, 55.55352], + [37.706244, 55.55352], + [37.706244, 55.553431], + [37.706154, 55.553431] ] ] } @@ -28184,11 +28120,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706153, 55.5537], - [37.706153, 55.55379], - [37.706242, 55.55379], - [37.706242, 55.5537], - [37.706153, 55.5537] + [37.706154, 55.55352], + [37.706154, 55.55361], + [37.706244, 55.55361], + [37.706244, 55.55352], + [37.706154, 55.55352] ] ] } @@ -28200,11 +28136,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706153, 55.55379], - [37.706153, 55.55388], - [37.706242, 55.55388], - [37.706242, 55.55379], - [37.706153, 55.55379] + [37.706154, 55.55361], + [37.706154, 55.5537], + [37.706244, 55.5537], + [37.706244, 55.55361], + [37.706154, 55.55361] ] ] } @@ -28216,11 +28152,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706153, 55.55388], - [37.706153, 55.55397], - [37.706242, 55.55397], - [37.706242, 55.55388], - [37.706153, 55.55388] + [37.706154, 55.5537], + [37.706154, 55.55379], + [37.706244, 55.55379], + [37.706244, 55.5537], + [37.706154, 55.5537] ] ] } @@ -28232,11 +28168,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706153, 55.55397], - [37.706153, 55.55406], - [37.706242, 55.55406], - [37.706242, 55.55397], - [37.706153, 55.55397] + [37.706154, 55.55379], + [37.706154, 55.55388], + [37.706244, 55.55388], + [37.706244, 55.55379], + [37.706154, 55.55379] ] ] } @@ -28248,11 +28184,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706153, 55.55406], - [37.706153, 55.55415], - [37.706242, 55.55415], - [37.706242, 55.55406], - [37.706153, 55.55406] + [37.706154, 55.55388], + [37.706154, 55.55397], + [37.706244, 55.55397], + [37.706244, 55.55388], + [37.706154, 55.55388] ] ] } @@ -28264,11 +28200,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706153, 55.55415], - [37.706153, 55.554239], - [37.706242, 55.554239], - [37.706242, 55.55415], - [37.706153, 55.55415] + [37.706154, 55.55397], + [37.706154, 55.55406], + [37.706244, 55.55406], + [37.706244, 55.55397], + [37.706154, 55.55397] ] ] } @@ -28280,11 +28216,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706153, 55.554239], - [37.706153, 55.554329], - [37.706242, 55.554329], - [37.706242, 55.554239], - [37.706153, 55.554239] + [37.706154, 55.55406], + [37.706154, 55.55415], + [37.706244, 55.55415], + [37.706244, 55.55406], + [37.706154, 55.55406] ] ] } @@ -28296,11 +28232,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706153, 55.554329], - [37.706153, 55.554419], - [37.706242, 55.554419], - [37.706242, 55.554329], - [37.706153, 55.554329] + [37.706154, 55.55415], + [37.706154, 55.55424], + [37.706244, 55.55424], + [37.706244, 55.55415], + [37.706154, 55.55415] ] ] } @@ -28312,11 +28248,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706153, 55.554419], - [37.706153, 55.554509], - [37.706242, 55.554509], - [37.706242, 55.554419], - [37.706153, 55.554419] + [37.706154, 55.55424], + [37.706154, 55.55433], + [37.706244, 55.55433], + [37.706244, 55.55424], + [37.706154, 55.55424] ] ] } @@ -28328,11 +28264,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706153, 55.554509], - [37.706153, 55.554599], - [37.706242, 55.554599], - [37.706242, 55.554509], - [37.706153, 55.554509] + [37.706154, 55.55433], + [37.706154, 55.55442], + [37.706244, 55.55442], + [37.706244, 55.55433], + [37.706154, 55.55433] ] ] } @@ -28344,11 +28280,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706153, 55.554599], - [37.706153, 55.554689], - [37.706242, 55.554689], - [37.706242, 55.554599], - [37.706153, 55.554599] + [37.706154, 55.55442], + [37.706154, 55.55451], + [37.706244, 55.55451], + [37.706244, 55.55442], + [37.706154, 55.55442] ] ] } @@ -28360,11 +28296,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706153, 55.554689], - [37.706153, 55.554778], - [37.706242, 55.554778], - [37.706242, 55.554689], - [37.706153, 55.554689] + [37.706154, 55.55451], + [37.706154, 55.5546], + [37.706244, 55.5546], + [37.706244, 55.55451], + [37.706154, 55.55451] ] ] } @@ -28376,11 +28312,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706153, 55.554778], - [37.706153, 55.554868], - [37.706242, 55.554868], - [37.706242, 55.554778], - [37.706153, 55.554778] + [37.706154, 55.5546], + [37.706154, 55.55469], + [37.706244, 55.55469], + [37.706244, 55.5546], + [37.706154, 55.5546] ] ] } @@ -28392,11 +28328,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706153, 55.554868], - [37.706153, 55.554958], - [37.706242, 55.554958], - [37.706242, 55.554868], - [37.706153, 55.554868] + [37.706154, 55.55469], + [37.706154, 55.55478], + [37.706244, 55.55478], + [37.706244, 55.55469], + [37.706154, 55.55469] ] ] } @@ -28408,11 +28344,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706153, 55.554958], - [37.706153, 55.555048], - [37.706242, 55.555048], - [37.706242, 55.554958], - [37.706153, 55.554958] + [37.706154, 55.55478], + [37.706154, 55.554869], + [37.706244, 55.554869], + [37.706244, 55.55478], + [37.706154, 55.55478] ] ] } @@ -28424,11 +28360,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706153, 55.555048], - [37.706153, 55.555138], - [37.706242, 55.555138], - [37.706242, 55.555048], - [37.706153, 55.555048] + [37.706154, 55.554869], + [37.706154, 55.554959], + [37.706244, 55.554959], + [37.706244, 55.554869], + [37.706154, 55.554869] ] ] } @@ -28440,11 +28376,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706153, 55.555138], - [37.706153, 55.555228], - [37.706242, 55.555228], - [37.706242, 55.555138], - [37.706153, 55.555138] + [37.706154, 55.554959], + [37.706154, 55.555049], + [37.706244, 55.555049], + [37.706244, 55.554959], + [37.706154, 55.554959] ] ] } @@ -28456,11 +28392,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706153, 55.555228], - [37.706153, 55.555317], - [37.706242, 55.555317], - [37.706242, 55.555228], - [37.706153, 55.555228] + [37.706154, 55.555049], + [37.706154, 55.555139], + [37.706244, 55.555139], + [37.706244, 55.555049], + [37.706154, 55.555049] ] ] } @@ -28472,11 +28408,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706153, 55.555317], - [37.706153, 55.555407], - [37.706242, 55.555407], - [37.706242, 55.555317], - [37.706153, 55.555317] + [37.706154, 55.555139], + [37.706154, 55.555229], + [37.706244, 55.555229], + [37.706244, 55.555139], + [37.706154, 55.555139] ] ] } @@ -28488,11 +28424,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706153, 55.555407], - [37.706153, 55.555497], - [37.706242, 55.555497], - [37.706242, 55.555407], - [37.706153, 55.555407] + [37.706154, 55.555229], + [37.706154, 55.555319], + [37.706244, 55.555319], + [37.706244, 55.555229], + [37.706154, 55.555229] ] ] } @@ -28504,11 +28440,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706242, 55.551545], - [37.706242, 55.551634], - [37.706332, 55.551634], - [37.706332, 55.551545], - [37.706242, 55.551545] + [37.706154, 55.555319], + [37.706154, 55.555409], + [37.706244, 55.555409], + [37.706244, 55.555319], + [37.706154, 55.555319] ] ] } @@ -28520,11 +28456,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706242, 55.551634], - [37.706242, 55.551724], - [37.706332, 55.551724], - [37.706332, 55.551634], - [37.706242, 55.551634] + [37.706154, 55.555409], + [37.706154, 55.555499], + [37.706244, 55.555499], + [37.706244, 55.555409], + [37.706154, 55.555409] ] ] } @@ -28536,11 +28472,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706242, 55.551724], - [37.706242, 55.551814], - [37.706332, 55.551814], - [37.706332, 55.551724], - [37.706242, 55.551724] + [37.706244, 55.551542], + [37.706244, 55.551632], + [37.706334, 55.551632], + [37.706334, 55.551542], + [37.706244, 55.551542] ] ] } @@ -28552,11 +28488,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706242, 55.551814], - [37.706242, 55.551904], - [37.706332, 55.551904], - [37.706332, 55.551814], - [37.706242, 55.551814] + [37.706244, 55.551632], + [37.706244, 55.551722], + [37.706334, 55.551722], + [37.706334, 55.551632], + [37.706244, 55.551632] ] ] } @@ -28568,11 +28504,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706242, 55.551904], - [37.706242, 55.551994], - [37.706332, 55.551994], - [37.706332, 55.551904], - [37.706242, 55.551904] + [37.706244, 55.551722], + [37.706244, 55.551812], + [37.706334, 55.551812], + [37.706334, 55.551722], + [37.706244, 55.551722] ] ] } @@ -28584,11 +28520,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706242, 55.551994], - [37.706242, 55.552084], - [37.706332, 55.552084], - [37.706332, 55.551994], - [37.706242, 55.551994] + [37.706244, 55.551812], + [37.706244, 55.551902], + [37.706334, 55.551902], + [37.706334, 55.551812], + [37.706244, 55.551812] ] ] } @@ -28600,11 +28536,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706242, 55.552084], - [37.706242, 55.552173], - [37.706332, 55.552173], - [37.706332, 55.552084], - [37.706242, 55.552084] + [37.706244, 55.551902], + [37.706244, 55.551992], + [37.706334, 55.551992], + [37.706334, 55.551902], + [37.706244, 55.551902] ] ] } @@ -28616,11 +28552,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706242, 55.552173], - [37.706242, 55.552263], - [37.706332, 55.552263], - [37.706332, 55.552173], - [37.706242, 55.552173] + [37.706244, 55.551992], + [37.706244, 55.552082], + [37.706334, 55.552082], + [37.706334, 55.551992], + [37.706244, 55.551992] ] ] } @@ -28632,11 +28568,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706242, 55.552263], - [37.706242, 55.552353], - [37.706332, 55.552353], - [37.706332, 55.552263], - [37.706242, 55.552263] + [37.706244, 55.552082], + [37.706244, 55.552171], + [37.706334, 55.552171], + [37.706334, 55.552082], + [37.706244, 55.552082] ] ] } @@ -28648,11 +28584,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706242, 55.552353], - [37.706242, 55.552443], - [37.706332, 55.552443], - [37.706332, 55.552353], - [37.706242, 55.552353] + [37.706244, 55.552171], + [37.706244, 55.552261], + [37.706334, 55.552261], + [37.706334, 55.552171], + [37.706244, 55.552171] ] ] } @@ -28664,11 +28600,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706242, 55.552443], - [37.706242, 55.552533], - [37.706332, 55.552533], - [37.706332, 55.552443], - [37.706242, 55.552443] + [37.706244, 55.552261], + [37.706244, 55.552351], + [37.706334, 55.552351], + [37.706334, 55.552261], + [37.706244, 55.552261] ] ] } @@ -28680,11 +28616,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706242, 55.552533], - [37.706242, 55.552623], - [37.706332, 55.552623], - [37.706332, 55.552533], - [37.706242, 55.552533] + [37.706244, 55.552351], + [37.706244, 55.552441], + [37.706334, 55.552441], + [37.706334, 55.552351], + [37.706244, 55.552351] ] ] } @@ -28696,11 +28632,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706242, 55.552623], - [37.706242, 55.552712], - [37.706332, 55.552712], - [37.706332, 55.552623], - [37.706242, 55.552623] + [37.706244, 55.552441], + [37.706244, 55.552531], + [37.706334, 55.552531], + [37.706334, 55.552441], + [37.706244, 55.552441] ] ] } @@ -28712,11 +28648,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706242, 55.552712], - [37.706242, 55.552802], - [37.706332, 55.552802], - [37.706332, 55.552712], - [37.706242, 55.552712] + [37.706244, 55.552531], + [37.706244, 55.552621], + [37.706334, 55.552621], + [37.706334, 55.552531], + [37.706244, 55.552531] ] ] } @@ -28728,11 +28664,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706242, 55.552802], - [37.706242, 55.552892], - [37.706332, 55.552892], - [37.706332, 55.552802], - [37.706242, 55.552802] + [37.706244, 55.552621], + [37.706244, 55.552711], + [37.706334, 55.552711], + [37.706334, 55.552621], + [37.706244, 55.552621] ] ] } @@ -28744,11 +28680,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706242, 55.552892], - [37.706242, 55.552982], - [37.706332, 55.552982], - [37.706332, 55.552892], - [37.706242, 55.552892] + [37.706244, 55.552711], + [37.706244, 55.552801], + [37.706334, 55.552801], + [37.706334, 55.552711], + [37.706244, 55.552711] ] ] } @@ -28760,11 +28696,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706242, 55.552982], - [37.706242, 55.553072], - [37.706332, 55.553072], - [37.706332, 55.552982], - [37.706242, 55.552982] + [37.706244, 55.552801], + [37.706244, 55.552891], + [37.706334, 55.552891], + [37.706334, 55.552801], + [37.706244, 55.552801] ] ] } @@ -28776,11 +28712,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706242, 55.553072], - [37.706242, 55.553162], - [37.706332, 55.553162], - [37.706332, 55.553072], - [37.706242, 55.553072] + [37.706244, 55.552891], + [37.706244, 55.552981], + [37.706334, 55.552981], + [37.706334, 55.552891], + [37.706244, 55.552891] ] ] } @@ -28792,11 +28728,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706242, 55.553162], - [37.706242, 55.553251], - [37.706332, 55.553251], - [37.706332, 55.553162], - [37.706242, 55.553162] + [37.706244, 55.552981], + [37.706244, 55.553071], + [37.706334, 55.553071], + [37.706334, 55.552981], + [37.706244, 55.552981] ] ] } @@ -28808,11 +28744,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706242, 55.553251], - [37.706242, 55.553341], - [37.706332, 55.553341], - [37.706332, 55.553251], - [37.706242, 55.553251] + [37.706244, 55.553071], + [37.706244, 55.553161], + [37.706334, 55.553161], + [37.706334, 55.553071], + [37.706244, 55.553071] ] ] } @@ -28824,11 +28760,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706242, 55.553341], - [37.706242, 55.553431], - [37.706332, 55.553431], - [37.706332, 55.553341], - [37.706242, 55.553341] + [37.706244, 55.553161], + [37.706244, 55.553251], + [37.706334, 55.553251], + [37.706334, 55.553161], + [37.706244, 55.553161] ] ] } @@ -28840,11 +28776,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706242, 55.553431], - [37.706242, 55.553521], - [37.706332, 55.553521], - [37.706332, 55.553431], - [37.706242, 55.553431] + [37.706244, 55.553251], + [37.706244, 55.553341], + [37.706334, 55.553341], + [37.706334, 55.553251], + [37.706244, 55.553251] ] ] } @@ -28856,11 +28792,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706242, 55.553521], - [37.706242, 55.553611], - [37.706332, 55.553611], - [37.706332, 55.553521], - [37.706242, 55.553521] + [37.706244, 55.553341], + [37.706244, 55.553431], + [37.706334, 55.553431], + [37.706334, 55.553341], + [37.706244, 55.553341] ] ] } @@ -28872,11 +28808,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706242, 55.553611], - [37.706242, 55.5537], - [37.706332, 55.5537], - [37.706332, 55.553611], - [37.706242, 55.553611] + [37.706244, 55.553431], + [37.706244, 55.55352], + [37.706334, 55.55352], + [37.706334, 55.553431], + [37.706244, 55.553431] ] ] } @@ -28888,11 +28824,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706242, 55.5537], - [37.706242, 55.55379], - [37.706332, 55.55379], - [37.706332, 55.5537], - [37.706242, 55.5537] + [37.706244, 55.55352], + [37.706244, 55.55361], + [37.706334, 55.55361], + [37.706334, 55.55352], + [37.706244, 55.55352] ] ] } @@ -28904,11 +28840,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706242, 55.55379], - [37.706242, 55.55388], - [37.706332, 55.55388], - [37.706332, 55.55379], - [37.706242, 55.55379] + [37.706244, 55.55361], + [37.706244, 55.5537], + [37.706334, 55.5537], + [37.706334, 55.55361], + [37.706244, 55.55361] ] ] } @@ -28920,11 +28856,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706242, 55.55388], - [37.706242, 55.55397], - [37.706332, 55.55397], - [37.706332, 55.55388], - [37.706242, 55.55388] + [37.706244, 55.5537], + [37.706244, 55.55379], + [37.706334, 55.55379], + [37.706334, 55.5537], + [37.706244, 55.5537] ] ] } @@ -28936,11 +28872,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706242, 55.55397], - [37.706242, 55.55406], - [37.706332, 55.55406], - [37.706332, 55.55397], - [37.706242, 55.55397] + [37.706244, 55.55379], + [37.706244, 55.55388], + [37.706334, 55.55388], + [37.706334, 55.55379], + [37.706244, 55.55379] ] ] } @@ -28952,11 +28888,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706242, 55.55406], - [37.706242, 55.55415], - [37.706332, 55.55415], - [37.706332, 55.55406], - [37.706242, 55.55406] + [37.706244, 55.55388], + [37.706244, 55.55397], + [37.706334, 55.55397], + [37.706334, 55.55388], + [37.706244, 55.55388] ] ] } @@ -28968,11 +28904,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706242, 55.55415], - [37.706242, 55.554239], - [37.706332, 55.554239], - [37.706332, 55.55415], - [37.706242, 55.55415] + [37.706244, 55.55397], + [37.706244, 55.55406], + [37.706334, 55.55406], + [37.706334, 55.55397], + [37.706244, 55.55397] ] ] } @@ -28984,11 +28920,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706242, 55.554239], - [37.706242, 55.554329], - [37.706332, 55.554329], - [37.706332, 55.554239], - [37.706242, 55.554239] + [37.706244, 55.55406], + [37.706244, 55.55415], + [37.706334, 55.55415], + [37.706334, 55.55406], + [37.706244, 55.55406] ] ] } @@ -29000,11 +28936,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706242, 55.554329], - [37.706242, 55.554419], - [37.706332, 55.554419], - [37.706332, 55.554329], - [37.706242, 55.554329] + [37.706244, 55.55415], + [37.706244, 55.55424], + [37.706334, 55.55424], + [37.706334, 55.55415], + [37.706244, 55.55415] ] ] } @@ -29016,11 +28952,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706242, 55.554419], - [37.706242, 55.554509], - [37.706332, 55.554509], - [37.706332, 55.554419], - [37.706242, 55.554419] + [37.706244, 55.55424], + [37.706244, 55.55433], + [37.706334, 55.55433], + [37.706334, 55.55424], + [37.706244, 55.55424] ] ] } @@ -29032,11 +28968,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706242, 55.554509], - [37.706242, 55.554599], - [37.706332, 55.554599], - [37.706332, 55.554509], - [37.706242, 55.554509] + [37.706244, 55.55433], + [37.706244, 55.55442], + [37.706334, 55.55442], + [37.706334, 55.55433], + [37.706244, 55.55433] ] ] } @@ -29048,11 +28984,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706242, 55.554599], - [37.706242, 55.554689], - [37.706332, 55.554689], - [37.706332, 55.554599], - [37.706242, 55.554599] + [37.706244, 55.55442], + [37.706244, 55.55451], + [37.706334, 55.55451], + [37.706334, 55.55442], + [37.706244, 55.55442] ] ] } @@ -29064,11 +29000,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706242, 55.554689], - [37.706242, 55.554778], - [37.706332, 55.554778], - [37.706332, 55.554689], - [37.706242, 55.554689] + [37.706244, 55.55451], + [37.706244, 55.5546], + [37.706334, 55.5546], + [37.706334, 55.55451], + [37.706244, 55.55451] ] ] } @@ -29080,11 +29016,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706242, 55.554778], - [37.706242, 55.554868], - [37.706332, 55.554868], - [37.706332, 55.554778], - [37.706242, 55.554778] + [37.706244, 55.5546], + [37.706244, 55.55469], + [37.706334, 55.55469], + [37.706334, 55.5546], + [37.706244, 55.5546] ] ] } @@ -29096,11 +29032,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706242, 55.554868], - [37.706242, 55.554958], - [37.706332, 55.554958], - [37.706332, 55.554868], - [37.706242, 55.554868] + [37.706244, 55.55469], + [37.706244, 55.55478], + [37.706334, 55.55478], + [37.706334, 55.55469], + [37.706244, 55.55469] ] ] } @@ -29112,11 +29048,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706242, 55.554958], - [37.706242, 55.555048], - [37.706332, 55.555048], - [37.706332, 55.554958], - [37.706242, 55.554958] + [37.706244, 55.55478], + [37.706244, 55.554869], + [37.706334, 55.554869], + [37.706334, 55.55478], + [37.706244, 55.55478] ] ] } @@ -29128,11 +29064,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706242, 55.555048], - [37.706242, 55.555138], - [37.706332, 55.555138], - [37.706332, 55.555048], - [37.706242, 55.555048] + [37.706244, 55.554869], + [37.706244, 55.554959], + [37.706334, 55.554959], + [37.706334, 55.554869], + [37.706244, 55.554869] ] ] } @@ -29144,11 +29080,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706242, 55.555138], - [37.706242, 55.555228], - [37.706332, 55.555228], - [37.706332, 55.555138], - [37.706242, 55.555138] + [37.706244, 55.554959], + [37.706244, 55.555049], + [37.706334, 55.555049], + [37.706334, 55.554959], + [37.706244, 55.554959] ] ] } @@ -29160,11 +29096,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706242, 55.555228], - [37.706242, 55.555317], - [37.706332, 55.555317], - [37.706332, 55.555228], - [37.706242, 55.555228] + [37.706244, 55.555049], + [37.706244, 55.555139], + [37.706334, 55.555139], + [37.706334, 55.555049], + [37.706244, 55.555049] ] ] } @@ -29176,11 +29112,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706242, 55.555317], - [37.706242, 55.555407], - [37.706332, 55.555407], - [37.706332, 55.555317], - [37.706242, 55.555317] + [37.706244, 55.555139], + [37.706244, 55.555229], + [37.706334, 55.555229], + [37.706334, 55.555139], + [37.706244, 55.555139] ] ] } @@ -29192,11 +29128,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706242, 55.555407], - [37.706242, 55.555497], - [37.706332, 55.555497], - [37.706332, 55.555407], - [37.706242, 55.555407] + [37.706244, 55.555229], + [37.706244, 55.555319], + [37.706334, 55.555319], + [37.706334, 55.555229], + [37.706244, 55.555229] ] ] } @@ -29208,11 +29144,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706332, 55.551545], - [37.706332, 55.551634], - [37.706422, 55.551634], - [37.706422, 55.551545], - [37.706332, 55.551545] + [37.706244, 55.555319], + [37.706244, 55.555409], + [37.706334, 55.555409], + [37.706334, 55.555319], + [37.706244, 55.555319] ] ] } @@ -29224,11 +29160,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706332, 55.551634], - [37.706332, 55.551724], - [37.706422, 55.551724], - [37.706422, 55.551634], - [37.706332, 55.551634] + [37.706244, 55.555409], + [37.706244, 55.555499], + [37.706334, 55.555499], + [37.706334, 55.555409], + [37.706244, 55.555409] ] ] } @@ -29240,11 +29176,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706332, 55.551724], - [37.706332, 55.551814], - [37.706422, 55.551814], - [37.706422, 55.551724], - [37.706332, 55.551724] + [37.706334, 55.551542], + [37.706334, 55.551632], + [37.706424, 55.551632], + [37.706424, 55.551542], + [37.706334, 55.551542] ] ] } @@ -29256,11 +29192,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706332, 55.551814], - [37.706332, 55.551904], - [37.706422, 55.551904], - [37.706422, 55.551814], - [37.706332, 55.551814] + [37.706334, 55.551632], + [37.706334, 55.551722], + [37.706424, 55.551722], + [37.706424, 55.551632], + [37.706334, 55.551632] ] ] } @@ -29272,11 +29208,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706332, 55.551904], - [37.706332, 55.551994], - [37.706422, 55.551994], - [37.706422, 55.551904], - [37.706332, 55.551904] + [37.706334, 55.551722], + [37.706334, 55.551812], + [37.706424, 55.551812], + [37.706424, 55.551722], + [37.706334, 55.551722] ] ] } @@ -29288,11 +29224,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706332, 55.551994], - [37.706332, 55.552084], - [37.706422, 55.552084], - [37.706422, 55.551994], - [37.706332, 55.551994] + [37.706334, 55.551812], + [37.706334, 55.551902], + [37.706424, 55.551902], + [37.706424, 55.551812], + [37.706334, 55.551812] ] ] } @@ -29304,11 +29240,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706332, 55.552084], - [37.706332, 55.552173], - [37.706422, 55.552173], - [37.706422, 55.552084], - [37.706332, 55.552084] + [37.706334, 55.551902], + [37.706334, 55.551992], + [37.706424, 55.551992], + [37.706424, 55.551902], + [37.706334, 55.551902] ] ] } @@ -29320,11 +29256,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706332, 55.552173], - [37.706332, 55.552263], - [37.706422, 55.552263], - [37.706422, 55.552173], - [37.706332, 55.552173] + [37.706334, 55.551992], + [37.706334, 55.552082], + [37.706424, 55.552082], + [37.706424, 55.551992], + [37.706334, 55.551992] ] ] } @@ -29336,11 +29272,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706332, 55.552263], - [37.706332, 55.552353], - [37.706422, 55.552353], - [37.706422, 55.552263], - [37.706332, 55.552263] + [37.706334, 55.552082], + [37.706334, 55.552171], + [37.706424, 55.552171], + [37.706424, 55.552082], + [37.706334, 55.552082] ] ] } @@ -29352,11 +29288,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706332, 55.552353], - [37.706332, 55.552443], - [37.706422, 55.552443], - [37.706422, 55.552353], - [37.706332, 55.552353] + [37.706334, 55.552171], + [37.706334, 55.552261], + [37.706424, 55.552261], + [37.706424, 55.552171], + [37.706334, 55.552171] ] ] } @@ -29368,11 +29304,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706332, 55.552443], - [37.706332, 55.552533], - [37.706422, 55.552533], - [37.706422, 55.552443], - [37.706332, 55.552443] + [37.706334, 55.552261], + [37.706334, 55.552351], + [37.706424, 55.552351], + [37.706424, 55.552261], + [37.706334, 55.552261] ] ] } @@ -29384,11 +29320,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706332, 55.552533], - [37.706332, 55.552623], - [37.706422, 55.552623], - [37.706422, 55.552533], - [37.706332, 55.552533] + [37.706334, 55.552351], + [37.706334, 55.552441], + [37.706424, 55.552441], + [37.706424, 55.552351], + [37.706334, 55.552351] ] ] } @@ -29400,11 +29336,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706332, 55.552623], - [37.706332, 55.552712], - [37.706422, 55.552712], - [37.706422, 55.552623], - [37.706332, 55.552623] + [37.706334, 55.552441], + [37.706334, 55.552531], + [37.706424, 55.552531], + [37.706424, 55.552441], + [37.706334, 55.552441] ] ] } @@ -29416,11 +29352,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706332, 55.552712], - [37.706332, 55.552802], - [37.706422, 55.552802], - [37.706422, 55.552712], - [37.706332, 55.552712] + [37.706334, 55.552531], + [37.706334, 55.552621], + [37.706424, 55.552621], + [37.706424, 55.552531], + [37.706334, 55.552531] ] ] } @@ -29432,11 +29368,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706332, 55.552802], - [37.706332, 55.552892], - [37.706422, 55.552892], - [37.706422, 55.552802], - [37.706332, 55.552802] + [37.706334, 55.552621], + [37.706334, 55.552711], + [37.706424, 55.552711], + [37.706424, 55.552621], + [37.706334, 55.552621] ] ] } @@ -29448,11 +29384,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706332, 55.552892], - [37.706332, 55.552982], - [37.706422, 55.552982], - [37.706422, 55.552892], - [37.706332, 55.552892] + [37.706334, 55.552711], + [37.706334, 55.552801], + [37.706424, 55.552801], + [37.706424, 55.552711], + [37.706334, 55.552711] ] ] } @@ -29464,11 +29400,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706332, 55.552982], - [37.706332, 55.553072], - [37.706422, 55.553072], - [37.706422, 55.552982], - [37.706332, 55.552982] + [37.706334, 55.552801], + [37.706334, 55.552891], + [37.706424, 55.552891], + [37.706424, 55.552801], + [37.706334, 55.552801] ] ] } @@ -29480,11 +29416,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706332, 55.553072], - [37.706332, 55.553162], - [37.706422, 55.553162], - [37.706422, 55.553072], - [37.706332, 55.553072] + [37.706334, 55.552891], + [37.706334, 55.552981], + [37.706424, 55.552981], + [37.706424, 55.552891], + [37.706334, 55.552891] ] ] } @@ -29496,11 +29432,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706332, 55.553162], - [37.706332, 55.553251], - [37.706422, 55.553251], - [37.706422, 55.553162], - [37.706332, 55.553162] + [37.706334, 55.552981], + [37.706334, 55.553071], + [37.706424, 55.553071], + [37.706424, 55.552981], + [37.706334, 55.552981] ] ] } @@ -29512,11 +29448,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706332, 55.553251], - [37.706332, 55.553341], - [37.706422, 55.553341], - [37.706422, 55.553251], - [37.706332, 55.553251] + [37.706334, 55.553071], + [37.706334, 55.553161], + [37.706424, 55.553161], + [37.706424, 55.553071], + [37.706334, 55.553071] ] ] } @@ -29528,11 +29464,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706332, 55.553341], - [37.706332, 55.553431], - [37.706422, 55.553431], - [37.706422, 55.553341], - [37.706332, 55.553341] + [37.706334, 55.553161], + [37.706334, 55.553251], + [37.706424, 55.553251], + [37.706424, 55.553161], + [37.706334, 55.553161] ] ] } @@ -29544,11 +29480,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706332, 55.553431], - [37.706332, 55.553521], - [37.706422, 55.553521], - [37.706422, 55.553431], - [37.706332, 55.553431] + [37.706334, 55.553251], + [37.706334, 55.553341], + [37.706424, 55.553341], + [37.706424, 55.553251], + [37.706334, 55.553251] ] ] } @@ -29560,11 +29496,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706332, 55.553521], - [37.706332, 55.553611], - [37.706422, 55.553611], - [37.706422, 55.553521], - [37.706332, 55.553521] + [37.706334, 55.553341], + [37.706334, 55.553431], + [37.706424, 55.553431], + [37.706424, 55.553341], + [37.706334, 55.553341] ] ] } @@ -29576,11 +29512,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706332, 55.553611], - [37.706332, 55.5537], - [37.706422, 55.5537], - [37.706422, 55.553611], - [37.706332, 55.553611] + [37.706334, 55.553431], + [37.706334, 55.55352], + [37.706424, 55.55352], + [37.706424, 55.553431], + [37.706334, 55.553431] ] ] } @@ -29592,11 +29528,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706332, 55.5537], - [37.706332, 55.55379], - [37.706422, 55.55379], - [37.706422, 55.5537], - [37.706332, 55.5537] + [37.706334, 55.55352], + [37.706334, 55.55361], + [37.706424, 55.55361], + [37.706424, 55.55352], + [37.706334, 55.55352] ] ] } @@ -29608,11 +29544,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706332, 55.55379], - [37.706332, 55.55388], - [37.706422, 55.55388], - [37.706422, 55.55379], - [37.706332, 55.55379] + [37.706334, 55.55361], + [37.706334, 55.5537], + [37.706424, 55.5537], + [37.706424, 55.55361], + [37.706334, 55.55361] ] ] } @@ -29624,11 +29560,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706332, 55.55388], - [37.706332, 55.55397], - [37.706422, 55.55397], - [37.706422, 55.55388], - [37.706332, 55.55388] + [37.706334, 55.5537], + [37.706334, 55.55379], + [37.706424, 55.55379], + [37.706424, 55.5537], + [37.706334, 55.5537] ] ] } @@ -29640,11 +29576,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706332, 55.55397], - [37.706332, 55.55406], - [37.706422, 55.55406], - [37.706422, 55.55397], - [37.706332, 55.55397] + [37.706334, 55.55379], + [37.706334, 55.55388], + [37.706424, 55.55388], + [37.706424, 55.55379], + [37.706334, 55.55379] ] ] } @@ -29656,11 +29592,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706332, 55.55406], - [37.706332, 55.55415], - [37.706422, 55.55415], - [37.706422, 55.55406], - [37.706332, 55.55406] + [37.706334, 55.55388], + [37.706334, 55.55397], + [37.706424, 55.55397], + [37.706424, 55.55388], + [37.706334, 55.55388] ] ] } @@ -29672,11 +29608,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706332, 55.55415], - [37.706332, 55.554239], - [37.706422, 55.554239], - [37.706422, 55.55415], - [37.706332, 55.55415] + [37.706334, 55.55397], + [37.706334, 55.55406], + [37.706424, 55.55406], + [37.706424, 55.55397], + [37.706334, 55.55397] ] ] } @@ -29688,11 +29624,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706332, 55.554239], - [37.706332, 55.554329], - [37.706422, 55.554329], - [37.706422, 55.554239], - [37.706332, 55.554239] + [37.706334, 55.55406], + [37.706334, 55.55415], + [37.706424, 55.55415], + [37.706424, 55.55406], + [37.706334, 55.55406] ] ] } @@ -29704,11 +29640,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706332, 55.554329], - [37.706332, 55.554419], - [37.706422, 55.554419], - [37.706422, 55.554329], - [37.706332, 55.554329] + [37.706334, 55.55415], + [37.706334, 55.55424], + [37.706424, 55.55424], + [37.706424, 55.55415], + [37.706334, 55.55415] ] ] } @@ -29720,11 +29656,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706332, 55.554419], - [37.706332, 55.554509], - [37.706422, 55.554509], - [37.706422, 55.554419], - [37.706332, 55.554419] + [37.706334, 55.55424], + [37.706334, 55.55433], + [37.706424, 55.55433], + [37.706424, 55.55424], + [37.706334, 55.55424] ] ] } @@ -29736,11 +29672,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706332, 55.554509], - [37.706332, 55.554599], - [37.706422, 55.554599], - [37.706422, 55.554509], - [37.706332, 55.554509] + [37.706334, 55.55433], + [37.706334, 55.55442], + [37.706424, 55.55442], + [37.706424, 55.55433], + [37.706334, 55.55433] ] ] } @@ -29752,11 +29688,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706332, 55.554599], - [37.706332, 55.554689], - [37.706422, 55.554689], - [37.706422, 55.554599], - [37.706332, 55.554599] + [37.706334, 55.55442], + [37.706334, 55.55451], + [37.706424, 55.55451], + [37.706424, 55.55442], + [37.706334, 55.55442] ] ] } @@ -29768,11 +29704,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706332, 55.554689], - [37.706332, 55.554778], - [37.706422, 55.554778], - [37.706422, 55.554689], - [37.706332, 55.554689] + [37.706334, 55.55451], + [37.706334, 55.5546], + [37.706424, 55.5546], + [37.706424, 55.55451], + [37.706334, 55.55451] ] ] } @@ -29784,11 +29720,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706332, 55.554778], - [37.706332, 55.554868], - [37.706422, 55.554868], - [37.706422, 55.554778], - [37.706332, 55.554778] + [37.706334, 55.5546], + [37.706334, 55.55469], + [37.706424, 55.55469], + [37.706424, 55.5546], + [37.706334, 55.5546] ] ] } @@ -29800,11 +29736,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706332, 55.554868], - [37.706332, 55.554958], - [37.706422, 55.554958], - [37.706422, 55.554868], - [37.706332, 55.554868] + [37.706334, 55.55469], + [37.706334, 55.55478], + [37.706424, 55.55478], + [37.706424, 55.55469], + [37.706334, 55.55469] ] ] } @@ -29816,11 +29752,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706332, 55.554958], - [37.706332, 55.555048], - [37.706422, 55.555048], - [37.706422, 55.554958], - [37.706332, 55.554958] + [37.706334, 55.55478], + [37.706334, 55.554869], + [37.706424, 55.554869], + [37.706424, 55.55478], + [37.706334, 55.55478] ] ] } @@ -29832,11 +29768,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706332, 55.555048], - [37.706332, 55.555138], - [37.706422, 55.555138], - [37.706422, 55.555048], - [37.706332, 55.555048] + [37.706334, 55.554869], + [37.706334, 55.554959], + [37.706424, 55.554959], + [37.706424, 55.554869], + [37.706334, 55.554869] ] ] } @@ -29848,11 +29784,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706332, 55.555138], - [37.706332, 55.555228], - [37.706422, 55.555228], - [37.706422, 55.555138], - [37.706332, 55.555138] + [37.706334, 55.554959], + [37.706334, 55.555049], + [37.706424, 55.555049], + [37.706424, 55.554959], + [37.706334, 55.554959] ] ] } @@ -29864,11 +29800,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706332, 55.555228], - [37.706332, 55.555317], - [37.706422, 55.555317], - [37.706422, 55.555228], - [37.706332, 55.555228] + [37.706334, 55.555049], + [37.706334, 55.555139], + [37.706424, 55.555139], + [37.706424, 55.555049], + [37.706334, 55.555049] ] ] } @@ -29880,11 +29816,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706332, 55.555317], - [37.706332, 55.555407], - [37.706422, 55.555407], - [37.706422, 55.555317], - [37.706332, 55.555317] + [37.706334, 55.555139], + [37.706334, 55.555229], + [37.706424, 55.555229], + [37.706424, 55.555139], + [37.706334, 55.555139] ] ] } @@ -29896,11 +29832,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706332, 55.555407], - [37.706332, 55.555497], - [37.706422, 55.555497], - [37.706422, 55.555407], - [37.706332, 55.555407] + [37.706334, 55.555229], + [37.706334, 55.555319], + [37.706424, 55.555319], + [37.706424, 55.555229], + [37.706334, 55.555229] ] ] } @@ -29912,11 +29848,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706422, 55.551545], - [37.706422, 55.551634], - [37.706512, 55.551634], - [37.706512, 55.551545], - [37.706422, 55.551545] + [37.706334, 55.555319], + [37.706334, 55.555409], + [37.706424, 55.555409], + [37.706424, 55.555319], + [37.706334, 55.555319] ] ] } @@ -29928,11 +29864,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706422, 55.551634], - [37.706422, 55.551724], - [37.706512, 55.551724], - [37.706512, 55.551634], - [37.706422, 55.551634] + [37.706334, 55.555409], + [37.706334, 55.555499], + [37.706424, 55.555499], + [37.706424, 55.555409], + [37.706334, 55.555409] ] ] } @@ -29944,11 +29880,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706422, 55.551724], - [37.706422, 55.551814], - [37.706512, 55.551814], - [37.706512, 55.551724], - [37.706422, 55.551724] + [37.706424, 55.551542], + [37.706424, 55.551632], + [37.706514, 55.551632], + [37.706514, 55.551542], + [37.706424, 55.551542] ] ] } @@ -29960,11 +29896,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706422, 55.551814], - [37.706422, 55.551904], - [37.706512, 55.551904], - [37.706512, 55.551814], - [37.706422, 55.551814] + [37.706424, 55.551632], + [37.706424, 55.551722], + [37.706514, 55.551722], + [37.706514, 55.551632], + [37.706424, 55.551632] ] ] } @@ -29976,11 +29912,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706422, 55.551904], - [37.706422, 55.551994], - [37.706512, 55.551994], - [37.706512, 55.551904], - [37.706422, 55.551904] + [37.706424, 55.551722], + [37.706424, 55.551812], + [37.706514, 55.551812], + [37.706514, 55.551722], + [37.706424, 55.551722] ] ] } @@ -29992,11 +29928,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706422, 55.551994], - [37.706422, 55.552084], - [37.706512, 55.552084], - [37.706512, 55.551994], - [37.706422, 55.551994] + [37.706424, 55.551812], + [37.706424, 55.551902], + [37.706514, 55.551902], + [37.706514, 55.551812], + [37.706424, 55.551812] ] ] } @@ -30008,11 +29944,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706422, 55.552084], - [37.706422, 55.552173], - [37.706512, 55.552173], - [37.706512, 55.552084], - [37.706422, 55.552084] + [37.706424, 55.551902], + [37.706424, 55.551992], + [37.706514, 55.551992], + [37.706514, 55.551902], + [37.706424, 55.551902] ] ] } @@ -30024,11 +29960,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706422, 55.552173], - [37.706422, 55.552263], - [37.706512, 55.552263], - [37.706512, 55.552173], - [37.706422, 55.552173] + [37.706424, 55.551992], + [37.706424, 55.552082], + [37.706514, 55.552082], + [37.706514, 55.551992], + [37.706424, 55.551992] ] ] } @@ -30040,11 +29976,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706422, 55.552263], - [37.706422, 55.552353], - [37.706512, 55.552353], - [37.706512, 55.552263], - [37.706422, 55.552263] + [37.706424, 55.552082], + [37.706424, 55.552171], + [37.706514, 55.552171], + [37.706514, 55.552082], + [37.706424, 55.552082] ] ] } @@ -30056,11 +29992,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706422, 55.552353], - [37.706422, 55.552443], - [37.706512, 55.552443], - [37.706512, 55.552353], - [37.706422, 55.552353] + [37.706424, 55.552171], + [37.706424, 55.552261], + [37.706514, 55.552261], + [37.706514, 55.552171], + [37.706424, 55.552171] ] ] } @@ -30072,11 +30008,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706422, 55.552443], - [37.706422, 55.552533], - [37.706512, 55.552533], - [37.706512, 55.552443], - [37.706422, 55.552443] + [37.706424, 55.552261], + [37.706424, 55.552351], + [37.706514, 55.552351], + [37.706514, 55.552261], + [37.706424, 55.552261] ] ] } @@ -30088,11 +30024,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706422, 55.552533], - [37.706422, 55.552623], - [37.706512, 55.552623], - [37.706512, 55.552533], - [37.706422, 55.552533] + [37.706424, 55.552351], + [37.706424, 55.552441], + [37.706514, 55.552441], + [37.706514, 55.552351], + [37.706424, 55.552351] ] ] } @@ -30104,11 +30040,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706422, 55.552623], - [37.706422, 55.552712], - [37.706512, 55.552712], - [37.706512, 55.552623], - [37.706422, 55.552623] + [37.706424, 55.552441], + [37.706424, 55.552531], + [37.706514, 55.552531], + [37.706514, 55.552441], + [37.706424, 55.552441] ] ] } @@ -30120,11 +30056,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706422, 55.552712], - [37.706422, 55.552802], - [37.706512, 55.552802], - [37.706512, 55.552712], - [37.706422, 55.552712] + [37.706424, 55.552531], + [37.706424, 55.552621], + [37.706514, 55.552621], + [37.706514, 55.552531], + [37.706424, 55.552531] ] ] } @@ -30136,11 +30072,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706422, 55.552802], - [37.706422, 55.552892], - [37.706512, 55.552892], - [37.706512, 55.552802], - [37.706422, 55.552802] + [37.706424, 55.552621], + [37.706424, 55.552711], + [37.706514, 55.552711], + [37.706514, 55.552621], + [37.706424, 55.552621] ] ] } @@ -30152,11 +30088,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706422, 55.552892], - [37.706422, 55.552982], - [37.706512, 55.552982], - [37.706512, 55.552892], - [37.706422, 55.552892] + [37.706424, 55.552711], + [37.706424, 55.552801], + [37.706514, 55.552801], + [37.706514, 55.552711], + [37.706424, 55.552711] ] ] } @@ -30168,11 +30104,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706422, 55.552982], - [37.706422, 55.553072], - [37.706512, 55.553072], - [37.706512, 55.552982], - [37.706422, 55.552982] + [37.706424, 55.552801], + [37.706424, 55.552891], + [37.706514, 55.552891], + [37.706514, 55.552801], + [37.706424, 55.552801] ] ] } @@ -30184,11 +30120,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706422, 55.553072], - [37.706422, 55.553162], - [37.706512, 55.553162], - [37.706512, 55.553072], - [37.706422, 55.553072] + [37.706424, 55.552891], + [37.706424, 55.552981], + [37.706514, 55.552981], + [37.706514, 55.552891], + [37.706424, 55.552891] ] ] } @@ -30200,11 +30136,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706422, 55.553162], - [37.706422, 55.553251], - [37.706512, 55.553251], - [37.706512, 55.553162], - [37.706422, 55.553162] + [37.706424, 55.552981], + [37.706424, 55.553071], + [37.706514, 55.553071], + [37.706514, 55.552981], + [37.706424, 55.552981] ] ] } @@ -30216,11 +30152,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706422, 55.553251], - [37.706422, 55.553341], - [37.706512, 55.553341], - [37.706512, 55.553251], - [37.706422, 55.553251] + [37.706424, 55.553071], + [37.706424, 55.553161], + [37.706514, 55.553161], + [37.706514, 55.553071], + [37.706424, 55.553071] ] ] } @@ -30232,11 +30168,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706422, 55.553341], - [37.706422, 55.553431], - [37.706512, 55.553431], - [37.706512, 55.553341], - [37.706422, 55.553341] + [37.706424, 55.553161], + [37.706424, 55.553251], + [37.706514, 55.553251], + [37.706514, 55.553161], + [37.706424, 55.553161] ] ] } @@ -30248,11 +30184,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706422, 55.553431], - [37.706422, 55.553521], - [37.706512, 55.553521], - [37.706512, 55.553431], - [37.706422, 55.553431] + [37.706424, 55.553251], + [37.706424, 55.553341], + [37.706514, 55.553341], + [37.706514, 55.553251], + [37.706424, 55.553251] ] ] } @@ -30264,11 +30200,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706422, 55.553521], - [37.706422, 55.553611], - [37.706512, 55.553611], - [37.706512, 55.553521], - [37.706422, 55.553521] + [37.706424, 55.553341], + [37.706424, 55.553431], + [37.706514, 55.553431], + [37.706514, 55.553341], + [37.706424, 55.553341] ] ] } @@ -30280,11 +30216,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706422, 55.553611], - [37.706422, 55.5537], - [37.706512, 55.5537], - [37.706512, 55.553611], - [37.706422, 55.553611] + [37.706424, 55.553431], + [37.706424, 55.55352], + [37.706514, 55.55352], + [37.706514, 55.553431], + [37.706424, 55.553431] ] ] } @@ -30296,11 +30232,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706422, 55.5537], - [37.706422, 55.55379], - [37.706512, 55.55379], - [37.706512, 55.5537], - [37.706422, 55.5537] + [37.706424, 55.55352], + [37.706424, 55.55361], + [37.706514, 55.55361], + [37.706514, 55.55352], + [37.706424, 55.55352] ] ] } @@ -30312,11 +30248,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706422, 55.55379], - [37.706422, 55.55388], - [37.706512, 55.55388], - [37.706512, 55.55379], - [37.706422, 55.55379] + [37.706424, 55.55361], + [37.706424, 55.5537], + [37.706514, 55.5537], + [37.706514, 55.55361], + [37.706424, 55.55361] ] ] } @@ -30328,11 +30264,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706422, 55.55388], - [37.706422, 55.55397], - [37.706512, 55.55397], - [37.706512, 55.55388], - [37.706422, 55.55388] + [37.706424, 55.5537], + [37.706424, 55.55379], + [37.706514, 55.55379], + [37.706514, 55.5537], + [37.706424, 55.5537] ] ] } @@ -30344,11 +30280,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706422, 55.55397], - [37.706422, 55.55406], - [37.706512, 55.55406], - [37.706512, 55.55397], - [37.706422, 55.55397] + [37.706424, 55.55379], + [37.706424, 55.55388], + [37.706514, 55.55388], + [37.706514, 55.55379], + [37.706424, 55.55379] ] ] } @@ -30360,11 +30296,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706422, 55.55406], - [37.706422, 55.55415], - [37.706512, 55.55415], - [37.706512, 55.55406], - [37.706422, 55.55406] + [37.706424, 55.55388], + [37.706424, 55.55397], + [37.706514, 55.55397], + [37.706514, 55.55388], + [37.706424, 55.55388] ] ] } @@ -30376,11 +30312,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706422, 55.55415], - [37.706422, 55.554239], - [37.706512, 55.554239], - [37.706512, 55.55415], - [37.706422, 55.55415] + [37.706424, 55.55397], + [37.706424, 55.55406], + [37.706514, 55.55406], + [37.706514, 55.55397], + [37.706424, 55.55397] ] ] } @@ -30392,11 +30328,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706422, 55.554239], - [37.706422, 55.554329], - [37.706512, 55.554329], - [37.706512, 55.554239], - [37.706422, 55.554239] + [37.706424, 55.55406], + [37.706424, 55.55415], + [37.706514, 55.55415], + [37.706514, 55.55406], + [37.706424, 55.55406] ] ] } @@ -30408,11 +30344,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706422, 55.554329], - [37.706422, 55.554419], - [37.706512, 55.554419], - [37.706512, 55.554329], - [37.706422, 55.554329] + [37.706424, 55.55415], + [37.706424, 55.55424], + [37.706514, 55.55424], + [37.706514, 55.55415], + [37.706424, 55.55415] ] ] } @@ -30424,11 +30360,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706422, 55.554419], - [37.706422, 55.554509], - [37.706512, 55.554509], - [37.706512, 55.554419], - [37.706422, 55.554419] + [37.706424, 55.55424], + [37.706424, 55.55433], + [37.706514, 55.55433], + [37.706514, 55.55424], + [37.706424, 55.55424] ] ] } @@ -30440,11 +30376,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706422, 55.554509], - [37.706422, 55.554599], - [37.706512, 55.554599], - [37.706512, 55.554509], - [37.706422, 55.554509] + [37.706424, 55.55433], + [37.706424, 55.55442], + [37.706514, 55.55442], + [37.706514, 55.55433], + [37.706424, 55.55433] ] ] } @@ -30456,11 +30392,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706422, 55.554599], - [37.706422, 55.554689], - [37.706512, 55.554689], - [37.706512, 55.554599], - [37.706422, 55.554599] + [37.706424, 55.55442], + [37.706424, 55.55451], + [37.706514, 55.55451], + [37.706514, 55.55442], + [37.706424, 55.55442] ] ] } @@ -30472,11 +30408,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706422, 55.554689], - [37.706422, 55.554778], - [37.706512, 55.554778], - [37.706512, 55.554689], - [37.706422, 55.554689] + [37.706424, 55.55451], + [37.706424, 55.5546], + [37.706514, 55.5546], + [37.706514, 55.55451], + [37.706424, 55.55451] ] ] } @@ -30488,11 +30424,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706422, 55.554778], - [37.706422, 55.554868], - [37.706512, 55.554868], - [37.706512, 55.554778], - [37.706422, 55.554778] + [37.706424, 55.5546], + [37.706424, 55.55469], + [37.706514, 55.55469], + [37.706514, 55.5546], + [37.706424, 55.5546] ] ] } @@ -30504,11 +30440,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706422, 55.554868], - [37.706422, 55.554958], - [37.706512, 55.554958], - [37.706512, 55.554868], - [37.706422, 55.554868] + [37.706424, 55.55469], + [37.706424, 55.55478], + [37.706514, 55.55478], + [37.706514, 55.55469], + [37.706424, 55.55469] ] ] } @@ -30520,11 +30456,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706422, 55.554958], - [37.706422, 55.555048], - [37.706512, 55.555048], - [37.706512, 55.554958], - [37.706422, 55.554958] + [37.706424, 55.55478], + [37.706424, 55.554869], + [37.706514, 55.554869], + [37.706514, 55.55478], + [37.706424, 55.55478] ] ] } @@ -30536,11 +30472,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706422, 55.555048], - [37.706422, 55.555138], - [37.706512, 55.555138], - [37.706512, 55.555048], - [37.706422, 55.555048] + [37.706424, 55.554869], + [37.706424, 55.554959], + [37.706514, 55.554959], + [37.706514, 55.554869], + [37.706424, 55.554869] ] ] } @@ -30552,11 +30488,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706422, 55.555138], - [37.706422, 55.555228], - [37.706512, 55.555228], - [37.706512, 55.555138], - [37.706422, 55.555138] + [37.706424, 55.554959], + [37.706424, 55.555049], + [37.706514, 55.555049], + [37.706514, 55.554959], + [37.706424, 55.554959] ] ] } @@ -30568,11 +30504,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706422, 55.555228], - [37.706422, 55.555317], - [37.706512, 55.555317], - [37.706512, 55.555228], - [37.706422, 55.555228] + [37.706424, 55.555049], + [37.706424, 55.555139], + [37.706514, 55.555139], + [37.706514, 55.555049], + [37.706424, 55.555049] ] ] } @@ -30584,11 +30520,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706422, 55.555317], - [37.706422, 55.555407], - [37.706512, 55.555407], - [37.706512, 55.555317], - [37.706422, 55.555317] + [37.706424, 55.555139], + [37.706424, 55.555229], + [37.706514, 55.555229], + [37.706514, 55.555139], + [37.706424, 55.555139] ] ] } @@ -30600,11 +30536,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706422, 55.555407], - [37.706422, 55.555497], - [37.706512, 55.555497], - [37.706512, 55.555407], - [37.706422, 55.555407] + [37.706424, 55.555229], + [37.706424, 55.555319], + [37.706514, 55.555319], + [37.706514, 55.555229], + [37.706424, 55.555229] ] ] } @@ -30616,11 +30552,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706422, 55.555497], - [37.706422, 55.555587], - [37.706512, 55.555587], - [37.706512, 55.555497], - [37.706422, 55.555497] + [37.706424, 55.555319], + [37.706424, 55.555409], + [37.706514, 55.555409], + [37.706514, 55.555319], + [37.706424, 55.555319] ] ] } @@ -30632,11 +30568,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706512, 55.551545], - [37.706512, 55.551634], - [37.706602, 55.551634], - [37.706602, 55.551545], - [37.706512, 55.551545] + [37.706424, 55.555409], + [37.706424, 55.555499], + [37.706514, 55.555499], + [37.706514, 55.555409], + [37.706424, 55.555409] ] ] } @@ -30648,11 +30584,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706512, 55.551634], - [37.706512, 55.551724], - [37.706602, 55.551724], - [37.706602, 55.551634], - [37.706512, 55.551634] + [37.706424, 55.555499], + [37.706424, 55.555589], + [37.706514, 55.555589], + [37.706514, 55.555499], + [37.706424, 55.555499] ] ] } @@ -30664,11 +30600,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706512, 55.551724], - [37.706512, 55.551814], - [37.706602, 55.551814], - [37.706602, 55.551724], - [37.706512, 55.551724] + [37.706514, 55.551542], + [37.706514, 55.551632], + [37.706604, 55.551632], + [37.706604, 55.551542], + [37.706514, 55.551542] ] ] } @@ -30680,11 +30616,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706512, 55.551814], - [37.706512, 55.551904], - [37.706602, 55.551904], - [37.706602, 55.551814], - [37.706512, 55.551814] + [37.706514, 55.551632], + [37.706514, 55.551722], + [37.706604, 55.551722], + [37.706604, 55.551632], + [37.706514, 55.551632] ] ] } @@ -30696,11 +30632,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706512, 55.551904], - [37.706512, 55.551994], - [37.706602, 55.551994], - [37.706602, 55.551904], - [37.706512, 55.551904] + [37.706514, 55.551722], + [37.706514, 55.551812], + [37.706604, 55.551812], + [37.706604, 55.551722], + [37.706514, 55.551722] ] ] } @@ -30712,11 +30648,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706512, 55.551994], - [37.706512, 55.552084], - [37.706602, 55.552084], - [37.706602, 55.551994], - [37.706512, 55.551994] + [37.706514, 55.551812], + [37.706514, 55.551902], + [37.706604, 55.551902], + [37.706604, 55.551812], + [37.706514, 55.551812] ] ] } @@ -30728,11 +30664,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706512, 55.552084], - [37.706512, 55.552173], - [37.706602, 55.552173], - [37.706602, 55.552084], - [37.706512, 55.552084] + [37.706514, 55.551902], + [37.706514, 55.551992], + [37.706604, 55.551992], + [37.706604, 55.551902], + [37.706514, 55.551902] ] ] } @@ -30744,11 +30680,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706512, 55.552173], - [37.706512, 55.552263], - [37.706602, 55.552263], - [37.706602, 55.552173], - [37.706512, 55.552173] + [37.706514, 55.551992], + [37.706514, 55.552082], + [37.706604, 55.552082], + [37.706604, 55.551992], + [37.706514, 55.551992] ] ] } @@ -30760,11 +30696,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706512, 55.552263], - [37.706512, 55.552353], - [37.706602, 55.552353], - [37.706602, 55.552263], - [37.706512, 55.552263] + [37.706514, 55.552082], + [37.706514, 55.552171], + [37.706604, 55.552171], + [37.706604, 55.552082], + [37.706514, 55.552082] ] ] } @@ -30776,11 +30712,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706512, 55.552353], - [37.706512, 55.552443], - [37.706602, 55.552443], - [37.706602, 55.552353], - [37.706512, 55.552353] + [37.706514, 55.552171], + [37.706514, 55.552261], + [37.706604, 55.552261], + [37.706604, 55.552171], + [37.706514, 55.552171] ] ] } @@ -30792,11 +30728,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706512, 55.552443], - [37.706512, 55.552533], - [37.706602, 55.552533], - [37.706602, 55.552443], - [37.706512, 55.552443] + [37.706514, 55.552261], + [37.706514, 55.552351], + [37.706604, 55.552351], + [37.706604, 55.552261], + [37.706514, 55.552261] ] ] } @@ -30808,11 +30744,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706512, 55.552533], - [37.706512, 55.552623], - [37.706602, 55.552623], - [37.706602, 55.552533], - [37.706512, 55.552533] + [37.706514, 55.552351], + [37.706514, 55.552441], + [37.706604, 55.552441], + [37.706604, 55.552351], + [37.706514, 55.552351] ] ] } @@ -30824,11 +30760,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706512, 55.552623], - [37.706512, 55.552712], - [37.706602, 55.552712], - [37.706602, 55.552623], - [37.706512, 55.552623] + [37.706514, 55.552441], + [37.706514, 55.552531], + [37.706604, 55.552531], + [37.706604, 55.552441], + [37.706514, 55.552441] ] ] } @@ -30840,11 +30776,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706512, 55.552712], - [37.706512, 55.552802], - [37.706602, 55.552802], - [37.706602, 55.552712], - [37.706512, 55.552712] + [37.706514, 55.552531], + [37.706514, 55.552621], + [37.706604, 55.552621], + [37.706604, 55.552531], + [37.706514, 55.552531] ] ] } @@ -30856,11 +30792,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706512, 55.552802], - [37.706512, 55.552892], - [37.706602, 55.552892], - [37.706602, 55.552802], - [37.706512, 55.552802] + [37.706514, 55.552621], + [37.706514, 55.552711], + [37.706604, 55.552711], + [37.706604, 55.552621], + [37.706514, 55.552621] ] ] } @@ -30872,11 +30808,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706512, 55.552892], - [37.706512, 55.552982], - [37.706602, 55.552982], - [37.706602, 55.552892], - [37.706512, 55.552892] + [37.706514, 55.552711], + [37.706514, 55.552801], + [37.706604, 55.552801], + [37.706604, 55.552711], + [37.706514, 55.552711] ] ] } @@ -30888,11 +30824,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706512, 55.552982], - [37.706512, 55.553072], - [37.706602, 55.553072], - [37.706602, 55.552982], - [37.706512, 55.552982] + [37.706514, 55.552801], + [37.706514, 55.552891], + [37.706604, 55.552891], + [37.706604, 55.552801], + [37.706514, 55.552801] ] ] } @@ -30904,11 +30840,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706512, 55.553072], - [37.706512, 55.553162], - [37.706602, 55.553162], - [37.706602, 55.553072], - [37.706512, 55.553072] + [37.706514, 55.552891], + [37.706514, 55.552981], + [37.706604, 55.552981], + [37.706604, 55.552891], + [37.706514, 55.552891] ] ] } @@ -30920,11 +30856,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706512, 55.553162], - [37.706512, 55.553251], - [37.706602, 55.553251], - [37.706602, 55.553162], - [37.706512, 55.553162] + [37.706514, 55.552981], + [37.706514, 55.553071], + [37.706604, 55.553071], + [37.706604, 55.552981], + [37.706514, 55.552981] ] ] } @@ -30936,11 +30872,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706512, 55.553251], - [37.706512, 55.553341], - [37.706602, 55.553341], - [37.706602, 55.553251], - [37.706512, 55.553251] + [37.706514, 55.553071], + [37.706514, 55.553161], + [37.706604, 55.553161], + [37.706604, 55.553071], + [37.706514, 55.553071] ] ] } @@ -30952,11 +30888,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706512, 55.553341], - [37.706512, 55.553431], - [37.706602, 55.553431], - [37.706602, 55.553341], - [37.706512, 55.553341] + [37.706514, 55.553161], + [37.706514, 55.553251], + [37.706604, 55.553251], + [37.706604, 55.553161], + [37.706514, 55.553161] ] ] } @@ -30968,11 +30904,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706512, 55.553431], - [37.706512, 55.553521], - [37.706602, 55.553521], - [37.706602, 55.553431], - [37.706512, 55.553431] + [37.706514, 55.553251], + [37.706514, 55.553341], + [37.706604, 55.553341], + [37.706604, 55.553251], + [37.706514, 55.553251] ] ] } @@ -30984,11 +30920,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706512, 55.553521], - [37.706512, 55.553611], - [37.706602, 55.553611], - [37.706602, 55.553521], - [37.706512, 55.553521] + [37.706514, 55.553341], + [37.706514, 55.553431], + [37.706604, 55.553431], + [37.706604, 55.553341], + [37.706514, 55.553341] ] ] } @@ -31000,11 +30936,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706512, 55.553611], - [37.706512, 55.5537], - [37.706602, 55.5537], - [37.706602, 55.553611], - [37.706512, 55.553611] + [37.706514, 55.553431], + [37.706514, 55.55352], + [37.706604, 55.55352], + [37.706604, 55.553431], + [37.706514, 55.553431] ] ] } @@ -31016,11 +30952,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706512, 55.5537], - [37.706512, 55.55379], - [37.706602, 55.55379], - [37.706602, 55.5537], - [37.706512, 55.5537] + [37.706514, 55.55352], + [37.706514, 55.55361], + [37.706604, 55.55361], + [37.706604, 55.55352], + [37.706514, 55.55352] ] ] } @@ -31032,11 +30968,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706512, 55.55379], - [37.706512, 55.55388], - [37.706602, 55.55388], - [37.706602, 55.55379], - [37.706512, 55.55379] + [37.706514, 55.55361], + [37.706514, 55.5537], + [37.706604, 55.5537], + [37.706604, 55.55361], + [37.706514, 55.55361] ] ] } @@ -31048,11 +30984,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706512, 55.55388], - [37.706512, 55.55397], - [37.706602, 55.55397], - [37.706602, 55.55388], - [37.706512, 55.55388] + [37.706514, 55.5537], + [37.706514, 55.55379], + [37.706604, 55.55379], + [37.706604, 55.5537], + [37.706514, 55.5537] ] ] } @@ -31064,11 +31000,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706512, 55.55397], - [37.706512, 55.55406], - [37.706602, 55.55406], - [37.706602, 55.55397], - [37.706512, 55.55397] + [37.706514, 55.55379], + [37.706514, 55.55388], + [37.706604, 55.55388], + [37.706604, 55.55379], + [37.706514, 55.55379] ] ] } @@ -31080,11 +31016,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706512, 55.55406], - [37.706512, 55.55415], - [37.706602, 55.55415], - [37.706602, 55.55406], - [37.706512, 55.55406] + [37.706514, 55.55388], + [37.706514, 55.55397], + [37.706604, 55.55397], + [37.706604, 55.55388], + [37.706514, 55.55388] ] ] } @@ -31096,11 +31032,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706512, 55.55415], - [37.706512, 55.554239], - [37.706602, 55.554239], - [37.706602, 55.55415], - [37.706512, 55.55415] + [37.706514, 55.55397], + [37.706514, 55.55406], + [37.706604, 55.55406], + [37.706604, 55.55397], + [37.706514, 55.55397] ] ] } @@ -31112,11 +31048,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706512, 55.554239], - [37.706512, 55.554329], - [37.706602, 55.554329], - [37.706602, 55.554239], - [37.706512, 55.554239] + [37.706514, 55.55406], + [37.706514, 55.55415], + [37.706604, 55.55415], + [37.706604, 55.55406], + [37.706514, 55.55406] ] ] } @@ -31128,11 +31064,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706512, 55.554329], - [37.706512, 55.554419], - [37.706602, 55.554419], - [37.706602, 55.554329], - [37.706512, 55.554329] + [37.706514, 55.55415], + [37.706514, 55.55424], + [37.706604, 55.55424], + [37.706604, 55.55415], + [37.706514, 55.55415] ] ] } @@ -31144,11 +31080,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706512, 55.554419], - [37.706512, 55.554509], - [37.706602, 55.554509], - [37.706602, 55.554419], - [37.706512, 55.554419] + [37.706514, 55.55424], + [37.706514, 55.55433], + [37.706604, 55.55433], + [37.706604, 55.55424], + [37.706514, 55.55424] ] ] } @@ -31160,11 +31096,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706512, 55.554509], - [37.706512, 55.554599], - [37.706602, 55.554599], - [37.706602, 55.554509], - [37.706512, 55.554509] + [37.706514, 55.55433], + [37.706514, 55.55442], + [37.706604, 55.55442], + [37.706604, 55.55433], + [37.706514, 55.55433] ] ] } @@ -31176,11 +31112,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706512, 55.554599], - [37.706512, 55.554689], - [37.706602, 55.554689], - [37.706602, 55.554599], - [37.706512, 55.554599] + [37.706514, 55.55442], + [37.706514, 55.55451], + [37.706604, 55.55451], + [37.706604, 55.55442], + [37.706514, 55.55442] ] ] } @@ -31192,11 +31128,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706512, 55.554689], - [37.706512, 55.554778], - [37.706602, 55.554778], - [37.706602, 55.554689], - [37.706512, 55.554689] + [37.706514, 55.55451], + [37.706514, 55.5546], + [37.706604, 55.5546], + [37.706604, 55.55451], + [37.706514, 55.55451] ] ] } @@ -31208,11 +31144,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706512, 55.554778], - [37.706512, 55.554868], - [37.706602, 55.554868], - [37.706602, 55.554778], - [37.706512, 55.554778] + [37.706514, 55.5546], + [37.706514, 55.55469], + [37.706604, 55.55469], + [37.706604, 55.5546], + [37.706514, 55.5546] ] ] } @@ -31224,11 +31160,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706512, 55.554868], - [37.706512, 55.554958], - [37.706602, 55.554958], - [37.706602, 55.554868], - [37.706512, 55.554868] + [37.706514, 55.55469], + [37.706514, 55.55478], + [37.706604, 55.55478], + [37.706604, 55.55469], + [37.706514, 55.55469] ] ] } @@ -31240,11 +31176,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706512, 55.554958], - [37.706512, 55.555048], - [37.706602, 55.555048], - [37.706602, 55.554958], - [37.706512, 55.554958] + [37.706514, 55.55478], + [37.706514, 55.554869], + [37.706604, 55.554869], + [37.706604, 55.55478], + [37.706514, 55.55478] ] ] } @@ -31256,11 +31192,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706512, 55.555048], - [37.706512, 55.555138], - [37.706602, 55.555138], - [37.706602, 55.555048], - [37.706512, 55.555048] + [37.706514, 55.554869], + [37.706514, 55.554959], + [37.706604, 55.554959], + [37.706604, 55.554869], + [37.706514, 55.554869] ] ] } @@ -31272,11 +31208,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706512, 55.555138], - [37.706512, 55.555228], - [37.706602, 55.555228], - [37.706602, 55.555138], - [37.706512, 55.555138] + [37.706514, 55.554959], + [37.706514, 55.555049], + [37.706604, 55.555049], + [37.706604, 55.554959], + [37.706514, 55.554959] ] ] } @@ -31288,11 +31224,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706512, 55.555228], - [37.706512, 55.555317], - [37.706602, 55.555317], - [37.706602, 55.555228], - [37.706512, 55.555228] + [37.706514, 55.555049], + [37.706514, 55.555139], + [37.706604, 55.555139], + [37.706604, 55.555049], + [37.706514, 55.555049] ] ] } @@ -31304,11 +31240,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706512, 55.555317], - [37.706512, 55.555407], - [37.706602, 55.555407], - [37.706602, 55.555317], - [37.706512, 55.555317] + [37.706514, 55.555139], + [37.706514, 55.555229], + [37.706604, 55.555229], + [37.706604, 55.555139], + [37.706514, 55.555139] ] ] } @@ -31320,11 +31256,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706512, 55.555407], - [37.706512, 55.555497], - [37.706602, 55.555497], - [37.706602, 55.555407], - [37.706512, 55.555407] + [37.706514, 55.555229], + [37.706514, 55.555319], + [37.706604, 55.555319], + [37.706604, 55.555229], + [37.706514, 55.555229] ] ] } @@ -31336,11 +31272,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706512, 55.555497], - [37.706512, 55.555587], - [37.706602, 55.555587], - [37.706602, 55.555497], - [37.706512, 55.555497] + [37.706514, 55.555319], + [37.706514, 55.555409], + [37.706604, 55.555409], + [37.706604, 55.555319], + [37.706514, 55.555319] ] ] } @@ -31352,11 +31288,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706602, 55.551545], - [37.706602, 55.551634], - [37.706692, 55.551634], - [37.706692, 55.551545], - [37.706602, 55.551545] + [37.706514, 55.555409], + [37.706514, 55.555499], + [37.706604, 55.555499], + [37.706604, 55.555409], + [37.706514, 55.555409] ] ] } @@ -31368,11 +31304,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706602, 55.551634], - [37.706602, 55.551724], - [37.706692, 55.551724], - [37.706692, 55.551634], - [37.706602, 55.551634] + [37.706514, 55.555499], + [37.706514, 55.555589], + [37.706604, 55.555589], + [37.706604, 55.555499], + [37.706514, 55.555499] ] ] } @@ -31384,11 +31320,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706602, 55.551724], - [37.706602, 55.551814], - [37.706692, 55.551814], - [37.706692, 55.551724], - [37.706602, 55.551724] + [37.706604, 55.551542], + [37.706604, 55.551632], + [37.706694, 55.551632], + [37.706694, 55.551542], + [37.706604, 55.551542] ] ] } @@ -31400,11 +31336,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706602, 55.551814], - [37.706602, 55.551904], - [37.706692, 55.551904], - [37.706692, 55.551814], - [37.706602, 55.551814] + [37.706604, 55.551632], + [37.706604, 55.551722], + [37.706694, 55.551722], + [37.706694, 55.551632], + [37.706604, 55.551632] ] ] } @@ -31416,11 +31352,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706602, 55.551904], - [37.706602, 55.551994], - [37.706692, 55.551994], - [37.706692, 55.551904], - [37.706602, 55.551904] + [37.706604, 55.551722], + [37.706604, 55.551812], + [37.706694, 55.551812], + [37.706694, 55.551722], + [37.706604, 55.551722] ] ] } @@ -31432,11 +31368,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706602, 55.551994], - [37.706602, 55.552084], - [37.706692, 55.552084], - [37.706692, 55.551994], - [37.706602, 55.551994] + [37.706604, 55.551812], + [37.706604, 55.551902], + [37.706694, 55.551902], + [37.706694, 55.551812], + [37.706604, 55.551812] ] ] } @@ -31448,11 +31384,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706602, 55.552084], - [37.706602, 55.552173], - [37.706692, 55.552173], - [37.706692, 55.552084], - [37.706602, 55.552084] + [37.706604, 55.551902], + [37.706604, 55.551992], + [37.706694, 55.551992], + [37.706694, 55.551902], + [37.706604, 55.551902] ] ] } @@ -31464,11 +31400,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706602, 55.552173], - [37.706602, 55.552263], - [37.706692, 55.552263], - [37.706692, 55.552173], - [37.706602, 55.552173] + [37.706604, 55.551992], + [37.706604, 55.552082], + [37.706694, 55.552082], + [37.706694, 55.551992], + [37.706604, 55.551992] ] ] } @@ -31480,11 +31416,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706602, 55.552263], - [37.706602, 55.552353], - [37.706692, 55.552353], - [37.706692, 55.552263], - [37.706602, 55.552263] + [37.706604, 55.552082], + [37.706604, 55.552171], + [37.706694, 55.552171], + [37.706694, 55.552082], + [37.706604, 55.552082] ] ] } @@ -31496,11 +31432,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706602, 55.552353], - [37.706602, 55.552443], - [37.706692, 55.552443], - [37.706692, 55.552353], - [37.706602, 55.552353] + [37.706604, 55.552171], + [37.706604, 55.552261], + [37.706694, 55.552261], + [37.706694, 55.552171], + [37.706604, 55.552171] ] ] } @@ -31512,11 +31448,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706602, 55.552443], - [37.706602, 55.552533], - [37.706692, 55.552533], - [37.706692, 55.552443], - [37.706602, 55.552443] + [37.706604, 55.552261], + [37.706604, 55.552351], + [37.706694, 55.552351], + [37.706694, 55.552261], + [37.706604, 55.552261] ] ] } @@ -31528,11 +31464,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706602, 55.552533], - [37.706602, 55.552623], - [37.706692, 55.552623], - [37.706692, 55.552533], - [37.706602, 55.552533] + [37.706604, 55.552351], + [37.706604, 55.552441], + [37.706694, 55.552441], + [37.706694, 55.552351], + [37.706604, 55.552351] ] ] } @@ -31544,11 +31480,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706602, 55.552623], - [37.706602, 55.552712], - [37.706692, 55.552712], - [37.706692, 55.552623], - [37.706602, 55.552623] + [37.706604, 55.552441], + [37.706604, 55.552531], + [37.706694, 55.552531], + [37.706694, 55.552441], + [37.706604, 55.552441] ] ] } @@ -31560,11 +31496,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706602, 55.552712], - [37.706602, 55.552802], - [37.706692, 55.552802], - [37.706692, 55.552712], - [37.706602, 55.552712] + [37.706604, 55.552531], + [37.706604, 55.552621], + [37.706694, 55.552621], + [37.706694, 55.552531], + [37.706604, 55.552531] ] ] } @@ -31576,11 +31512,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706602, 55.552802], - [37.706602, 55.552892], - [37.706692, 55.552892], - [37.706692, 55.552802], - [37.706602, 55.552802] + [37.706604, 55.552621], + [37.706604, 55.552711], + [37.706694, 55.552711], + [37.706694, 55.552621], + [37.706604, 55.552621] ] ] } @@ -31592,11 +31528,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706602, 55.552892], - [37.706602, 55.552982], - [37.706692, 55.552982], - [37.706692, 55.552892], - [37.706602, 55.552892] + [37.706604, 55.552711], + [37.706604, 55.552801], + [37.706694, 55.552801], + [37.706694, 55.552711], + [37.706604, 55.552711] ] ] } @@ -31608,11 +31544,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706602, 55.552982], - [37.706602, 55.553072], - [37.706692, 55.553072], - [37.706692, 55.552982], - [37.706602, 55.552982] + [37.706604, 55.552801], + [37.706604, 55.552891], + [37.706694, 55.552891], + [37.706694, 55.552801], + [37.706604, 55.552801] ] ] } @@ -31624,11 +31560,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706602, 55.553072], - [37.706602, 55.553162], - [37.706692, 55.553162], - [37.706692, 55.553072], - [37.706602, 55.553072] + [37.706604, 55.552891], + [37.706604, 55.552981], + [37.706694, 55.552981], + [37.706694, 55.552891], + [37.706604, 55.552891] ] ] } @@ -31640,11 +31576,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706602, 55.553162], - [37.706602, 55.553251], - [37.706692, 55.553251], - [37.706692, 55.553162], - [37.706602, 55.553162] + [37.706604, 55.552981], + [37.706604, 55.553071], + [37.706694, 55.553071], + [37.706694, 55.552981], + [37.706604, 55.552981] ] ] } @@ -31656,11 +31592,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706602, 55.553251], - [37.706602, 55.553341], - [37.706692, 55.553341], - [37.706692, 55.553251], - [37.706602, 55.553251] + [37.706604, 55.553071], + [37.706604, 55.553161], + [37.706694, 55.553161], + [37.706694, 55.553071], + [37.706604, 55.553071] ] ] } @@ -31672,11 +31608,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706602, 55.553341], - [37.706602, 55.553431], - [37.706692, 55.553431], - [37.706692, 55.553341], - [37.706602, 55.553341] + [37.706604, 55.553161], + [37.706604, 55.553251], + [37.706694, 55.553251], + [37.706694, 55.553161], + [37.706604, 55.553161] ] ] } @@ -31688,11 +31624,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706602, 55.553431], - [37.706602, 55.553521], - [37.706692, 55.553521], - [37.706692, 55.553431], - [37.706602, 55.553431] + [37.706604, 55.553251], + [37.706604, 55.553341], + [37.706694, 55.553341], + [37.706694, 55.553251], + [37.706604, 55.553251] ] ] } @@ -31704,11 +31640,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706602, 55.553521], - [37.706602, 55.553611], - [37.706692, 55.553611], - [37.706692, 55.553521], - [37.706602, 55.553521] + [37.706604, 55.553341], + [37.706604, 55.553431], + [37.706694, 55.553431], + [37.706694, 55.553341], + [37.706604, 55.553341] ] ] } @@ -31720,11 +31656,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706602, 55.553611], - [37.706602, 55.5537], - [37.706692, 55.5537], - [37.706692, 55.553611], - [37.706602, 55.553611] + [37.706604, 55.553431], + [37.706604, 55.55352], + [37.706694, 55.55352], + [37.706694, 55.553431], + [37.706604, 55.553431] ] ] } @@ -31736,11 +31672,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706602, 55.5537], - [37.706602, 55.55379], - [37.706692, 55.55379], - [37.706692, 55.5537], - [37.706602, 55.5537] + [37.706604, 55.55352], + [37.706604, 55.55361], + [37.706694, 55.55361], + [37.706694, 55.55352], + [37.706604, 55.55352] ] ] } @@ -31752,11 +31688,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706602, 55.55379], - [37.706602, 55.55388], - [37.706692, 55.55388], - [37.706692, 55.55379], - [37.706602, 55.55379] + [37.706604, 55.55361], + [37.706604, 55.5537], + [37.706694, 55.5537], + [37.706694, 55.55361], + [37.706604, 55.55361] ] ] } @@ -31768,11 +31704,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706602, 55.55388], - [37.706602, 55.55397], - [37.706692, 55.55397], - [37.706692, 55.55388], - [37.706602, 55.55388] + [37.706604, 55.5537], + [37.706604, 55.55379], + [37.706694, 55.55379], + [37.706694, 55.5537], + [37.706604, 55.5537] ] ] } @@ -31784,11 +31720,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706602, 55.55397], - [37.706602, 55.55406], - [37.706692, 55.55406], - [37.706692, 55.55397], - [37.706602, 55.55397] + [37.706604, 55.55379], + [37.706604, 55.55388], + [37.706694, 55.55388], + [37.706694, 55.55379], + [37.706604, 55.55379] ] ] } @@ -31800,11 +31736,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706602, 55.55406], - [37.706602, 55.55415], - [37.706692, 55.55415], - [37.706692, 55.55406], - [37.706602, 55.55406] + [37.706604, 55.55388], + [37.706604, 55.55397], + [37.706694, 55.55397], + [37.706694, 55.55388], + [37.706604, 55.55388] ] ] } @@ -31816,11 +31752,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706602, 55.55415], - [37.706602, 55.554239], - [37.706692, 55.554239], - [37.706692, 55.55415], - [37.706602, 55.55415] + [37.706604, 55.55397], + [37.706604, 55.55406], + [37.706694, 55.55406], + [37.706694, 55.55397], + [37.706604, 55.55397] ] ] } @@ -31832,11 +31768,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706602, 55.554239], - [37.706602, 55.554329], - [37.706692, 55.554329], - [37.706692, 55.554239], - [37.706602, 55.554239] + [37.706604, 55.55406], + [37.706604, 55.55415], + [37.706694, 55.55415], + [37.706694, 55.55406], + [37.706604, 55.55406] ] ] } @@ -31848,11 +31784,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706602, 55.554329], - [37.706602, 55.554419], - [37.706692, 55.554419], - [37.706692, 55.554329], - [37.706602, 55.554329] + [37.706604, 55.55415], + [37.706604, 55.55424], + [37.706694, 55.55424], + [37.706694, 55.55415], + [37.706604, 55.55415] ] ] } @@ -31864,11 +31800,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706602, 55.554419], - [37.706602, 55.554509], - [37.706692, 55.554509], - [37.706692, 55.554419], - [37.706602, 55.554419] + [37.706604, 55.55424], + [37.706604, 55.55433], + [37.706694, 55.55433], + [37.706694, 55.55424], + [37.706604, 55.55424] ] ] } @@ -31880,11 +31816,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706602, 55.554509], - [37.706602, 55.554599], - [37.706692, 55.554599], - [37.706692, 55.554509], - [37.706602, 55.554509] + [37.706604, 55.55433], + [37.706604, 55.55442], + [37.706694, 55.55442], + [37.706694, 55.55433], + [37.706604, 55.55433] ] ] } @@ -31896,11 +31832,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706602, 55.554599], - [37.706602, 55.554689], - [37.706692, 55.554689], - [37.706692, 55.554599], - [37.706602, 55.554599] + [37.706604, 55.55442], + [37.706604, 55.55451], + [37.706694, 55.55451], + [37.706694, 55.55442], + [37.706604, 55.55442] ] ] } @@ -31912,11 +31848,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706602, 55.554689], - [37.706602, 55.554778], - [37.706692, 55.554778], - [37.706692, 55.554689], - [37.706602, 55.554689] + [37.706604, 55.55451], + [37.706604, 55.5546], + [37.706694, 55.5546], + [37.706694, 55.55451], + [37.706604, 55.55451] ] ] } @@ -31928,11 +31864,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706602, 55.554778], - [37.706602, 55.554868], - [37.706692, 55.554868], - [37.706692, 55.554778], - [37.706602, 55.554778] + [37.706604, 55.5546], + [37.706604, 55.55469], + [37.706694, 55.55469], + [37.706694, 55.5546], + [37.706604, 55.5546] ] ] } @@ -31944,11 +31880,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706602, 55.554868], - [37.706602, 55.554958], - [37.706692, 55.554958], - [37.706692, 55.554868], - [37.706602, 55.554868] + [37.706604, 55.55469], + [37.706604, 55.55478], + [37.706694, 55.55478], + [37.706694, 55.55469], + [37.706604, 55.55469] ] ] } @@ -31960,11 +31896,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706602, 55.554958], - [37.706602, 55.555048], - [37.706692, 55.555048], - [37.706692, 55.554958], - [37.706602, 55.554958] + [37.706604, 55.55478], + [37.706604, 55.554869], + [37.706694, 55.554869], + [37.706694, 55.55478], + [37.706604, 55.55478] ] ] } @@ -31976,11 +31912,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706602, 55.555048], - [37.706602, 55.555138], - [37.706692, 55.555138], - [37.706692, 55.555048], - [37.706602, 55.555048] + [37.706604, 55.554869], + [37.706604, 55.554959], + [37.706694, 55.554959], + [37.706694, 55.554869], + [37.706604, 55.554869] ] ] } @@ -31992,11 +31928,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706602, 55.555138], - [37.706602, 55.555228], - [37.706692, 55.555228], - [37.706692, 55.555138], - [37.706602, 55.555138] + [37.706604, 55.554959], + [37.706604, 55.555049], + [37.706694, 55.555049], + [37.706694, 55.554959], + [37.706604, 55.554959] ] ] } @@ -32008,11 +31944,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706602, 55.555228], - [37.706602, 55.555317], - [37.706692, 55.555317], - [37.706692, 55.555228], - [37.706602, 55.555228] + [37.706604, 55.555049], + [37.706604, 55.555139], + [37.706694, 55.555139], + [37.706694, 55.555049], + [37.706604, 55.555049] ] ] } @@ -32024,11 +31960,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706602, 55.555317], - [37.706602, 55.555407], - [37.706692, 55.555407], - [37.706692, 55.555317], - [37.706602, 55.555317] + [37.706604, 55.555139], + [37.706604, 55.555229], + [37.706694, 55.555229], + [37.706694, 55.555139], + [37.706604, 55.555139] ] ] } @@ -32040,11 +31976,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706602, 55.555407], - [37.706602, 55.555497], - [37.706692, 55.555497], - [37.706692, 55.555407], - [37.706602, 55.555407] + [37.706604, 55.555229], + [37.706604, 55.555319], + [37.706694, 55.555319], + [37.706694, 55.555229], + [37.706604, 55.555229] ] ] } @@ -32056,11 +31992,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706602, 55.555497], - [37.706602, 55.555587], - [37.706692, 55.555587], - [37.706692, 55.555497], - [37.706602, 55.555497] + [37.706604, 55.555319], + [37.706604, 55.555409], + [37.706694, 55.555409], + [37.706694, 55.555319], + [37.706604, 55.555319] ] ] } @@ -32072,11 +32008,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706692, 55.551724], - [37.706692, 55.551814], - [37.706781, 55.551814], - [37.706781, 55.551724], - [37.706692, 55.551724] + [37.706604, 55.555409], + [37.706604, 55.555499], + [37.706694, 55.555499], + [37.706694, 55.555409], + [37.706604, 55.555409] ] ] } @@ -32088,11 +32024,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706692, 55.551814], - [37.706692, 55.551904], - [37.706781, 55.551904], - [37.706781, 55.551814], - [37.706692, 55.551814] + [37.706604, 55.555499], + [37.706604, 55.555589], + [37.706694, 55.555589], + [37.706694, 55.555499], + [37.706604, 55.555499] ] ] } @@ -32104,11 +32040,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706692, 55.551904], - [37.706692, 55.551994], - [37.706781, 55.551994], - [37.706781, 55.551904], - [37.706692, 55.551904] + [37.706694, 55.551722], + [37.706694, 55.551812], + [37.706784, 55.551812], + [37.706784, 55.551722], + [37.706694, 55.551722] ] ] } @@ -32120,11 +32056,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706692, 55.551994], - [37.706692, 55.552084], - [37.706781, 55.552084], - [37.706781, 55.551994], - [37.706692, 55.551994] + [37.706694, 55.551812], + [37.706694, 55.551902], + [37.706784, 55.551902], + [37.706784, 55.551812], + [37.706694, 55.551812] ] ] } @@ -32136,11 +32072,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706692, 55.552084], - [37.706692, 55.552173], - [37.706781, 55.552173], - [37.706781, 55.552084], - [37.706692, 55.552084] + [37.706694, 55.551902], + [37.706694, 55.551992], + [37.706784, 55.551992], + [37.706784, 55.551902], + [37.706694, 55.551902] ] ] } @@ -32152,11 +32088,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706692, 55.552173], - [37.706692, 55.552263], - [37.706781, 55.552263], - [37.706781, 55.552173], - [37.706692, 55.552173] + [37.706694, 55.551992], + [37.706694, 55.552082], + [37.706784, 55.552082], + [37.706784, 55.551992], + [37.706694, 55.551992] ] ] } @@ -32168,11 +32104,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706692, 55.552263], - [37.706692, 55.552353], - [37.706781, 55.552353], - [37.706781, 55.552263], - [37.706692, 55.552263] + [37.706694, 55.552082], + [37.706694, 55.552171], + [37.706784, 55.552171], + [37.706784, 55.552082], + [37.706694, 55.552082] ] ] } @@ -32184,11 +32120,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706692, 55.552353], - [37.706692, 55.552443], - [37.706781, 55.552443], - [37.706781, 55.552353], - [37.706692, 55.552353] + [37.706694, 55.552171], + [37.706694, 55.552261], + [37.706784, 55.552261], + [37.706784, 55.552171], + [37.706694, 55.552171] ] ] } @@ -32200,11 +32136,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706692, 55.552443], - [37.706692, 55.552533], - [37.706781, 55.552533], - [37.706781, 55.552443], - [37.706692, 55.552443] + [37.706694, 55.552261], + [37.706694, 55.552351], + [37.706784, 55.552351], + [37.706784, 55.552261], + [37.706694, 55.552261] ] ] } @@ -32216,11 +32152,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706692, 55.552533], - [37.706692, 55.552623], - [37.706781, 55.552623], - [37.706781, 55.552533], - [37.706692, 55.552533] + [37.706694, 55.552351], + [37.706694, 55.552441], + [37.706784, 55.552441], + [37.706784, 55.552351], + [37.706694, 55.552351] ] ] } @@ -32232,11 +32168,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706692, 55.552623], - [37.706692, 55.552712], - [37.706781, 55.552712], - [37.706781, 55.552623], - [37.706692, 55.552623] + [37.706694, 55.552441], + [37.706694, 55.552531], + [37.706784, 55.552531], + [37.706784, 55.552441], + [37.706694, 55.552441] ] ] } @@ -32248,11 +32184,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706692, 55.552712], - [37.706692, 55.552802], - [37.706781, 55.552802], - [37.706781, 55.552712], - [37.706692, 55.552712] + [37.706694, 55.552531], + [37.706694, 55.552621], + [37.706784, 55.552621], + [37.706784, 55.552531], + [37.706694, 55.552531] ] ] } @@ -32264,11 +32200,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706692, 55.552802], - [37.706692, 55.552892], - [37.706781, 55.552892], - [37.706781, 55.552802], - [37.706692, 55.552802] + [37.706694, 55.552621], + [37.706694, 55.552711], + [37.706784, 55.552711], + [37.706784, 55.552621], + [37.706694, 55.552621] ] ] } @@ -32280,11 +32216,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706692, 55.552892], - [37.706692, 55.552982], - [37.706781, 55.552982], - [37.706781, 55.552892], - [37.706692, 55.552892] + [37.706694, 55.552711], + [37.706694, 55.552801], + [37.706784, 55.552801], + [37.706784, 55.552711], + [37.706694, 55.552711] ] ] } @@ -32296,11 +32232,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706692, 55.552982], - [37.706692, 55.553072], - [37.706781, 55.553072], - [37.706781, 55.552982], - [37.706692, 55.552982] + [37.706694, 55.552801], + [37.706694, 55.552891], + [37.706784, 55.552891], + [37.706784, 55.552801], + [37.706694, 55.552801] ] ] } @@ -32312,11 +32248,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706692, 55.553072], - [37.706692, 55.553162], - [37.706781, 55.553162], - [37.706781, 55.553072], - [37.706692, 55.553072] + [37.706694, 55.552891], + [37.706694, 55.552981], + [37.706784, 55.552981], + [37.706784, 55.552891], + [37.706694, 55.552891] ] ] } @@ -32328,11 +32264,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706692, 55.553162], - [37.706692, 55.553251], - [37.706781, 55.553251], - [37.706781, 55.553162], - [37.706692, 55.553162] + [37.706694, 55.552981], + [37.706694, 55.553071], + [37.706784, 55.553071], + [37.706784, 55.552981], + [37.706694, 55.552981] ] ] } @@ -32344,11 +32280,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706692, 55.553251], - [37.706692, 55.553341], - [37.706781, 55.553341], - [37.706781, 55.553251], - [37.706692, 55.553251] + [37.706694, 55.553071], + [37.706694, 55.553161], + [37.706784, 55.553161], + [37.706784, 55.553071], + [37.706694, 55.553071] ] ] } @@ -32360,11 +32296,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706692, 55.553341], - [37.706692, 55.553431], - [37.706781, 55.553431], - [37.706781, 55.553341], - [37.706692, 55.553341] + [37.706694, 55.553161], + [37.706694, 55.553251], + [37.706784, 55.553251], + [37.706784, 55.553161], + [37.706694, 55.553161] ] ] } @@ -32376,11 +32312,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706692, 55.553431], - [37.706692, 55.553521], - [37.706781, 55.553521], - [37.706781, 55.553431], - [37.706692, 55.553431] + [37.706694, 55.553251], + [37.706694, 55.553341], + [37.706784, 55.553341], + [37.706784, 55.553251], + [37.706694, 55.553251] ] ] } @@ -32392,11 +32328,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706692, 55.553521], - [37.706692, 55.553611], - [37.706781, 55.553611], - [37.706781, 55.553521], - [37.706692, 55.553521] + [37.706694, 55.553341], + [37.706694, 55.553431], + [37.706784, 55.553431], + [37.706784, 55.553341], + [37.706694, 55.553341] ] ] } @@ -32408,11 +32344,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706692, 55.553611], - [37.706692, 55.5537], - [37.706781, 55.5537], - [37.706781, 55.553611], - [37.706692, 55.553611] + [37.706694, 55.553431], + [37.706694, 55.55352], + [37.706784, 55.55352], + [37.706784, 55.553431], + [37.706694, 55.553431] ] ] } @@ -32424,11 +32360,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706692, 55.5537], - [37.706692, 55.55379], - [37.706781, 55.55379], - [37.706781, 55.5537], - [37.706692, 55.5537] + [37.706694, 55.55352], + [37.706694, 55.55361], + [37.706784, 55.55361], + [37.706784, 55.55352], + [37.706694, 55.55352] ] ] } @@ -32440,11 +32376,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706692, 55.55379], - [37.706692, 55.55388], - [37.706781, 55.55388], - [37.706781, 55.55379], - [37.706692, 55.55379] + [37.706694, 55.55361], + [37.706694, 55.5537], + [37.706784, 55.5537], + [37.706784, 55.55361], + [37.706694, 55.55361] ] ] } @@ -32456,11 +32392,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706692, 55.55388], - [37.706692, 55.55397], - [37.706781, 55.55397], - [37.706781, 55.55388], - [37.706692, 55.55388] + [37.706694, 55.5537], + [37.706694, 55.55379], + [37.706784, 55.55379], + [37.706784, 55.5537], + [37.706694, 55.5537] ] ] } @@ -32472,11 +32408,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706692, 55.55397], - [37.706692, 55.55406], - [37.706781, 55.55406], - [37.706781, 55.55397], - [37.706692, 55.55397] + [37.706694, 55.55379], + [37.706694, 55.55388], + [37.706784, 55.55388], + [37.706784, 55.55379], + [37.706694, 55.55379] ] ] } @@ -32488,11 +32424,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706692, 55.55406], - [37.706692, 55.55415], - [37.706781, 55.55415], - [37.706781, 55.55406], - [37.706692, 55.55406] + [37.706694, 55.55388], + [37.706694, 55.55397], + [37.706784, 55.55397], + [37.706784, 55.55388], + [37.706694, 55.55388] ] ] } @@ -32504,11 +32440,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706692, 55.55415], - [37.706692, 55.554239], - [37.706781, 55.554239], - [37.706781, 55.55415], - [37.706692, 55.55415] + [37.706694, 55.55397], + [37.706694, 55.55406], + [37.706784, 55.55406], + [37.706784, 55.55397], + [37.706694, 55.55397] ] ] } @@ -32520,11 +32456,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706692, 55.554239], - [37.706692, 55.554329], - [37.706781, 55.554329], - [37.706781, 55.554239], - [37.706692, 55.554239] + [37.706694, 55.55406], + [37.706694, 55.55415], + [37.706784, 55.55415], + [37.706784, 55.55406], + [37.706694, 55.55406] ] ] } @@ -32536,11 +32472,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706692, 55.554329], - [37.706692, 55.554419], - [37.706781, 55.554419], - [37.706781, 55.554329], - [37.706692, 55.554329] + [37.706694, 55.55415], + [37.706694, 55.55424], + [37.706784, 55.55424], + [37.706784, 55.55415], + [37.706694, 55.55415] ] ] } @@ -32552,11 +32488,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706692, 55.554419], - [37.706692, 55.554509], - [37.706781, 55.554509], - [37.706781, 55.554419], - [37.706692, 55.554419] + [37.706694, 55.55424], + [37.706694, 55.55433], + [37.706784, 55.55433], + [37.706784, 55.55424], + [37.706694, 55.55424] ] ] } @@ -32568,11 +32504,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706692, 55.554509], - [37.706692, 55.554599], - [37.706781, 55.554599], - [37.706781, 55.554509], - [37.706692, 55.554509] + [37.706694, 55.55433], + [37.706694, 55.55442], + [37.706784, 55.55442], + [37.706784, 55.55433], + [37.706694, 55.55433] ] ] } @@ -32584,11 +32520,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706692, 55.554599], - [37.706692, 55.554689], - [37.706781, 55.554689], - [37.706781, 55.554599], - [37.706692, 55.554599] + [37.706694, 55.55442], + [37.706694, 55.55451], + [37.706784, 55.55451], + [37.706784, 55.55442], + [37.706694, 55.55442] ] ] } @@ -32600,11 +32536,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706692, 55.554689], - [37.706692, 55.554778], - [37.706781, 55.554778], - [37.706781, 55.554689], - [37.706692, 55.554689] + [37.706694, 55.55451], + [37.706694, 55.5546], + [37.706784, 55.5546], + [37.706784, 55.55451], + [37.706694, 55.55451] ] ] } @@ -32616,11 +32552,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706692, 55.554778], - [37.706692, 55.554868], - [37.706781, 55.554868], - [37.706781, 55.554778], - [37.706692, 55.554778] + [37.706694, 55.5546], + [37.706694, 55.55469], + [37.706784, 55.55469], + [37.706784, 55.5546], + [37.706694, 55.5546] ] ] } @@ -32632,11 +32568,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706692, 55.554868], - [37.706692, 55.554958], - [37.706781, 55.554958], - [37.706781, 55.554868], - [37.706692, 55.554868] + [37.706694, 55.55469], + [37.706694, 55.55478], + [37.706784, 55.55478], + [37.706784, 55.55469], + [37.706694, 55.55469] ] ] } @@ -32648,11 +32584,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706692, 55.554958], - [37.706692, 55.555048], - [37.706781, 55.555048], - [37.706781, 55.554958], - [37.706692, 55.554958] + [37.706694, 55.55478], + [37.706694, 55.554869], + [37.706784, 55.554869], + [37.706784, 55.55478], + [37.706694, 55.55478] ] ] } @@ -32664,11 +32600,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706692, 55.555048], - [37.706692, 55.555138], - [37.706781, 55.555138], - [37.706781, 55.555048], - [37.706692, 55.555048] + [37.706694, 55.554869], + [37.706694, 55.554959], + [37.706784, 55.554959], + [37.706784, 55.554869], + [37.706694, 55.554869] ] ] } @@ -32680,11 +32616,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706692, 55.555138], - [37.706692, 55.555228], - [37.706781, 55.555228], - [37.706781, 55.555138], - [37.706692, 55.555138] + [37.706694, 55.554959], + [37.706694, 55.555049], + [37.706784, 55.555049], + [37.706784, 55.554959], + [37.706694, 55.554959] ] ] } @@ -32696,11 +32632,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706692, 55.555228], - [37.706692, 55.555317], - [37.706781, 55.555317], - [37.706781, 55.555228], - [37.706692, 55.555228] + [37.706694, 55.555049], + [37.706694, 55.555139], + [37.706784, 55.555139], + [37.706784, 55.555049], + [37.706694, 55.555049] ] ] } @@ -32712,11 +32648,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706692, 55.555317], - [37.706692, 55.555407], - [37.706781, 55.555407], - [37.706781, 55.555317], - [37.706692, 55.555317] + [37.706694, 55.555139], + [37.706694, 55.555229], + [37.706784, 55.555229], + [37.706784, 55.555139], + [37.706694, 55.555139] ] ] } @@ -32728,11 +32664,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706692, 55.555407], - [37.706692, 55.555497], - [37.706781, 55.555497], - [37.706781, 55.555407], - [37.706692, 55.555407] + [37.706694, 55.555229], + [37.706694, 55.555319], + [37.706784, 55.555319], + [37.706784, 55.555229], + [37.706694, 55.555229] ] ] } @@ -32744,11 +32680,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706692, 55.555497], - [37.706692, 55.555587], - [37.706781, 55.555587], - [37.706781, 55.555497], - [37.706692, 55.555497] + [37.706694, 55.555319], + [37.706694, 55.555409], + [37.706784, 55.555409], + [37.706784, 55.555319], + [37.706694, 55.555319] ] ] } @@ -32760,11 +32696,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706692, 55.555587], - [37.706692, 55.555677], - [37.706781, 55.555677], - [37.706781, 55.555587], - [37.706692, 55.555587] + [37.706694, 55.555409], + [37.706694, 55.555499], + [37.706784, 55.555499], + [37.706784, 55.555409], + [37.706694, 55.555409] ] ] } @@ -32776,11 +32712,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706781, 55.551814], - [37.706781, 55.551904], - [37.706871, 55.551904], - [37.706871, 55.551814], - [37.706781, 55.551814] + [37.706694, 55.555499], + [37.706694, 55.555589], + [37.706784, 55.555589], + [37.706784, 55.555499], + [37.706694, 55.555499] ] ] } @@ -32792,11 +32728,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706781, 55.551904], - [37.706781, 55.551994], - [37.706871, 55.551994], - [37.706871, 55.551904], - [37.706781, 55.551904] + [37.706694, 55.555589], + [37.706694, 55.555679], + [37.706784, 55.555679], + [37.706784, 55.555589], + [37.706694, 55.555589] ] ] } @@ -32808,11 +32744,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706781, 55.551994], - [37.706781, 55.552084], - [37.706871, 55.552084], - [37.706871, 55.551994], - [37.706781, 55.551994] + [37.706784, 55.551812], + [37.706784, 55.551902], + [37.706874, 55.551902], + [37.706874, 55.551812], + [37.706784, 55.551812] ] ] } @@ -32824,11 +32760,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706781, 55.552084], - [37.706781, 55.552173], - [37.706871, 55.552173], - [37.706871, 55.552084], - [37.706781, 55.552084] + [37.706784, 55.551902], + [37.706784, 55.551992], + [37.706874, 55.551992], + [37.706874, 55.551902], + [37.706784, 55.551902] ] ] } @@ -32840,11 +32776,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706781, 55.552173], - [37.706781, 55.552263], - [37.706871, 55.552263], - [37.706871, 55.552173], - [37.706781, 55.552173] + [37.706784, 55.551992], + [37.706784, 55.552082], + [37.706874, 55.552082], + [37.706874, 55.551992], + [37.706784, 55.551992] ] ] } @@ -32856,11 +32792,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706781, 55.552263], - [37.706781, 55.552353], - [37.706871, 55.552353], - [37.706871, 55.552263], - [37.706781, 55.552263] + [37.706784, 55.552082], + [37.706784, 55.552171], + [37.706874, 55.552171], + [37.706874, 55.552082], + [37.706784, 55.552082] ] ] } @@ -32872,11 +32808,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706781, 55.552353], - [37.706781, 55.552443], - [37.706871, 55.552443], - [37.706871, 55.552353], - [37.706781, 55.552353] + [37.706784, 55.552171], + [37.706784, 55.552261], + [37.706874, 55.552261], + [37.706874, 55.552171], + [37.706784, 55.552171] ] ] } @@ -32888,11 +32824,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706781, 55.552443], - [37.706781, 55.552533], - [37.706871, 55.552533], - [37.706871, 55.552443], - [37.706781, 55.552443] + [37.706784, 55.552261], + [37.706784, 55.552351], + [37.706874, 55.552351], + [37.706874, 55.552261], + [37.706784, 55.552261] ] ] } @@ -32904,11 +32840,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706781, 55.552533], - [37.706781, 55.552623], - [37.706871, 55.552623], - [37.706871, 55.552533], - [37.706781, 55.552533] + [37.706784, 55.552351], + [37.706784, 55.552441], + [37.706874, 55.552441], + [37.706874, 55.552351], + [37.706784, 55.552351] ] ] } @@ -32920,11 +32856,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706781, 55.552623], - [37.706781, 55.552712], - [37.706871, 55.552712], - [37.706871, 55.552623], - [37.706781, 55.552623] + [37.706784, 55.552441], + [37.706784, 55.552531], + [37.706874, 55.552531], + [37.706874, 55.552441], + [37.706784, 55.552441] ] ] } @@ -32936,11 +32872,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706781, 55.552712], - [37.706781, 55.552802], - [37.706871, 55.552802], - [37.706871, 55.552712], - [37.706781, 55.552712] + [37.706784, 55.552531], + [37.706784, 55.552621], + [37.706874, 55.552621], + [37.706874, 55.552531], + [37.706784, 55.552531] ] ] } @@ -32952,11 +32888,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706781, 55.552802], - [37.706781, 55.552892], - [37.706871, 55.552892], - [37.706871, 55.552802], - [37.706781, 55.552802] + [37.706784, 55.552621], + [37.706784, 55.552711], + [37.706874, 55.552711], + [37.706874, 55.552621], + [37.706784, 55.552621] ] ] } @@ -32968,11 +32904,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706781, 55.552892], - [37.706781, 55.552982], - [37.706871, 55.552982], - [37.706871, 55.552892], - [37.706781, 55.552892] + [37.706784, 55.552711], + [37.706784, 55.552801], + [37.706874, 55.552801], + [37.706874, 55.552711], + [37.706784, 55.552711] ] ] } @@ -32984,11 +32920,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706781, 55.552982], - [37.706781, 55.553072], - [37.706871, 55.553072], - [37.706871, 55.552982], - [37.706781, 55.552982] + [37.706784, 55.552801], + [37.706784, 55.552891], + [37.706874, 55.552891], + [37.706874, 55.552801], + [37.706784, 55.552801] ] ] } @@ -33000,11 +32936,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706781, 55.553072], - [37.706781, 55.553162], - [37.706871, 55.553162], - [37.706871, 55.553072], - [37.706781, 55.553072] + [37.706784, 55.552891], + [37.706784, 55.552981], + [37.706874, 55.552981], + [37.706874, 55.552891], + [37.706784, 55.552891] ] ] } @@ -33016,11 +32952,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706781, 55.553162], - [37.706781, 55.553251], - [37.706871, 55.553251], - [37.706871, 55.553162], - [37.706781, 55.553162] + [37.706784, 55.552981], + [37.706784, 55.553071], + [37.706874, 55.553071], + [37.706874, 55.552981], + [37.706784, 55.552981] ] ] } @@ -33032,11 +32968,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706781, 55.553251], - [37.706781, 55.553341], - [37.706871, 55.553341], - [37.706871, 55.553251], - [37.706781, 55.553251] + [37.706784, 55.553071], + [37.706784, 55.553161], + [37.706874, 55.553161], + [37.706874, 55.553071], + [37.706784, 55.553071] ] ] } @@ -33048,11 +32984,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706781, 55.553341], - [37.706781, 55.553431], - [37.706871, 55.553431], - [37.706871, 55.553341], - [37.706781, 55.553341] + [37.706784, 55.553161], + [37.706784, 55.553251], + [37.706874, 55.553251], + [37.706874, 55.553161], + [37.706784, 55.553161] ] ] } @@ -33064,11 +33000,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706781, 55.553431], - [37.706781, 55.553521], - [37.706871, 55.553521], - [37.706871, 55.553431], - [37.706781, 55.553431] + [37.706784, 55.553251], + [37.706784, 55.553341], + [37.706874, 55.553341], + [37.706874, 55.553251], + [37.706784, 55.553251] ] ] } @@ -33080,11 +33016,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706781, 55.553521], - [37.706781, 55.553611], - [37.706871, 55.553611], - [37.706871, 55.553521], - [37.706781, 55.553521] + [37.706784, 55.553341], + [37.706784, 55.553431], + [37.706874, 55.553431], + [37.706874, 55.553341], + [37.706784, 55.553341] ] ] } @@ -33096,11 +33032,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706781, 55.553611], - [37.706781, 55.5537], - [37.706871, 55.5537], - [37.706871, 55.553611], - [37.706781, 55.553611] + [37.706784, 55.553431], + [37.706784, 55.55352], + [37.706874, 55.55352], + [37.706874, 55.553431], + [37.706784, 55.553431] ] ] } @@ -33112,11 +33048,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706781, 55.5537], - [37.706781, 55.55379], - [37.706871, 55.55379], - [37.706871, 55.5537], - [37.706781, 55.5537] + [37.706784, 55.55352], + [37.706784, 55.55361], + [37.706874, 55.55361], + [37.706874, 55.55352], + [37.706784, 55.55352] ] ] } @@ -33128,11 +33064,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706781, 55.55379], - [37.706781, 55.55388], - [37.706871, 55.55388], - [37.706871, 55.55379], - [37.706781, 55.55379] + [37.706784, 55.55361], + [37.706784, 55.5537], + [37.706874, 55.5537], + [37.706874, 55.55361], + [37.706784, 55.55361] ] ] } @@ -33144,11 +33080,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706781, 55.55388], - [37.706781, 55.55397], - [37.706871, 55.55397], - [37.706871, 55.55388], - [37.706781, 55.55388] + [37.706784, 55.5537], + [37.706784, 55.55379], + [37.706874, 55.55379], + [37.706874, 55.5537], + [37.706784, 55.5537] ] ] } @@ -33160,11 +33096,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706781, 55.55397], - [37.706781, 55.55406], - [37.706871, 55.55406], - [37.706871, 55.55397], - [37.706781, 55.55397] + [37.706784, 55.55379], + [37.706784, 55.55388], + [37.706874, 55.55388], + [37.706874, 55.55379], + [37.706784, 55.55379] ] ] } @@ -33176,11 +33112,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706781, 55.55406], - [37.706781, 55.55415], - [37.706871, 55.55415], - [37.706871, 55.55406], - [37.706781, 55.55406] + [37.706784, 55.55388], + [37.706784, 55.55397], + [37.706874, 55.55397], + [37.706874, 55.55388], + [37.706784, 55.55388] ] ] } @@ -33192,11 +33128,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706781, 55.55415], - [37.706781, 55.554239], - [37.706871, 55.554239], - [37.706871, 55.55415], - [37.706781, 55.55415] + [37.706784, 55.55397], + [37.706784, 55.55406], + [37.706874, 55.55406], + [37.706874, 55.55397], + [37.706784, 55.55397] ] ] } @@ -33208,11 +33144,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706781, 55.554239], - [37.706781, 55.554329], - [37.706871, 55.554329], - [37.706871, 55.554239], - [37.706781, 55.554239] + [37.706784, 55.55406], + [37.706784, 55.55415], + [37.706874, 55.55415], + [37.706874, 55.55406], + [37.706784, 55.55406] ] ] } @@ -33224,11 +33160,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706781, 55.554329], - [37.706781, 55.554419], - [37.706871, 55.554419], - [37.706871, 55.554329], - [37.706781, 55.554329] + [37.706784, 55.55415], + [37.706784, 55.55424], + [37.706874, 55.55424], + [37.706874, 55.55415], + [37.706784, 55.55415] ] ] } @@ -33240,11 +33176,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706781, 55.554419], - [37.706781, 55.554509], - [37.706871, 55.554509], - [37.706871, 55.554419], - [37.706781, 55.554419] + [37.706784, 55.55424], + [37.706784, 55.55433], + [37.706874, 55.55433], + [37.706874, 55.55424], + [37.706784, 55.55424] ] ] } @@ -33256,11 +33192,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706781, 55.554509], - [37.706781, 55.554599], - [37.706871, 55.554599], - [37.706871, 55.554509], - [37.706781, 55.554509] + [37.706784, 55.55433], + [37.706784, 55.55442], + [37.706874, 55.55442], + [37.706874, 55.55433], + [37.706784, 55.55433] ] ] } @@ -33272,11 +33208,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706781, 55.554599], - [37.706781, 55.554689], - [37.706871, 55.554689], - [37.706871, 55.554599], - [37.706781, 55.554599] + [37.706784, 55.55442], + [37.706784, 55.55451], + [37.706874, 55.55451], + [37.706874, 55.55442], + [37.706784, 55.55442] ] ] } @@ -33288,11 +33224,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706781, 55.554689], - [37.706781, 55.554778], - [37.706871, 55.554778], - [37.706871, 55.554689], - [37.706781, 55.554689] + [37.706784, 55.55451], + [37.706784, 55.5546], + [37.706874, 55.5546], + [37.706874, 55.55451], + [37.706784, 55.55451] ] ] } @@ -33304,11 +33240,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706781, 55.554778], - [37.706781, 55.554868], - [37.706871, 55.554868], - [37.706871, 55.554778], - [37.706781, 55.554778] + [37.706784, 55.5546], + [37.706784, 55.55469], + [37.706874, 55.55469], + [37.706874, 55.5546], + [37.706784, 55.5546] ] ] } @@ -33320,11 +33256,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706781, 55.554868], - [37.706781, 55.554958], - [37.706871, 55.554958], - [37.706871, 55.554868], - [37.706781, 55.554868] + [37.706784, 55.55469], + [37.706784, 55.55478], + [37.706874, 55.55478], + [37.706874, 55.55469], + [37.706784, 55.55469] ] ] } @@ -33336,11 +33272,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706781, 55.554958], - [37.706781, 55.555048], - [37.706871, 55.555048], - [37.706871, 55.554958], - [37.706781, 55.554958] + [37.706784, 55.55478], + [37.706784, 55.554869], + [37.706874, 55.554869], + [37.706874, 55.55478], + [37.706784, 55.55478] ] ] } @@ -33352,11 +33288,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706781, 55.555048], - [37.706781, 55.555138], - [37.706871, 55.555138], - [37.706871, 55.555048], - [37.706781, 55.555048] + [37.706784, 55.554869], + [37.706784, 55.554959], + [37.706874, 55.554959], + [37.706874, 55.554869], + [37.706784, 55.554869] ] ] } @@ -33368,11 +33304,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706781, 55.555138], - [37.706781, 55.555228], - [37.706871, 55.555228], - [37.706871, 55.555138], - [37.706781, 55.555138] + [37.706784, 55.554959], + [37.706784, 55.555049], + [37.706874, 55.555049], + [37.706874, 55.554959], + [37.706784, 55.554959] ] ] } @@ -33384,11 +33320,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706781, 55.555228], - [37.706781, 55.555317], - [37.706871, 55.555317], - [37.706871, 55.555228], - [37.706781, 55.555228] + [37.706784, 55.555049], + [37.706784, 55.555139], + [37.706874, 55.555139], + [37.706874, 55.555049], + [37.706784, 55.555049] ] ] } @@ -33400,11 +33336,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706781, 55.555317], - [37.706781, 55.555407], - [37.706871, 55.555407], - [37.706871, 55.555317], - [37.706781, 55.555317] + [37.706784, 55.555139], + [37.706784, 55.555229], + [37.706874, 55.555229], + [37.706874, 55.555139], + [37.706784, 55.555139] ] ] } @@ -33416,11 +33352,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706781, 55.555407], - [37.706781, 55.555497], - [37.706871, 55.555497], - [37.706871, 55.555407], - [37.706781, 55.555407] + [37.706784, 55.555229], + [37.706784, 55.555319], + [37.706874, 55.555319], + [37.706874, 55.555229], + [37.706784, 55.555229] ] ] } @@ -33432,11 +33368,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706781, 55.555497], - [37.706781, 55.555587], - [37.706871, 55.555587], - [37.706871, 55.555497], - [37.706781, 55.555497] + [37.706784, 55.555319], + [37.706784, 55.555409], + [37.706874, 55.555409], + [37.706874, 55.555319], + [37.706784, 55.555319] ] ] } @@ -33448,11 +33384,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706781, 55.555587], - [37.706781, 55.555677], - [37.706871, 55.555677], - [37.706871, 55.555587], - [37.706781, 55.555587] + [37.706784, 55.555409], + [37.706784, 55.555499], + [37.706874, 55.555499], + [37.706874, 55.555409], + [37.706784, 55.555409] ] ] } @@ -33464,11 +33400,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706871, 55.551904], - [37.706871, 55.551994], - [37.706961, 55.551994], - [37.706961, 55.551904], - [37.706871, 55.551904] + [37.706784, 55.555499], + [37.706784, 55.555589], + [37.706874, 55.555589], + [37.706874, 55.555499], + [37.706784, 55.555499] ] ] } @@ -33480,11 +33416,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706871, 55.551994], - [37.706871, 55.552084], - [37.706961, 55.552084], - [37.706961, 55.551994], - [37.706871, 55.551994] + [37.706784, 55.555589], + [37.706784, 55.555679], + [37.706874, 55.555679], + [37.706874, 55.555589], + [37.706784, 55.555589] ] ] } @@ -33496,11 +33432,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706871, 55.552084], - [37.706871, 55.552173], - [37.706961, 55.552173], - [37.706961, 55.552084], - [37.706871, 55.552084] + [37.706874, 55.551902], + [37.706874, 55.551992], + [37.706964, 55.551992], + [37.706964, 55.551902], + [37.706874, 55.551902] ] ] } @@ -33512,11 +33448,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706871, 55.552173], - [37.706871, 55.552263], - [37.706961, 55.552263], - [37.706961, 55.552173], - [37.706871, 55.552173] + [37.706874, 55.551992], + [37.706874, 55.552082], + [37.706964, 55.552082], + [37.706964, 55.551992], + [37.706874, 55.551992] ] ] } @@ -33528,11 +33464,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706871, 55.552263], - [37.706871, 55.552353], - [37.706961, 55.552353], - [37.706961, 55.552263], - [37.706871, 55.552263] + [37.706874, 55.552082], + [37.706874, 55.552171], + [37.706964, 55.552171], + [37.706964, 55.552082], + [37.706874, 55.552082] ] ] } @@ -33544,11 +33480,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706871, 55.552353], - [37.706871, 55.552443], - [37.706961, 55.552443], - [37.706961, 55.552353], - [37.706871, 55.552353] + [37.706874, 55.552171], + [37.706874, 55.552261], + [37.706964, 55.552261], + [37.706964, 55.552171], + [37.706874, 55.552171] ] ] } @@ -33560,11 +33496,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706871, 55.552443], - [37.706871, 55.552533], - [37.706961, 55.552533], - [37.706961, 55.552443], - [37.706871, 55.552443] + [37.706874, 55.552261], + [37.706874, 55.552351], + [37.706964, 55.552351], + [37.706964, 55.552261], + [37.706874, 55.552261] ] ] } @@ -33576,11 +33512,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706871, 55.552533], - [37.706871, 55.552623], - [37.706961, 55.552623], - [37.706961, 55.552533], - [37.706871, 55.552533] + [37.706874, 55.552351], + [37.706874, 55.552441], + [37.706964, 55.552441], + [37.706964, 55.552351], + [37.706874, 55.552351] ] ] } @@ -33592,11 +33528,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706871, 55.552623], - [37.706871, 55.552712], - [37.706961, 55.552712], - [37.706961, 55.552623], - [37.706871, 55.552623] + [37.706874, 55.552441], + [37.706874, 55.552531], + [37.706964, 55.552531], + [37.706964, 55.552441], + [37.706874, 55.552441] ] ] } @@ -33608,11 +33544,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706871, 55.552712], - [37.706871, 55.552802], - [37.706961, 55.552802], - [37.706961, 55.552712], - [37.706871, 55.552712] + [37.706874, 55.552531], + [37.706874, 55.552621], + [37.706964, 55.552621], + [37.706964, 55.552531], + [37.706874, 55.552531] ] ] } @@ -33624,11 +33560,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706871, 55.552802], - [37.706871, 55.552892], - [37.706961, 55.552892], - [37.706961, 55.552802], - [37.706871, 55.552802] + [37.706874, 55.552621], + [37.706874, 55.552711], + [37.706964, 55.552711], + [37.706964, 55.552621], + [37.706874, 55.552621] ] ] } @@ -33640,11 +33576,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706871, 55.552892], - [37.706871, 55.552982], - [37.706961, 55.552982], - [37.706961, 55.552892], - [37.706871, 55.552892] + [37.706874, 55.552711], + [37.706874, 55.552801], + [37.706964, 55.552801], + [37.706964, 55.552711], + [37.706874, 55.552711] ] ] } @@ -33656,11 +33592,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706871, 55.552982], - [37.706871, 55.553072], - [37.706961, 55.553072], - [37.706961, 55.552982], - [37.706871, 55.552982] + [37.706874, 55.552801], + [37.706874, 55.552891], + [37.706964, 55.552891], + [37.706964, 55.552801], + [37.706874, 55.552801] ] ] } @@ -33672,11 +33608,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706871, 55.553072], - [37.706871, 55.553162], - [37.706961, 55.553162], - [37.706961, 55.553072], - [37.706871, 55.553072] + [37.706874, 55.552891], + [37.706874, 55.552981], + [37.706964, 55.552981], + [37.706964, 55.552891], + [37.706874, 55.552891] ] ] } @@ -33688,11 +33624,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706871, 55.553162], - [37.706871, 55.553251], - [37.706961, 55.553251], - [37.706961, 55.553162], - [37.706871, 55.553162] + [37.706874, 55.552981], + [37.706874, 55.553071], + [37.706964, 55.553071], + [37.706964, 55.552981], + [37.706874, 55.552981] ] ] } @@ -33704,11 +33640,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706871, 55.553251], - [37.706871, 55.553341], - [37.706961, 55.553341], - [37.706961, 55.553251], - [37.706871, 55.553251] + [37.706874, 55.553071], + [37.706874, 55.553161], + [37.706964, 55.553161], + [37.706964, 55.553071], + [37.706874, 55.553071] ] ] } @@ -33720,11 +33656,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706871, 55.553341], - [37.706871, 55.553431], - [37.706961, 55.553431], - [37.706961, 55.553341], - [37.706871, 55.553341] + [37.706874, 55.553161], + [37.706874, 55.553251], + [37.706964, 55.553251], + [37.706964, 55.553161], + [37.706874, 55.553161] ] ] } @@ -33736,11 +33672,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706871, 55.553431], - [37.706871, 55.553521], - [37.706961, 55.553521], - [37.706961, 55.553431], - [37.706871, 55.553431] + [37.706874, 55.553251], + [37.706874, 55.553341], + [37.706964, 55.553341], + [37.706964, 55.553251], + [37.706874, 55.553251] ] ] } @@ -33752,11 +33688,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706871, 55.553521], - [37.706871, 55.553611], - [37.706961, 55.553611], - [37.706961, 55.553521], - [37.706871, 55.553521] + [37.706874, 55.553341], + [37.706874, 55.553431], + [37.706964, 55.553431], + [37.706964, 55.553341], + [37.706874, 55.553341] ] ] } @@ -33768,11 +33704,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706871, 55.553611], - [37.706871, 55.5537], - [37.706961, 55.5537], - [37.706961, 55.553611], - [37.706871, 55.553611] + [37.706874, 55.553431], + [37.706874, 55.55352], + [37.706964, 55.55352], + [37.706964, 55.553431], + [37.706874, 55.553431] ] ] } @@ -33784,11 +33720,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706871, 55.5537], - [37.706871, 55.55379], - [37.706961, 55.55379], - [37.706961, 55.5537], - [37.706871, 55.5537] + [37.706874, 55.55352], + [37.706874, 55.55361], + [37.706964, 55.55361], + [37.706964, 55.55352], + [37.706874, 55.55352] ] ] } @@ -33800,11 +33736,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706871, 55.55379], - [37.706871, 55.55388], - [37.706961, 55.55388], - [37.706961, 55.55379], - [37.706871, 55.55379] + [37.706874, 55.55361], + [37.706874, 55.5537], + [37.706964, 55.5537], + [37.706964, 55.55361], + [37.706874, 55.55361] ] ] } @@ -33816,11 +33752,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706871, 55.55388], - [37.706871, 55.55397], - [37.706961, 55.55397], - [37.706961, 55.55388], - [37.706871, 55.55388] + [37.706874, 55.5537], + [37.706874, 55.55379], + [37.706964, 55.55379], + [37.706964, 55.5537], + [37.706874, 55.5537] ] ] } @@ -33832,11 +33768,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706871, 55.55397], - [37.706871, 55.55406], - [37.706961, 55.55406], - [37.706961, 55.55397], - [37.706871, 55.55397] + [37.706874, 55.55379], + [37.706874, 55.55388], + [37.706964, 55.55388], + [37.706964, 55.55379], + [37.706874, 55.55379] ] ] } @@ -33848,11 +33784,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706871, 55.55406], - [37.706871, 55.55415], - [37.706961, 55.55415], - [37.706961, 55.55406], - [37.706871, 55.55406] + [37.706874, 55.55388], + [37.706874, 55.55397], + [37.706964, 55.55397], + [37.706964, 55.55388], + [37.706874, 55.55388] ] ] } @@ -33864,11 +33800,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706871, 55.55415], - [37.706871, 55.554239], - [37.706961, 55.554239], - [37.706961, 55.55415], - [37.706871, 55.55415] + [37.706874, 55.55397], + [37.706874, 55.55406], + [37.706964, 55.55406], + [37.706964, 55.55397], + [37.706874, 55.55397] ] ] } @@ -33880,11 +33816,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706871, 55.554239], - [37.706871, 55.554329], - [37.706961, 55.554329], - [37.706961, 55.554239], - [37.706871, 55.554239] + [37.706874, 55.55406], + [37.706874, 55.55415], + [37.706964, 55.55415], + [37.706964, 55.55406], + [37.706874, 55.55406] ] ] } @@ -33896,11 +33832,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706871, 55.554329], - [37.706871, 55.554419], - [37.706961, 55.554419], - [37.706961, 55.554329], - [37.706871, 55.554329] + [37.706874, 55.55415], + [37.706874, 55.55424], + [37.706964, 55.55424], + [37.706964, 55.55415], + [37.706874, 55.55415] ] ] } @@ -33912,11 +33848,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706871, 55.554419], - [37.706871, 55.554509], - [37.706961, 55.554509], - [37.706961, 55.554419], - [37.706871, 55.554419] + [37.706874, 55.55424], + [37.706874, 55.55433], + [37.706964, 55.55433], + [37.706964, 55.55424], + [37.706874, 55.55424] ] ] } @@ -33928,11 +33864,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706871, 55.554509], - [37.706871, 55.554599], - [37.706961, 55.554599], - [37.706961, 55.554509], - [37.706871, 55.554509] + [37.706874, 55.55433], + [37.706874, 55.55442], + [37.706964, 55.55442], + [37.706964, 55.55433], + [37.706874, 55.55433] ] ] } @@ -33944,11 +33880,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706871, 55.554599], - [37.706871, 55.554689], - [37.706961, 55.554689], - [37.706961, 55.554599], - [37.706871, 55.554599] + [37.706874, 55.55442], + [37.706874, 55.55451], + [37.706964, 55.55451], + [37.706964, 55.55442], + [37.706874, 55.55442] ] ] } @@ -33960,11 +33896,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706871, 55.554689], - [37.706871, 55.554778], - [37.706961, 55.554778], - [37.706961, 55.554689], - [37.706871, 55.554689] + [37.706874, 55.55451], + [37.706874, 55.5546], + [37.706964, 55.5546], + [37.706964, 55.55451], + [37.706874, 55.55451] ] ] } @@ -33976,11 +33912,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706871, 55.554778], - [37.706871, 55.554868], - [37.706961, 55.554868], - [37.706961, 55.554778], - [37.706871, 55.554778] + [37.706874, 55.5546], + [37.706874, 55.55469], + [37.706964, 55.55469], + [37.706964, 55.5546], + [37.706874, 55.5546] ] ] } @@ -33992,11 +33928,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706871, 55.554868], - [37.706871, 55.554958], - [37.706961, 55.554958], - [37.706961, 55.554868], - [37.706871, 55.554868] + [37.706874, 55.55469], + [37.706874, 55.55478], + [37.706964, 55.55478], + [37.706964, 55.55469], + [37.706874, 55.55469] ] ] } @@ -34008,11 +33944,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706871, 55.554958], - [37.706871, 55.555048], - [37.706961, 55.555048], - [37.706961, 55.554958], - [37.706871, 55.554958] + [37.706874, 55.55478], + [37.706874, 55.554869], + [37.706964, 55.554869], + [37.706964, 55.55478], + [37.706874, 55.55478] ] ] } @@ -34024,11 +33960,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706871, 55.555048], - [37.706871, 55.555138], - [37.706961, 55.555138], - [37.706961, 55.555048], - [37.706871, 55.555048] + [37.706874, 55.554869], + [37.706874, 55.554959], + [37.706964, 55.554959], + [37.706964, 55.554869], + [37.706874, 55.554869] ] ] } @@ -34040,11 +33976,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706871, 55.555138], - [37.706871, 55.555228], - [37.706961, 55.555228], - [37.706961, 55.555138], - [37.706871, 55.555138] + [37.706874, 55.554959], + [37.706874, 55.555049], + [37.706964, 55.555049], + [37.706964, 55.554959], + [37.706874, 55.554959] ] ] } @@ -34056,11 +33992,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706871, 55.555228], - [37.706871, 55.555317], - [37.706961, 55.555317], - [37.706961, 55.555228], - [37.706871, 55.555228] + [37.706874, 55.555049], + [37.706874, 55.555139], + [37.706964, 55.555139], + [37.706964, 55.555049], + [37.706874, 55.555049] ] ] } @@ -34072,11 +34008,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706871, 55.555317], - [37.706871, 55.555407], - [37.706961, 55.555407], - [37.706961, 55.555317], - [37.706871, 55.555317] + [37.706874, 55.555139], + [37.706874, 55.555229], + [37.706964, 55.555229], + [37.706964, 55.555139], + [37.706874, 55.555139] ] ] } @@ -34088,11 +34024,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706871, 55.555407], - [37.706871, 55.555497], - [37.706961, 55.555497], - [37.706961, 55.555407], - [37.706871, 55.555407] + [37.706874, 55.555229], + [37.706874, 55.555319], + [37.706964, 55.555319], + [37.706964, 55.555229], + [37.706874, 55.555229] ] ] } @@ -34104,11 +34040,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706871, 55.555497], - [37.706871, 55.555587], - [37.706961, 55.555587], - [37.706961, 55.555497], - [37.706871, 55.555497] + [37.706874, 55.555319], + [37.706874, 55.555409], + [37.706964, 55.555409], + [37.706964, 55.555319], + [37.706874, 55.555319] ] ] } @@ -34120,11 +34056,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706871, 55.555587], - [37.706871, 55.555677], - [37.706961, 55.555677], - [37.706961, 55.555587], - [37.706871, 55.555587] + [37.706874, 55.555409], + [37.706874, 55.555499], + [37.706964, 55.555499], + [37.706964, 55.555409], + [37.706874, 55.555409] ] ] } @@ -34136,11 +34072,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706961, 55.551994], - [37.706961, 55.552084], - [37.707051, 55.552084], - [37.707051, 55.551994], - [37.706961, 55.551994] + [37.706874, 55.555499], + [37.706874, 55.555589], + [37.706964, 55.555589], + [37.706964, 55.555499], + [37.706874, 55.555499] ] ] } @@ -34152,11 +34088,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706961, 55.552084], - [37.706961, 55.552173], - [37.707051, 55.552173], - [37.707051, 55.552084], - [37.706961, 55.552084] + [37.706874, 55.555589], + [37.706874, 55.555679], + [37.706964, 55.555679], + [37.706964, 55.555589], + [37.706874, 55.555589] ] ] } @@ -34168,11 +34104,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706961, 55.552173], - [37.706961, 55.552263], - [37.707051, 55.552263], - [37.707051, 55.552173], - [37.706961, 55.552173] + [37.706964, 55.551992], + [37.706964, 55.552082], + [37.707054, 55.552082], + [37.707054, 55.551992], + [37.706964, 55.551992] ] ] } @@ -34184,11 +34120,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706961, 55.552263], - [37.706961, 55.552353], - [37.707051, 55.552353], - [37.707051, 55.552263], - [37.706961, 55.552263] + [37.706964, 55.552082], + [37.706964, 55.552171], + [37.707054, 55.552171], + [37.707054, 55.552082], + [37.706964, 55.552082] ] ] } @@ -34200,11 +34136,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706961, 55.552353], - [37.706961, 55.552443], - [37.707051, 55.552443], - [37.707051, 55.552353], - [37.706961, 55.552353] + [37.706964, 55.552171], + [37.706964, 55.552261], + [37.707054, 55.552261], + [37.707054, 55.552171], + [37.706964, 55.552171] ] ] } @@ -34216,11 +34152,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706961, 55.552443], - [37.706961, 55.552533], - [37.707051, 55.552533], - [37.707051, 55.552443], - [37.706961, 55.552443] + [37.706964, 55.552261], + [37.706964, 55.552351], + [37.707054, 55.552351], + [37.707054, 55.552261], + [37.706964, 55.552261] ] ] } @@ -34232,11 +34168,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706961, 55.552533], - [37.706961, 55.552623], - [37.707051, 55.552623], - [37.707051, 55.552533], - [37.706961, 55.552533] + [37.706964, 55.552351], + [37.706964, 55.552441], + [37.707054, 55.552441], + [37.707054, 55.552351], + [37.706964, 55.552351] ] ] } @@ -34248,11 +34184,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706961, 55.552623], - [37.706961, 55.552712], - [37.707051, 55.552712], - [37.707051, 55.552623], - [37.706961, 55.552623] + [37.706964, 55.552441], + [37.706964, 55.552531], + [37.707054, 55.552531], + [37.707054, 55.552441], + [37.706964, 55.552441] ] ] } @@ -34264,11 +34200,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706961, 55.552712], - [37.706961, 55.552802], - [37.707051, 55.552802], - [37.707051, 55.552712], - [37.706961, 55.552712] + [37.706964, 55.552531], + [37.706964, 55.552621], + [37.707054, 55.552621], + [37.707054, 55.552531], + [37.706964, 55.552531] ] ] } @@ -34280,11 +34216,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706961, 55.552802], - [37.706961, 55.552892], - [37.707051, 55.552892], - [37.707051, 55.552802], - [37.706961, 55.552802] + [37.706964, 55.552621], + [37.706964, 55.552711], + [37.707054, 55.552711], + [37.707054, 55.552621], + [37.706964, 55.552621] ] ] } @@ -34296,11 +34232,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706961, 55.552892], - [37.706961, 55.552982], - [37.707051, 55.552982], - [37.707051, 55.552892], - [37.706961, 55.552892] + [37.706964, 55.552711], + [37.706964, 55.552801], + [37.707054, 55.552801], + [37.707054, 55.552711], + [37.706964, 55.552711] ] ] } @@ -34312,11 +34248,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706961, 55.552982], - [37.706961, 55.553072], - [37.707051, 55.553072], - [37.707051, 55.552982], - [37.706961, 55.552982] + [37.706964, 55.552801], + [37.706964, 55.552891], + [37.707054, 55.552891], + [37.707054, 55.552801], + [37.706964, 55.552801] ] ] } @@ -34328,11 +34264,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706961, 55.553072], - [37.706961, 55.553162], - [37.707051, 55.553162], - [37.707051, 55.553072], - [37.706961, 55.553072] + [37.706964, 55.552891], + [37.706964, 55.552981], + [37.707054, 55.552981], + [37.707054, 55.552891], + [37.706964, 55.552891] ] ] } @@ -34344,11 +34280,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706961, 55.553162], - [37.706961, 55.553251], - [37.707051, 55.553251], - [37.707051, 55.553162], - [37.706961, 55.553162] + [37.706964, 55.552981], + [37.706964, 55.553071], + [37.707054, 55.553071], + [37.707054, 55.552981], + [37.706964, 55.552981] ] ] } @@ -34360,11 +34296,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706961, 55.553251], - [37.706961, 55.553341], - [37.707051, 55.553341], - [37.707051, 55.553251], - [37.706961, 55.553251] + [37.706964, 55.553071], + [37.706964, 55.553161], + [37.707054, 55.553161], + [37.707054, 55.553071], + [37.706964, 55.553071] ] ] } @@ -34376,11 +34312,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706961, 55.553341], - [37.706961, 55.553431], - [37.707051, 55.553431], - [37.707051, 55.553341], - [37.706961, 55.553341] + [37.706964, 55.553161], + [37.706964, 55.553251], + [37.707054, 55.553251], + [37.707054, 55.553161], + [37.706964, 55.553161] ] ] } @@ -34392,11 +34328,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706961, 55.553431], - [37.706961, 55.553521], - [37.707051, 55.553521], - [37.707051, 55.553431], - [37.706961, 55.553431] + [37.706964, 55.553251], + [37.706964, 55.553341], + [37.707054, 55.553341], + [37.707054, 55.553251], + [37.706964, 55.553251] ] ] } @@ -34408,11 +34344,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706961, 55.553521], - [37.706961, 55.553611], - [37.707051, 55.553611], - [37.707051, 55.553521], - [37.706961, 55.553521] + [37.706964, 55.553341], + [37.706964, 55.553431], + [37.707054, 55.553431], + [37.707054, 55.553341], + [37.706964, 55.553341] ] ] } @@ -34424,11 +34360,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706961, 55.553611], - [37.706961, 55.5537], - [37.707051, 55.5537], - [37.707051, 55.553611], - [37.706961, 55.553611] + [37.706964, 55.553431], + [37.706964, 55.55352], + [37.707054, 55.55352], + [37.707054, 55.553431], + [37.706964, 55.553431] ] ] } @@ -34440,11 +34376,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706961, 55.5537], - [37.706961, 55.55379], - [37.707051, 55.55379], - [37.707051, 55.5537], - [37.706961, 55.5537] + [37.706964, 55.55352], + [37.706964, 55.55361], + [37.707054, 55.55361], + [37.707054, 55.55352], + [37.706964, 55.55352] ] ] } @@ -34456,11 +34392,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706961, 55.55379], - [37.706961, 55.55388], - [37.707051, 55.55388], - [37.707051, 55.55379], - [37.706961, 55.55379] + [37.706964, 55.55361], + [37.706964, 55.5537], + [37.707054, 55.5537], + [37.707054, 55.55361], + [37.706964, 55.55361] ] ] } @@ -34472,11 +34408,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706961, 55.55388], - [37.706961, 55.55397], - [37.707051, 55.55397], - [37.707051, 55.55388], - [37.706961, 55.55388] + [37.706964, 55.5537], + [37.706964, 55.55379], + [37.707054, 55.55379], + [37.707054, 55.5537], + [37.706964, 55.5537] ] ] } @@ -34488,11 +34424,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706961, 55.55397], - [37.706961, 55.55406], - [37.707051, 55.55406], - [37.707051, 55.55397], - [37.706961, 55.55397] + [37.706964, 55.55379], + [37.706964, 55.55388], + [37.707054, 55.55388], + [37.707054, 55.55379], + [37.706964, 55.55379] ] ] } @@ -34504,11 +34440,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706961, 55.55406], - [37.706961, 55.55415], - [37.707051, 55.55415], - [37.707051, 55.55406], - [37.706961, 55.55406] + [37.706964, 55.55388], + [37.706964, 55.55397], + [37.707054, 55.55397], + [37.707054, 55.55388], + [37.706964, 55.55388] ] ] } @@ -34520,11 +34456,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706961, 55.55415], - [37.706961, 55.554239], - [37.707051, 55.554239], - [37.707051, 55.55415], - [37.706961, 55.55415] + [37.706964, 55.55397], + [37.706964, 55.55406], + [37.707054, 55.55406], + [37.707054, 55.55397], + [37.706964, 55.55397] ] ] } @@ -34536,11 +34472,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706961, 55.554239], - [37.706961, 55.554329], - [37.707051, 55.554329], - [37.707051, 55.554239], - [37.706961, 55.554239] + [37.706964, 55.55406], + [37.706964, 55.55415], + [37.707054, 55.55415], + [37.707054, 55.55406], + [37.706964, 55.55406] ] ] } @@ -34552,11 +34488,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706961, 55.554329], - [37.706961, 55.554419], - [37.707051, 55.554419], - [37.707051, 55.554329], - [37.706961, 55.554329] + [37.706964, 55.55415], + [37.706964, 55.55424], + [37.707054, 55.55424], + [37.707054, 55.55415], + [37.706964, 55.55415] ] ] } @@ -34568,11 +34504,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706961, 55.554419], - [37.706961, 55.554509], - [37.707051, 55.554509], - [37.707051, 55.554419], - [37.706961, 55.554419] + [37.706964, 55.55424], + [37.706964, 55.55433], + [37.707054, 55.55433], + [37.707054, 55.55424], + [37.706964, 55.55424] ] ] } @@ -34584,11 +34520,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706961, 55.554509], - [37.706961, 55.554599], - [37.707051, 55.554599], - [37.707051, 55.554509], - [37.706961, 55.554509] + [37.706964, 55.55433], + [37.706964, 55.55442], + [37.707054, 55.55442], + [37.707054, 55.55433], + [37.706964, 55.55433] ] ] } @@ -34600,11 +34536,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706961, 55.554599], - [37.706961, 55.554689], - [37.707051, 55.554689], - [37.707051, 55.554599], - [37.706961, 55.554599] + [37.706964, 55.55442], + [37.706964, 55.55451], + [37.707054, 55.55451], + [37.707054, 55.55442], + [37.706964, 55.55442] ] ] } @@ -34616,11 +34552,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706961, 55.554689], - [37.706961, 55.554778], - [37.707051, 55.554778], - [37.707051, 55.554689], - [37.706961, 55.554689] + [37.706964, 55.55451], + [37.706964, 55.5546], + [37.707054, 55.5546], + [37.707054, 55.55451], + [37.706964, 55.55451] ] ] } @@ -34632,11 +34568,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706961, 55.554778], - [37.706961, 55.554868], - [37.707051, 55.554868], - [37.707051, 55.554778], - [37.706961, 55.554778] + [37.706964, 55.5546], + [37.706964, 55.55469], + [37.707054, 55.55469], + [37.707054, 55.5546], + [37.706964, 55.5546] ] ] } @@ -34648,11 +34584,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706961, 55.554868], - [37.706961, 55.554958], - [37.707051, 55.554958], - [37.707051, 55.554868], - [37.706961, 55.554868] + [37.706964, 55.55469], + [37.706964, 55.55478], + [37.707054, 55.55478], + [37.707054, 55.55469], + [37.706964, 55.55469] ] ] } @@ -34664,11 +34600,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706961, 55.554958], - [37.706961, 55.555048], - [37.707051, 55.555048], - [37.707051, 55.554958], - [37.706961, 55.554958] + [37.706964, 55.55478], + [37.706964, 55.554869], + [37.707054, 55.554869], + [37.707054, 55.55478], + [37.706964, 55.55478] ] ] } @@ -34680,11 +34616,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706961, 55.555048], - [37.706961, 55.555138], - [37.707051, 55.555138], - [37.707051, 55.555048], - [37.706961, 55.555048] + [37.706964, 55.554869], + [37.706964, 55.554959], + [37.707054, 55.554959], + [37.707054, 55.554869], + [37.706964, 55.554869] ] ] } @@ -34696,11 +34632,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706961, 55.555138], - [37.706961, 55.555228], - [37.707051, 55.555228], - [37.707051, 55.555138], - [37.706961, 55.555138] + [37.706964, 55.554959], + [37.706964, 55.555049], + [37.707054, 55.555049], + [37.707054, 55.554959], + [37.706964, 55.554959] ] ] } @@ -34712,11 +34648,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706961, 55.555228], - [37.706961, 55.555317], - [37.707051, 55.555317], - [37.707051, 55.555228], - [37.706961, 55.555228] + [37.706964, 55.555049], + [37.706964, 55.555139], + [37.707054, 55.555139], + [37.707054, 55.555049], + [37.706964, 55.555049] ] ] } @@ -34728,11 +34664,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706961, 55.555317], - [37.706961, 55.555407], - [37.707051, 55.555407], - [37.707051, 55.555317], - [37.706961, 55.555317] + [37.706964, 55.555139], + [37.706964, 55.555229], + [37.707054, 55.555229], + [37.707054, 55.555139], + [37.706964, 55.555139] ] ] } @@ -34744,11 +34680,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706961, 55.555407], - [37.706961, 55.555497], - [37.707051, 55.555497], - [37.707051, 55.555407], - [37.706961, 55.555407] + [37.706964, 55.555229], + [37.706964, 55.555319], + [37.707054, 55.555319], + [37.707054, 55.555229], + [37.706964, 55.555229] ] ] } @@ -34760,11 +34696,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706961, 55.555497], - [37.706961, 55.555587], - [37.707051, 55.555587], - [37.707051, 55.555497], - [37.706961, 55.555497] + [37.706964, 55.555319], + [37.706964, 55.555409], + [37.707054, 55.555409], + [37.707054, 55.555319], + [37.706964, 55.555319] ] ] } @@ -34776,11 +34712,11 @@ "type": "Polygon", "coordinates": [ [ - [37.706961, 55.555587], - [37.706961, 55.555677], - [37.707051, 55.555677], - [37.707051, 55.555587], - [37.706961, 55.555587] + [37.706964, 55.555409], + [37.706964, 55.555499], + [37.707054, 55.555499], + [37.707054, 55.555409], + [37.706964, 55.555409] ] ] } @@ -34792,11 +34728,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707051, 55.552084], - [37.707051, 55.552173], - [37.707141, 55.552173], - [37.707141, 55.552084], - [37.707051, 55.552084] + [37.706964, 55.555499], + [37.706964, 55.555589], + [37.707054, 55.555589], + [37.707054, 55.555499], + [37.706964, 55.555499] ] ] } @@ -34808,11 +34744,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707051, 55.552173], - [37.707051, 55.552263], - [37.707141, 55.552263], - [37.707141, 55.552173], - [37.707051, 55.552173] + [37.706964, 55.555589], + [37.706964, 55.555679], + [37.707054, 55.555679], + [37.707054, 55.555589], + [37.706964, 55.555589] ] ] } @@ -34824,11 +34760,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707051, 55.552263], - [37.707051, 55.552353], - [37.707141, 55.552353], - [37.707141, 55.552263], - [37.707051, 55.552263] + [37.707054, 55.552171], + [37.707054, 55.552261], + [37.707144, 55.552261], + [37.707144, 55.552171], + [37.707054, 55.552171] ] ] } @@ -34840,11 +34776,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707051, 55.552353], - [37.707051, 55.552443], - [37.707141, 55.552443], - [37.707141, 55.552353], - [37.707051, 55.552353] + [37.707054, 55.552261], + [37.707054, 55.552351], + [37.707144, 55.552351], + [37.707144, 55.552261], + [37.707054, 55.552261] ] ] } @@ -34856,11 +34792,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707051, 55.552443], - [37.707051, 55.552533], - [37.707141, 55.552533], - [37.707141, 55.552443], - [37.707051, 55.552443] + [37.707054, 55.552351], + [37.707054, 55.552441], + [37.707144, 55.552441], + [37.707144, 55.552351], + [37.707054, 55.552351] ] ] } @@ -34872,11 +34808,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707051, 55.552533], - [37.707051, 55.552623], - [37.707141, 55.552623], - [37.707141, 55.552533], - [37.707051, 55.552533] + [37.707054, 55.552441], + [37.707054, 55.552531], + [37.707144, 55.552531], + [37.707144, 55.552441], + [37.707054, 55.552441] ] ] } @@ -34888,11 +34824,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707051, 55.552623], - [37.707051, 55.552712], - [37.707141, 55.552712], - [37.707141, 55.552623], - [37.707051, 55.552623] + [37.707054, 55.552531], + [37.707054, 55.552621], + [37.707144, 55.552621], + [37.707144, 55.552531], + [37.707054, 55.552531] ] ] } @@ -34904,11 +34840,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707051, 55.552712], - [37.707051, 55.552802], - [37.707141, 55.552802], - [37.707141, 55.552712], - [37.707051, 55.552712] + [37.707054, 55.552621], + [37.707054, 55.552711], + [37.707144, 55.552711], + [37.707144, 55.552621], + [37.707054, 55.552621] ] ] } @@ -34920,11 +34856,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707051, 55.552802], - [37.707051, 55.552892], - [37.707141, 55.552892], - [37.707141, 55.552802], - [37.707051, 55.552802] + [37.707054, 55.552711], + [37.707054, 55.552801], + [37.707144, 55.552801], + [37.707144, 55.552711], + [37.707054, 55.552711] ] ] } @@ -34936,11 +34872,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707051, 55.552892], - [37.707051, 55.552982], - [37.707141, 55.552982], - [37.707141, 55.552892], - [37.707051, 55.552892] + [37.707054, 55.552801], + [37.707054, 55.552891], + [37.707144, 55.552891], + [37.707144, 55.552801], + [37.707054, 55.552801] ] ] } @@ -34952,11 +34888,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707051, 55.552982], - [37.707051, 55.553072], - [37.707141, 55.553072], - [37.707141, 55.552982], - [37.707051, 55.552982] + [37.707054, 55.552891], + [37.707054, 55.552981], + [37.707144, 55.552981], + [37.707144, 55.552891], + [37.707054, 55.552891] ] ] } @@ -34968,11 +34904,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707051, 55.553072], - [37.707051, 55.553162], - [37.707141, 55.553162], - [37.707141, 55.553072], - [37.707051, 55.553072] + [37.707054, 55.552981], + [37.707054, 55.553071], + [37.707144, 55.553071], + [37.707144, 55.552981], + [37.707054, 55.552981] ] ] } @@ -34984,11 +34920,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707051, 55.553162], - [37.707051, 55.553251], - [37.707141, 55.553251], - [37.707141, 55.553162], - [37.707051, 55.553162] + [37.707054, 55.553071], + [37.707054, 55.553161], + [37.707144, 55.553161], + [37.707144, 55.553071], + [37.707054, 55.553071] ] ] } @@ -35000,11 +34936,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707051, 55.553251], - [37.707051, 55.553341], - [37.707141, 55.553341], - [37.707141, 55.553251], - [37.707051, 55.553251] + [37.707054, 55.553161], + [37.707054, 55.553251], + [37.707144, 55.553251], + [37.707144, 55.553161], + [37.707054, 55.553161] ] ] } @@ -35016,11 +34952,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707051, 55.553341], - [37.707051, 55.553431], - [37.707141, 55.553431], - [37.707141, 55.553341], - [37.707051, 55.553341] + [37.707054, 55.553251], + [37.707054, 55.553341], + [37.707144, 55.553341], + [37.707144, 55.553251], + [37.707054, 55.553251] ] ] } @@ -35032,11 +34968,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707051, 55.553431], - [37.707051, 55.553521], - [37.707141, 55.553521], - [37.707141, 55.553431], - [37.707051, 55.553431] + [37.707054, 55.553341], + [37.707054, 55.553431], + [37.707144, 55.553431], + [37.707144, 55.553341], + [37.707054, 55.553341] ] ] } @@ -35048,11 +34984,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707051, 55.553521], - [37.707051, 55.553611], - [37.707141, 55.553611], - [37.707141, 55.553521], - [37.707051, 55.553521] + [37.707054, 55.553431], + [37.707054, 55.55352], + [37.707144, 55.55352], + [37.707144, 55.553431], + [37.707054, 55.553431] ] ] } @@ -35064,11 +35000,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707051, 55.553611], - [37.707051, 55.5537], - [37.707141, 55.5537], - [37.707141, 55.553611], - [37.707051, 55.553611] + [37.707054, 55.55352], + [37.707054, 55.55361], + [37.707144, 55.55361], + [37.707144, 55.55352], + [37.707054, 55.55352] ] ] } @@ -35080,11 +35016,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707051, 55.5537], - [37.707051, 55.55379], - [37.707141, 55.55379], - [37.707141, 55.5537], - [37.707051, 55.5537] + [37.707054, 55.55361], + [37.707054, 55.5537], + [37.707144, 55.5537], + [37.707144, 55.55361], + [37.707054, 55.55361] ] ] } @@ -35096,11 +35032,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707051, 55.55379], - [37.707051, 55.55388], - [37.707141, 55.55388], - [37.707141, 55.55379], - [37.707051, 55.55379] + [37.707054, 55.5537], + [37.707054, 55.55379], + [37.707144, 55.55379], + [37.707144, 55.5537], + [37.707054, 55.5537] ] ] } @@ -35112,11 +35048,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707051, 55.55388], - [37.707051, 55.55397], - [37.707141, 55.55397], - [37.707141, 55.55388], - [37.707051, 55.55388] + [37.707054, 55.55379], + [37.707054, 55.55388], + [37.707144, 55.55388], + [37.707144, 55.55379], + [37.707054, 55.55379] ] ] } @@ -35128,11 +35064,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707051, 55.55397], - [37.707051, 55.55406], - [37.707141, 55.55406], - [37.707141, 55.55397], - [37.707051, 55.55397] + [37.707054, 55.55388], + [37.707054, 55.55397], + [37.707144, 55.55397], + [37.707144, 55.55388], + [37.707054, 55.55388] ] ] } @@ -35144,11 +35080,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707051, 55.55406], - [37.707051, 55.55415], - [37.707141, 55.55415], - [37.707141, 55.55406], - [37.707051, 55.55406] + [37.707054, 55.55397], + [37.707054, 55.55406], + [37.707144, 55.55406], + [37.707144, 55.55397], + [37.707054, 55.55397] ] ] } @@ -35160,11 +35096,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707051, 55.55415], - [37.707051, 55.554239], - [37.707141, 55.554239], - [37.707141, 55.55415], - [37.707051, 55.55415] + [37.707054, 55.55406], + [37.707054, 55.55415], + [37.707144, 55.55415], + [37.707144, 55.55406], + [37.707054, 55.55406] ] ] } @@ -35176,11 +35112,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707051, 55.554239], - [37.707051, 55.554329], - [37.707141, 55.554329], - [37.707141, 55.554239], - [37.707051, 55.554239] + [37.707054, 55.55415], + [37.707054, 55.55424], + [37.707144, 55.55424], + [37.707144, 55.55415], + [37.707054, 55.55415] ] ] } @@ -35192,11 +35128,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707051, 55.554329], - [37.707051, 55.554419], - [37.707141, 55.554419], - [37.707141, 55.554329], - [37.707051, 55.554329] + [37.707054, 55.55424], + [37.707054, 55.55433], + [37.707144, 55.55433], + [37.707144, 55.55424], + [37.707054, 55.55424] ] ] } @@ -35208,11 +35144,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707051, 55.554419], - [37.707051, 55.554509], - [37.707141, 55.554509], - [37.707141, 55.554419], - [37.707051, 55.554419] + [37.707054, 55.55433], + [37.707054, 55.55442], + [37.707144, 55.55442], + [37.707144, 55.55433], + [37.707054, 55.55433] ] ] } @@ -35224,11 +35160,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707051, 55.554509], - [37.707051, 55.554599], - [37.707141, 55.554599], - [37.707141, 55.554509], - [37.707051, 55.554509] + [37.707054, 55.55442], + [37.707054, 55.55451], + [37.707144, 55.55451], + [37.707144, 55.55442], + [37.707054, 55.55442] ] ] } @@ -35240,11 +35176,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707051, 55.554599], - [37.707051, 55.554689], - [37.707141, 55.554689], - [37.707141, 55.554599], - [37.707051, 55.554599] + [37.707054, 55.55451], + [37.707054, 55.5546], + [37.707144, 55.5546], + [37.707144, 55.55451], + [37.707054, 55.55451] ] ] } @@ -35256,11 +35192,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707051, 55.554689], - [37.707051, 55.554778], - [37.707141, 55.554778], - [37.707141, 55.554689], - [37.707051, 55.554689] + [37.707054, 55.5546], + [37.707054, 55.55469], + [37.707144, 55.55469], + [37.707144, 55.5546], + [37.707054, 55.5546] ] ] } @@ -35272,11 +35208,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707051, 55.554778], - [37.707051, 55.554868], - [37.707141, 55.554868], - [37.707141, 55.554778], - [37.707051, 55.554778] + [37.707054, 55.55469], + [37.707054, 55.55478], + [37.707144, 55.55478], + [37.707144, 55.55469], + [37.707054, 55.55469] ] ] } @@ -35288,11 +35224,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707051, 55.554868], - [37.707051, 55.554958], - [37.707141, 55.554958], - [37.707141, 55.554868], - [37.707051, 55.554868] + [37.707054, 55.55478], + [37.707054, 55.554869], + [37.707144, 55.554869], + [37.707144, 55.55478], + [37.707054, 55.55478] ] ] } @@ -35304,11 +35240,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707051, 55.554958], - [37.707051, 55.555048], - [37.707141, 55.555048], - [37.707141, 55.554958], - [37.707051, 55.554958] + [37.707054, 55.554869], + [37.707054, 55.554959], + [37.707144, 55.554959], + [37.707144, 55.554869], + [37.707054, 55.554869] ] ] } @@ -35320,11 +35256,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707051, 55.555048], - [37.707051, 55.555138], - [37.707141, 55.555138], - [37.707141, 55.555048], - [37.707051, 55.555048] + [37.707054, 55.554959], + [37.707054, 55.555049], + [37.707144, 55.555049], + [37.707144, 55.554959], + [37.707054, 55.554959] ] ] } @@ -35336,11 +35272,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707051, 55.555138], - [37.707051, 55.555228], - [37.707141, 55.555228], - [37.707141, 55.555138], - [37.707051, 55.555138] + [37.707054, 55.555049], + [37.707054, 55.555139], + [37.707144, 55.555139], + [37.707144, 55.555049], + [37.707054, 55.555049] ] ] } @@ -35352,11 +35288,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707051, 55.555228], - [37.707051, 55.555317], - [37.707141, 55.555317], - [37.707141, 55.555228], - [37.707051, 55.555228] + [37.707054, 55.555139], + [37.707054, 55.555229], + [37.707144, 55.555229], + [37.707144, 55.555139], + [37.707054, 55.555139] ] ] } @@ -35368,11 +35304,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707051, 55.555317], - [37.707051, 55.555407], - [37.707141, 55.555407], - [37.707141, 55.555317], - [37.707051, 55.555317] + [37.707054, 55.555229], + [37.707054, 55.555319], + [37.707144, 55.555319], + [37.707144, 55.555229], + [37.707054, 55.555229] ] ] } @@ -35384,11 +35320,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707051, 55.555407], - [37.707051, 55.555497], - [37.707141, 55.555497], - [37.707141, 55.555407], - [37.707051, 55.555407] + [37.707054, 55.555319], + [37.707054, 55.555409], + [37.707144, 55.555409], + [37.707144, 55.555319], + [37.707054, 55.555319] ] ] } @@ -35400,11 +35336,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707051, 55.555497], - [37.707051, 55.555587], - [37.707141, 55.555587], - [37.707141, 55.555497], - [37.707051, 55.555497] + [37.707054, 55.555409], + [37.707054, 55.555499], + [37.707144, 55.555499], + [37.707144, 55.555409], + [37.707054, 55.555409] ] ] } @@ -35416,11 +35352,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707051, 55.555587], - [37.707051, 55.555677], - [37.707141, 55.555677], - [37.707141, 55.555587], - [37.707051, 55.555587] + [37.707054, 55.555499], + [37.707054, 55.555589], + [37.707144, 55.555589], + [37.707144, 55.555499], + [37.707054, 55.555499] ] ] } @@ -35432,11 +35368,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707051, 55.555677], - [37.707051, 55.555767], - [37.707141, 55.555767], - [37.707141, 55.555677], - [37.707051, 55.555677] + [37.707054, 55.555589], + [37.707054, 55.555679], + [37.707144, 55.555679], + [37.707144, 55.555589], + [37.707054, 55.555589] ] ] } @@ -35448,11 +35384,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707141, 55.552263], - [37.707141, 55.552353], - [37.707231, 55.552353], - [37.707231, 55.552263], - [37.707141, 55.552263] + [37.707054, 55.555679], + [37.707054, 55.555769], + [37.707144, 55.555769], + [37.707144, 55.555679], + [37.707054, 55.555679] ] ] } @@ -35464,11 +35400,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707141, 55.552353], - [37.707141, 55.552443], - [37.707231, 55.552443], - [37.707231, 55.552353], - [37.707141, 55.552353] + [37.707144, 55.552261], + [37.707144, 55.552351], + [37.707233, 55.552351], + [37.707233, 55.552261], + [37.707144, 55.552261] ] ] } @@ -35480,11 +35416,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707141, 55.552443], - [37.707141, 55.552533], - [37.707231, 55.552533], - [37.707231, 55.552443], - [37.707141, 55.552443] + [37.707144, 55.552351], + [37.707144, 55.552441], + [37.707233, 55.552441], + [37.707233, 55.552351], + [37.707144, 55.552351] ] ] } @@ -35496,11 +35432,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707141, 55.552533], - [37.707141, 55.552623], - [37.707231, 55.552623], - [37.707231, 55.552533], - [37.707141, 55.552533] + [37.707144, 55.552441], + [37.707144, 55.552531], + [37.707233, 55.552531], + [37.707233, 55.552441], + [37.707144, 55.552441] ] ] } @@ -35512,11 +35448,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707141, 55.552623], - [37.707141, 55.552712], - [37.707231, 55.552712], - [37.707231, 55.552623], - [37.707141, 55.552623] + [37.707144, 55.552531], + [37.707144, 55.552621], + [37.707233, 55.552621], + [37.707233, 55.552531], + [37.707144, 55.552531] ] ] } @@ -35528,11 +35464,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707141, 55.552712], - [37.707141, 55.552802], - [37.707231, 55.552802], - [37.707231, 55.552712], - [37.707141, 55.552712] + [37.707144, 55.552621], + [37.707144, 55.552711], + [37.707233, 55.552711], + [37.707233, 55.552621], + [37.707144, 55.552621] ] ] } @@ -35544,11 +35480,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707141, 55.552802], - [37.707141, 55.552892], - [37.707231, 55.552892], - [37.707231, 55.552802], - [37.707141, 55.552802] + [37.707144, 55.552711], + [37.707144, 55.552801], + [37.707233, 55.552801], + [37.707233, 55.552711], + [37.707144, 55.552711] ] ] } @@ -35560,11 +35496,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707141, 55.552892], - [37.707141, 55.552982], - [37.707231, 55.552982], - [37.707231, 55.552892], - [37.707141, 55.552892] + [37.707144, 55.552801], + [37.707144, 55.552891], + [37.707233, 55.552891], + [37.707233, 55.552801], + [37.707144, 55.552801] ] ] } @@ -35576,11 +35512,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707141, 55.552982], - [37.707141, 55.553072], - [37.707231, 55.553072], - [37.707231, 55.552982], - [37.707141, 55.552982] + [37.707144, 55.552891], + [37.707144, 55.552981], + [37.707233, 55.552981], + [37.707233, 55.552891], + [37.707144, 55.552891] ] ] } @@ -35592,11 +35528,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707141, 55.553072], - [37.707141, 55.553162], - [37.707231, 55.553162], - [37.707231, 55.553072], - [37.707141, 55.553072] + [37.707144, 55.552981], + [37.707144, 55.553071], + [37.707233, 55.553071], + [37.707233, 55.552981], + [37.707144, 55.552981] ] ] } @@ -35608,11 +35544,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707141, 55.553162], - [37.707141, 55.553251], - [37.707231, 55.553251], - [37.707231, 55.553162], - [37.707141, 55.553162] + [37.707144, 55.553071], + [37.707144, 55.553161], + [37.707233, 55.553161], + [37.707233, 55.553071], + [37.707144, 55.553071] ] ] } @@ -35624,11 +35560,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707141, 55.553251], - [37.707141, 55.553341], - [37.707231, 55.553341], - [37.707231, 55.553251], - [37.707141, 55.553251] + [37.707144, 55.553161], + [37.707144, 55.553251], + [37.707233, 55.553251], + [37.707233, 55.553161], + [37.707144, 55.553161] ] ] } @@ -35640,11 +35576,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707141, 55.553341], - [37.707141, 55.553431], - [37.707231, 55.553431], - [37.707231, 55.553341], - [37.707141, 55.553341] + [37.707144, 55.553251], + [37.707144, 55.553341], + [37.707233, 55.553341], + [37.707233, 55.553251], + [37.707144, 55.553251] ] ] } @@ -35656,11 +35592,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707141, 55.553431], - [37.707141, 55.553521], - [37.707231, 55.553521], - [37.707231, 55.553431], - [37.707141, 55.553431] + [37.707144, 55.553341], + [37.707144, 55.553431], + [37.707233, 55.553431], + [37.707233, 55.553341], + [37.707144, 55.553341] ] ] } @@ -35672,11 +35608,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707141, 55.553521], - [37.707141, 55.553611], - [37.707231, 55.553611], - [37.707231, 55.553521], - [37.707141, 55.553521] + [37.707144, 55.553431], + [37.707144, 55.55352], + [37.707233, 55.55352], + [37.707233, 55.553431], + [37.707144, 55.553431] ] ] } @@ -35688,11 +35624,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707141, 55.553611], - [37.707141, 55.5537], - [37.707231, 55.5537], - [37.707231, 55.553611], - [37.707141, 55.553611] + [37.707144, 55.55352], + [37.707144, 55.55361], + [37.707233, 55.55361], + [37.707233, 55.55352], + [37.707144, 55.55352] ] ] } @@ -35704,11 +35640,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707141, 55.5537], - [37.707141, 55.55379], - [37.707231, 55.55379], - [37.707231, 55.5537], - [37.707141, 55.5537] + [37.707144, 55.55361], + [37.707144, 55.5537], + [37.707233, 55.5537], + [37.707233, 55.55361], + [37.707144, 55.55361] ] ] } @@ -35720,11 +35656,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707141, 55.55379], - [37.707141, 55.55388], - [37.707231, 55.55388], - [37.707231, 55.55379], - [37.707141, 55.55379] + [37.707144, 55.5537], + [37.707144, 55.55379], + [37.707233, 55.55379], + [37.707233, 55.5537], + [37.707144, 55.5537] ] ] } @@ -35736,11 +35672,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707141, 55.55388], - [37.707141, 55.55397], - [37.707231, 55.55397], - [37.707231, 55.55388], - [37.707141, 55.55388] + [37.707144, 55.55379], + [37.707144, 55.55388], + [37.707233, 55.55388], + [37.707233, 55.55379], + [37.707144, 55.55379] ] ] } @@ -35752,11 +35688,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707141, 55.55397], - [37.707141, 55.55406], - [37.707231, 55.55406], - [37.707231, 55.55397], - [37.707141, 55.55397] + [37.707144, 55.55388], + [37.707144, 55.55397], + [37.707233, 55.55397], + [37.707233, 55.55388], + [37.707144, 55.55388] ] ] } @@ -35768,11 +35704,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707141, 55.55406], - [37.707141, 55.55415], - [37.707231, 55.55415], - [37.707231, 55.55406], - [37.707141, 55.55406] + [37.707144, 55.55397], + [37.707144, 55.55406], + [37.707233, 55.55406], + [37.707233, 55.55397], + [37.707144, 55.55397] ] ] } @@ -35784,11 +35720,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707141, 55.55415], - [37.707141, 55.554239], - [37.707231, 55.554239], - [37.707231, 55.55415], - [37.707141, 55.55415] + [37.707144, 55.55406], + [37.707144, 55.55415], + [37.707233, 55.55415], + [37.707233, 55.55406], + [37.707144, 55.55406] ] ] } @@ -35800,11 +35736,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707141, 55.554239], - [37.707141, 55.554329], - [37.707231, 55.554329], - [37.707231, 55.554239], - [37.707141, 55.554239] + [37.707144, 55.55415], + [37.707144, 55.55424], + [37.707233, 55.55424], + [37.707233, 55.55415], + [37.707144, 55.55415] ] ] } @@ -35816,11 +35752,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707141, 55.554329], - [37.707141, 55.554419], - [37.707231, 55.554419], - [37.707231, 55.554329], - [37.707141, 55.554329] + [37.707144, 55.55424], + [37.707144, 55.55433], + [37.707233, 55.55433], + [37.707233, 55.55424], + [37.707144, 55.55424] ] ] } @@ -35832,11 +35768,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707141, 55.554419], - [37.707141, 55.554509], - [37.707231, 55.554509], - [37.707231, 55.554419], - [37.707141, 55.554419] + [37.707144, 55.55433], + [37.707144, 55.55442], + [37.707233, 55.55442], + [37.707233, 55.55433], + [37.707144, 55.55433] ] ] } @@ -35848,11 +35784,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707141, 55.554509], - [37.707141, 55.554599], - [37.707231, 55.554599], - [37.707231, 55.554509], - [37.707141, 55.554509] + [37.707144, 55.55442], + [37.707144, 55.55451], + [37.707233, 55.55451], + [37.707233, 55.55442], + [37.707144, 55.55442] ] ] } @@ -35864,11 +35800,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707141, 55.554599], - [37.707141, 55.554689], - [37.707231, 55.554689], - [37.707231, 55.554599], - [37.707141, 55.554599] + [37.707144, 55.55451], + [37.707144, 55.5546], + [37.707233, 55.5546], + [37.707233, 55.55451], + [37.707144, 55.55451] ] ] } @@ -35880,11 +35816,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707141, 55.554689], - [37.707141, 55.554778], - [37.707231, 55.554778], - [37.707231, 55.554689], - [37.707141, 55.554689] + [37.707144, 55.5546], + [37.707144, 55.55469], + [37.707233, 55.55469], + [37.707233, 55.5546], + [37.707144, 55.5546] ] ] } @@ -35896,11 +35832,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707141, 55.554778], - [37.707141, 55.554868], - [37.707231, 55.554868], - [37.707231, 55.554778], - [37.707141, 55.554778] + [37.707144, 55.55469], + [37.707144, 55.55478], + [37.707233, 55.55478], + [37.707233, 55.55469], + [37.707144, 55.55469] ] ] } @@ -35912,11 +35848,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707141, 55.554868], - [37.707141, 55.554958], - [37.707231, 55.554958], - [37.707231, 55.554868], - [37.707141, 55.554868] + [37.707144, 55.55478], + [37.707144, 55.554869], + [37.707233, 55.554869], + [37.707233, 55.55478], + [37.707144, 55.55478] ] ] } @@ -35928,11 +35864,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707141, 55.554958], - [37.707141, 55.555048], - [37.707231, 55.555048], - [37.707231, 55.554958], - [37.707141, 55.554958] + [37.707144, 55.554869], + [37.707144, 55.554959], + [37.707233, 55.554959], + [37.707233, 55.554869], + [37.707144, 55.554869] ] ] } @@ -35944,11 +35880,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707141, 55.555048], - [37.707141, 55.555138], - [37.707231, 55.555138], - [37.707231, 55.555048], - [37.707141, 55.555048] + [37.707144, 55.554959], + [37.707144, 55.555049], + [37.707233, 55.555049], + [37.707233, 55.554959], + [37.707144, 55.554959] ] ] } @@ -35960,11 +35896,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707141, 55.555138], - [37.707141, 55.555228], - [37.707231, 55.555228], - [37.707231, 55.555138], - [37.707141, 55.555138] + [37.707144, 55.555049], + [37.707144, 55.555139], + [37.707233, 55.555139], + [37.707233, 55.555049], + [37.707144, 55.555049] ] ] } @@ -35976,11 +35912,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707141, 55.555228], - [37.707141, 55.555317], - [37.707231, 55.555317], - [37.707231, 55.555228], - [37.707141, 55.555228] + [37.707144, 55.555139], + [37.707144, 55.555229], + [37.707233, 55.555229], + [37.707233, 55.555139], + [37.707144, 55.555139] ] ] } @@ -35992,11 +35928,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707141, 55.555317], - [37.707141, 55.555407], - [37.707231, 55.555407], - [37.707231, 55.555317], - [37.707141, 55.555317] + [37.707144, 55.555229], + [37.707144, 55.555319], + [37.707233, 55.555319], + [37.707233, 55.555229], + [37.707144, 55.555229] ] ] } @@ -36008,11 +35944,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707141, 55.555407], - [37.707141, 55.555497], - [37.707231, 55.555497], - [37.707231, 55.555407], - [37.707141, 55.555407] + [37.707144, 55.555319], + [37.707144, 55.555409], + [37.707233, 55.555409], + [37.707233, 55.555319], + [37.707144, 55.555319] ] ] } @@ -36024,11 +35960,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707141, 55.555497], - [37.707141, 55.555587], - [37.707231, 55.555587], - [37.707231, 55.555497], - [37.707141, 55.555497] + [37.707144, 55.555409], + [37.707144, 55.555499], + [37.707233, 55.555499], + [37.707233, 55.555409], + [37.707144, 55.555409] ] ] } @@ -36040,11 +35976,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707141, 55.555587], - [37.707141, 55.555677], - [37.707231, 55.555677], - [37.707231, 55.555587], - [37.707141, 55.555587] + [37.707144, 55.555499], + [37.707144, 55.555589], + [37.707233, 55.555589], + [37.707233, 55.555499], + [37.707144, 55.555499] ] ] } @@ -36056,11 +35992,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707141, 55.555677], - [37.707141, 55.555767], - [37.707231, 55.555767], - [37.707231, 55.555677], - [37.707141, 55.555677] + [37.707144, 55.555589], + [37.707144, 55.555679], + [37.707233, 55.555679], + [37.707233, 55.555589], + [37.707144, 55.555589] ] ] } @@ -36072,11 +36008,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707231, 55.552353], - [37.707231, 55.552443], - [37.70732, 55.552443], - [37.70732, 55.552353], - [37.707231, 55.552353] + [37.707144, 55.555679], + [37.707144, 55.555769], + [37.707233, 55.555769], + [37.707233, 55.555679], + [37.707144, 55.555679] ] ] } @@ -36088,11 +36024,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707231, 55.552443], - [37.707231, 55.552533], - [37.70732, 55.552533], - [37.70732, 55.552443], - [37.707231, 55.552443] + [37.707233, 55.552351], + [37.707233, 55.552441], + [37.707323, 55.552441], + [37.707323, 55.552351], + [37.707233, 55.552351] ] ] } @@ -36104,11 +36040,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707231, 55.552533], - [37.707231, 55.552623], - [37.70732, 55.552623], - [37.70732, 55.552533], - [37.707231, 55.552533] + [37.707233, 55.552441], + [37.707233, 55.552531], + [37.707323, 55.552531], + [37.707323, 55.552441], + [37.707233, 55.552441] ] ] } @@ -36120,11 +36056,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707231, 55.552623], - [37.707231, 55.552712], - [37.70732, 55.552712], - [37.70732, 55.552623], - [37.707231, 55.552623] + [37.707233, 55.552531], + [37.707233, 55.552621], + [37.707323, 55.552621], + [37.707323, 55.552531], + [37.707233, 55.552531] ] ] } @@ -36136,11 +36072,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707231, 55.552712], - [37.707231, 55.552802], - [37.70732, 55.552802], - [37.70732, 55.552712], - [37.707231, 55.552712] + [37.707233, 55.552621], + [37.707233, 55.552711], + [37.707323, 55.552711], + [37.707323, 55.552621], + [37.707233, 55.552621] ] ] } @@ -36152,11 +36088,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707231, 55.552802], - [37.707231, 55.552892], - [37.70732, 55.552892], - [37.70732, 55.552802], - [37.707231, 55.552802] + [37.707233, 55.552711], + [37.707233, 55.552801], + [37.707323, 55.552801], + [37.707323, 55.552711], + [37.707233, 55.552711] ] ] } @@ -36168,11 +36104,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707231, 55.552892], - [37.707231, 55.552982], - [37.70732, 55.552982], - [37.70732, 55.552892], - [37.707231, 55.552892] + [37.707233, 55.552801], + [37.707233, 55.552891], + [37.707323, 55.552891], + [37.707323, 55.552801], + [37.707233, 55.552801] ] ] } @@ -36184,11 +36120,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707231, 55.552982], - [37.707231, 55.553072], - [37.70732, 55.553072], - [37.70732, 55.552982], - [37.707231, 55.552982] + [37.707233, 55.552891], + [37.707233, 55.552981], + [37.707323, 55.552981], + [37.707323, 55.552891], + [37.707233, 55.552891] ] ] } @@ -36200,11 +36136,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707231, 55.553072], - [37.707231, 55.553162], - [37.70732, 55.553162], - [37.70732, 55.553072], - [37.707231, 55.553072] + [37.707233, 55.552981], + [37.707233, 55.553071], + [37.707323, 55.553071], + [37.707323, 55.552981], + [37.707233, 55.552981] ] ] } @@ -36216,11 +36152,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707231, 55.553162], - [37.707231, 55.553251], - [37.70732, 55.553251], - [37.70732, 55.553162], - [37.707231, 55.553162] + [37.707233, 55.553071], + [37.707233, 55.553161], + [37.707323, 55.553161], + [37.707323, 55.553071], + [37.707233, 55.553071] ] ] } @@ -36232,11 +36168,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707231, 55.553251], - [37.707231, 55.553341], - [37.70732, 55.553341], - [37.70732, 55.553251], - [37.707231, 55.553251] + [37.707233, 55.553161], + [37.707233, 55.553251], + [37.707323, 55.553251], + [37.707323, 55.553161], + [37.707233, 55.553161] ] ] } @@ -36248,11 +36184,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707231, 55.553341], - [37.707231, 55.553431], - [37.70732, 55.553431], - [37.70732, 55.553341], - [37.707231, 55.553341] + [37.707233, 55.553251], + [37.707233, 55.553341], + [37.707323, 55.553341], + [37.707323, 55.553251], + [37.707233, 55.553251] ] ] } @@ -36264,11 +36200,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707231, 55.553431], - [37.707231, 55.553521], - [37.70732, 55.553521], - [37.70732, 55.553431], - [37.707231, 55.553431] + [37.707233, 55.553341], + [37.707233, 55.553431], + [37.707323, 55.553431], + [37.707323, 55.553341], + [37.707233, 55.553341] ] ] } @@ -36280,11 +36216,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707231, 55.553521], - [37.707231, 55.553611], - [37.70732, 55.553611], - [37.70732, 55.553521], - [37.707231, 55.553521] + [37.707233, 55.553431], + [37.707233, 55.55352], + [37.707323, 55.55352], + [37.707323, 55.553431], + [37.707233, 55.553431] ] ] } @@ -36296,11 +36232,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707231, 55.553611], - [37.707231, 55.5537], - [37.70732, 55.5537], - [37.70732, 55.553611], - [37.707231, 55.553611] + [37.707233, 55.55352], + [37.707233, 55.55361], + [37.707323, 55.55361], + [37.707323, 55.55352], + [37.707233, 55.55352] ] ] } @@ -36312,11 +36248,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707231, 55.5537], - [37.707231, 55.55379], - [37.70732, 55.55379], - [37.70732, 55.5537], - [37.707231, 55.5537] + [37.707233, 55.55361], + [37.707233, 55.5537], + [37.707323, 55.5537], + [37.707323, 55.55361], + [37.707233, 55.55361] ] ] } @@ -36328,11 +36264,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707231, 55.55379], - [37.707231, 55.55388], - [37.70732, 55.55388], - [37.70732, 55.55379], - [37.707231, 55.55379] + [37.707233, 55.5537], + [37.707233, 55.55379], + [37.707323, 55.55379], + [37.707323, 55.5537], + [37.707233, 55.5537] ] ] } @@ -36344,11 +36280,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707231, 55.55388], - [37.707231, 55.55397], - [37.70732, 55.55397], - [37.70732, 55.55388], - [37.707231, 55.55388] + [37.707233, 55.55379], + [37.707233, 55.55388], + [37.707323, 55.55388], + [37.707323, 55.55379], + [37.707233, 55.55379] ] ] } @@ -36360,11 +36296,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707231, 55.55397], - [37.707231, 55.55406], - [37.70732, 55.55406], - [37.70732, 55.55397], - [37.707231, 55.55397] + [37.707233, 55.55388], + [37.707233, 55.55397], + [37.707323, 55.55397], + [37.707323, 55.55388], + [37.707233, 55.55388] ] ] } @@ -36376,11 +36312,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707231, 55.55406], - [37.707231, 55.55415], - [37.70732, 55.55415], - [37.70732, 55.55406], - [37.707231, 55.55406] + [37.707233, 55.55397], + [37.707233, 55.55406], + [37.707323, 55.55406], + [37.707323, 55.55397], + [37.707233, 55.55397] ] ] } @@ -36392,11 +36328,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707231, 55.55415], - [37.707231, 55.554239], - [37.70732, 55.554239], - [37.70732, 55.55415], - [37.707231, 55.55415] + [37.707233, 55.55406], + [37.707233, 55.55415], + [37.707323, 55.55415], + [37.707323, 55.55406], + [37.707233, 55.55406] ] ] } @@ -36408,11 +36344,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707231, 55.554239], - [37.707231, 55.554329], - [37.70732, 55.554329], - [37.70732, 55.554239], - [37.707231, 55.554239] + [37.707233, 55.55415], + [37.707233, 55.55424], + [37.707323, 55.55424], + [37.707323, 55.55415], + [37.707233, 55.55415] ] ] } @@ -36424,11 +36360,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707231, 55.554329], - [37.707231, 55.554419], - [37.70732, 55.554419], - [37.70732, 55.554329], - [37.707231, 55.554329] + [37.707233, 55.55424], + [37.707233, 55.55433], + [37.707323, 55.55433], + [37.707323, 55.55424], + [37.707233, 55.55424] ] ] } @@ -36440,11 +36376,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707231, 55.554419], - [37.707231, 55.554509], - [37.70732, 55.554509], - [37.70732, 55.554419], - [37.707231, 55.554419] + [37.707233, 55.55433], + [37.707233, 55.55442], + [37.707323, 55.55442], + [37.707323, 55.55433], + [37.707233, 55.55433] ] ] } @@ -36456,11 +36392,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707231, 55.554509], - [37.707231, 55.554599], - [37.70732, 55.554599], - [37.70732, 55.554509], - [37.707231, 55.554509] + [37.707233, 55.55442], + [37.707233, 55.55451], + [37.707323, 55.55451], + [37.707323, 55.55442], + [37.707233, 55.55442] ] ] } @@ -36472,11 +36408,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707231, 55.554599], - [37.707231, 55.554689], - [37.70732, 55.554689], - [37.70732, 55.554599], - [37.707231, 55.554599] + [37.707233, 55.55451], + [37.707233, 55.5546], + [37.707323, 55.5546], + [37.707323, 55.55451], + [37.707233, 55.55451] ] ] } @@ -36488,11 +36424,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707231, 55.554689], - [37.707231, 55.554778], - [37.70732, 55.554778], - [37.70732, 55.554689], - [37.707231, 55.554689] + [37.707233, 55.5546], + [37.707233, 55.55469], + [37.707323, 55.55469], + [37.707323, 55.5546], + [37.707233, 55.5546] ] ] } @@ -36504,11 +36440,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707231, 55.554778], - [37.707231, 55.554868], - [37.70732, 55.554868], - [37.70732, 55.554778], - [37.707231, 55.554778] + [37.707233, 55.55469], + [37.707233, 55.55478], + [37.707323, 55.55478], + [37.707323, 55.55469], + [37.707233, 55.55469] ] ] } @@ -36520,11 +36456,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707231, 55.554868], - [37.707231, 55.554958], - [37.70732, 55.554958], - [37.70732, 55.554868], - [37.707231, 55.554868] + [37.707233, 55.55478], + [37.707233, 55.554869], + [37.707323, 55.554869], + [37.707323, 55.55478], + [37.707233, 55.55478] ] ] } @@ -36536,11 +36472,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707231, 55.554958], - [37.707231, 55.555048], - [37.70732, 55.555048], - [37.70732, 55.554958], - [37.707231, 55.554958] + [37.707233, 55.554869], + [37.707233, 55.554959], + [37.707323, 55.554959], + [37.707323, 55.554869], + [37.707233, 55.554869] ] ] } @@ -36552,11 +36488,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707231, 55.555048], - [37.707231, 55.555138], - [37.70732, 55.555138], - [37.70732, 55.555048], - [37.707231, 55.555048] + [37.707233, 55.554959], + [37.707233, 55.555049], + [37.707323, 55.555049], + [37.707323, 55.554959], + [37.707233, 55.554959] ] ] } @@ -36568,11 +36504,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707231, 55.555138], - [37.707231, 55.555228], - [37.70732, 55.555228], - [37.70732, 55.555138], - [37.707231, 55.555138] + [37.707233, 55.555049], + [37.707233, 55.555139], + [37.707323, 55.555139], + [37.707323, 55.555049], + [37.707233, 55.555049] ] ] } @@ -36584,11 +36520,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707231, 55.555228], - [37.707231, 55.555317], - [37.70732, 55.555317], - [37.70732, 55.555228], - [37.707231, 55.555228] + [37.707233, 55.555139], + [37.707233, 55.555229], + [37.707323, 55.555229], + [37.707323, 55.555139], + [37.707233, 55.555139] ] ] } @@ -36600,11 +36536,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707231, 55.555317], - [37.707231, 55.555407], - [37.70732, 55.555407], - [37.70732, 55.555317], - [37.707231, 55.555317] + [37.707233, 55.555229], + [37.707233, 55.555319], + [37.707323, 55.555319], + [37.707323, 55.555229], + [37.707233, 55.555229] ] ] } @@ -36616,11 +36552,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707231, 55.555407], - [37.707231, 55.555497], - [37.70732, 55.555497], - [37.70732, 55.555407], - [37.707231, 55.555407] + [37.707233, 55.555319], + [37.707233, 55.555409], + [37.707323, 55.555409], + [37.707323, 55.555319], + [37.707233, 55.555319] ] ] } @@ -36632,11 +36568,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707231, 55.555497], - [37.707231, 55.555587], - [37.70732, 55.555587], - [37.70732, 55.555497], - [37.707231, 55.555497] + [37.707233, 55.555409], + [37.707233, 55.555499], + [37.707323, 55.555499], + [37.707323, 55.555409], + [37.707233, 55.555409] ] ] } @@ -36648,11 +36584,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707231, 55.555587], - [37.707231, 55.555677], - [37.70732, 55.555677], - [37.70732, 55.555587], - [37.707231, 55.555587] + [37.707233, 55.555499], + [37.707233, 55.555589], + [37.707323, 55.555589], + [37.707323, 55.555499], + [37.707233, 55.555499] ] ] } @@ -36664,11 +36600,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707231, 55.555677], - [37.707231, 55.555767], - [37.70732, 55.555767], - [37.70732, 55.555677], - [37.707231, 55.555677] + [37.707233, 55.555589], + [37.707233, 55.555679], + [37.707323, 55.555679], + [37.707323, 55.555589], + [37.707233, 55.555589] ] ] } @@ -36680,11 +36616,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70732, 55.552443], - [37.70732, 55.552533], - [37.70741, 55.552533], - [37.70741, 55.552443], - [37.70732, 55.552443] + [37.707233, 55.555679], + [37.707233, 55.555769], + [37.707323, 55.555769], + [37.707323, 55.555679], + [37.707233, 55.555679] ] ] } @@ -36696,11 +36632,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70732, 55.552533], - [37.70732, 55.552623], - [37.70741, 55.552623], - [37.70741, 55.552533], - [37.70732, 55.552533] + [37.707323, 55.552441], + [37.707323, 55.552531], + [37.707413, 55.552531], + [37.707413, 55.552441], + [37.707323, 55.552441] ] ] } @@ -36712,11 +36648,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70732, 55.552623], - [37.70732, 55.552712], - [37.70741, 55.552712], - [37.70741, 55.552623], - [37.70732, 55.552623] + [37.707323, 55.552531], + [37.707323, 55.552621], + [37.707413, 55.552621], + [37.707413, 55.552531], + [37.707323, 55.552531] ] ] } @@ -36728,11 +36664,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70732, 55.552712], - [37.70732, 55.552802], - [37.70741, 55.552802], - [37.70741, 55.552712], - [37.70732, 55.552712] + [37.707323, 55.552621], + [37.707323, 55.552711], + [37.707413, 55.552711], + [37.707413, 55.552621], + [37.707323, 55.552621] ] ] } @@ -36744,11 +36680,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70732, 55.552802], - [37.70732, 55.552892], - [37.70741, 55.552892], - [37.70741, 55.552802], - [37.70732, 55.552802] + [37.707323, 55.552711], + [37.707323, 55.552801], + [37.707413, 55.552801], + [37.707413, 55.552711], + [37.707323, 55.552711] ] ] } @@ -36760,11 +36696,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70732, 55.552892], - [37.70732, 55.552982], - [37.70741, 55.552982], - [37.70741, 55.552892], - [37.70732, 55.552892] + [37.707323, 55.552801], + [37.707323, 55.552891], + [37.707413, 55.552891], + [37.707413, 55.552801], + [37.707323, 55.552801] ] ] } @@ -36776,11 +36712,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70732, 55.552982], - [37.70732, 55.553072], - [37.70741, 55.553072], - [37.70741, 55.552982], - [37.70732, 55.552982] + [37.707323, 55.552891], + [37.707323, 55.552981], + [37.707413, 55.552981], + [37.707413, 55.552891], + [37.707323, 55.552891] ] ] } @@ -36792,11 +36728,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70732, 55.553072], - [37.70732, 55.553162], - [37.70741, 55.553162], - [37.70741, 55.553072], - [37.70732, 55.553072] + [37.707323, 55.552981], + [37.707323, 55.553071], + [37.707413, 55.553071], + [37.707413, 55.552981], + [37.707323, 55.552981] ] ] } @@ -36808,11 +36744,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70732, 55.553162], - [37.70732, 55.553251], - [37.70741, 55.553251], - [37.70741, 55.553162], - [37.70732, 55.553162] + [37.707323, 55.553071], + [37.707323, 55.553161], + [37.707413, 55.553161], + [37.707413, 55.553071], + [37.707323, 55.553071] ] ] } @@ -36824,11 +36760,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70732, 55.553251], - [37.70732, 55.553341], - [37.70741, 55.553341], - [37.70741, 55.553251], - [37.70732, 55.553251] + [37.707323, 55.553161], + [37.707323, 55.553251], + [37.707413, 55.553251], + [37.707413, 55.553161], + [37.707323, 55.553161] ] ] } @@ -36840,11 +36776,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70732, 55.553341], - [37.70732, 55.553431], - [37.70741, 55.553431], - [37.70741, 55.553341], - [37.70732, 55.553341] + [37.707323, 55.553251], + [37.707323, 55.553341], + [37.707413, 55.553341], + [37.707413, 55.553251], + [37.707323, 55.553251] ] ] } @@ -36856,11 +36792,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70732, 55.553431], - [37.70732, 55.553521], - [37.70741, 55.553521], - [37.70741, 55.553431], - [37.70732, 55.553431] + [37.707323, 55.553341], + [37.707323, 55.553431], + [37.707413, 55.553431], + [37.707413, 55.553341], + [37.707323, 55.553341] ] ] } @@ -36872,11 +36808,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70732, 55.553521], - [37.70732, 55.553611], - [37.70741, 55.553611], - [37.70741, 55.553521], - [37.70732, 55.553521] + [37.707323, 55.553431], + [37.707323, 55.55352], + [37.707413, 55.55352], + [37.707413, 55.553431], + [37.707323, 55.553431] ] ] } @@ -36888,11 +36824,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70732, 55.553611], - [37.70732, 55.5537], - [37.70741, 55.5537], - [37.70741, 55.553611], - [37.70732, 55.553611] + [37.707323, 55.55352], + [37.707323, 55.55361], + [37.707413, 55.55361], + [37.707413, 55.55352], + [37.707323, 55.55352] ] ] } @@ -36904,11 +36840,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70732, 55.5537], - [37.70732, 55.55379], - [37.70741, 55.55379], - [37.70741, 55.5537], - [37.70732, 55.5537] + [37.707323, 55.55361], + [37.707323, 55.5537], + [37.707413, 55.5537], + [37.707413, 55.55361], + [37.707323, 55.55361] ] ] } @@ -36920,11 +36856,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70732, 55.55379], - [37.70732, 55.55388], - [37.70741, 55.55388], - [37.70741, 55.55379], - [37.70732, 55.55379] + [37.707323, 55.5537], + [37.707323, 55.55379], + [37.707413, 55.55379], + [37.707413, 55.5537], + [37.707323, 55.5537] ] ] } @@ -36936,11 +36872,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70732, 55.55388], - [37.70732, 55.55397], - [37.70741, 55.55397], - [37.70741, 55.55388], - [37.70732, 55.55388] + [37.707323, 55.55379], + [37.707323, 55.55388], + [37.707413, 55.55388], + [37.707413, 55.55379], + [37.707323, 55.55379] ] ] } @@ -36952,11 +36888,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70732, 55.55397], - [37.70732, 55.55406], - [37.70741, 55.55406], - [37.70741, 55.55397], - [37.70732, 55.55397] + [37.707323, 55.55388], + [37.707323, 55.55397], + [37.707413, 55.55397], + [37.707413, 55.55388], + [37.707323, 55.55388] ] ] } @@ -36968,11 +36904,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70732, 55.55406], - [37.70732, 55.55415], - [37.70741, 55.55415], - [37.70741, 55.55406], - [37.70732, 55.55406] + [37.707323, 55.55397], + [37.707323, 55.55406], + [37.707413, 55.55406], + [37.707413, 55.55397], + [37.707323, 55.55397] ] ] } @@ -36984,11 +36920,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70732, 55.55415], - [37.70732, 55.554239], - [37.70741, 55.554239], - [37.70741, 55.55415], - [37.70732, 55.55415] + [37.707323, 55.55406], + [37.707323, 55.55415], + [37.707413, 55.55415], + [37.707413, 55.55406], + [37.707323, 55.55406] ] ] } @@ -37000,11 +36936,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70732, 55.554239], - [37.70732, 55.554329], - [37.70741, 55.554329], - [37.70741, 55.554239], - [37.70732, 55.554239] + [37.707323, 55.55415], + [37.707323, 55.55424], + [37.707413, 55.55424], + [37.707413, 55.55415], + [37.707323, 55.55415] ] ] } @@ -37016,11 +36952,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70732, 55.554329], - [37.70732, 55.554419], - [37.70741, 55.554419], - [37.70741, 55.554329], - [37.70732, 55.554329] + [37.707323, 55.55424], + [37.707323, 55.55433], + [37.707413, 55.55433], + [37.707413, 55.55424], + [37.707323, 55.55424] ] ] } @@ -37032,11 +36968,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70732, 55.554419], - [37.70732, 55.554509], - [37.70741, 55.554509], - [37.70741, 55.554419], - [37.70732, 55.554419] + [37.707323, 55.55433], + [37.707323, 55.55442], + [37.707413, 55.55442], + [37.707413, 55.55433], + [37.707323, 55.55433] ] ] } @@ -37048,11 +36984,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70732, 55.554509], - [37.70732, 55.554599], - [37.70741, 55.554599], - [37.70741, 55.554509], - [37.70732, 55.554509] + [37.707323, 55.55442], + [37.707323, 55.55451], + [37.707413, 55.55451], + [37.707413, 55.55442], + [37.707323, 55.55442] ] ] } @@ -37064,11 +37000,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70732, 55.554599], - [37.70732, 55.554689], - [37.70741, 55.554689], - [37.70741, 55.554599], - [37.70732, 55.554599] + [37.707323, 55.55451], + [37.707323, 55.5546], + [37.707413, 55.5546], + [37.707413, 55.55451], + [37.707323, 55.55451] ] ] } @@ -37080,11 +37016,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70732, 55.554689], - [37.70732, 55.554778], - [37.70741, 55.554778], - [37.70741, 55.554689], - [37.70732, 55.554689] + [37.707323, 55.5546], + [37.707323, 55.55469], + [37.707413, 55.55469], + [37.707413, 55.5546], + [37.707323, 55.5546] ] ] } @@ -37096,11 +37032,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70732, 55.554778], - [37.70732, 55.554868], - [37.70741, 55.554868], - [37.70741, 55.554778], - [37.70732, 55.554778] + [37.707323, 55.55469], + [37.707323, 55.55478], + [37.707413, 55.55478], + [37.707413, 55.55469], + [37.707323, 55.55469] ] ] } @@ -37112,11 +37048,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70732, 55.554868], - [37.70732, 55.554958], - [37.70741, 55.554958], - [37.70741, 55.554868], - [37.70732, 55.554868] + [37.707323, 55.55478], + [37.707323, 55.554869], + [37.707413, 55.554869], + [37.707413, 55.55478], + [37.707323, 55.55478] ] ] } @@ -37128,11 +37064,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70732, 55.554958], - [37.70732, 55.555048], - [37.70741, 55.555048], - [37.70741, 55.554958], - [37.70732, 55.554958] + [37.707323, 55.554869], + [37.707323, 55.554959], + [37.707413, 55.554959], + [37.707413, 55.554869], + [37.707323, 55.554869] ] ] } @@ -37144,11 +37080,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70732, 55.555048], - [37.70732, 55.555138], - [37.70741, 55.555138], - [37.70741, 55.555048], - [37.70732, 55.555048] + [37.707323, 55.554959], + [37.707323, 55.555049], + [37.707413, 55.555049], + [37.707413, 55.554959], + [37.707323, 55.554959] ] ] } @@ -37160,11 +37096,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70732, 55.555138], - [37.70732, 55.555228], - [37.70741, 55.555228], - [37.70741, 55.555138], - [37.70732, 55.555138] + [37.707323, 55.555049], + [37.707323, 55.555139], + [37.707413, 55.555139], + [37.707413, 55.555049], + [37.707323, 55.555049] ] ] } @@ -37176,11 +37112,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70732, 55.555228], - [37.70732, 55.555317], - [37.70741, 55.555317], - [37.70741, 55.555228], - [37.70732, 55.555228] + [37.707323, 55.555139], + [37.707323, 55.555229], + [37.707413, 55.555229], + [37.707413, 55.555139], + [37.707323, 55.555139] ] ] } @@ -37192,11 +37128,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70732, 55.555317], - [37.70732, 55.555407], - [37.70741, 55.555407], - [37.70741, 55.555317], - [37.70732, 55.555317] + [37.707323, 55.555229], + [37.707323, 55.555319], + [37.707413, 55.555319], + [37.707413, 55.555229], + [37.707323, 55.555229] ] ] } @@ -37208,11 +37144,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70732, 55.555407], - [37.70732, 55.555497], - [37.70741, 55.555497], - [37.70741, 55.555407], - [37.70732, 55.555407] + [37.707323, 55.555319], + [37.707323, 55.555409], + [37.707413, 55.555409], + [37.707413, 55.555319], + [37.707323, 55.555319] ] ] } @@ -37224,11 +37160,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70732, 55.555497], - [37.70732, 55.555587], - [37.70741, 55.555587], - [37.70741, 55.555497], - [37.70732, 55.555497] + [37.707323, 55.555409], + [37.707323, 55.555499], + [37.707413, 55.555499], + [37.707413, 55.555409], + [37.707323, 55.555409] ] ] } @@ -37240,11 +37176,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70732, 55.555587], - [37.70732, 55.555677], - [37.70741, 55.555677], - [37.70741, 55.555587], - [37.70732, 55.555587] + [37.707323, 55.555499], + [37.707323, 55.555589], + [37.707413, 55.555589], + [37.707413, 55.555499], + [37.707323, 55.555499] ] ] } @@ -37256,11 +37192,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70732, 55.555677], - [37.70732, 55.555767], - [37.70741, 55.555767], - [37.70741, 55.555677], - [37.70732, 55.555677] + [37.707323, 55.555589], + [37.707323, 55.555679], + [37.707413, 55.555679], + [37.707413, 55.555589], + [37.707323, 55.555589] ] ] } @@ -37272,11 +37208,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70741, 55.552533], - [37.70741, 55.552623], - [37.7075, 55.552623], - [37.7075, 55.552533], - [37.70741, 55.552533] + [37.707323, 55.555679], + [37.707323, 55.555769], + [37.707413, 55.555769], + [37.707413, 55.555679], + [37.707323, 55.555679] ] ] } @@ -37288,11 +37224,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70741, 55.552623], - [37.70741, 55.552712], - [37.7075, 55.552712], - [37.7075, 55.552623], - [37.70741, 55.552623] + [37.707413, 55.552531], + [37.707413, 55.552621], + [37.707503, 55.552621], + [37.707503, 55.552531], + [37.707413, 55.552531] ] ] } @@ -37304,11 +37240,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70741, 55.552712], - [37.70741, 55.552802], - [37.7075, 55.552802], - [37.7075, 55.552712], - [37.70741, 55.552712] + [37.707413, 55.552621], + [37.707413, 55.552711], + [37.707503, 55.552711], + [37.707503, 55.552621], + [37.707413, 55.552621] ] ] } @@ -37320,11 +37256,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70741, 55.552802], - [37.70741, 55.552892], - [37.7075, 55.552892], - [37.7075, 55.552802], - [37.70741, 55.552802] + [37.707413, 55.552711], + [37.707413, 55.552801], + [37.707503, 55.552801], + [37.707503, 55.552711], + [37.707413, 55.552711] ] ] } @@ -37336,11 +37272,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70741, 55.552892], - [37.70741, 55.552982], - [37.7075, 55.552982], - [37.7075, 55.552892], - [37.70741, 55.552892] + [37.707413, 55.552801], + [37.707413, 55.552891], + [37.707503, 55.552891], + [37.707503, 55.552801], + [37.707413, 55.552801] ] ] } @@ -37352,11 +37288,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70741, 55.552982], - [37.70741, 55.553072], - [37.7075, 55.553072], - [37.7075, 55.552982], - [37.70741, 55.552982] + [37.707413, 55.552891], + [37.707413, 55.552981], + [37.707503, 55.552981], + [37.707503, 55.552891], + [37.707413, 55.552891] ] ] } @@ -37368,11 +37304,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70741, 55.553072], - [37.70741, 55.553162], - [37.7075, 55.553162], - [37.7075, 55.553072], - [37.70741, 55.553072] + [37.707413, 55.552981], + [37.707413, 55.553071], + [37.707503, 55.553071], + [37.707503, 55.552981], + [37.707413, 55.552981] ] ] } @@ -37384,11 +37320,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70741, 55.553162], - [37.70741, 55.553251], - [37.7075, 55.553251], - [37.7075, 55.553162], - [37.70741, 55.553162] + [37.707413, 55.553071], + [37.707413, 55.553161], + [37.707503, 55.553161], + [37.707503, 55.553071], + [37.707413, 55.553071] ] ] } @@ -37400,11 +37336,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70741, 55.553251], - [37.70741, 55.553341], - [37.7075, 55.553341], - [37.7075, 55.553251], - [37.70741, 55.553251] + [37.707413, 55.553161], + [37.707413, 55.553251], + [37.707503, 55.553251], + [37.707503, 55.553161], + [37.707413, 55.553161] ] ] } @@ -37416,11 +37352,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70741, 55.553341], - [37.70741, 55.553431], - [37.7075, 55.553431], - [37.7075, 55.553341], - [37.70741, 55.553341] + [37.707413, 55.553251], + [37.707413, 55.553341], + [37.707503, 55.553341], + [37.707503, 55.553251], + [37.707413, 55.553251] ] ] } @@ -37432,11 +37368,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70741, 55.553431], - [37.70741, 55.553521], - [37.7075, 55.553521], - [37.7075, 55.553431], - [37.70741, 55.553431] + [37.707413, 55.553341], + [37.707413, 55.553431], + [37.707503, 55.553431], + [37.707503, 55.553341], + [37.707413, 55.553341] ] ] } @@ -37448,11 +37384,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70741, 55.553521], - [37.70741, 55.553611], - [37.7075, 55.553611], - [37.7075, 55.553521], - [37.70741, 55.553521] + [37.707413, 55.553431], + [37.707413, 55.55352], + [37.707503, 55.55352], + [37.707503, 55.553431], + [37.707413, 55.553431] ] ] } @@ -37464,11 +37400,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70741, 55.553611], - [37.70741, 55.5537], - [37.7075, 55.5537], - [37.7075, 55.553611], - [37.70741, 55.553611] + [37.707413, 55.55352], + [37.707413, 55.55361], + [37.707503, 55.55361], + [37.707503, 55.55352], + [37.707413, 55.55352] ] ] } @@ -37480,11 +37416,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70741, 55.5537], - [37.70741, 55.55379], - [37.7075, 55.55379], - [37.7075, 55.5537], - [37.70741, 55.5537] + [37.707413, 55.55361], + [37.707413, 55.5537], + [37.707503, 55.5537], + [37.707503, 55.55361], + [37.707413, 55.55361] ] ] } @@ -37496,11 +37432,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70741, 55.55379], - [37.70741, 55.55388], - [37.7075, 55.55388], - [37.7075, 55.55379], - [37.70741, 55.55379] + [37.707413, 55.5537], + [37.707413, 55.55379], + [37.707503, 55.55379], + [37.707503, 55.5537], + [37.707413, 55.5537] ] ] } @@ -37512,11 +37448,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70741, 55.55388], - [37.70741, 55.55397], - [37.7075, 55.55397], - [37.7075, 55.55388], - [37.70741, 55.55388] + [37.707413, 55.55379], + [37.707413, 55.55388], + [37.707503, 55.55388], + [37.707503, 55.55379], + [37.707413, 55.55379] ] ] } @@ -37528,11 +37464,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70741, 55.55397], - [37.70741, 55.55406], - [37.7075, 55.55406], - [37.7075, 55.55397], - [37.70741, 55.55397] + [37.707413, 55.55388], + [37.707413, 55.55397], + [37.707503, 55.55397], + [37.707503, 55.55388], + [37.707413, 55.55388] ] ] } @@ -37544,11 +37480,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70741, 55.55406], - [37.70741, 55.55415], - [37.7075, 55.55415], - [37.7075, 55.55406], - [37.70741, 55.55406] + [37.707413, 55.55397], + [37.707413, 55.55406], + [37.707503, 55.55406], + [37.707503, 55.55397], + [37.707413, 55.55397] ] ] } @@ -37560,11 +37496,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70741, 55.55415], - [37.70741, 55.554239], - [37.7075, 55.554239], - [37.7075, 55.55415], - [37.70741, 55.55415] + [37.707413, 55.55406], + [37.707413, 55.55415], + [37.707503, 55.55415], + [37.707503, 55.55406], + [37.707413, 55.55406] ] ] } @@ -37576,11 +37512,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70741, 55.554239], - [37.70741, 55.554329], - [37.7075, 55.554329], - [37.7075, 55.554239], - [37.70741, 55.554239] + [37.707413, 55.55415], + [37.707413, 55.55424], + [37.707503, 55.55424], + [37.707503, 55.55415], + [37.707413, 55.55415] ] ] } @@ -37592,11 +37528,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70741, 55.554329], - [37.70741, 55.554419], - [37.7075, 55.554419], - [37.7075, 55.554329], - [37.70741, 55.554329] + [37.707413, 55.55424], + [37.707413, 55.55433], + [37.707503, 55.55433], + [37.707503, 55.55424], + [37.707413, 55.55424] ] ] } @@ -37608,11 +37544,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70741, 55.554419], - [37.70741, 55.554509], - [37.7075, 55.554509], - [37.7075, 55.554419], - [37.70741, 55.554419] + [37.707413, 55.55433], + [37.707413, 55.55442], + [37.707503, 55.55442], + [37.707503, 55.55433], + [37.707413, 55.55433] ] ] } @@ -37624,11 +37560,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70741, 55.554509], - [37.70741, 55.554599], - [37.7075, 55.554599], - [37.7075, 55.554509], - [37.70741, 55.554509] + [37.707413, 55.55442], + [37.707413, 55.55451], + [37.707503, 55.55451], + [37.707503, 55.55442], + [37.707413, 55.55442] ] ] } @@ -37640,11 +37576,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70741, 55.554599], - [37.70741, 55.554689], - [37.7075, 55.554689], - [37.7075, 55.554599], - [37.70741, 55.554599] + [37.707413, 55.55451], + [37.707413, 55.5546], + [37.707503, 55.5546], + [37.707503, 55.55451], + [37.707413, 55.55451] ] ] } @@ -37656,11 +37592,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70741, 55.554689], - [37.70741, 55.554778], - [37.7075, 55.554778], - [37.7075, 55.554689], - [37.70741, 55.554689] + [37.707413, 55.5546], + [37.707413, 55.55469], + [37.707503, 55.55469], + [37.707503, 55.5546], + [37.707413, 55.5546] ] ] } @@ -37672,11 +37608,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70741, 55.554778], - [37.70741, 55.554868], - [37.7075, 55.554868], - [37.7075, 55.554778], - [37.70741, 55.554778] + [37.707413, 55.55469], + [37.707413, 55.55478], + [37.707503, 55.55478], + [37.707503, 55.55469], + [37.707413, 55.55469] ] ] } @@ -37688,11 +37624,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70741, 55.554868], - [37.70741, 55.554958], - [37.7075, 55.554958], - [37.7075, 55.554868], - [37.70741, 55.554868] + [37.707413, 55.55478], + [37.707413, 55.554869], + [37.707503, 55.554869], + [37.707503, 55.55478], + [37.707413, 55.55478] ] ] } @@ -37704,11 +37640,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70741, 55.554958], - [37.70741, 55.555048], - [37.7075, 55.555048], - [37.7075, 55.554958], - [37.70741, 55.554958] + [37.707413, 55.554869], + [37.707413, 55.554959], + [37.707503, 55.554959], + [37.707503, 55.554869], + [37.707413, 55.554869] ] ] } @@ -37720,11 +37656,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70741, 55.555048], - [37.70741, 55.555138], - [37.7075, 55.555138], - [37.7075, 55.555048], - [37.70741, 55.555048] + [37.707413, 55.554959], + [37.707413, 55.555049], + [37.707503, 55.555049], + [37.707503, 55.554959], + [37.707413, 55.554959] ] ] } @@ -37736,11 +37672,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70741, 55.555138], - [37.70741, 55.555228], - [37.7075, 55.555228], - [37.7075, 55.555138], - [37.70741, 55.555138] + [37.707413, 55.555049], + [37.707413, 55.555139], + [37.707503, 55.555139], + [37.707503, 55.555049], + [37.707413, 55.555049] ] ] } @@ -37752,11 +37688,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70741, 55.555228], - [37.70741, 55.555317], - [37.7075, 55.555317], - [37.7075, 55.555228], - [37.70741, 55.555228] + [37.707413, 55.555139], + [37.707413, 55.555229], + [37.707503, 55.555229], + [37.707503, 55.555139], + [37.707413, 55.555139] ] ] } @@ -37768,11 +37704,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70741, 55.555317], - [37.70741, 55.555407], - [37.7075, 55.555407], - [37.7075, 55.555317], - [37.70741, 55.555317] + [37.707413, 55.555229], + [37.707413, 55.555319], + [37.707503, 55.555319], + [37.707503, 55.555229], + [37.707413, 55.555229] ] ] } @@ -37784,11 +37720,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70741, 55.555407], - [37.70741, 55.555497], - [37.7075, 55.555497], - [37.7075, 55.555407], - [37.70741, 55.555407] + [37.707413, 55.555319], + [37.707413, 55.555409], + [37.707503, 55.555409], + [37.707503, 55.555319], + [37.707413, 55.555319] ] ] } @@ -37800,11 +37736,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70741, 55.555497], - [37.70741, 55.555587], - [37.7075, 55.555587], - [37.7075, 55.555497], - [37.70741, 55.555497] + [37.707413, 55.555409], + [37.707413, 55.555499], + [37.707503, 55.555499], + [37.707503, 55.555409], + [37.707413, 55.555409] ] ] } @@ -37816,11 +37752,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70741, 55.555587], - [37.70741, 55.555677], - [37.7075, 55.555677], - [37.7075, 55.555587], - [37.70741, 55.555587] + [37.707413, 55.555499], + [37.707413, 55.555589], + [37.707503, 55.555589], + [37.707503, 55.555499], + [37.707413, 55.555499] ] ] } @@ -37832,11 +37768,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70741, 55.555677], - [37.70741, 55.555767], - [37.7075, 55.555767], - [37.7075, 55.555677], - [37.70741, 55.555677] + [37.707413, 55.555589], + [37.707413, 55.555679], + [37.707503, 55.555679], + [37.707503, 55.555589], + [37.707413, 55.555589] ] ] } @@ -37848,11 +37784,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70741, 55.555767], - [37.70741, 55.555856], - [37.7075, 55.555856], - [37.7075, 55.555767], - [37.70741, 55.555767] + [37.707413, 55.555679], + [37.707413, 55.555769], + [37.707503, 55.555769], + [37.707503, 55.555679], + [37.707413, 55.555679] ] ] } @@ -37864,11 +37800,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7075, 55.552712], - [37.7075, 55.552802], - [37.70759, 55.552802], - [37.70759, 55.552712], - [37.7075, 55.552712] + [37.707413, 55.555769], + [37.707413, 55.555859], + [37.707503, 55.555859], + [37.707503, 55.555769], + [37.707413, 55.555769] ] ] } @@ -37880,11 +37816,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7075, 55.552802], - [37.7075, 55.552892], - [37.70759, 55.552892], - [37.70759, 55.552802], - [37.7075, 55.552802] + [37.707503, 55.552711], + [37.707503, 55.552801], + [37.707593, 55.552801], + [37.707593, 55.552711], + [37.707503, 55.552711] ] ] } @@ -37896,11 +37832,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7075, 55.552892], - [37.7075, 55.552982], - [37.70759, 55.552982], - [37.70759, 55.552892], - [37.7075, 55.552892] + [37.707503, 55.552801], + [37.707503, 55.552891], + [37.707593, 55.552891], + [37.707593, 55.552801], + [37.707503, 55.552801] ] ] } @@ -37912,11 +37848,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7075, 55.552982], - [37.7075, 55.553072], - [37.70759, 55.553072], - [37.70759, 55.552982], - [37.7075, 55.552982] + [37.707503, 55.552891], + [37.707503, 55.552981], + [37.707593, 55.552981], + [37.707593, 55.552891], + [37.707503, 55.552891] ] ] } @@ -37928,11 +37864,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7075, 55.553072], - [37.7075, 55.553162], - [37.70759, 55.553162], - [37.70759, 55.553072], - [37.7075, 55.553072] + [37.707503, 55.552981], + [37.707503, 55.553071], + [37.707593, 55.553071], + [37.707593, 55.552981], + [37.707503, 55.552981] ] ] } @@ -37944,11 +37880,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7075, 55.553162], - [37.7075, 55.553251], - [37.70759, 55.553251], - [37.70759, 55.553162], - [37.7075, 55.553162] + [37.707503, 55.553071], + [37.707503, 55.553161], + [37.707593, 55.553161], + [37.707593, 55.553071], + [37.707503, 55.553071] ] ] } @@ -37960,11 +37896,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7075, 55.553251], - [37.7075, 55.553341], - [37.70759, 55.553341], - [37.70759, 55.553251], - [37.7075, 55.553251] + [37.707503, 55.553161], + [37.707503, 55.553251], + [37.707593, 55.553251], + [37.707593, 55.553161], + [37.707503, 55.553161] ] ] } @@ -37976,11 +37912,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7075, 55.553341], - [37.7075, 55.553431], - [37.70759, 55.553431], - [37.70759, 55.553341], - [37.7075, 55.553341] + [37.707503, 55.553251], + [37.707503, 55.553341], + [37.707593, 55.553341], + [37.707593, 55.553251], + [37.707503, 55.553251] ] ] } @@ -37992,11 +37928,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7075, 55.553431], - [37.7075, 55.553521], - [37.70759, 55.553521], - [37.70759, 55.553431], - [37.7075, 55.553431] + [37.707503, 55.553341], + [37.707503, 55.553431], + [37.707593, 55.553431], + [37.707593, 55.553341], + [37.707503, 55.553341] ] ] } @@ -38008,11 +37944,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7075, 55.553521], - [37.7075, 55.553611], - [37.70759, 55.553611], - [37.70759, 55.553521], - [37.7075, 55.553521] + [37.707503, 55.553431], + [37.707503, 55.55352], + [37.707593, 55.55352], + [37.707593, 55.553431], + [37.707503, 55.553431] ] ] } @@ -38024,11 +37960,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7075, 55.553611], - [37.7075, 55.5537], - [37.70759, 55.5537], - [37.70759, 55.553611], - [37.7075, 55.553611] + [37.707503, 55.55352], + [37.707503, 55.55361], + [37.707593, 55.55361], + [37.707593, 55.55352], + [37.707503, 55.55352] ] ] } @@ -38040,11 +37976,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7075, 55.5537], - [37.7075, 55.55379], - [37.70759, 55.55379], - [37.70759, 55.5537], - [37.7075, 55.5537] + [37.707503, 55.55361], + [37.707503, 55.5537], + [37.707593, 55.5537], + [37.707593, 55.55361], + [37.707503, 55.55361] ] ] } @@ -38056,11 +37992,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7075, 55.55379], - [37.7075, 55.55388], - [37.70759, 55.55388], - [37.70759, 55.55379], - [37.7075, 55.55379] + [37.707503, 55.5537], + [37.707503, 55.55379], + [37.707593, 55.55379], + [37.707593, 55.5537], + [37.707503, 55.5537] ] ] } @@ -38072,11 +38008,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7075, 55.55388], - [37.7075, 55.55397], - [37.70759, 55.55397], - [37.70759, 55.55388], - [37.7075, 55.55388] + [37.707503, 55.55379], + [37.707503, 55.55388], + [37.707593, 55.55388], + [37.707593, 55.55379], + [37.707503, 55.55379] ] ] } @@ -38088,11 +38024,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7075, 55.55397], - [37.7075, 55.55406], - [37.70759, 55.55406], - [37.70759, 55.55397], - [37.7075, 55.55397] + [37.707503, 55.55388], + [37.707503, 55.55397], + [37.707593, 55.55397], + [37.707593, 55.55388], + [37.707503, 55.55388] ] ] } @@ -38104,11 +38040,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7075, 55.55406], - [37.7075, 55.55415], - [37.70759, 55.55415], - [37.70759, 55.55406], - [37.7075, 55.55406] + [37.707503, 55.55397], + [37.707503, 55.55406], + [37.707593, 55.55406], + [37.707593, 55.55397], + [37.707503, 55.55397] ] ] } @@ -38120,11 +38056,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7075, 55.55415], - [37.7075, 55.554239], - [37.70759, 55.554239], - [37.70759, 55.55415], - [37.7075, 55.55415] + [37.707503, 55.55406], + [37.707503, 55.55415], + [37.707593, 55.55415], + [37.707593, 55.55406], + [37.707503, 55.55406] ] ] } @@ -38136,11 +38072,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7075, 55.554239], - [37.7075, 55.554329], - [37.70759, 55.554329], - [37.70759, 55.554239], - [37.7075, 55.554239] + [37.707503, 55.55415], + [37.707503, 55.55424], + [37.707593, 55.55424], + [37.707593, 55.55415], + [37.707503, 55.55415] ] ] } @@ -38152,11 +38088,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7075, 55.554329], - [37.7075, 55.554419], - [37.70759, 55.554419], - [37.70759, 55.554329], - [37.7075, 55.554329] + [37.707503, 55.55424], + [37.707503, 55.55433], + [37.707593, 55.55433], + [37.707593, 55.55424], + [37.707503, 55.55424] ] ] } @@ -38168,11 +38104,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7075, 55.554419], - [37.7075, 55.554509], - [37.70759, 55.554509], - [37.70759, 55.554419], - [37.7075, 55.554419] + [37.707503, 55.55433], + [37.707503, 55.55442], + [37.707593, 55.55442], + [37.707593, 55.55433], + [37.707503, 55.55433] ] ] } @@ -38184,11 +38120,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7075, 55.554509], - [37.7075, 55.554599], - [37.70759, 55.554599], - [37.70759, 55.554509], - [37.7075, 55.554509] + [37.707503, 55.55442], + [37.707503, 55.55451], + [37.707593, 55.55451], + [37.707593, 55.55442], + [37.707503, 55.55442] ] ] } @@ -38200,11 +38136,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7075, 55.554599], - [37.7075, 55.554689], - [37.70759, 55.554689], - [37.70759, 55.554599], - [37.7075, 55.554599] + [37.707503, 55.55451], + [37.707503, 55.5546], + [37.707593, 55.5546], + [37.707593, 55.55451], + [37.707503, 55.55451] ] ] } @@ -38216,11 +38152,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7075, 55.554689], - [37.7075, 55.554778], - [37.70759, 55.554778], - [37.70759, 55.554689], - [37.7075, 55.554689] + [37.707503, 55.5546], + [37.707503, 55.55469], + [37.707593, 55.55469], + [37.707593, 55.5546], + [37.707503, 55.5546] ] ] } @@ -38232,11 +38168,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7075, 55.554778], - [37.7075, 55.554868], - [37.70759, 55.554868], - [37.70759, 55.554778], - [37.7075, 55.554778] + [37.707503, 55.55469], + [37.707503, 55.55478], + [37.707593, 55.55478], + [37.707593, 55.55469], + [37.707503, 55.55469] ] ] } @@ -38248,11 +38184,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7075, 55.554868], - [37.7075, 55.554958], - [37.70759, 55.554958], - [37.70759, 55.554868], - [37.7075, 55.554868] + [37.707503, 55.55478], + [37.707503, 55.554869], + [37.707593, 55.554869], + [37.707593, 55.55478], + [37.707503, 55.55478] ] ] } @@ -38264,11 +38200,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7075, 55.554958], - [37.7075, 55.555048], - [37.70759, 55.555048], - [37.70759, 55.554958], - [37.7075, 55.554958] + [37.707503, 55.554869], + [37.707503, 55.554959], + [37.707593, 55.554959], + [37.707593, 55.554869], + [37.707503, 55.554869] ] ] } @@ -38280,11 +38216,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7075, 55.555048], - [37.7075, 55.555138], - [37.70759, 55.555138], - [37.70759, 55.555048], - [37.7075, 55.555048] + [37.707503, 55.554959], + [37.707503, 55.555049], + [37.707593, 55.555049], + [37.707593, 55.554959], + [37.707503, 55.554959] ] ] } @@ -38296,11 +38232,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7075, 55.555138], - [37.7075, 55.555228], - [37.70759, 55.555228], - [37.70759, 55.555138], - [37.7075, 55.555138] + [37.707503, 55.555049], + [37.707503, 55.555139], + [37.707593, 55.555139], + [37.707593, 55.555049], + [37.707503, 55.555049] ] ] } @@ -38312,11 +38248,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7075, 55.555228], - [37.7075, 55.555317], - [37.70759, 55.555317], - [37.70759, 55.555228], - [37.7075, 55.555228] + [37.707503, 55.555139], + [37.707503, 55.555229], + [37.707593, 55.555229], + [37.707593, 55.555139], + [37.707503, 55.555139] ] ] } @@ -38328,11 +38264,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7075, 55.555317], - [37.7075, 55.555407], - [37.70759, 55.555407], - [37.70759, 55.555317], - [37.7075, 55.555317] + [37.707503, 55.555229], + [37.707503, 55.555319], + [37.707593, 55.555319], + [37.707593, 55.555229], + [37.707503, 55.555229] ] ] } @@ -38344,11 +38280,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7075, 55.555407], - [37.7075, 55.555497], - [37.70759, 55.555497], - [37.70759, 55.555407], - [37.7075, 55.555407] + [37.707503, 55.555319], + [37.707503, 55.555409], + [37.707593, 55.555409], + [37.707593, 55.555319], + [37.707503, 55.555319] ] ] } @@ -38360,11 +38296,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7075, 55.555497], - [37.7075, 55.555587], - [37.70759, 55.555587], - [37.70759, 55.555497], - [37.7075, 55.555497] + [37.707503, 55.555409], + [37.707503, 55.555499], + [37.707593, 55.555499], + [37.707593, 55.555409], + [37.707503, 55.555409] ] ] } @@ -38376,11 +38312,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7075, 55.555587], - [37.7075, 55.555677], - [37.70759, 55.555677], - [37.70759, 55.555587], - [37.7075, 55.555587] + [37.707503, 55.555499], + [37.707503, 55.555589], + [37.707593, 55.555589], + [37.707593, 55.555499], + [37.707503, 55.555499] ] ] } @@ -38392,11 +38328,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7075, 55.555677], - [37.7075, 55.555767], - [37.70759, 55.555767], - [37.70759, 55.555677], - [37.7075, 55.555677] + [37.707503, 55.555589], + [37.707503, 55.555679], + [37.707593, 55.555679], + [37.707593, 55.555589], + [37.707503, 55.555589] ] ] } @@ -38408,11 +38344,11 @@ "type": "Polygon", "coordinates": [ [ - [37.7075, 55.555767], - [37.7075, 55.555856], - [37.70759, 55.555856], - [37.70759, 55.555767], - [37.7075, 55.555767] + [37.707503, 55.555679], + [37.707503, 55.555769], + [37.707593, 55.555769], + [37.707593, 55.555679], + [37.707503, 55.555679] ] ] } @@ -38424,11 +38360,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70759, 55.552802], - [37.70759, 55.552892], - [37.70768, 55.552892], - [37.70768, 55.552802], - [37.70759, 55.552802] + [37.707503, 55.555769], + [37.707503, 55.555859], + [37.707593, 55.555859], + [37.707593, 55.555769], + [37.707503, 55.555769] ] ] } @@ -38440,11 +38376,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70759, 55.552892], - [37.70759, 55.552982], - [37.70768, 55.552982], - [37.70768, 55.552892], - [37.70759, 55.552892] + [37.707593, 55.552801], + [37.707593, 55.552891], + [37.707683, 55.552891], + [37.707683, 55.552801], + [37.707593, 55.552801] ] ] } @@ -38456,11 +38392,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70759, 55.552982], - [37.70759, 55.553072], - [37.70768, 55.553072], - [37.70768, 55.552982], - [37.70759, 55.552982] + [37.707593, 55.552891], + [37.707593, 55.552981], + [37.707683, 55.552981], + [37.707683, 55.552891], + [37.707593, 55.552891] ] ] } @@ -38472,11 +38408,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70759, 55.553072], - [37.70759, 55.553162], - [37.70768, 55.553162], - [37.70768, 55.553072], - [37.70759, 55.553072] + [37.707593, 55.552981], + [37.707593, 55.553071], + [37.707683, 55.553071], + [37.707683, 55.552981], + [37.707593, 55.552981] ] ] } @@ -38488,11 +38424,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70759, 55.553162], - [37.70759, 55.553251], - [37.70768, 55.553251], - [37.70768, 55.553162], - [37.70759, 55.553162] + [37.707593, 55.553071], + [37.707593, 55.553161], + [37.707683, 55.553161], + [37.707683, 55.553071], + [37.707593, 55.553071] ] ] } @@ -38504,11 +38440,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70759, 55.553251], - [37.70759, 55.553341], - [37.70768, 55.553341], - [37.70768, 55.553251], - [37.70759, 55.553251] + [37.707593, 55.553161], + [37.707593, 55.553251], + [37.707683, 55.553251], + [37.707683, 55.553161], + [37.707593, 55.553161] ] ] } @@ -38520,11 +38456,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70759, 55.553341], - [37.70759, 55.553431], - [37.70768, 55.553431], - [37.70768, 55.553341], - [37.70759, 55.553341] + [37.707593, 55.553251], + [37.707593, 55.553341], + [37.707683, 55.553341], + [37.707683, 55.553251], + [37.707593, 55.553251] ] ] } @@ -38536,11 +38472,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70759, 55.553431], - [37.70759, 55.553521], - [37.70768, 55.553521], - [37.70768, 55.553431], - [37.70759, 55.553431] + [37.707593, 55.553341], + [37.707593, 55.553431], + [37.707683, 55.553431], + [37.707683, 55.553341], + [37.707593, 55.553341] ] ] } @@ -38552,11 +38488,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70759, 55.553521], - [37.70759, 55.553611], - [37.70768, 55.553611], - [37.70768, 55.553521], - [37.70759, 55.553521] + [37.707593, 55.553431], + [37.707593, 55.55352], + [37.707683, 55.55352], + [37.707683, 55.553431], + [37.707593, 55.553431] ] ] } @@ -38568,11 +38504,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70759, 55.553611], - [37.70759, 55.5537], - [37.70768, 55.5537], - [37.70768, 55.553611], - [37.70759, 55.553611] + [37.707593, 55.55352], + [37.707593, 55.55361], + [37.707683, 55.55361], + [37.707683, 55.55352], + [37.707593, 55.55352] ] ] } @@ -38584,11 +38520,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70759, 55.5537], - [37.70759, 55.55379], - [37.70768, 55.55379], - [37.70768, 55.5537], - [37.70759, 55.5537] + [37.707593, 55.55361], + [37.707593, 55.5537], + [37.707683, 55.5537], + [37.707683, 55.55361], + [37.707593, 55.55361] ] ] } @@ -38600,11 +38536,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70759, 55.55379], - [37.70759, 55.55388], - [37.70768, 55.55388], - [37.70768, 55.55379], - [37.70759, 55.55379] + [37.707593, 55.5537], + [37.707593, 55.55379], + [37.707683, 55.55379], + [37.707683, 55.5537], + [37.707593, 55.5537] ] ] } @@ -38616,11 +38552,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70759, 55.55388], - [37.70759, 55.55397], - [37.70768, 55.55397], - [37.70768, 55.55388], - [37.70759, 55.55388] + [37.707593, 55.55379], + [37.707593, 55.55388], + [37.707683, 55.55388], + [37.707683, 55.55379], + [37.707593, 55.55379] ] ] } @@ -38632,11 +38568,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70759, 55.55397], - [37.70759, 55.55406], - [37.70768, 55.55406], - [37.70768, 55.55397], - [37.70759, 55.55397] + [37.707593, 55.55388], + [37.707593, 55.55397], + [37.707683, 55.55397], + [37.707683, 55.55388], + [37.707593, 55.55388] ] ] } @@ -38648,11 +38584,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70759, 55.55406], - [37.70759, 55.55415], - [37.70768, 55.55415], - [37.70768, 55.55406], - [37.70759, 55.55406] + [37.707593, 55.55397], + [37.707593, 55.55406], + [37.707683, 55.55406], + [37.707683, 55.55397], + [37.707593, 55.55397] ] ] } @@ -38664,11 +38600,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70759, 55.55415], - [37.70759, 55.554239], - [37.70768, 55.554239], - [37.70768, 55.55415], - [37.70759, 55.55415] + [37.707593, 55.55406], + [37.707593, 55.55415], + [37.707683, 55.55415], + [37.707683, 55.55406], + [37.707593, 55.55406] ] ] } @@ -38680,11 +38616,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70759, 55.554239], - [37.70759, 55.554329], - [37.70768, 55.554329], - [37.70768, 55.554239], - [37.70759, 55.554239] + [37.707593, 55.55415], + [37.707593, 55.55424], + [37.707683, 55.55424], + [37.707683, 55.55415], + [37.707593, 55.55415] ] ] } @@ -38696,11 +38632,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70759, 55.554329], - [37.70759, 55.554419], - [37.70768, 55.554419], - [37.70768, 55.554329], - [37.70759, 55.554329] + [37.707593, 55.55424], + [37.707593, 55.55433], + [37.707683, 55.55433], + [37.707683, 55.55424], + [37.707593, 55.55424] ] ] } @@ -38712,11 +38648,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70759, 55.554419], - [37.70759, 55.554509], - [37.70768, 55.554509], - [37.70768, 55.554419], - [37.70759, 55.554419] + [37.707593, 55.55433], + [37.707593, 55.55442], + [37.707683, 55.55442], + [37.707683, 55.55433], + [37.707593, 55.55433] ] ] } @@ -38728,11 +38664,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70759, 55.554509], - [37.70759, 55.554599], - [37.70768, 55.554599], - [37.70768, 55.554509], - [37.70759, 55.554509] + [37.707593, 55.55442], + [37.707593, 55.55451], + [37.707683, 55.55451], + [37.707683, 55.55442], + [37.707593, 55.55442] ] ] } @@ -38744,11 +38680,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70759, 55.554599], - [37.70759, 55.554689], - [37.70768, 55.554689], - [37.70768, 55.554599], - [37.70759, 55.554599] + [37.707593, 55.55451], + [37.707593, 55.5546], + [37.707683, 55.5546], + [37.707683, 55.55451], + [37.707593, 55.55451] ] ] } @@ -38760,11 +38696,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70759, 55.554689], - [37.70759, 55.554778], - [37.70768, 55.554778], - [37.70768, 55.554689], - [37.70759, 55.554689] + [37.707593, 55.5546], + [37.707593, 55.55469], + [37.707683, 55.55469], + [37.707683, 55.5546], + [37.707593, 55.5546] ] ] } @@ -38776,11 +38712,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70759, 55.554778], - [37.70759, 55.554868], - [37.70768, 55.554868], - [37.70768, 55.554778], - [37.70759, 55.554778] + [37.707593, 55.55469], + [37.707593, 55.55478], + [37.707683, 55.55478], + [37.707683, 55.55469], + [37.707593, 55.55469] ] ] } @@ -38792,11 +38728,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70759, 55.554868], - [37.70759, 55.554958], - [37.70768, 55.554958], - [37.70768, 55.554868], - [37.70759, 55.554868] + [37.707593, 55.55478], + [37.707593, 55.554869], + [37.707683, 55.554869], + [37.707683, 55.55478], + [37.707593, 55.55478] ] ] } @@ -38808,11 +38744,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70759, 55.554958], - [37.70759, 55.555048], - [37.70768, 55.555048], - [37.70768, 55.554958], - [37.70759, 55.554958] + [37.707593, 55.554869], + [37.707593, 55.554959], + [37.707683, 55.554959], + [37.707683, 55.554869], + [37.707593, 55.554869] ] ] } @@ -38824,11 +38760,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70759, 55.555048], - [37.70759, 55.555138], - [37.70768, 55.555138], - [37.70768, 55.555048], - [37.70759, 55.555048] + [37.707593, 55.554959], + [37.707593, 55.555049], + [37.707683, 55.555049], + [37.707683, 55.554959], + [37.707593, 55.554959] ] ] } @@ -38840,11 +38776,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70759, 55.555138], - [37.70759, 55.555228], - [37.70768, 55.555228], - [37.70768, 55.555138], - [37.70759, 55.555138] + [37.707593, 55.555049], + [37.707593, 55.555139], + [37.707683, 55.555139], + [37.707683, 55.555049], + [37.707593, 55.555049] ] ] } @@ -38856,11 +38792,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70759, 55.555228], - [37.70759, 55.555317], - [37.70768, 55.555317], - [37.70768, 55.555228], - [37.70759, 55.555228] + [37.707593, 55.555139], + [37.707593, 55.555229], + [37.707683, 55.555229], + [37.707683, 55.555139], + [37.707593, 55.555139] ] ] } @@ -38872,11 +38808,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70759, 55.555317], - [37.70759, 55.555407], - [37.70768, 55.555407], - [37.70768, 55.555317], - [37.70759, 55.555317] + [37.707593, 55.555229], + [37.707593, 55.555319], + [37.707683, 55.555319], + [37.707683, 55.555229], + [37.707593, 55.555229] ] ] } @@ -38888,11 +38824,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70759, 55.555407], - [37.70759, 55.555497], - [37.70768, 55.555497], - [37.70768, 55.555407], - [37.70759, 55.555407] + [37.707593, 55.555319], + [37.707593, 55.555409], + [37.707683, 55.555409], + [37.707683, 55.555319], + [37.707593, 55.555319] ] ] } @@ -38904,11 +38840,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70759, 55.555497], - [37.70759, 55.555587], - [37.70768, 55.555587], - [37.70768, 55.555497], - [37.70759, 55.555497] + [37.707593, 55.555409], + [37.707593, 55.555499], + [37.707683, 55.555499], + [37.707683, 55.555409], + [37.707593, 55.555409] ] ] } @@ -38920,11 +38856,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70759, 55.555587], - [37.70759, 55.555677], - [37.70768, 55.555677], - [37.70768, 55.555587], - [37.70759, 55.555587] + [37.707593, 55.555499], + [37.707593, 55.555589], + [37.707683, 55.555589], + [37.707683, 55.555499], + [37.707593, 55.555499] ] ] } @@ -38936,11 +38872,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70759, 55.555677], - [37.70759, 55.555767], - [37.70768, 55.555767], - [37.70768, 55.555677], - [37.70759, 55.555677] + [37.707593, 55.555589], + [37.707593, 55.555679], + [37.707683, 55.555679], + [37.707683, 55.555589], + [37.707593, 55.555589] ] ] } @@ -38952,11 +38888,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70759, 55.555767], - [37.70759, 55.555856], - [37.70768, 55.555856], - [37.70768, 55.555767], - [37.70759, 55.555767] + [37.707593, 55.555679], + [37.707593, 55.555769], + [37.707683, 55.555769], + [37.707683, 55.555679], + [37.707593, 55.555679] ] ] } @@ -38968,11 +38904,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70768, 55.552892], - [37.70768, 55.552982], - [37.707769, 55.552982], - [37.707769, 55.552892], - [37.70768, 55.552892] + [37.707593, 55.555769], + [37.707593, 55.555859], + [37.707683, 55.555859], + [37.707683, 55.555769], + [37.707593, 55.555769] ] ] } @@ -38984,11 +38920,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70768, 55.552982], - [37.70768, 55.553072], - [37.707769, 55.553072], - [37.707769, 55.552982], - [37.70768, 55.552982] + [37.707683, 55.552891], + [37.707683, 55.552981], + [37.707773, 55.552981], + [37.707773, 55.552891], + [37.707683, 55.552891] ] ] } @@ -39000,11 +38936,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70768, 55.553072], - [37.70768, 55.553162], - [37.707769, 55.553162], - [37.707769, 55.553072], - [37.70768, 55.553072] + [37.707683, 55.552981], + [37.707683, 55.553071], + [37.707773, 55.553071], + [37.707773, 55.552981], + [37.707683, 55.552981] ] ] } @@ -39016,11 +38952,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70768, 55.553162], - [37.70768, 55.553251], - [37.707769, 55.553251], - [37.707769, 55.553162], - [37.70768, 55.553162] + [37.707683, 55.553071], + [37.707683, 55.553161], + [37.707773, 55.553161], + [37.707773, 55.553071], + [37.707683, 55.553071] ] ] } @@ -39032,11 +38968,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70768, 55.553251], - [37.70768, 55.553341], - [37.707769, 55.553341], - [37.707769, 55.553251], - [37.70768, 55.553251] + [37.707683, 55.553161], + [37.707683, 55.553251], + [37.707773, 55.553251], + [37.707773, 55.553161], + [37.707683, 55.553161] ] ] } @@ -39048,11 +38984,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70768, 55.553341], - [37.70768, 55.553431], - [37.707769, 55.553431], - [37.707769, 55.553341], - [37.70768, 55.553341] + [37.707683, 55.553251], + [37.707683, 55.553341], + [37.707773, 55.553341], + [37.707773, 55.553251], + [37.707683, 55.553251] ] ] } @@ -39064,11 +39000,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70768, 55.553431], - [37.70768, 55.553521], - [37.707769, 55.553521], - [37.707769, 55.553431], - [37.70768, 55.553431] + [37.707683, 55.553341], + [37.707683, 55.553431], + [37.707773, 55.553431], + [37.707773, 55.553341], + [37.707683, 55.553341] ] ] } @@ -39080,11 +39016,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70768, 55.553521], - [37.70768, 55.553611], - [37.707769, 55.553611], - [37.707769, 55.553521], - [37.70768, 55.553521] + [37.707683, 55.553431], + [37.707683, 55.55352], + [37.707773, 55.55352], + [37.707773, 55.553431], + [37.707683, 55.553431] ] ] } @@ -39096,11 +39032,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70768, 55.553611], - [37.70768, 55.5537], - [37.707769, 55.5537], - [37.707769, 55.553611], - [37.70768, 55.553611] + [37.707683, 55.55352], + [37.707683, 55.55361], + [37.707773, 55.55361], + [37.707773, 55.55352], + [37.707683, 55.55352] ] ] } @@ -39112,11 +39048,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70768, 55.5537], - [37.70768, 55.55379], - [37.707769, 55.55379], - [37.707769, 55.5537], - [37.70768, 55.5537] + [37.707683, 55.55361], + [37.707683, 55.5537], + [37.707773, 55.5537], + [37.707773, 55.55361], + [37.707683, 55.55361] ] ] } @@ -39128,11 +39064,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70768, 55.55379], - [37.70768, 55.55388], - [37.707769, 55.55388], - [37.707769, 55.55379], - [37.70768, 55.55379] + [37.707683, 55.5537], + [37.707683, 55.55379], + [37.707773, 55.55379], + [37.707773, 55.5537], + [37.707683, 55.5537] ] ] } @@ -39144,11 +39080,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70768, 55.55388], - [37.70768, 55.55397], - [37.707769, 55.55397], - [37.707769, 55.55388], - [37.70768, 55.55388] + [37.707683, 55.55379], + [37.707683, 55.55388], + [37.707773, 55.55388], + [37.707773, 55.55379], + [37.707683, 55.55379] ] ] } @@ -39160,11 +39096,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70768, 55.55397], - [37.70768, 55.55406], - [37.707769, 55.55406], - [37.707769, 55.55397], - [37.70768, 55.55397] + [37.707683, 55.55388], + [37.707683, 55.55397], + [37.707773, 55.55397], + [37.707773, 55.55388], + [37.707683, 55.55388] ] ] } @@ -39176,11 +39112,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70768, 55.55406], - [37.70768, 55.55415], - [37.707769, 55.55415], - [37.707769, 55.55406], - [37.70768, 55.55406] + [37.707683, 55.55397], + [37.707683, 55.55406], + [37.707773, 55.55406], + [37.707773, 55.55397], + [37.707683, 55.55397] ] ] } @@ -39192,11 +39128,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70768, 55.55415], - [37.70768, 55.554239], - [37.707769, 55.554239], - [37.707769, 55.55415], - [37.70768, 55.55415] + [37.707683, 55.55406], + [37.707683, 55.55415], + [37.707773, 55.55415], + [37.707773, 55.55406], + [37.707683, 55.55406] ] ] } @@ -39208,11 +39144,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70768, 55.554239], - [37.70768, 55.554329], - [37.707769, 55.554329], - [37.707769, 55.554239], - [37.70768, 55.554239] + [37.707683, 55.55415], + [37.707683, 55.55424], + [37.707773, 55.55424], + [37.707773, 55.55415], + [37.707683, 55.55415] ] ] } @@ -39224,11 +39160,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70768, 55.554329], - [37.70768, 55.554419], - [37.707769, 55.554419], - [37.707769, 55.554329], - [37.70768, 55.554329] + [37.707683, 55.55424], + [37.707683, 55.55433], + [37.707773, 55.55433], + [37.707773, 55.55424], + [37.707683, 55.55424] ] ] } @@ -39240,11 +39176,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70768, 55.554419], - [37.70768, 55.554509], - [37.707769, 55.554509], - [37.707769, 55.554419], - [37.70768, 55.554419] + [37.707683, 55.55433], + [37.707683, 55.55442], + [37.707773, 55.55442], + [37.707773, 55.55433], + [37.707683, 55.55433] ] ] } @@ -39256,11 +39192,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70768, 55.554509], - [37.70768, 55.554599], - [37.707769, 55.554599], - [37.707769, 55.554509], - [37.70768, 55.554509] + [37.707683, 55.55442], + [37.707683, 55.55451], + [37.707773, 55.55451], + [37.707773, 55.55442], + [37.707683, 55.55442] ] ] } @@ -39272,11 +39208,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70768, 55.554599], - [37.70768, 55.554689], - [37.707769, 55.554689], - [37.707769, 55.554599], - [37.70768, 55.554599] + [37.707683, 55.55451], + [37.707683, 55.5546], + [37.707773, 55.5546], + [37.707773, 55.55451], + [37.707683, 55.55451] ] ] } @@ -39288,11 +39224,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70768, 55.554689], - [37.70768, 55.554778], - [37.707769, 55.554778], - [37.707769, 55.554689], - [37.70768, 55.554689] + [37.707683, 55.5546], + [37.707683, 55.55469], + [37.707773, 55.55469], + [37.707773, 55.5546], + [37.707683, 55.5546] ] ] } @@ -39304,11 +39240,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70768, 55.554778], - [37.70768, 55.554868], - [37.707769, 55.554868], - [37.707769, 55.554778], - [37.70768, 55.554778] + [37.707683, 55.55469], + [37.707683, 55.55478], + [37.707773, 55.55478], + [37.707773, 55.55469], + [37.707683, 55.55469] ] ] } @@ -39320,11 +39256,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70768, 55.554868], - [37.70768, 55.554958], - [37.707769, 55.554958], - [37.707769, 55.554868], - [37.70768, 55.554868] + [37.707683, 55.55478], + [37.707683, 55.554869], + [37.707773, 55.554869], + [37.707773, 55.55478], + [37.707683, 55.55478] ] ] } @@ -39336,11 +39272,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70768, 55.554958], - [37.70768, 55.555048], - [37.707769, 55.555048], - [37.707769, 55.554958], - [37.70768, 55.554958] + [37.707683, 55.554869], + [37.707683, 55.554959], + [37.707773, 55.554959], + [37.707773, 55.554869], + [37.707683, 55.554869] ] ] } @@ -39352,11 +39288,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70768, 55.555048], - [37.70768, 55.555138], - [37.707769, 55.555138], - [37.707769, 55.555048], - [37.70768, 55.555048] + [37.707683, 55.554959], + [37.707683, 55.555049], + [37.707773, 55.555049], + [37.707773, 55.554959], + [37.707683, 55.554959] ] ] } @@ -39368,11 +39304,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70768, 55.555138], - [37.70768, 55.555228], - [37.707769, 55.555228], - [37.707769, 55.555138], - [37.70768, 55.555138] + [37.707683, 55.555049], + [37.707683, 55.555139], + [37.707773, 55.555139], + [37.707773, 55.555049], + [37.707683, 55.555049] ] ] } @@ -39384,11 +39320,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70768, 55.555228], - [37.70768, 55.555317], - [37.707769, 55.555317], - [37.707769, 55.555228], - [37.70768, 55.555228] + [37.707683, 55.555139], + [37.707683, 55.555229], + [37.707773, 55.555229], + [37.707773, 55.555139], + [37.707683, 55.555139] ] ] } @@ -39400,11 +39336,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70768, 55.555317], - [37.70768, 55.555407], - [37.707769, 55.555407], - [37.707769, 55.555317], - [37.70768, 55.555317] + [37.707683, 55.555229], + [37.707683, 55.555319], + [37.707773, 55.555319], + [37.707773, 55.555229], + [37.707683, 55.555229] ] ] } @@ -39416,11 +39352,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70768, 55.555407], - [37.70768, 55.555497], - [37.707769, 55.555497], - [37.707769, 55.555407], - [37.70768, 55.555407] + [37.707683, 55.555319], + [37.707683, 55.555409], + [37.707773, 55.555409], + [37.707773, 55.555319], + [37.707683, 55.555319] ] ] } @@ -39432,11 +39368,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70768, 55.555497], - [37.70768, 55.555587], - [37.707769, 55.555587], - [37.707769, 55.555497], - [37.70768, 55.555497] + [37.707683, 55.555409], + [37.707683, 55.555499], + [37.707773, 55.555499], + [37.707773, 55.555409], + [37.707683, 55.555409] ] ] } @@ -39448,11 +39384,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70768, 55.555587], - [37.70768, 55.555677], - [37.707769, 55.555677], - [37.707769, 55.555587], - [37.70768, 55.555587] + [37.707683, 55.555499], + [37.707683, 55.555589], + [37.707773, 55.555589], + [37.707773, 55.555499], + [37.707683, 55.555499] ] ] } @@ -39464,11 +39400,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70768, 55.555677], - [37.70768, 55.555767], - [37.707769, 55.555767], - [37.707769, 55.555677], - [37.70768, 55.555677] + [37.707683, 55.555589], + [37.707683, 55.555679], + [37.707773, 55.555679], + [37.707773, 55.555589], + [37.707683, 55.555589] ] ] } @@ -39480,11 +39416,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70768, 55.555767], - [37.70768, 55.555856], - [37.707769, 55.555856], - [37.707769, 55.555767], - [37.70768, 55.555767] + [37.707683, 55.555679], + [37.707683, 55.555769], + [37.707773, 55.555769], + [37.707773, 55.555679], + [37.707683, 55.555679] ] ] } @@ -39496,11 +39432,11 @@ "type": "Polygon", "coordinates": [ [ - [37.70768, 55.555856], - [37.70768, 55.555946], - [37.707769, 55.555946], - [37.707769, 55.555856], - [37.70768, 55.555856] + [37.707683, 55.555769], + [37.707683, 55.555859], + [37.707773, 55.555859], + [37.707773, 55.555769], + [37.707683, 55.555769] ] ] } @@ -39512,11 +39448,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707769, 55.552982], - [37.707769, 55.553072], - [37.707859, 55.553072], - [37.707859, 55.552982], - [37.707769, 55.552982] + [37.707683, 55.555859], + [37.707683, 55.555949], + [37.707773, 55.555949], + [37.707773, 55.555859], + [37.707683, 55.555859] ] ] } @@ -39528,11 +39464,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707769, 55.553072], - [37.707769, 55.553162], - [37.707859, 55.553162], - [37.707859, 55.553072], - [37.707769, 55.553072] + [37.707773, 55.552981], + [37.707773, 55.553071], + [37.707863, 55.553071], + [37.707863, 55.552981], + [37.707773, 55.552981] ] ] } @@ -39544,11 +39480,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707769, 55.553162], - [37.707769, 55.553251], - [37.707859, 55.553251], - [37.707859, 55.553162], - [37.707769, 55.553162] + [37.707773, 55.553071], + [37.707773, 55.553161], + [37.707863, 55.553161], + [37.707863, 55.553071], + [37.707773, 55.553071] ] ] } @@ -39560,11 +39496,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707769, 55.553251], - [37.707769, 55.553341], - [37.707859, 55.553341], - [37.707859, 55.553251], - [37.707769, 55.553251] + [37.707773, 55.553161], + [37.707773, 55.553251], + [37.707863, 55.553251], + [37.707863, 55.553161], + [37.707773, 55.553161] ] ] } @@ -39576,11 +39512,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707769, 55.553341], - [37.707769, 55.553431], - [37.707859, 55.553431], - [37.707859, 55.553341], - [37.707769, 55.553341] + [37.707773, 55.553251], + [37.707773, 55.553341], + [37.707863, 55.553341], + [37.707863, 55.553251], + [37.707773, 55.553251] ] ] } @@ -39592,11 +39528,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707769, 55.553431], - [37.707769, 55.553521], - [37.707859, 55.553521], - [37.707859, 55.553431], - [37.707769, 55.553431] + [37.707773, 55.553341], + [37.707773, 55.553431], + [37.707863, 55.553431], + [37.707863, 55.553341], + [37.707773, 55.553341] ] ] } @@ -39608,11 +39544,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707769, 55.553521], - [37.707769, 55.553611], - [37.707859, 55.553611], - [37.707859, 55.553521], - [37.707769, 55.553521] + [37.707773, 55.553431], + [37.707773, 55.55352], + [37.707863, 55.55352], + [37.707863, 55.553431], + [37.707773, 55.553431] ] ] } @@ -39624,11 +39560,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707769, 55.553611], - [37.707769, 55.5537], - [37.707859, 55.5537], - [37.707859, 55.553611], - [37.707769, 55.553611] + [37.707773, 55.55352], + [37.707773, 55.55361], + [37.707863, 55.55361], + [37.707863, 55.55352], + [37.707773, 55.55352] ] ] } @@ -39640,11 +39576,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707769, 55.5537], - [37.707769, 55.55379], - [37.707859, 55.55379], - [37.707859, 55.5537], - [37.707769, 55.5537] + [37.707773, 55.55361], + [37.707773, 55.5537], + [37.707863, 55.5537], + [37.707863, 55.55361], + [37.707773, 55.55361] ] ] } @@ -39656,11 +39592,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707769, 55.55379], - [37.707769, 55.55388], - [37.707859, 55.55388], - [37.707859, 55.55379], - [37.707769, 55.55379] + [37.707773, 55.5537], + [37.707773, 55.55379], + [37.707863, 55.55379], + [37.707863, 55.5537], + [37.707773, 55.5537] ] ] } @@ -39672,11 +39608,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707769, 55.55388], - [37.707769, 55.55397], - [37.707859, 55.55397], - [37.707859, 55.55388], - [37.707769, 55.55388] + [37.707773, 55.55379], + [37.707773, 55.55388], + [37.707863, 55.55388], + [37.707863, 55.55379], + [37.707773, 55.55379] ] ] } @@ -39688,11 +39624,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707769, 55.55397], - [37.707769, 55.55406], - [37.707859, 55.55406], - [37.707859, 55.55397], - [37.707769, 55.55397] + [37.707773, 55.55388], + [37.707773, 55.55397], + [37.707863, 55.55397], + [37.707863, 55.55388], + [37.707773, 55.55388] ] ] } @@ -39704,11 +39640,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707769, 55.55406], - [37.707769, 55.55415], - [37.707859, 55.55415], - [37.707859, 55.55406], - [37.707769, 55.55406] + [37.707773, 55.55397], + [37.707773, 55.55406], + [37.707863, 55.55406], + [37.707863, 55.55397], + [37.707773, 55.55397] ] ] } @@ -39720,11 +39656,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707769, 55.55415], - [37.707769, 55.554239], - [37.707859, 55.554239], - [37.707859, 55.55415], - [37.707769, 55.55415] + [37.707773, 55.55406], + [37.707773, 55.55415], + [37.707863, 55.55415], + [37.707863, 55.55406], + [37.707773, 55.55406] ] ] } @@ -39736,11 +39672,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707769, 55.554239], - [37.707769, 55.554329], - [37.707859, 55.554329], - [37.707859, 55.554239], - [37.707769, 55.554239] + [37.707773, 55.55415], + [37.707773, 55.55424], + [37.707863, 55.55424], + [37.707863, 55.55415], + [37.707773, 55.55415] ] ] } @@ -39752,11 +39688,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707769, 55.554329], - [37.707769, 55.554419], - [37.707859, 55.554419], - [37.707859, 55.554329], - [37.707769, 55.554329] + [37.707773, 55.55424], + [37.707773, 55.55433], + [37.707863, 55.55433], + [37.707863, 55.55424], + [37.707773, 55.55424] ] ] } @@ -39768,11 +39704,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707769, 55.554419], - [37.707769, 55.554509], - [37.707859, 55.554509], - [37.707859, 55.554419], - [37.707769, 55.554419] + [37.707773, 55.55433], + [37.707773, 55.55442], + [37.707863, 55.55442], + [37.707863, 55.55433], + [37.707773, 55.55433] ] ] } @@ -39784,11 +39720,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707769, 55.554509], - [37.707769, 55.554599], - [37.707859, 55.554599], - [37.707859, 55.554509], - [37.707769, 55.554509] + [37.707773, 55.55442], + [37.707773, 55.55451], + [37.707863, 55.55451], + [37.707863, 55.55442], + [37.707773, 55.55442] ] ] } @@ -39800,11 +39736,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707769, 55.554599], - [37.707769, 55.554689], - [37.707859, 55.554689], - [37.707859, 55.554599], - [37.707769, 55.554599] + [37.707773, 55.55451], + [37.707773, 55.5546], + [37.707863, 55.5546], + [37.707863, 55.55451], + [37.707773, 55.55451] ] ] } @@ -39816,11 +39752,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707769, 55.554689], - [37.707769, 55.554778], - [37.707859, 55.554778], - [37.707859, 55.554689], - [37.707769, 55.554689] + [37.707773, 55.5546], + [37.707773, 55.55469], + [37.707863, 55.55469], + [37.707863, 55.5546], + [37.707773, 55.5546] ] ] } @@ -39832,11 +39768,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707769, 55.554778], - [37.707769, 55.554868], - [37.707859, 55.554868], - [37.707859, 55.554778], - [37.707769, 55.554778] + [37.707773, 55.55469], + [37.707773, 55.55478], + [37.707863, 55.55478], + [37.707863, 55.55469], + [37.707773, 55.55469] ] ] } @@ -39848,11 +39784,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707769, 55.554868], - [37.707769, 55.554958], - [37.707859, 55.554958], - [37.707859, 55.554868], - [37.707769, 55.554868] + [37.707773, 55.55478], + [37.707773, 55.554869], + [37.707863, 55.554869], + [37.707863, 55.55478], + [37.707773, 55.55478] ] ] } @@ -39864,11 +39800,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707769, 55.554958], - [37.707769, 55.555048], - [37.707859, 55.555048], - [37.707859, 55.554958], - [37.707769, 55.554958] + [37.707773, 55.554869], + [37.707773, 55.554959], + [37.707863, 55.554959], + [37.707863, 55.554869], + [37.707773, 55.554869] ] ] } @@ -39880,11 +39816,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707769, 55.555048], - [37.707769, 55.555138], - [37.707859, 55.555138], - [37.707859, 55.555048], - [37.707769, 55.555048] + [37.707773, 55.554959], + [37.707773, 55.555049], + [37.707863, 55.555049], + [37.707863, 55.554959], + [37.707773, 55.554959] ] ] } @@ -39896,11 +39832,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707769, 55.555138], - [37.707769, 55.555228], - [37.707859, 55.555228], - [37.707859, 55.555138], - [37.707769, 55.555138] + [37.707773, 55.555049], + [37.707773, 55.555139], + [37.707863, 55.555139], + [37.707863, 55.555049], + [37.707773, 55.555049] ] ] } @@ -39912,11 +39848,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707769, 55.555228], - [37.707769, 55.555317], - [37.707859, 55.555317], - [37.707859, 55.555228], - [37.707769, 55.555228] + [37.707773, 55.555139], + [37.707773, 55.555229], + [37.707863, 55.555229], + [37.707863, 55.555139], + [37.707773, 55.555139] ] ] } @@ -39928,11 +39864,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707769, 55.555317], - [37.707769, 55.555407], - [37.707859, 55.555407], - [37.707859, 55.555317], - [37.707769, 55.555317] + [37.707773, 55.555229], + [37.707773, 55.555319], + [37.707863, 55.555319], + [37.707863, 55.555229], + [37.707773, 55.555229] ] ] } @@ -39944,11 +39880,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707769, 55.555407], - [37.707769, 55.555497], - [37.707859, 55.555497], - [37.707859, 55.555407], - [37.707769, 55.555407] + [37.707773, 55.555319], + [37.707773, 55.555409], + [37.707863, 55.555409], + [37.707863, 55.555319], + [37.707773, 55.555319] ] ] } @@ -39960,11 +39896,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707769, 55.555497], - [37.707769, 55.555587], - [37.707859, 55.555587], - [37.707859, 55.555497], - [37.707769, 55.555497] + [37.707773, 55.555409], + [37.707773, 55.555499], + [37.707863, 55.555499], + [37.707863, 55.555409], + [37.707773, 55.555409] ] ] } @@ -39976,11 +39912,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707769, 55.555587], - [37.707769, 55.555677], - [37.707859, 55.555677], - [37.707859, 55.555587], - [37.707769, 55.555587] + [37.707773, 55.555499], + [37.707773, 55.555589], + [37.707863, 55.555589], + [37.707863, 55.555499], + [37.707773, 55.555499] ] ] } @@ -39992,11 +39928,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707769, 55.555677], - [37.707769, 55.555767], - [37.707859, 55.555767], - [37.707859, 55.555677], - [37.707769, 55.555677] + [37.707773, 55.555589], + [37.707773, 55.555679], + [37.707863, 55.555679], + [37.707863, 55.555589], + [37.707773, 55.555589] ] ] } @@ -40008,11 +39944,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707769, 55.555767], - [37.707769, 55.555856], - [37.707859, 55.555856], - [37.707859, 55.555767], - [37.707769, 55.555767] + [37.707773, 55.555679], + [37.707773, 55.555769], + [37.707863, 55.555769], + [37.707863, 55.555679], + [37.707773, 55.555679] ] ] } @@ -40024,11 +39960,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707769, 55.555856], - [37.707769, 55.555946], - [37.707859, 55.555946], - [37.707859, 55.555856], - [37.707769, 55.555856] + [37.707773, 55.555769], + [37.707773, 55.555859], + [37.707863, 55.555859], + [37.707863, 55.555769], + [37.707773, 55.555769] ] ] } @@ -40040,11 +39976,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707859, 55.553162], - [37.707859, 55.553251], - [37.707949, 55.553251], - [37.707949, 55.553162], - [37.707859, 55.553162] + [37.707773, 55.555859], + [37.707773, 55.555949], + [37.707863, 55.555949], + [37.707863, 55.555859], + [37.707773, 55.555859] ] ] } @@ -40056,11 +39992,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707859, 55.553251], - [37.707859, 55.553341], - [37.707949, 55.553341], - [37.707949, 55.553251], - [37.707859, 55.553251] + [37.707863, 55.553161], + [37.707863, 55.553251], + [37.707953, 55.553251], + [37.707953, 55.553161], + [37.707863, 55.553161] ] ] } @@ -40072,11 +40008,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707859, 55.553341], - [37.707859, 55.553431], - [37.707949, 55.553431], - [37.707949, 55.553341], - [37.707859, 55.553341] + [37.707863, 55.553251], + [37.707863, 55.553341], + [37.707953, 55.553341], + [37.707953, 55.553251], + [37.707863, 55.553251] ] ] } @@ -40088,11 +40024,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707859, 55.553431], - [37.707859, 55.553521], - [37.707949, 55.553521], - [37.707949, 55.553431], - [37.707859, 55.553431] + [37.707863, 55.553341], + [37.707863, 55.553431], + [37.707953, 55.553431], + [37.707953, 55.553341], + [37.707863, 55.553341] ] ] } @@ -40104,11 +40040,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707859, 55.553521], - [37.707859, 55.553611], - [37.707949, 55.553611], - [37.707949, 55.553521], - [37.707859, 55.553521] + [37.707863, 55.553431], + [37.707863, 55.55352], + [37.707953, 55.55352], + [37.707953, 55.553431], + [37.707863, 55.553431] ] ] } @@ -40120,11 +40056,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707859, 55.553611], - [37.707859, 55.5537], - [37.707949, 55.5537], - [37.707949, 55.553611], - [37.707859, 55.553611] + [37.707863, 55.55352], + [37.707863, 55.55361], + [37.707953, 55.55361], + [37.707953, 55.55352], + [37.707863, 55.55352] ] ] } @@ -40136,11 +40072,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707859, 55.5537], - [37.707859, 55.55379], - [37.707949, 55.55379], - [37.707949, 55.5537], - [37.707859, 55.5537] + [37.707863, 55.55361], + [37.707863, 55.5537], + [37.707953, 55.5537], + [37.707953, 55.55361], + [37.707863, 55.55361] ] ] } @@ -40152,11 +40088,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707859, 55.55379], - [37.707859, 55.55388], - [37.707949, 55.55388], - [37.707949, 55.55379], - [37.707859, 55.55379] + [37.707863, 55.5537], + [37.707863, 55.55379], + [37.707953, 55.55379], + [37.707953, 55.5537], + [37.707863, 55.5537] ] ] } @@ -40168,11 +40104,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707859, 55.55388], - [37.707859, 55.55397], - [37.707949, 55.55397], - [37.707949, 55.55388], - [37.707859, 55.55388] + [37.707863, 55.55379], + [37.707863, 55.55388], + [37.707953, 55.55388], + [37.707953, 55.55379], + [37.707863, 55.55379] ] ] } @@ -40184,11 +40120,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707859, 55.55397], - [37.707859, 55.55406], - [37.707949, 55.55406], - [37.707949, 55.55397], - [37.707859, 55.55397] + [37.707863, 55.55388], + [37.707863, 55.55397], + [37.707953, 55.55397], + [37.707953, 55.55388], + [37.707863, 55.55388] ] ] } @@ -40200,11 +40136,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707859, 55.55406], - [37.707859, 55.55415], - [37.707949, 55.55415], - [37.707949, 55.55406], - [37.707859, 55.55406] + [37.707863, 55.55397], + [37.707863, 55.55406], + [37.707953, 55.55406], + [37.707953, 55.55397], + [37.707863, 55.55397] ] ] } @@ -40216,11 +40152,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707859, 55.55415], - [37.707859, 55.554239], - [37.707949, 55.554239], - [37.707949, 55.55415], - [37.707859, 55.55415] + [37.707863, 55.55406], + [37.707863, 55.55415], + [37.707953, 55.55415], + [37.707953, 55.55406], + [37.707863, 55.55406] ] ] } @@ -40232,11 +40168,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707859, 55.554239], - [37.707859, 55.554329], - [37.707949, 55.554329], - [37.707949, 55.554239], - [37.707859, 55.554239] + [37.707863, 55.55415], + [37.707863, 55.55424], + [37.707953, 55.55424], + [37.707953, 55.55415], + [37.707863, 55.55415] ] ] } @@ -40248,11 +40184,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707859, 55.554329], - [37.707859, 55.554419], - [37.707949, 55.554419], - [37.707949, 55.554329], - [37.707859, 55.554329] + [37.707863, 55.55424], + [37.707863, 55.55433], + [37.707953, 55.55433], + [37.707953, 55.55424], + [37.707863, 55.55424] ] ] } @@ -40264,11 +40200,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707859, 55.554419], - [37.707859, 55.554509], - [37.707949, 55.554509], - [37.707949, 55.554419], - [37.707859, 55.554419] + [37.707863, 55.55433], + [37.707863, 55.55442], + [37.707953, 55.55442], + [37.707953, 55.55433], + [37.707863, 55.55433] ] ] } @@ -40280,11 +40216,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707859, 55.554509], - [37.707859, 55.554599], - [37.707949, 55.554599], - [37.707949, 55.554509], - [37.707859, 55.554509] + [37.707863, 55.55442], + [37.707863, 55.55451], + [37.707953, 55.55451], + [37.707953, 55.55442], + [37.707863, 55.55442] ] ] } @@ -40296,11 +40232,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707859, 55.554599], - [37.707859, 55.554689], - [37.707949, 55.554689], - [37.707949, 55.554599], - [37.707859, 55.554599] + [37.707863, 55.55451], + [37.707863, 55.5546], + [37.707953, 55.5546], + [37.707953, 55.55451], + [37.707863, 55.55451] ] ] } @@ -40312,11 +40248,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707859, 55.554689], - [37.707859, 55.554778], - [37.707949, 55.554778], - [37.707949, 55.554689], - [37.707859, 55.554689] + [37.707863, 55.5546], + [37.707863, 55.55469], + [37.707953, 55.55469], + [37.707953, 55.5546], + [37.707863, 55.5546] ] ] } @@ -40328,11 +40264,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707859, 55.554778], - [37.707859, 55.554868], - [37.707949, 55.554868], - [37.707949, 55.554778], - [37.707859, 55.554778] + [37.707863, 55.55469], + [37.707863, 55.55478], + [37.707953, 55.55478], + [37.707953, 55.55469], + [37.707863, 55.55469] ] ] } @@ -40344,11 +40280,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707859, 55.554868], - [37.707859, 55.554958], - [37.707949, 55.554958], - [37.707949, 55.554868], - [37.707859, 55.554868] + [37.707863, 55.55478], + [37.707863, 55.554869], + [37.707953, 55.554869], + [37.707953, 55.55478], + [37.707863, 55.55478] ] ] } @@ -40360,11 +40296,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707859, 55.554958], - [37.707859, 55.555048], - [37.707949, 55.555048], - [37.707949, 55.554958], - [37.707859, 55.554958] + [37.707863, 55.554869], + [37.707863, 55.554959], + [37.707953, 55.554959], + [37.707953, 55.554869], + [37.707863, 55.554869] ] ] } @@ -40376,11 +40312,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707859, 55.555048], - [37.707859, 55.555138], - [37.707949, 55.555138], - [37.707949, 55.555048], - [37.707859, 55.555048] + [37.707863, 55.554959], + [37.707863, 55.555049], + [37.707953, 55.555049], + [37.707953, 55.554959], + [37.707863, 55.554959] ] ] } @@ -40392,11 +40328,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707859, 55.555138], - [37.707859, 55.555228], - [37.707949, 55.555228], - [37.707949, 55.555138], - [37.707859, 55.555138] + [37.707863, 55.555049], + [37.707863, 55.555139], + [37.707953, 55.555139], + [37.707953, 55.555049], + [37.707863, 55.555049] ] ] } @@ -40408,11 +40344,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707859, 55.555228], - [37.707859, 55.555317], - [37.707949, 55.555317], - [37.707949, 55.555228], - [37.707859, 55.555228] + [37.707863, 55.555139], + [37.707863, 55.555229], + [37.707953, 55.555229], + [37.707953, 55.555139], + [37.707863, 55.555139] ] ] } @@ -40424,11 +40360,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707859, 55.555317], - [37.707859, 55.555407], - [37.707949, 55.555407], - [37.707949, 55.555317], - [37.707859, 55.555317] + [37.707863, 55.555229], + [37.707863, 55.555319], + [37.707953, 55.555319], + [37.707953, 55.555229], + [37.707863, 55.555229] ] ] } @@ -40440,11 +40376,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707859, 55.555407], - [37.707859, 55.555497], - [37.707949, 55.555497], - [37.707949, 55.555407], - [37.707859, 55.555407] + [37.707863, 55.555319], + [37.707863, 55.555409], + [37.707953, 55.555409], + [37.707953, 55.555319], + [37.707863, 55.555319] ] ] } @@ -40456,11 +40392,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707859, 55.555497], - [37.707859, 55.555587], - [37.707949, 55.555587], - [37.707949, 55.555497], - [37.707859, 55.555497] + [37.707863, 55.555409], + [37.707863, 55.555499], + [37.707953, 55.555499], + [37.707953, 55.555409], + [37.707863, 55.555409] ] ] } @@ -40472,11 +40408,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707859, 55.555587], - [37.707859, 55.555677], - [37.707949, 55.555677], - [37.707949, 55.555587], - [37.707859, 55.555587] + [37.707863, 55.555499], + [37.707863, 55.555589], + [37.707953, 55.555589], + [37.707953, 55.555499], + [37.707863, 55.555499] ] ] } @@ -40488,11 +40424,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707859, 55.555677], - [37.707859, 55.555767], - [37.707949, 55.555767], - [37.707949, 55.555677], - [37.707859, 55.555677] + [37.707863, 55.555589], + [37.707863, 55.555679], + [37.707953, 55.555679], + [37.707953, 55.555589], + [37.707863, 55.555589] ] ] } @@ -40504,11 +40440,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707859, 55.555767], - [37.707859, 55.555856], - [37.707949, 55.555856], - [37.707949, 55.555767], - [37.707859, 55.555767] + [37.707863, 55.555679], + [37.707863, 55.555769], + [37.707953, 55.555769], + [37.707953, 55.555679], + [37.707863, 55.555679] ] ] } @@ -40520,11 +40456,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707859, 55.555856], - [37.707859, 55.555946], - [37.707949, 55.555946], - [37.707949, 55.555856], - [37.707859, 55.555856] + [37.707863, 55.555769], + [37.707863, 55.555859], + [37.707953, 55.555859], + [37.707953, 55.555769], + [37.707863, 55.555769] ] ] } @@ -40536,11 +40472,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707949, 55.553251], - [37.707949, 55.553341], - [37.708039, 55.553341], - [37.708039, 55.553251], - [37.707949, 55.553251] + [37.707863, 55.555859], + [37.707863, 55.555949], + [37.707953, 55.555949], + [37.707953, 55.555859], + [37.707863, 55.555859] ] ] } @@ -40552,11 +40488,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707949, 55.553341], - [37.707949, 55.553431], - [37.708039, 55.553431], - [37.708039, 55.553341], - [37.707949, 55.553341] + [37.707953, 55.553251], + [37.707953, 55.553341], + [37.708043, 55.553341], + [37.708043, 55.553251], + [37.707953, 55.553251] ] ] } @@ -40568,11 +40504,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707949, 55.553431], - [37.707949, 55.553521], - [37.708039, 55.553521], - [37.708039, 55.553431], - [37.707949, 55.553431] + [37.707953, 55.553341], + [37.707953, 55.553431], + [37.708043, 55.553431], + [37.708043, 55.553341], + [37.707953, 55.553341] ] ] } @@ -40584,11 +40520,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707949, 55.553521], - [37.707949, 55.553611], - [37.708039, 55.553611], - [37.708039, 55.553521], - [37.707949, 55.553521] + [37.707953, 55.553431], + [37.707953, 55.55352], + [37.708043, 55.55352], + [37.708043, 55.553431], + [37.707953, 55.553431] ] ] } @@ -40600,11 +40536,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707949, 55.553611], - [37.707949, 55.5537], - [37.708039, 55.5537], - [37.708039, 55.553611], - [37.707949, 55.553611] + [37.707953, 55.55352], + [37.707953, 55.55361], + [37.708043, 55.55361], + [37.708043, 55.55352], + [37.707953, 55.55352] ] ] } @@ -40616,11 +40552,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707949, 55.5537], - [37.707949, 55.55379], - [37.708039, 55.55379], - [37.708039, 55.5537], - [37.707949, 55.5537] + [37.707953, 55.55361], + [37.707953, 55.5537], + [37.708043, 55.5537], + [37.708043, 55.55361], + [37.707953, 55.55361] ] ] } @@ -40632,11 +40568,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707949, 55.55379], - [37.707949, 55.55388], - [37.708039, 55.55388], - [37.708039, 55.55379], - [37.707949, 55.55379] + [37.707953, 55.5537], + [37.707953, 55.55379], + [37.708043, 55.55379], + [37.708043, 55.5537], + [37.707953, 55.5537] ] ] } @@ -40648,11 +40584,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707949, 55.55388], - [37.707949, 55.55397], - [37.708039, 55.55397], - [37.708039, 55.55388], - [37.707949, 55.55388] + [37.707953, 55.55379], + [37.707953, 55.55388], + [37.708043, 55.55388], + [37.708043, 55.55379], + [37.707953, 55.55379] ] ] } @@ -40664,11 +40600,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707949, 55.55397], - [37.707949, 55.55406], - [37.708039, 55.55406], - [37.708039, 55.55397], - [37.707949, 55.55397] + [37.707953, 55.55388], + [37.707953, 55.55397], + [37.708043, 55.55397], + [37.708043, 55.55388], + [37.707953, 55.55388] ] ] } @@ -40680,11 +40616,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707949, 55.55406], - [37.707949, 55.55415], - [37.708039, 55.55415], - [37.708039, 55.55406], - [37.707949, 55.55406] + [37.707953, 55.55397], + [37.707953, 55.55406], + [37.708043, 55.55406], + [37.708043, 55.55397], + [37.707953, 55.55397] ] ] } @@ -40696,11 +40632,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707949, 55.55415], - [37.707949, 55.554239], - [37.708039, 55.554239], - [37.708039, 55.55415], - [37.707949, 55.55415] + [37.707953, 55.55406], + [37.707953, 55.55415], + [37.708043, 55.55415], + [37.708043, 55.55406], + [37.707953, 55.55406] ] ] } @@ -40712,11 +40648,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707949, 55.554239], - [37.707949, 55.554329], - [37.708039, 55.554329], - [37.708039, 55.554239], - [37.707949, 55.554239] + [37.707953, 55.55415], + [37.707953, 55.55424], + [37.708043, 55.55424], + [37.708043, 55.55415], + [37.707953, 55.55415] ] ] } @@ -40728,11 +40664,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707949, 55.554329], - [37.707949, 55.554419], - [37.708039, 55.554419], - [37.708039, 55.554329], - [37.707949, 55.554329] + [37.707953, 55.55424], + [37.707953, 55.55433], + [37.708043, 55.55433], + [37.708043, 55.55424], + [37.707953, 55.55424] ] ] } @@ -40744,11 +40680,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707949, 55.554419], - [37.707949, 55.554509], - [37.708039, 55.554509], - [37.708039, 55.554419], - [37.707949, 55.554419] + [37.707953, 55.55433], + [37.707953, 55.55442], + [37.708043, 55.55442], + [37.708043, 55.55433], + [37.707953, 55.55433] ] ] } @@ -40760,11 +40696,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707949, 55.554509], - [37.707949, 55.554599], - [37.708039, 55.554599], - [37.708039, 55.554509], - [37.707949, 55.554509] + [37.707953, 55.55442], + [37.707953, 55.55451], + [37.708043, 55.55451], + [37.708043, 55.55442], + [37.707953, 55.55442] ] ] } @@ -40776,11 +40712,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707949, 55.554599], - [37.707949, 55.554689], - [37.708039, 55.554689], - [37.708039, 55.554599], - [37.707949, 55.554599] + [37.707953, 55.55451], + [37.707953, 55.5546], + [37.708043, 55.5546], + [37.708043, 55.55451], + [37.707953, 55.55451] ] ] } @@ -40792,11 +40728,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707949, 55.554689], - [37.707949, 55.554778], - [37.708039, 55.554778], - [37.708039, 55.554689], - [37.707949, 55.554689] + [37.707953, 55.5546], + [37.707953, 55.55469], + [37.708043, 55.55469], + [37.708043, 55.5546], + [37.707953, 55.5546] ] ] } @@ -40808,11 +40744,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707949, 55.554778], - [37.707949, 55.554868], - [37.708039, 55.554868], - [37.708039, 55.554778], - [37.707949, 55.554778] + [37.707953, 55.55469], + [37.707953, 55.55478], + [37.708043, 55.55478], + [37.708043, 55.55469], + [37.707953, 55.55469] ] ] } @@ -40824,11 +40760,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707949, 55.554868], - [37.707949, 55.554958], - [37.708039, 55.554958], - [37.708039, 55.554868], - [37.707949, 55.554868] + [37.707953, 55.55478], + [37.707953, 55.554869], + [37.708043, 55.554869], + [37.708043, 55.55478], + [37.707953, 55.55478] ] ] } @@ -40840,11 +40776,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707949, 55.554958], - [37.707949, 55.555048], - [37.708039, 55.555048], - [37.708039, 55.554958], - [37.707949, 55.554958] + [37.707953, 55.554869], + [37.707953, 55.554959], + [37.708043, 55.554959], + [37.708043, 55.554869], + [37.707953, 55.554869] ] ] } @@ -40856,11 +40792,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707949, 55.555048], - [37.707949, 55.555138], - [37.708039, 55.555138], - [37.708039, 55.555048], - [37.707949, 55.555048] + [37.707953, 55.554959], + [37.707953, 55.555049], + [37.708043, 55.555049], + [37.708043, 55.554959], + [37.707953, 55.554959] ] ] } @@ -40872,11 +40808,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707949, 55.555138], - [37.707949, 55.555228], - [37.708039, 55.555228], - [37.708039, 55.555138], - [37.707949, 55.555138] + [37.707953, 55.555049], + [37.707953, 55.555139], + [37.708043, 55.555139], + [37.708043, 55.555049], + [37.707953, 55.555049] ] ] } @@ -40888,11 +40824,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707949, 55.555228], - [37.707949, 55.555317], - [37.708039, 55.555317], - [37.708039, 55.555228], - [37.707949, 55.555228] + [37.707953, 55.555139], + [37.707953, 55.555229], + [37.708043, 55.555229], + [37.708043, 55.555139], + [37.707953, 55.555139] ] ] } @@ -40904,11 +40840,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707949, 55.555317], - [37.707949, 55.555407], - [37.708039, 55.555407], - [37.708039, 55.555317], - [37.707949, 55.555317] + [37.707953, 55.555229], + [37.707953, 55.555319], + [37.708043, 55.555319], + [37.708043, 55.555229], + [37.707953, 55.555229] ] ] } @@ -40920,11 +40856,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707949, 55.555407], - [37.707949, 55.555497], - [37.708039, 55.555497], - [37.708039, 55.555407], - [37.707949, 55.555407] + [37.707953, 55.555319], + [37.707953, 55.555409], + [37.708043, 55.555409], + [37.708043, 55.555319], + [37.707953, 55.555319] ] ] } @@ -40936,11 +40872,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707949, 55.555497], - [37.707949, 55.555587], - [37.708039, 55.555587], - [37.708039, 55.555497], - [37.707949, 55.555497] + [37.707953, 55.555409], + [37.707953, 55.555499], + [37.708043, 55.555499], + [37.708043, 55.555409], + [37.707953, 55.555409] ] ] } @@ -40952,11 +40888,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707949, 55.555587], - [37.707949, 55.555677], - [37.708039, 55.555677], - [37.708039, 55.555587], - [37.707949, 55.555587] + [37.707953, 55.555499], + [37.707953, 55.555589], + [37.708043, 55.555589], + [37.708043, 55.555499], + [37.707953, 55.555499] ] ] } @@ -40968,11 +40904,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707949, 55.555677], - [37.707949, 55.555767], - [37.708039, 55.555767], - [37.708039, 55.555677], - [37.707949, 55.555677] + [37.707953, 55.555589], + [37.707953, 55.555679], + [37.708043, 55.555679], + [37.708043, 55.555589], + [37.707953, 55.555589] ] ] } @@ -40984,11 +40920,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707949, 55.555767], - [37.707949, 55.555856], - [37.708039, 55.555856], - [37.708039, 55.555767], - [37.707949, 55.555767] + [37.707953, 55.555679], + [37.707953, 55.555769], + [37.708043, 55.555769], + [37.708043, 55.555679], + [37.707953, 55.555679] ] ] } @@ -41000,11 +40936,11 @@ "type": "Polygon", "coordinates": [ [ - [37.707949, 55.555856], - [37.707949, 55.555946], - [37.708039, 55.555946], - [37.708039, 55.555856], - [37.707949, 55.555856] + [37.707953, 55.555769], + [37.707953, 55.555859], + [37.708043, 55.555859], + [37.708043, 55.555769], + [37.707953, 55.555769] ] ] } @@ -41016,11 +40952,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708039, 55.553341], - [37.708039, 55.553431], - [37.708129, 55.553431], - [37.708129, 55.553341], - [37.708039, 55.553341] + [37.707953, 55.555859], + [37.707953, 55.555949], + [37.708043, 55.555949], + [37.708043, 55.555859], + [37.707953, 55.555859] ] ] } @@ -41032,11 +40968,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708039, 55.553431], - [37.708039, 55.553521], - [37.708129, 55.553521], - [37.708129, 55.553431], - [37.708039, 55.553431] + [37.708043, 55.553341], + [37.708043, 55.553431], + [37.708133, 55.553431], + [37.708133, 55.553341], + [37.708043, 55.553341] ] ] } @@ -41048,11 +40984,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708039, 55.553521], - [37.708039, 55.553611], - [37.708129, 55.553611], - [37.708129, 55.553521], - [37.708039, 55.553521] + [37.708043, 55.553431], + [37.708043, 55.55352], + [37.708133, 55.55352], + [37.708133, 55.553431], + [37.708043, 55.553431] ] ] } @@ -41064,11 +41000,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708039, 55.553611], - [37.708039, 55.5537], - [37.708129, 55.5537], - [37.708129, 55.553611], - [37.708039, 55.553611] + [37.708043, 55.55352], + [37.708043, 55.55361], + [37.708133, 55.55361], + [37.708133, 55.55352], + [37.708043, 55.55352] ] ] } @@ -41080,11 +41016,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708039, 55.5537], - [37.708039, 55.55379], - [37.708129, 55.55379], - [37.708129, 55.5537], - [37.708039, 55.5537] + [37.708043, 55.55361], + [37.708043, 55.5537], + [37.708133, 55.5537], + [37.708133, 55.55361], + [37.708043, 55.55361] ] ] } @@ -41096,11 +41032,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708039, 55.55379], - [37.708039, 55.55388], - [37.708129, 55.55388], - [37.708129, 55.55379], - [37.708039, 55.55379] + [37.708043, 55.5537], + [37.708043, 55.55379], + [37.708133, 55.55379], + [37.708133, 55.5537], + [37.708043, 55.5537] ] ] } @@ -41112,11 +41048,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708039, 55.55388], - [37.708039, 55.55397], - [37.708129, 55.55397], - [37.708129, 55.55388], - [37.708039, 55.55388] + [37.708043, 55.55379], + [37.708043, 55.55388], + [37.708133, 55.55388], + [37.708133, 55.55379], + [37.708043, 55.55379] ] ] } @@ -41128,11 +41064,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708039, 55.55397], - [37.708039, 55.55406], - [37.708129, 55.55406], - [37.708129, 55.55397], - [37.708039, 55.55397] + [37.708043, 55.55388], + [37.708043, 55.55397], + [37.708133, 55.55397], + [37.708133, 55.55388], + [37.708043, 55.55388] ] ] } @@ -41144,11 +41080,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708039, 55.55406], - [37.708039, 55.55415], - [37.708129, 55.55415], - [37.708129, 55.55406], - [37.708039, 55.55406] + [37.708043, 55.55397], + [37.708043, 55.55406], + [37.708133, 55.55406], + [37.708133, 55.55397], + [37.708043, 55.55397] ] ] } @@ -41160,11 +41096,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708039, 55.55415], - [37.708039, 55.554239], - [37.708129, 55.554239], - [37.708129, 55.55415], - [37.708039, 55.55415] + [37.708043, 55.55406], + [37.708043, 55.55415], + [37.708133, 55.55415], + [37.708133, 55.55406], + [37.708043, 55.55406] ] ] } @@ -41176,11 +41112,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708039, 55.554239], - [37.708039, 55.554329], - [37.708129, 55.554329], - [37.708129, 55.554239], - [37.708039, 55.554239] + [37.708043, 55.55415], + [37.708043, 55.55424], + [37.708133, 55.55424], + [37.708133, 55.55415], + [37.708043, 55.55415] ] ] } @@ -41192,11 +41128,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708039, 55.554329], - [37.708039, 55.554419], - [37.708129, 55.554419], - [37.708129, 55.554329], - [37.708039, 55.554329] + [37.708043, 55.55424], + [37.708043, 55.55433], + [37.708133, 55.55433], + [37.708133, 55.55424], + [37.708043, 55.55424] ] ] } @@ -41208,11 +41144,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708039, 55.554419], - [37.708039, 55.554509], - [37.708129, 55.554509], - [37.708129, 55.554419], - [37.708039, 55.554419] + [37.708043, 55.55433], + [37.708043, 55.55442], + [37.708133, 55.55442], + [37.708133, 55.55433], + [37.708043, 55.55433] ] ] } @@ -41224,11 +41160,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708039, 55.554509], - [37.708039, 55.554599], - [37.708129, 55.554599], - [37.708129, 55.554509], - [37.708039, 55.554509] + [37.708043, 55.55442], + [37.708043, 55.55451], + [37.708133, 55.55451], + [37.708133, 55.55442], + [37.708043, 55.55442] ] ] } @@ -41240,11 +41176,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708039, 55.554599], - [37.708039, 55.554689], - [37.708129, 55.554689], - [37.708129, 55.554599], - [37.708039, 55.554599] + [37.708043, 55.55451], + [37.708043, 55.5546], + [37.708133, 55.5546], + [37.708133, 55.55451], + [37.708043, 55.55451] ] ] } @@ -41256,11 +41192,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708039, 55.554689], - [37.708039, 55.554778], - [37.708129, 55.554778], - [37.708129, 55.554689], - [37.708039, 55.554689] + [37.708043, 55.5546], + [37.708043, 55.55469], + [37.708133, 55.55469], + [37.708133, 55.5546], + [37.708043, 55.5546] ] ] } @@ -41272,11 +41208,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708039, 55.554778], - [37.708039, 55.554868], - [37.708129, 55.554868], - [37.708129, 55.554778], - [37.708039, 55.554778] + [37.708043, 55.55469], + [37.708043, 55.55478], + [37.708133, 55.55478], + [37.708133, 55.55469], + [37.708043, 55.55469] ] ] } @@ -41288,11 +41224,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708039, 55.554868], - [37.708039, 55.554958], - [37.708129, 55.554958], - [37.708129, 55.554868], - [37.708039, 55.554868] + [37.708043, 55.55478], + [37.708043, 55.554869], + [37.708133, 55.554869], + [37.708133, 55.55478], + [37.708043, 55.55478] ] ] } @@ -41304,11 +41240,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708039, 55.554958], - [37.708039, 55.555048], - [37.708129, 55.555048], - [37.708129, 55.554958], - [37.708039, 55.554958] + [37.708043, 55.554869], + [37.708043, 55.554959], + [37.708133, 55.554959], + [37.708133, 55.554869], + [37.708043, 55.554869] ] ] } @@ -41320,11 +41256,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708039, 55.555048], - [37.708039, 55.555138], - [37.708129, 55.555138], - [37.708129, 55.555048], - [37.708039, 55.555048] + [37.708043, 55.554959], + [37.708043, 55.555049], + [37.708133, 55.555049], + [37.708133, 55.554959], + [37.708043, 55.554959] ] ] } @@ -41336,11 +41272,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708039, 55.555138], - [37.708039, 55.555228], - [37.708129, 55.555228], - [37.708129, 55.555138], - [37.708039, 55.555138] + [37.708043, 55.555049], + [37.708043, 55.555139], + [37.708133, 55.555139], + [37.708133, 55.555049], + [37.708043, 55.555049] ] ] } @@ -41352,11 +41288,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708039, 55.555228], - [37.708039, 55.555317], - [37.708129, 55.555317], - [37.708129, 55.555228], - [37.708039, 55.555228] + [37.708043, 55.555139], + [37.708043, 55.555229], + [37.708133, 55.555229], + [37.708133, 55.555139], + [37.708043, 55.555139] ] ] } @@ -41368,11 +41304,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708039, 55.555317], - [37.708039, 55.555407], - [37.708129, 55.555407], - [37.708129, 55.555317], - [37.708039, 55.555317] + [37.708043, 55.555229], + [37.708043, 55.555319], + [37.708133, 55.555319], + [37.708133, 55.555229], + [37.708043, 55.555229] ] ] } @@ -41384,11 +41320,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708039, 55.555407], - [37.708039, 55.555497], - [37.708129, 55.555497], - [37.708129, 55.555407], - [37.708039, 55.555407] + [37.708043, 55.555319], + [37.708043, 55.555409], + [37.708133, 55.555409], + [37.708133, 55.555319], + [37.708043, 55.555319] ] ] } @@ -41400,11 +41336,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708039, 55.555497], - [37.708039, 55.555587], - [37.708129, 55.555587], - [37.708129, 55.555497], - [37.708039, 55.555497] + [37.708043, 55.555409], + [37.708043, 55.555499], + [37.708133, 55.555499], + [37.708133, 55.555409], + [37.708043, 55.555409] ] ] } @@ -41416,11 +41352,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708039, 55.555587], - [37.708039, 55.555677], - [37.708129, 55.555677], - [37.708129, 55.555587], - [37.708039, 55.555587] + [37.708043, 55.555499], + [37.708043, 55.555589], + [37.708133, 55.555589], + [37.708133, 55.555499], + [37.708043, 55.555499] ] ] } @@ -41432,11 +41368,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708039, 55.555677], - [37.708039, 55.555767], - [37.708129, 55.555767], - [37.708129, 55.555677], - [37.708039, 55.555677] + [37.708043, 55.555589], + [37.708043, 55.555679], + [37.708133, 55.555679], + [37.708133, 55.555589], + [37.708043, 55.555589] ] ] } @@ -41448,11 +41384,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708039, 55.555767], - [37.708039, 55.555856], - [37.708129, 55.555856], - [37.708129, 55.555767], - [37.708039, 55.555767] + [37.708043, 55.555679], + [37.708043, 55.555769], + [37.708133, 55.555769], + [37.708133, 55.555679], + [37.708043, 55.555679] ] ] } @@ -41464,11 +41400,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708039, 55.555856], - [37.708039, 55.555946], - [37.708129, 55.555946], - [37.708129, 55.555856], - [37.708039, 55.555856] + [37.708043, 55.555769], + [37.708043, 55.555859], + [37.708133, 55.555859], + [37.708133, 55.555769], + [37.708043, 55.555769] ] ] } @@ -41480,11 +41416,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708039, 55.555946], - [37.708039, 55.556036], - [37.708129, 55.556036], - [37.708129, 55.555946], - [37.708039, 55.555946] + [37.708043, 55.555859], + [37.708043, 55.555949], + [37.708133, 55.555949], + [37.708133, 55.555859], + [37.708043, 55.555859] ] ] } @@ -41496,11 +41432,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708129, 55.553431], - [37.708129, 55.553521], - [37.708219, 55.553521], - [37.708219, 55.553431], - [37.708129, 55.553431] + [37.708043, 55.555949], + [37.708043, 55.556039], + [37.708133, 55.556039], + [37.708133, 55.555949], + [37.708043, 55.555949] ] ] } @@ -41512,11 +41448,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708129, 55.553521], - [37.708129, 55.553611], - [37.708219, 55.553611], - [37.708219, 55.553521], - [37.708129, 55.553521] + [37.708133, 55.553431], + [37.708133, 55.55352], + [37.708223, 55.55352], + [37.708223, 55.553431], + [37.708133, 55.553431] ] ] } @@ -41528,11 +41464,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708129, 55.553611], - [37.708129, 55.5537], - [37.708219, 55.5537], - [37.708219, 55.553611], - [37.708129, 55.553611] + [37.708133, 55.55352], + [37.708133, 55.55361], + [37.708223, 55.55361], + [37.708223, 55.55352], + [37.708133, 55.55352] ] ] } @@ -41544,11 +41480,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708129, 55.5537], - [37.708129, 55.55379], - [37.708219, 55.55379], - [37.708219, 55.5537], - [37.708129, 55.5537] + [37.708133, 55.55361], + [37.708133, 55.5537], + [37.708223, 55.5537], + [37.708223, 55.55361], + [37.708133, 55.55361] ] ] } @@ -41560,11 +41496,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708129, 55.55379], - [37.708129, 55.55388], - [37.708219, 55.55388], - [37.708219, 55.55379], - [37.708129, 55.55379] + [37.708133, 55.5537], + [37.708133, 55.55379], + [37.708223, 55.55379], + [37.708223, 55.5537], + [37.708133, 55.5537] ] ] } @@ -41576,11 +41512,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708129, 55.55388], - [37.708129, 55.55397], - [37.708219, 55.55397], - [37.708219, 55.55388], - [37.708129, 55.55388] + [37.708133, 55.55379], + [37.708133, 55.55388], + [37.708223, 55.55388], + [37.708223, 55.55379], + [37.708133, 55.55379] ] ] } @@ -41592,11 +41528,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708129, 55.55397], - [37.708129, 55.55406], - [37.708219, 55.55406], - [37.708219, 55.55397], - [37.708129, 55.55397] + [37.708133, 55.55388], + [37.708133, 55.55397], + [37.708223, 55.55397], + [37.708223, 55.55388], + [37.708133, 55.55388] ] ] } @@ -41608,11 +41544,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708129, 55.55406], - [37.708129, 55.55415], - [37.708219, 55.55415], - [37.708219, 55.55406], - [37.708129, 55.55406] + [37.708133, 55.55397], + [37.708133, 55.55406], + [37.708223, 55.55406], + [37.708223, 55.55397], + [37.708133, 55.55397] ] ] } @@ -41624,11 +41560,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708129, 55.55415], - [37.708129, 55.554239], - [37.708219, 55.554239], - [37.708219, 55.55415], - [37.708129, 55.55415] + [37.708133, 55.55406], + [37.708133, 55.55415], + [37.708223, 55.55415], + [37.708223, 55.55406], + [37.708133, 55.55406] ] ] } @@ -41640,11 +41576,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708129, 55.554239], - [37.708129, 55.554329], - [37.708219, 55.554329], - [37.708219, 55.554239], - [37.708129, 55.554239] + [37.708133, 55.55415], + [37.708133, 55.55424], + [37.708223, 55.55424], + [37.708223, 55.55415], + [37.708133, 55.55415] ] ] } @@ -41656,11 +41592,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708129, 55.554329], - [37.708129, 55.554419], - [37.708219, 55.554419], - [37.708219, 55.554329], - [37.708129, 55.554329] + [37.708133, 55.55424], + [37.708133, 55.55433], + [37.708223, 55.55433], + [37.708223, 55.55424], + [37.708133, 55.55424] ] ] } @@ -41672,11 +41608,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708129, 55.554419], - [37.708129, 55.554509], - [37.708219, 55.554509], - [37.708219, 55.554419], - [37.708129, 55.554419] + [37.708133, 55.55433], + [37.708133, 55.55442], + [37.708223, 55.55442], + [37.708223, 55.55433], + [37.708133, 55.55433] ] ] } @@ -41688,11 +41624,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708129, 55.554509], - [37.708129, 55.554599], - [37.708219, 55.554599], - [37.708219, 55.554509], - [37.708129, 55.554509] + [37.708133, 55.55442], + [37.708133, 55.55451], + [37.708223, 55.55451], + [37.708223, 55.55442], + [37.708133, 55.55442] ] ] } @@ -41704,11 +41640,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708129, 55.554599], - [37.708129, 55.554689], - [37.708219, 55.554689], - [37.708219, 55.554599], - [37.708129, 55.554599] + [37.708133, 55.55451], + [37.708133, 55.5546], + [37.708223, 55.5546], + [37.708223, 55.55451], + [37.708133, 55.55451] ] ] } @@ -41720,11 +41656,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708129, 55.554689], - [37.708129, 55.554778], - [37.708219, 55.554778], - [37.708219, 55.554689], - [37.708129, 55.554689] + [37.708133, 55.5546], + [37.708133, 55.55469], + [37.708223, 55.55469], + [37.708223, 55.5546], + [37.708133, 55.5546] ] ] } @@ -41736,11 +41672,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708129, 55.554778], - [37.708129, 55.554868], - [37.708219, 55.554868], - [37.708219, 55.554778], - [37.708129, 55.554778] + [37.708133, 55.55469], + [37.708133, 55.55478], + [37.708223, 55.55478], + [37.708223, 55.55469], + [37.708133, 55.55469] ] ] } @@ -41752,11 +41688,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708129, 55.554868], - [37.708129, 55.554958], - [37.708219, 55.554958], - [37.708219, 55.554868], - [37.708129, 55.554868] + [37.708133, 55.55478], + [37.708133, 55.554869], + [37.708223, 55.554869], + [37.708223, 55.55478], + [37.708133, 55.55478] ] ] } @@ -41768,11 +41704,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708129, 55.554958], - [37.708129, 55.555048], - [37.708219, 55.555048], - [37.708219, 55.554958], - [37.708129, 55.554958] + [37.708133, 55.554869], + [37.708133, 55.554959], + [37.708223, 55.554959], + [37.708223, 55.554869], + [37.708133, 55.554869] ] ] } @@ -41784,11 +41720,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708129, 55.555048], - [37.708129, 55.555138], - [37.708219, 55.555138], - [37.708219, 55.555048], - [37.708129, 55.555048] + [37.708133, 55.554959], + [37.708133, 55.555049], + [37.708223, 55.555049], + [37.708223, 55.554959], + [37.708133, 55.554959] ] ] } @@ -41800,11 +41736,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708129, 55.555138], - [37.708129, 55.555228], - [37.708219, 55.555228], - [37.708219, 55.555138], - [37.708129, 55.555138] + [37.708133, 55.555049], + [37.708133, 55.555139], + [37.708223, 55.555139], + [37.708223, 55.555049], + [37.708133, 55.555049] ] ] } @@ -41816,11 +41752,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708129, 55.555228], - [37.708129, 55.555317], - [37.708219, 55.555317], - [37.708219, 55.555228], - [37.708129, 55.555228] + [37.708133, 55.555139], + [37.708133, 55.555229], + [37.708223, 55.555229], + [37.708223, 55.555139], + [37.708133, 55.555139] ] ] } @@ -41832,11 +41768,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708129, 55.555317], - [37.708129, 55.555407], - [37.708219, 55.555407], - [37.708219, 55.555317], - [37.708129, 55.555317] + [37.708133, 55.555229], + [37.708133, 55.555319], + [37.708223, 55.555319], + [37.708223, 55.555229], + [37.708133, 55.555229] ] ] } @@ -41848,11 +41784,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708129, 55.555407], - [37.708129, 55.555497], - [37.708219, 55.555497], - [37.708219, 55.555407], - [37.708129, 55.555407] + [37.708133, 55.555319], + [37.708133, 55.555409], + [37.708223, 55.555409], + [37.708223, 55.555319], + [37.708133, 55.555319] ] ] } @@ -41864,11 +41800,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708129, 55.555497], - [37.708129, 55.555587], - [37.708219, 55.555587], - [37.708219, 55.555497], - [37.708129, 55.555497] + [37.708133, 55.555409], + [37.708133, 55.555499], + [37.708223, 55.555499], + [37.708223, 55.555409], + [37.708133, 55.555409] ] ] } @@ -41880,11 +41816,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708129, 55.555587], - [37.708129, 55.555677], - [37.708219, 55.555677], - [37.708219, 55.555587], - [37.708129, 55.555587] + [37.708133, 55.555499], + [37.708133, 55.555589], + [37.708223, 55.555589], + [37.708223, 55.555499], + [37.708133, 55.555499] ] ] } @@ -41896,11 +41832,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708129, 55.555677], - [37.708129, 55.555767], - [37.708219, 55.555767], - [37.708219, 55.555677], - [37.708129, 55.555677] + [37.708133, 55.555589], + [37.708133, 55.555679], + [37.708223, 55.555679], + [37.708223, 55.555589], + [37.708133, 55.555589] ] ] } @@ -41912,11 +41848,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708129, 55.555767], - [37.708129, 55.555856], - [37.708219, 55.555856], - [37.708219, 55.555767], - [37.708129, 55.555767] + [37.708133, 55.555679], + [37.708133, 55.555769], + [37.708223, 55.555769], + [37.708223, 55.555679], + [37.708133, 55.555679] ] ] } @@ -41928,11 +41864,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708129, 55.555856], - [37.708129, 55.555946], - [37.708219, 55.555946], - [37.708219, 55.555856], - [37.708129, 55.555856] + [37.708133, 55.555769], + [37.708133, 55.555859], + [37.708223, 55.555859], + [37.708223, 55.555769], + [37.708133, 55.555769] ] ] } @@ -41944,11 +41880,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708129, 55.555946], - [37.708129, 55.556036], - [37.708219, 55.556036], - [37.708219, 55.555946], - [37.708129, 55.555946] + [37.708133, 55.555859], + [37.708133, 55.555949], + [37.708223, 55.555949], + [37.708223, 55.555859], + [37.708133, 55.555859] ] ] } @@ -41960,11 +41896,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708219, 55.553611], - [37.708219, 55.5537], - [37.708308, 55.5537], - [37.708308, 55.553611], - [37.708219, 55.553611] + [37.708133, 55.555949], + [37.708133, 55.556039], + [37.708223, 55.556039], + [37.708223, 55.555949], + [37.708133, 55.555949] ] ] } @@ -41976,11 +41912,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708219, 55.5537], - [37.708219, 55.55379], - [37.708308, 55.55379], - [37.708308, 55.5537], - [37.708219, 55.5537] + [37.708223, 55.55361], + [37.708223, 55.5537], + [37.708313, 55.5537], + [37.708313, 55.55361], + [37.708223, 55.55361] ] ] } @@ -41992,11 +41928,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708219, 55.55379], - [37.708219, 55.55388], - [37.708308, 55.55388], - [37.708308, 55.55379], - [37.708219, 55.55379] + [37.708223, 55.5537], + [37.708223, 55.55379], + [37.708313, 55.55379], + [37.708313, 55.5537], + [37.708223, 55.5537] ] ] } @@ -42008,11 +41944,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708219, 55.55388], - [37.708219, 55.55397], - [37.708308, 55.55397], - [37.708308, 55.55388], - [37.708219, 55.55388] + [37.708223, 55.55379], + [37.708223, 55.55388], + [37.708313, 55.55388], + [37.708313, 55.55379], + [37.708223, 55.55379] ] ] } @@ -42024,11 +41960,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708219, 55.55397], - [37.708219, 55.55406], - [37.708308, 55.55406], - [37.708308, 55.55397], - [37.708219, 55.55397] + [37.708223, 55.55388], + [37.708223, 55.55397], + [37.708313, 55.55397], + [37.708313, 55.55388], + [37.708223, 55.55388] ] ] } @@ -42040,11 +41976,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708219, 55.55406], - [37.708219, 55.55415], - [37.708308, 55.55415], - [37.708308, 55.55406], - [37.708219, 55.55406] + [37.708223, 55.55397], + [37.708223, 55.55406], + [37.708313, 55.55406], + [37.708313, 55.55397], + [37.708223, 55.55397] ] ] } @@ -42056,11 +41992,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708219, 55.55415], - [37.708219, 55.554239], - [37.708308, 55.554239], - [37.708308, 55.55415], - [37.708219, 55.55415] + [37.708223, 55.55406], + [37.708223, 55.55415], + [37.708313, 55.55415], + [37.708313, 55.55406], + [37.708223, 55.55406] ] ] } @@ -42072,11 +42008,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708219, 55.554239], - [37.708219, 55.554329], - [37.708308, 55.554329], - [37.708308, 55.554239], - [37.708219, 55.554239] + [37.708223, 55.55415], + [37.708223, 55.55424], + [37.708313, 55.55424], + [37.708313, 55.55415], + [37.708223, 55.55415] ] ] } @@ -42088,11 +42024,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708219, 55.554329], - [37.708219, 55.554419], - [37.708308, 55.554419], - [37.708308, 55.554329], - [37.708219, 55.554329] + [37.708223, 55.55424], + [37.708223, 55.55433], + [37.708313, 55.55433], + [37.708313, 55.55424], + [37.708223, 55.55424] ] ] } @@ -42104,11 +42040,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708219, 55.554419], - [37.708219, 55.554509], - [37.708308, 55.554509], - [37.708308, 55.554419], - [37.708219, 55.554419] + [37.708223, 55.55433], + [37.708223, 55.55442], + [37.708313, 55.55442], + [37.708313, 55.55433], + [37.708223, 55.55433] ] ] } @@ -42120,11 +42056,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708219, 55.554509], - [37.708219, 55.554599], - [37.708308, 55.554599], - [37.708308, 55.554509], - [37.708219, 55.554509] + [37.708223, 55.55442], + [37.708223, 55.55451], + [37.708313, 55.55451], + [37.708313, 55.55442], + [37.708223, 55.55442] ] ] } @@ -42136,11 +42072,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708219, 55.554599], - [37.708219, 55.554689], - [37.708308, 55.554689], - [37.708308, 55.554599], - [37.708219, 55.554599] + [37.708223, 55.55451], + [37.708223, 55.5546], + [37.708313, 55.5546], + [37.708313, 55.55451], + [37.708223, 55.55451] ] ] } @@ -42152,11 +42088,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708219, 55.554689], - [37.708219, 55.554778], - [37.708308, 55.554778], - [37.708308, 55.554689], - [37.708219, 55.554689] + [37.708223, 55.5546], + [37.708223, 55.55469], + [37.708313, 55.55469], + [37.708313, 55.5546], + [37.708223, 55.5546] ] ] } @@ -42168,11 +42104,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708219, 55.554778], - [37.708219, 55.554868], - [37.708308, 55.554868], - [37.708308, 55.554778], - [37.708219, 55.554778] + [37.708223, 55.55469], + [37.708223, 55.55478], + [37.708313, 55.55478], + [37.708313, 55.55469], + [37.708223, 55.55469] ] ] } @@ -42184,11 +42120,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708219, 55.554868], - [37.708219, 55.554958], - [37.708308, 55.554958], - [37.708308, 55.554868], - [37.708219, 55.554868] + [37.708223, 55.55478], + [37.708223, 55.554869], + [37.708313, 55.554869], + [37.708313, 55.55478], + [37.708223, 55.55478] ] ] } @@ -42200,11 +42136,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708219, 55.554958], - [37.708219, 55.555048], - [37.708308, 55.555048], - [37.708308, 55.554958], - [37.708219, 55.554958] + [37.708223, 55.554869], + [37.708223, 55.554959], + [37.708313, 55.554959], + [37.708313, 55.554869], + [37.708223, 55.554869] ] ] } @@ -42216,11 +42152,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708219, 55.555048], - [37.708219, 55.555138], - [37.708308, 55.555138], - [37.708308, 55.555048], - [37.708219, 55.555048] + [37.708223, 55.554959], + [37.708223, 55.555049], + [37.708313, 55.555049], + [37.708313, 55.554959], + [37.708223, 55.554959] ] ] } @@ -42232,11 +42168,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708219, 55.555138], - [37.708219, 55.555228], - [37.708308, 55.555228], - [37.708308, 55.555138], - [37.708219, 55.555138] + [37.708223, 55.555049], + [37.708223, 55.555139], + [37.708313, 55.555139], + [37.708313, 55.555049], + [37.708223, 55.555049] ] ] } @@ -42248,11 +42184,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708219, 55.555228], - [37.708219, 55.555317], - [37.708308, 55.555317], - [37.708308, 55.555228], - [37.708219, 55.555228] + [37.708223, 55.555139], + [37.708223, 55.555229], + [37.708313, 55.555229], + [37.708313, 55.555139], + [37.708223, 55.555139] ] ] } @@ -42264,11 +42200,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708219, 55.555317], - [37.708219, 55.555407], - [37.708308, 55.555407], - [37.708308, 55.555317], - [37.708219, 55.555317] + [37.708223, 55.555229], + [37.708223, 55.555319], + [37.708313, 55.555319], + [37.708313, 55.555229], + [37.708223, 55.555229] ] ] } @@ -42280,11 +42216,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708219, 55.555407], - [37.708219, 55.555497], - [37.708308, 55.555497], - [37.708308, 55.555407], - [37.708219, 55.555407] + [37.708223, 55.555319], + [37.708223, 55.555409], + [37.708313, 55.555409], + [37.708313, 55.555319], + [37.708223, 55.555319] ] ] } @@ -42296,11 +42232,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708219, 55.555497], - [37.708219, 55.555587], - [37.708308, 55.555587], - [37.708308, 55.555497], - [37.708219, 55.555497] + [37.708223, 55.555409], + [37.708223, 55.555499], + [37.708313, 55.555499], + [37.708313, 55.555409], + [37.708223, 55.555409] ] ] } @@ -42312,11 +42248,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708219, 55.555587], - [37.708219, 55.555677], - [37.708308, 55.555677], - [37.708308, 55.555587], - [37.708219, 55.555587] + [37.708223, 55.555499], + [37.708223, 55.555589], + [37.708313, 55.555589], + [37.708313, 55.555499], + [37.708223, 55.555499] ] ] } @@ -42328,11 +42264,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708219, 55.555677], - [37.708219, 55.555767], - [37.708308, 55.555767], - [37.708308, 55.555677], - [37.708219, 55.555677] + [37.708223, 55.555589], + [37.708223, 55.555679], + [37.708313, 55.555679], + [37.708313, 55.555589], + [37.708223, 55.555589] ] ] } @@ -42344,11 +42280,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708219, 55.555767], - [37.708219, 55.555856], - [37.708308, 55.555856], - [37.708308, 55.555767], - [37.708219, 55.555767] + [37.708223, 55.555679], + [37.708223, 55.555769], + [37.708313, 55.555769], + [37.708313, 55.555679], + [37.708223, 55.555679] ] ] } @@ -42360,11 +42296,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708219, 55.555856], - [37.708219, 55.555946], - [37.708308, 55.555946], - [37.708308, 55.555856], - [37.708219, 55.555856] + [37.708223, 55.555769], + [37.708223, 55.555859], + [37.708313, 55.555859], + [37.708313, 55.555769], + [37.708223, 55.555769] ] ] } @@ -42376,11 +42312,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708219, 55.555946], - [37.708219, 55.556036], - [37.708308, 55.556036], - [37.708308, 55.555946], - [37.708219, 55.555946] + [37.708223, 55.555859], + [37.708223, 55.555949], + [37.708313, 55.555949], + [37.708313, 55.555859], + [37.708223, 55.555859] ] ] } @@ -42392,11 +42328,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708308, 55.5537], - [37.708308, 55.55379], - [37.708398, 55.55379], - [37.708398, 55.5537], - [37.708308, 55.5537] + [37.708223, 55.555949], + [37.708223, 55.556039], + [37.708313, 55.556039], + [37.708313, 55.555949], + [37.708223, 55.555949] ] ] } @@ -42408,11 +42344,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708308, 55.55379], - [37.708308, 55.55388], - [37.708398, 55.55388], - [37.708398, 55.55379], - [37.708308, 55.55379] + [37.708313, 55.5537], + [37.708313, 55.55379], + [37.708403, 55.55379], + [37.708403, 55.5537], + [37.708313, 55.5537] ] ] } @@ -42424,11 +42360,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708308, 55.55388], - [37.708308, 55.55397], - [37.708398, 55.55397], - [37.708398, 55.55388], - [37.708308, 55.55388] + [37.708313, 55.55379], + [37.708313, 55.55388], + [37.708403, 55.55388], + [37.708403, 55.55379], + [37.708313, 55.55379] ] ] } @@ -42440,11 +42376,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708308, 55.55397], - [37.708308, 55.55406], - [37.708398, 55.55406], - [37.708398, 55.55397], - [37.708308, 55.55397] + [37.708313, 55.55388], + [37.708313, 55.55397], + [37.708403, 55.55397], + [37.708403, 55.55388], + [37.708313, 55.55388] ] ] } @@ -42456,11 +42392,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708308, 55.55406], - [37.708308, 55.55415], - [37.708398, 55.55415], - [37.708398, 55.55406], - [37.708308, 55.55406] + [37.708313, 55.55397], + [37.708313, 55.55406], + [37.708403, 55.55406], + [37.708403, 55.55397], + [37.708313, 55.55397] ] ] } @@ -42472,11 +42408,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708308, 55.55415], - [37.708308, 55.554239], - [37.708398, 55.554239], - [37.708398, 55.55415], - [37.708308, 55.55415] + [37.708313, 55.55406], + [37.708313, 55.55415], + [37.708403, 55.55415], + [37.708403, 55.55406], + [37.708313, 55.55406] ] ] } @@ -42488,11 +42424,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708308, 55.554239], - [37.708308, 55.554329], - [37.708398, 55.554329], - [37.708398, 55.554239], - [37.708308, 55.554239] + [37.708313, 55.55415], + [37.708313, 55.55424], + [37.708403, 55.55424], + [37.708403, 55.55415], + [37.708313, 55.55415] ] ] } @@ -42504,11 +42440,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708308, 55.554329], - [37.708308, 55.554419], - [37.708398, 55.554419], - [37.708398, 55.554329], - [37.708308, 55.554329] + [37.708313, 55.55424], + [37.708313, 55.55433], + [37.708403, 55.55433], + [37.708403, 55.55424], + [37.708313, 55.55424] ] ] } @@ -42520,11 +42456,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708308, 55.554419], - [37.708308, 55.554509], - [37.708398, 55.554509], - [37.708398, 55.554419], - [37.708308, 55.554419] + [37.708313, 55.55433], + [37.708313, 55.55442], + [37.708403, 55.55442], + [37.708403, 55.55433], + [37.708313, 55.55433] ] ] } @@ -42536,11 +42472,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708308, 55.554509], - [37.708308, 55.554599], - [37.708398, 55.554599], - [37.708398, 55.554509], - [37.708308, 55.554509] + [37.708313, 55.55442], + [37.708313, 55.55451], + [37.708403, 55.55451], + [37.708403, 55.55442], + [37.708313, 55.55442] ] ] } @@ -42552,11 +42488,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708308, 55.554599], - [37.708308, 55.554689], - [37.708398, 55.554689], - [37.708398, 55.554599], - [37.708308, 55.554599] + [37.708313, 55.55451], + [37.708313, 55.5546], + [37.708403, 55.5546], + [37.708403, 55.55451], + [37.708313, 55.55451] ] ] } @@ -42568,11 +42504,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708308, 55.554689], - [37.708308, 55.554778], - [37.708398, 55.554778], - [37.708398, 55.554689], - [37.708308, 55.554689] + [37.708313, 55.5546], + [37.708313, 55.55469], + [37.708403, 55.55469], + [37.708403, 55.5546], + [37.708313, 55.5546] ] ] } @@ -42584,11 +42520,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708308, 55.554778], - [37.708308, 55.554868], - [37.708398, 55.554868], - [37.708398, 55.554778], - [37.708308, 55.554778] + [37.708313, 55.55469], + [37.708313, 55.55478], + [37.708403, 55.55478], + [37.708403, 55.55469], + [37.708313, 55.55469] ] ] } @@ -42600,11 +42536,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708308, 55.554868], - [37.708308, 55.554958], - [37.708398, 55.554958], - [37.708398, 55.554868], - [37.708308, 55.554868] + [37.708313, 55.55478], + [37.708313, 55.554869], + [37.708403, 55.554869], + [37.708403, 55.55478], + [37.708313, 55.55478] ] ] } @@ -42616,11 +42552,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708308, 55.554958], - [37.708308, 55.555048], - [37.708398, 55.555048], - [37.708398, 55.554958], - [37.708308, 55.554958] + [37.708313, 55.554869], + [37.708313, 55.554959], + [37.708403, 55.554959], + [37.708403, 55.554869], + [37.708313, 55.554869] ] ] } @@ -42632,11 +42568,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708308, 55.555048], - [37.708308, 55.555138], - [37.708398, 55.555138], - [37.708398, 55.555048], - [37.708308, 55.555048] + [37.708313, 55.554959], + [37.708313, 55.555049], + [37.708403, 55.555049], + [37.708403, 55.554959], + [37.708313, 55.554959] ] ] } @@ -42648,11 +42584,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708308, 55.555138], - [37.708308, 55.555228], - [37.708398, 55.555228], - [37.708398, 55.555138], - [37.708308, 55.555138] + [37.708313, 55.555049], + [37.708313, 55.555139], + [37.708403, 55.555139], + [37.708403, 55.555049], + [37.708313, 55.555049] ] ] } @@ -42664,11 +42600,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708308, 55.555228], - [37.708308, 55.555317], - [37.708398, 55.555317], - [37.708398, 55.555228], - [37.708308, 55.555228] + [37.708313, 55.555139], + [37.708313, 55.555229], + [37.708403, 55.555229], + [37.708403, 55.555139], + [37.708313, 55.555139] ] ] } @@ -42680,11 +42616,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708308, 55.555317], - [37.708308, 55.555407], - [37.708398, 55.555407], - [37.708398, 55.555317], - [37.708308, 55.555317] + [37.708313, 55.555229], + [37.708313, 55.555319], + [37.708403, 55.555319], + [37.708403, 55.555229], + [37.708313, 55.555229] ] ] } @@ -42696,11 +42632,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708308, 55.555407], - [37.708308, 55.555497], - [37.708398, 55.555497], - [37.708398, 55.555407], - [37.708308, 55.555407] + [37.708313, 55.555319], + [37.708313, 55.555409], + [37.708403, 55.555409], + [37.708403, 55.555319], + [37.708313, 55.555319] ] ] } @@ -42712,11 +42648,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708308, 55.555497], - [37.708308, 55.555587], - [37.708398, 55.555587], - [37.708398, 55.555497], - [37.708308, 55.555497] + [37.708313, 55.555409], + [37.708313, 55.555499], + [37.708403, 55.555499], + [37.708403, 55.555409], + [37.708313, 55.555409] ] ] } @@ -42728,11 +42664,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708308, 55.555587], - [37.708308, 55.555677], - [37.708398, 55.555677], - [37.708398, 55.555587], - [37.708308, 55.555587] + [37.708313, 55.555499], + [37.708313, 55.555589], + [37.708403, 55.555589], + [37.708403, 55.555499], + [37.708313, 55.555499] ] ] } @@ -42744,11 +42680,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708308, 55.555677], - [37.708308, 55.555767], - [37.708398, 55.555767], - [37.708398, 55.555677], - [37.708308, 55.555677] + [37.708313, 55.555589], + [37.708313, 55.555679], + [37.708403, 55.555679], + [37.708403, 55.555589], + [37.708313, 55.555589] ] ] } @@ -42760,11 +42696,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708308, 55.555767], - [37.708308, 55.555856], - [37.708398, 55.555856], - [37.708398, 55.555767], - [37.708308, 55.555767] + [37.708313, 55.555679], + [37.708313, 55.555769], + [37.708403, 55.555769], + [37.708403, 55.555679], + [37.708313, 55.555679] ] ] } @@ -42776,11 +42712,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708308, 55.555856], - [37.708308, 55.555946], - [37.708398, 55.555946], - [37.708398, 55.555856], - [37.708308, 55.555856] + [37.708313, 55.555769], + [37.708313, 55.555859], + [37.708403, 55.555859], + [37.708403, 55.555769], + [37.708313, 55.555769] ] ] } @@ -42792,11 +42728,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708308, 55.555946], - [37.708308, 55.556036], - [37.708398, 55.556036], - [37.708398, 55.555946], - [37.708308, 55.555946] + [37.708313, 55.555859], + [37.708313, 55.555949], + [37.708403, 55.555949], + [37.708403, 55.555859], + [37.708313, 55.555859] ] ] } @@ -42808,11 +42744,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708398, 55.55379], - [37.708398, 55.55388], - [37.708488, 55.55388], - [37.708488, 55.55379], - [37.708398, 55.55379] + [37.708313, 55.555949], + [37.708313, 55.556039], + [37.708403, 55.556039], + [37.708403, 55.555949], + [37.708313, 55.555949] ] ] } @@ -42824,11 +42760,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708398, 55.55388], - [37.708398, 55.55397], - [37.708488, 55.55397], - [37.708488, 55.55388], - [37.708398, 55.55388] + [37.708403, 55.55379], + [37.708403, 55.55388], + [37.708493, 55.55388], + [37.708493, 55.55379], + [37.708403, 55.55379] ] ] } @@ -42840,11 +42776,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708398, 55.55397], - [37.708398, 55.55406], - [37.708488, 55.55406], - [37.708488, 55.55397], - [37.708398, 55.55397] + [37.708403, 55.55388], + [37.708403, 55.55397], + [37.708493, 55.55397], + [37.708493, 55.55388], + [37.708403, 55.55388] ] ] } @@ -42856,11 +42792,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708398, 55.55406], - [37.708398, 55.55415], - [37.708488, 55.55415], - [37.708488, 55.55406], - [37.708398, 55.55406] + [37.708403, 55.55397], + [37.708403, 55.55406], + [37.708493, 55.55406], + [37.708493, 55.55397], + [37.708403, 55.55397] ] ] } @@ -42872,11 +42808,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708398, 55.55415], - [37.708398, 55.554239], - [37.708488, 55.554239], - [37.708488, 55.55415], - [37.708398, 55.55415] + [37.708403, 55.55406], + [37.708403, 55.55415], + [37.708493, 55.55415], + [37.708493, 55.55406], + [37.708403, 55.55406] ] ] } @@ -42888,11 +42824,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708398, 55.554239], - [37.708398, 55.554329], - [37.708488, 55.554329], - [37.708488, 55.554239], - [37.708398, 55.554239] + [37.708403, 55.55415], + [37.708403, 55.55424], + [37.708493, 55.55424], + [37.708493, 55.55415], + [37.708403, 55.55415] ] ] } @@ -42904,11 +42840,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708398, 55.554329], - [37.708398, 55.554419], - [37.708488, 55.554419], - [37.708488, 55.554329], - [37.708398, 55.554329] + [37.708403, 55.55424], + [37.708403, 55.55433], + [37.708493, 55.55433], + [37.708493, 55.55424], + [37.708403, 55.55424] ] ] } @@ -42920,11 +42856,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708398, 55.554419], - [37.708398, 55.554509], - [37.708488, 55.554509], - [37.708488, 55.554419], - [37.708398, 55.554419] + [37.708403, 55.55433], + [37.708403, 55.55442], + [37.708493, 55.55442], + [37.708493, 55.55433], + [37.708403, 55.55433] ] ] } @@ -42936,11 +42872,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708398, 55.554509], - [37.708398, 55.554599], - [37.708488, 55.554599], - [37.708488, 55.554509], - [37.708398, 55.554509] + [37.708403, 55.55442], + [37.708403, 55.55451], + [37.708493, 55.55451], + [37.708493, 55.55442], + [37.708403, 55.55442] ] ] } @@ -42952,11 +42888,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708398, 55.554599], - [37.708398, 55.554689], - [37.708488, 55.554689], - [37.708488, 55.554599], - [37.708398, 55.554599] + [37.708403, 55.55451], + [37.708403, 55.5546], + [37.708493, 55.5546], + [37.708493, 55.55451], + [37.708403, 55.55451] ] ] } @@ -42968,11 +42904,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708398, 55.554689], - [37.708398, 55.554778], - [37.708488, 55.554778], - [37.708488, 55.554689], - [37.708398, 55.554689] + [37.708403, 55.5546], + [37.708403, 55.55469], + [37.708493, 55.55469], + [37.708493, 55.5546], + [37.708403, 55.5546] ] ] } @@ -42984,11 +42920,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708398, 55.554778], - [37.708398, 55.554868], - [37.708488, 55.554868], - [37.708488, 55.554778], - [37.708398, 55.554778] + [37.708403, 55.55469], + [37.708403, 55.55478], + [37.708493, 55.55478], + [37.708493, 55.55469], + [37.708403, 55.55469] ] ] } @@ -43000,11 +42936,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708398, 55.554868], - [37.708398, 55.554958], - [37.708488, 55.554958], - [37.708488, 55.554868], - [37.708398, 55.554868] + [37.708403, 55.55478], + [37.708403, 55.554869], + [37.708493, 55.554869], + [37.708493, 55.55478], + [37.708403, 55.55478] ] ] } @@ -43016,11 +42952,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708398, 55.554958], - [37.708398, 55.555048], - [37.708488, 55.555048], - [37.708488, 55.554958], - [37.708398, 55.554958] + [37.708403, 55.554869], + [37.708403, 55.554959], + [37.708493, 55.554959], + [37.708493, 55.554869], + [37.708403, 55.554869] ] ] } @@ -43032,11 +42968,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708398, 55.555048], - [37.708398, 55.555138], - [37.708488, 55.555138], - [37.708488, 55.555048], - [37.708398, 55.555048] + [37.708403, 55.554959], + [37.708403, 55.555049], + [37.708493, 55.555049], + [37.708493, 55.554959], + [37.708403, 55.554959] ] ] } @@ -43048,11 +42984,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708398, 55.555138], - [37.708398, 55.555228], - [37.708488, 55.555228], - [37.708488, 55.555138], - [37.708398, 55.555138] + [37.708403, 55.555049], + [37.708403, 55.555139], + [37.708493, 55.555139], + [37.708493, 55.555049], + [37.708403, 55.555049] ] ] } @@ -43064,11 +43000,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708398, 55.555228], - [37.708398, 55.555317], - [37.708488, 55.555317], - [37.708488, 55.555228], - [37.708398, 55.555228] + [37.708403, 55.555139], + [37.708403, 55.555229], + [37.708493, 55.555229], + [37.708493, 55.555139], + [37.708403, 55.555139] ] ] } @@ -43080,11 +43016,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708398, 55.555317], - [37.708398, 55.555407], - [37.708488, 55.555407], - [37.708488, 55.555317], - [37.708398, 55.555317] + [37.708403, 55.555229], + [37.708403, 55.555319], + [37.708493, 55.555319], + [37.708493, 55.555229], + [37.708403, 55.555229] ] ] } @@ -43096,11 +43032,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708398, 55.555407], - [37.708398, 55.555497], - [37.708488, 55.555497], - [37.708488, 55.555407], - [37.708398, 55.555407] + [37.708403, 55.555319], + [37.708403, 55.555409], + [37.708493, 55.555409], + [37.708493, 55.555319], + [37.708403, 55.555319] ] ] } @@ -43112,11 +43048,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708398, 55.555497], - [37.708398, 55.555587], - [37.708488, 55.555587], - [37.708488, 55.555497], - [37.708398, 55.555497] + [37.708403, 55.555409], + [37.708403, 55.555499], + [37.708493, 55.555499], + [37.708493, 55.555409], + [37.708403, 55.555409] ] ] } @@ -43128,11 +43064,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708398, 55.555587], - [37.708398, 55.555677], - [37.708488, 55.555677], - [37.708488, 55.555587], - [37.708398, 55.555587] + [37.708403, 55.555499], + [37.708403, 55.555589], + [37.708493, 55.555589], + [37.708493, 55.555499], + [37.708403, 55.555499] ] ] } @@ -43144,11 +43080,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708398, 55.555677], - [37.708398, 55.555767], - [37.708488, 55.555767], - [37.708488, 55.555677], - [37.708398, 55.555677] + [37.708403, 55.555589], + [37.708403, 55.555679], + [37.708493, 55.555679], + [37.708493, 55.555589], + [37.708403, 55.555589] ] ] } @@ -43160,11 +43096,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708398, 55.555767], - [37.708398, 55.555856], - [37.708488, 55.555856], - [37.708488, 55.555767], - [37.708398, 55.555767] + [37.708403, 55.555679], + [37.708403, 55.555769], + [37.708493, 55.555769], + [37.708493, 55.555679], + [37.708403, 55.555679] ] ] } @@ -43176,11 +43112,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708398, 55.555856], - [37.708398, 55.555946], - [37.708488, 55.555946], - [37.708488, 55.555856], - [37.708398, 55.555856] + [37.708403, 55.555769], + [37.708403, 55.555859], + [37.708493, 55.555859], + [37.708493, 55.555769], + [37.708403, 55.555769] ] ] } @@ -43192,11 +43128,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708398, 55.555946], - [37.708398, 55.556036], - [37.708488, 55.556036], - [37.708488, 55.555946], - [37.708398, 55.555946] + [37.708403, 55.555859], + [37.708403, 55.555949], + [37.708493, 55.555949], + [37.708493, 55.555859], + [37.708403, 55.555859] ] ] } @@ -43208,11 +43144,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708398, 55.556036], - [37.708398, 55.556126], - [37.708488, 55.556126], - [37.708488, 55.556036], - [37.708398, 55.556036] + [37.708403, 55.555949], + [37.708403, 55.556039], + [37.708493, 55.556039], + [37.708493, 55.555949], + [37.708403, 55.555949] ] ] } @@ -43224,11 +43160,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708488, 55.55388], - [37.708488, 55.55397], - [37.708578, 55.55397], - [37.708578, 55.55388], - [37.708488, 55.55388] + [37.708403, 55.556039], + [37.708403, 55.556128], + [37.708493, 55.556128], + [37.708493, 55.556039], + [37.708403, 55.556039] ] ] } @@ -43240,11 +43176,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708488, 55.55397], - [37.708488, 55.55406], - [37.708578, 55.55406], - [37.708578, 55.55397], - [37.708488, 55.55397] + [37.708493, 55.55388], + [37.708493, 55.55397], + [37.708582, 55.55397], + [37.708582, 55.55388], + [37.708493, 55.55388] ] ] } @@ -43256,11 +43192,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708488, 55.55406], - [37.708488, 55.55415], - [37.708578, 55.55415], - [37.708578, 55.55406], - [37.708488, 55.55406] + [37.708493, 55.55397], + [37.708493, 55.55406], + [37.708582, 55.55406], + [37.708582, 55.55397], + [37.708493, 55.55397] ] ] } @@ -43272,11 +43208,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708488, 55.55415], - [37.708488, 55.554239], - [37.708578, 55.554239], - [37.708578, 55.55415], - [37.708488, 55.55415] + [37.708493, 55.55406], + [37.708493, 55.55415], + [37.708582, 55.55415], + [37.708582, 55.55406], + [37.708493, 55.55406] ] ] } @@ -43288,11 +43224,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708488, 55.554239], - [37.708488, 55.554329], - [37.708578, 55.554329], - [37.708578, 55.554239], - [37.708488, 55.554239] + [37.708493, 55.55415], + [37.708493, 55.55424], + [37.708582, 55.55424], + [37.708582, 55.55415], + [37.708493, 55.55415] ] ] } @@ -43304,11 +43240,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708488, 55.554329], - [37.708488, 55.554419], - [37.708578, 55.554419], - [37.708578, 55.554329], - [37.708488, 55.554329] + [37.708493, 55.55424], + [37.708493, 55.55433], + [37.708582, 55.55433], + [37.708582, 55.55424], + [37.708493, 55.55424] ] ] } @@ -43320,11 +43256,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708488, 55.554419], - [37.708488, 55.554509], - [37.708578, 55.554509], - [37.708578, 55.554419], - [37.708488, 55.554419] + [37.708493, 55.55433], + [37.708493, 55.55442], + [37.708582, 55.55442], + [37.708582, 55.55433], + [37.708493, 55.55433] ] ] } @@ -43336,11 +43272,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708488, 55.554509], - [37.708488, 55.554599], - [37.708578, 55.554599], - [37.708578, 55.554509], - [37.708488, 55.554509] + [37.708493, 55.55442], + [37.708493, 55.55451], + [37.708582, 55.55451], + [37.708582, 55.55442], + [37.708493, 55.55442] ] ] } @@ -43352,11 +43288,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708488, 55.554599], - [37.708488, 55.554689], - [37.708578, 55.554689], - [37.708578, 55.554599], - [37.708488, 55.554599] + [37.708493, 55.55451], + [37.708493, 55.5546], + [37.708582, 55.5546], + [37.708582, 55.55451], + [37.708493, 55.55451] ] ] } @@ -43368,11 +43304,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708488, 55.554689], - [37.708488, 55.554778], - [37.708578, 55.554778], - [37.708578, 55.554689], - [37.708488, 55.554689] + [37.708493, 55.5546], + [37.708493, 55.55469], + [37.708582, 55.55469], + [37.708582, 55.5546], + [37.708493, 55.5546] ] ] } @@ -43384,11 +43320,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708488, 55.554778], - [37.708488, 55.554868], - [37.708578, 55.554868], - [37.708578, 55.554778], - [37.708488, 55.554778] + [37.708493, 55.55469], + [37.708493, 55.55478], + [37.708582, 55.55478], + [37.708582, 55.55469], + [37.708493, 55.55469] ] ] } @@ -43400,11 +43336,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708488, 55.554868], - [37.708488, 55.554958], - [37.708578, 55.554958], - [37.708578, 55.554868], - [37.708488, 55.554868] + [37.708493, 55.55478], + [37.708493, 55.554869], + [37.708582, 55.554869], + [37.708582, 55.55478], + [37.708493, 55.55478] ] ] } @@ -43416,11 +43352,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708488, 55.554958], - [37.708488, 55.555048], - [37.708578, 55.555048], - [37.708578, 55.554958], - [37.708488, 55.554958] + [37.708493, 55.554869], + [37.708493, 55.554959], + [37.708582, 55.554959], + [37.708582, 55.554869], + [37.708493, 55.554869] ] ] } @@ -43432,11 +43368,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708488, 55.555048], - [37.708488, 55.555138], - [37.708578, 55.555138], - [37.708578, 55.555048], - [37.708488, 55.555048] + [37.708493, 55.554959], + [37.708493, 55.555049], + [37.708582, 55.555049], + [37.708582, 55.554959], + [37.708493, 55.554959] ] ] } @@ -43448,11 +43384,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708488, 55.555138], - [37.708488, 55.555228], - [37.708578, 55.555228], - [37.708578, 55.555138], - [37.708488, 55.555138] + [37.708493, 55.555049], + [37.708493, 55.555139], + [37.708582, 55.555139], + [37.708582, 55.555049], + [37.708493, 55.555049] ] ] } @@ -43464,11 +43400,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708488, 55.555228], - [37.708488, 55.555317], - [37.708578, 55.555317], - [37.708578, 55.555228], - [37.708488, 55.555228] + [37.708493, 55.555139], + [37.708493, 55.555229], + [37.708582, 55.555229], + [37.708582, 55.555139], + [37.708493, 55.555139] ] ] } @@ -43480,11 +43416,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708488, 55.555317], - [37.708488, 55.555407], - [37.708578, 55.555407], - [37.708578, 55.555317], - [37.708488, 55.555317] + [37.708493, 55.555229], + [37.708493, 55.555319], + [37.708582, 55.555319], + [37.708582, 55.555229], + [37.708493, 55.555229] ] ] } @@ -43496,11 +43432,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708488, 55.555407], - [37.708488, 55.555497], - [37.708578, 55.555497], - [37.708578, 55.555407], - [37.708488, 55.555407] + [37.708493, 55.555319], + [37.708493, 55.555409], + [37.708582, 55.555409], + [37.708582, 55.555319], + [37.708493, 55.555319] ] ] } @@ -43512,11 +43448,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708488, 55.555497], - [37.708488, 55.555587], - [37.708578, 55.555587], - [37.708578, 55.555497], - [37.708488, 55.555497] + [37.708493, 55.555409], + [37.708493, 55.555499], + [37.708582, 55.555499], + [37.708582, 55.555409], + [37.708493, 55.555409] ] ] } @@ -43528,11 +43464,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708488, 55.555587], - [37.708488, 55.555677], - [37.708578, 55.555677], - [37.708578, 55.555587], - [37.708488, 55.555587] + [37.708493, 55.555499], + [37.708493, 55.555589], + [37.708582, 55.555589], + [37.708582, 55.555499], + [37.708493, 55.555499] ] ] } @@ -43544,11 +43480,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708488, 55.555677], - [37.708488, 55.555767], - [37.708578, 55.555767], - [37.708578, 55.555677], - [37.708488, 55.555677] + [37.708493, 55.555589], + [37.708493, 55.555679], + [37.708582, 55.555679], + [37.708582, 55.555589], + [37.708493, 55.555589] ] ] } @@ -43560,11 +43496,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708488, 55.555767], - [37.708488, 55.555856], - [37.708578, 55.555856], - [37.708578, 55.555767], - [37.708488, 55.555767] + [37.708493, 55.555679], + [37.708493, 55.555769], + [37.708582, 55.555769], + [37.708582, 55.555679], + [37.708493, 55.555679] ] ] } @@ -43576,11 +43512,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708488, 55.555856], - [37.708488, 55.555946], - [37.708578, 55.555946], - [37.708578, 55.555856], - [37.708488, 55.555856] + [37.708493, 55.555769], + [37.708493, 55.555859], + [37.708582, 55.555859], + [37.708582, 55.555769], + [37.708493, 55.555769] ] ] } @@ -43592,11 +43528,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708488, 55.555946], - [37.708488, 55.556036], - [37.708578, 55.556036], - [37.708578, 55.555946], - [37.708488, 55.555946] + [37.708493, 55.555859], + [37.708493, 55.555949], + [37.708582, 55.555949], + [37.708582, 55.555859], + [37.708493, 55.555859] ] ] } @@ -43608,11 +43544,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708488, 55.556036], - [37.708488, 55.556126], - [37.708578, 55.556126], - [37.708578, 55.556036], - [37.708488, 55.556036] + [37.708493, 55.555949], + [37.708493, 55.556039], + [37.708582, 55.556039], + [37.708582, 55.555949], + [37.708493, 55.555949] ] ] } @@ -43624,11 +43560,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708578, 55.55397], - [37.708578, 55.55406], - [37.708668, 55.55406], - [37.708668, 55.55397], - [37.708578, 55.55397] + [37.708493, 55.556039], + [37.708493, 55.556128], + [37.708582, 55.556128], + [37.708582, 55.556039], + [37.708493, 55.556039] ] ] } @@ -43640,11 +43576,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708578, 55.55406], - [37.708578, 55.55415], - [37.708668, 55.55415], - [37.708668, 55.55406], - [37.708578, 55.55406] + [37.708582, 55.55406], + [37.708582, 55.55415], + [37.708672, 55.55415], + [37.708672, 55.55406], + [37.708582, 55.55406] ] ] } @@ -43656,11 +43592,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708578, 55.55415], - [37.708578, 55.554239], - [37.708668, 55.554239], - [37.708668, 55.55415], - [37.708578, 55.55415] + [37.708582, 55.55415], + [37.708582, 55.55424], + [37.708672, 55.55424], + [37.708672, 55.55415], + [37.708582, 55.55415] ] ] } @@ -43672,11 +43608,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708578, 55.554239], - [37.708578, 55.554329], - [37.708668, 55.554329], - [37.708668, 55.554239], - [37.708578, 55.554239] + [37.708582, 55.55424], + [37.708582, 55.55433], + [37.708672, 55.55433], + [37.708672, 55.55424], + [37.708582, 55.55424] ] ] } @@ -43688,11 +43624,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708578, 55.554329], - [37.708578, 55.554419], - [37.708668, 55.554419], - [37.708668, 55.554329], - [37.708578, 55.554329] + [37.708582, 55.55433], + [37.708582, 55.55442], + [37.708672, 55.55442], + [37.708672, 55.55433], + [37.708582, 55.55433] ] ] } @@ -43704,11 +43640,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708578, 55.554419], - [37.708578, 55.554509], - [37.708668, 55.554509], - [37.708668, 55.554419], - [37.708578, 55.554419] + [37.708582, 55.55442], + [37.708582, 55.55451], + [37.708672, 55.55451], + [37.708672, 55.55442], + [37.708582, 55.55442] ] ] } @@ -43720,11 +43656,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708578, 55.554509], - [37.708578, 55.554599], - [37.708668, 55.554599], - [37.708668, 55.554509], - [37.708578, 55.554509] + [37.708582, 55.55451], + [37.708582, 55.5546], + [37.708672, 55.5546], + [37.708672, 55.55451], + [37.708582, 55.55451] ] ] } @@ -43736,11 +43672,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708578, 55.554599], - [37.708578, 55.554689], - [37.708668, 55.554689], - [37.708668, 55.554599], - [37.708578, 55.554599] + [37.708582, 55.5546], + [37.708582, 55.55469], + [37.708672, 55.55469], + [37.708672, 55.5546], + [37.708582, 55.5546] ] ] } @@ -43752,11 +43688,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708578, 55.554689], - [37.708578, 55.554778], - [37.708668, 55.554778], - [37.708668, 55.554689], - [37.708578, 55.554689] + [37.708582, 55.55469], + [37.708582, 55.55478], + [37.708672, 55.55478], + [37.708672, 55.55469], + [37.708582, 55.55469] ] ] } @@ -43768,11 +43704,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708578, 55.554778], - [37.708578, 55.554868], - [37.708668, 55.554868], - [37.708668, 55.554778], - [37.708578, 55.554778] + [37.708582, 55.55478], + [37.708582, 55.554869], + [37.708672, 55.554869], + [37.708672, 55.55478], + [37.708582, 55.55478] ] ] } @@ -43784,11 +43720,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708578, 55.554868], - [37.708578, 55.554958], - [37.708668, 55.554958], - [37.708668, 55.554868], - [37.708578, 55.554868] + [37.708582, 55.554869], + [37.708582, 55.554959], + [37.708672, 55.554959], + [37.708672, 55.554869], + [37.708582, 55.554869] ] ] } @@ -43800,11 +43736,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708578, 55.554958], - [37.708578, 55.555048], - [37.708668, 55.555048], - [37.708668, 55.554958], - [37.708578, 55.554958] + [37.708582, 55.554959], + [37.708582, 55.555049], + [37.708672, 55.555049], + [37.708672, 55.554959], + [37.708582, 55.554959] ] ] } @@ -43816,11 +43752,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708578, 55.555048], - [37.708578, 55.555138], - [37.708668, 55.555138], - [37.708668, 55.555048], - [37.708578, 55.555048] + [37.708582, 55.555049], + [37.708582, 55.555139], + [37.708672, 55.555139], + [37.708672, 55.555049], + [37.708582, 55.555049] ] ] } @@ -43832,11 +43768,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708578, 55.555138], - [37.708578, 55.555228], - [37.708668, 55.555228], - [37.708668, 55.555138], - [37.708578, 55.555138] + [37.708582, 55.555139], + [37.708582, 55.555229], + [37.708672, 55.555229], + [37.708672, 55.555139], + [37.708582, 55.555139] ] ] } @@ -43848,11 +43784,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708578, 55.555228], - [37.708578, 55.555317], - [37.708668, 55.555317], - [37.708668, 55.555228], - [37.708578, 55.555228] + [37.708582, 55.555229], + [37.708582, 55.555319], + [37.708672, 55.555319], + [37.708672, 55.555229], + [37.708582, 55.555229] ] ] } @@ -43864,11 +43800,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708578, 55.555317], - [37.708578, 55.555407], - [37.708668, 55.555407], - [37.708668, 55.555317], - [37.708578, 55.555317] + [37.708582, 55.555319], + [37.708582, 55.555409], + [37.708672, 55.555409], + [37.708672, 55.555319], + [37.708582, 55.555319] ] ] } @@ -43880,11 +43816,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708578, 55.555407], - [37.708578, 55.555497], - [37.708668, 55.555497], - [37.708668, 55.555407], - [37.708578, 55.555407] + [37.708582, 55.555409], + [37.708582, 55.555499], + [37.708672, 55.555499], + [37.708672, 55.555409], + [37.708582, 55.555409] ] ] } @@ -43896,11 +43832,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708578, 55.555497], - [37.708578, 55.555587], - [37.708668, 55.555587], - [37.708668, 55.555497], - [37.708578, 55.555497] + [37.708582, 55.555499], + [37.708582, 55.555589], + [37.708672, 55.555589], + [37.708672, 55.555499], + [37.708582, 55.555499] ] ] } @@ -43912,11 +43848,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708578, 55.555587], - [37.708578, 55.555677], - [37.708668, 55.555677], - [37.708668, 55.555587], - [37.708578, 55.555587] + [37.708582, 55.555589], + [37.708582, 55.555679], + [37.708672, 55.555679], + [37.708672, 55.555589], + [37.708582, 55.555589] ] ] } @@ -43928,11 +43864,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708578, 55.555677], - [37.708578, 55.555767], - [37.708668, 55.555767], - [37.708668, 55.555677], - [37.708578, 55.555677] + [37.708582, 55.555679], + [37.708582, 55.555769], + [37.708672, 55.555769], + [37.708672, 55.555679], + [37.708582, 55.555679] ] ] } @@ -43944,11 +43880,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708578, 55.555767], - [37.708578, 55.555856], - [37.708668, 55.555856], - [37.708668, 55.555767], - [37.708578, 55.555767] + [37.708582, 55.555769], + [37.708582, 55.555859], + [37.708672, 55.555859], + [37.708672, 55.555769], + [37.708582, 55.555769] ] ] } @@ -43960,11 +43896,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708578, 55.555856], - [37.708578, 55.555946], - [37.708668, 55.555946], - [37.708668, 55.555856], - [37.708578, 55.555856] + [37.708582, 55.555859], + [37.708582, 55.555949], + [37.708672, 55.555949], + [37.708672, 55.555859], + [37.708582, 55.555859] ] ] } @@ -43976,11 +43912,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708578, 55.555946], - [37.708578, 55.556036], - [37.708668, 55.556036], - [37.708668, 55.555946], - [37.708578, 55.555946] + [37.708582, 55.555949], + [37.708582, 55.556039], + [37.708672, 55.556039], + [37.708672, 55.555949], + [37.708582, 55.555949] ] ] } @@ -43992,11 +43928,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708578, 55.556036], - [37.708578, 55.556126], - [37.708668, 55.556126], - [37.708668, 55.556036], - [37.708578, 55.556036] + [37.708582, 55.556039], + [37.708582, 55.556128], + [37.708672, 55.556128], + [37.708672, 55.556039], + [37.708582, 55.556039] ] ] } @@ -44008,11 +43944,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708668, 55.55415], - [37.708668, 55.554239], - [37.708758, 55.554239], - [37.708758, 55.55415], - [37.708668, 55.55415] + [37.708672, 55.55415], + [37.708672, 55.55424], + [37.708762, 55.55424], + [37.708762, 55.55415], + [37.708672, 55.55415] ] ] } @@ -44024,11 +43960,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708668, 55.554239], - [37.708668, 55.554329], - [37.708758, 55.554329], - [37.708758, 55.554239], - [37.708668, 55.554239] + [37.708672, 55.55424], + [37.708672, 55.55433], + [37.708762, 55.55433], + [37.708762, 55.55424], + [37.708672, 55.55424] ] ] } @@ -44040,11 +43976,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708668, 55.554329], - [37.708668, 55.554419], - [37.708758, 55.554419], - [37.708758, 55.554329], - [37.708668, 55.554329] + [37.708672, 55.55433], + [37.708672, 55.55442], + [37.708762, 55.55442], + [37.708762, 55.55433], + [37.708672, 55.55433] ] ] } @@ -44056,11 +43992,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708668, 55.554419], - [37.708668, 55.554509], - [37.708758, 55.554509], - [37.708758, 55.554419], - [37.708668, 55.554419] + [37.708672, 55.55442], + [37.708672, 55.55451], + [37.708762, 55.55451], + [37.708762, 55.55442], + [37.708672, 55.55442] ] ] } @@ -44072,11 +44008,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708668, 55.554509], - [37.708668, 55.554599], - [37.708758, 55.554599], - [37.708758, 55.554509], - [37.708668, 55.554509] + [37.708672, 55.55451], + [37.708672, 55.5546], + [37.708762, 55.5546], + [37.708762, 55.55451], + [37.708672, 55.55451] ] ] } @@ -44088,11 +44024,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708668, 55.554599], - [37.708668, 55.554689], - [37.708758, 55.554689], - [37.708758, 55.554599], - [37.708668, 55.554599] + [37.708672, 55.5546], + [37.708672, 55.55469], + [37.708762, 55.55469], + [37.708762, 55.5546], + [37.708672, 55.5546] ] ] } @@ -44104,11 +44040,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708668, 55.554689], - [37.708668, 55.554778], - [37.708758, 55.554778], - [37.708758, 55.554689], - [37.708668, 55.554689] + [37.708672, 55.55469], + [37.708672, 55.55478], + [37.708762, 55.55478], + [37.708762, 55.55469], + [37.708672, 55.55469] ] ] } @@ -44120,11 +44056,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708668, 55.554778], - [37.708668, 55.554868], - [37.708758, 55.554868], - [37.708758, 55.554778], - [37.708668, 55.554778] + [37.708672, 55.55478], + [37.708672, 55.554869], + [37.708762, 55.554869], + [37.708762, 55.55478], + [37.708672, 55.55478] ] ] } @@ -44136,11 +44072,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708668, 55.554868], - [37.708668, 55.554958], - [37.708758, 55.554958], - [37.708758, 55.554868], - [37.708668, 55.554868] + [37.708672, 55.554869], + [37.708672, 55.554959], + [37.708762, 55.554959], + [37.708762, 55.554869], + [37.708672, 55.554869] ] ] } @@ -44152,11 +44088,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708668, 55.554958], - [37.708668, 55.555048], - [37.708758, 55.555048], - [37.708758, 55.554958], - [37.708668, 55.554958] + [37.708672, 55.554959], + [37.708672, 55.555049], + [37.708762, 55.555049], + [37.708762, 55.554959], + [37.708672, 55.554959] ] ] } @@ -44168,11 +44104,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708668, 55.555048], - [37.708668, 55.555138], - [37.708758, 55.555138], - [37.708758, 55.555048], - [37.708668, 55.555048] + [37.708672, 55.555049], + [37.708672, 55.555139], + [37.708762, 55.555139], + [37.708762, 55.555049], + [37.708672, 55.555049] ] ] } @@ -44184,11 +44120,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708668, 55.555138], - [37.708668, 55.555228], - [37.708758, 55.555228], - [37.708758, 55.555138], - [37.708668, 55.555138] + [37.708672, 55.555139], + [37.708672, 55.555229], + [37.708762, 55.555229], + [37.708762, 55.555139], + [37.708672, 55.555139] ] ] } @@ -44200,11 +44136,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708668, 55.555228], - [37.708668, 55.555317], - [37.708758, 55.555317], - [37.708758, 55.555228], - [37.708668, 55.555228] + [37.708672, 55.555229], + [37.708672, 55.555319], + [37.708762, 55.555319], + [37.708762, 55.555229], + [37.708672, 55.555229] ] ] } @@ -44216,11 +44152,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708668, 55.555317], - [37.708668, 55.555407], - [37.708758, 55.555407], - [37.708758, 55.555317], - [37.708668, 55.555317] + [37.708672, 55.555319], + [37.708672, 55.555409], + [37.708762, 55.555409], + [37.708762, 55.555319], + [37.708672, 55.555319] ] ] } @@ -44232,11 +44168,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708668, 55.555407], - [37.708668, 55.555497], - [37.708758, 55.555497], - [37.708758, 55.555407], - [37.708668, 55.555407] + [37.708672, 55.555409], + [37.708672, 55.555499], + [37.708762, 55.555499], + [37.708762, 55.555409], + [37.708672, 55.555409] ] ] } @@ -44248,11 +44184,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708668, 55.555497], - [37.708668, 55.555587], - [37.708758, 55.555587], - [37.708758, 55.555497], - [37.708668, 55.555497] + [37.708672, 55.555499], + [37.708672, 55.555589], + [37.708762, 55.555589], + [37.708762, 55.555499], + [37.708672, 55.555499] ] ] } @@ -44264,11 +44200,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708668, 55.555587], - [37.708668, 55.555677], - [37.708758, 55.555677], - [37.708758, 55.555587], - [37.708668, 55.555587] + [37.708672, 55.555589], + [37.708672, 55.555679], + [37.708762, 55.555679], + [37.708762, 55.555589], + [37.708672, 55.555589] ] ] } @@ -44280,11 +44216,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708668, 55.555677], - [37.708668, 55.555767], - [37.708758, 55.555767], - [37.708758, 55.555677], - [37.708668, 55.555677] + [37.708672, 55.555679], + [37.708672, 55.555769], + [37.708762, 55.555769], + [37.708762, 55.555679], + [37.708672, 55.555679] ] ] } @@ -44296,11 +44232,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708668, 55.555767], - [37.708668, 55.555856], - [37.708758, 55.555856], - [37.708758, 55.555767], - [37.708668, 55.555767] + [37.708672, 55.555769], + [37.708672, 55.555859], + [37.708762, 55.555859], + [37.708762, 55.555769], + [37.708672, 55.555769] ] ] } @@ -44312,11 +44248,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708668, 55.555856], - [37.708668, 55.555946], - [37.708758, 55.555946], - [37.708758, 55.555856], - [37.708668, 55.555856] + [37.708672, 55.555859], + [37.708672, 55.555949], + [37.708762, 55.555949], + [37.708762, 55.555859], + [37.708672, 55.555859] ] ] } @@ -44328,11 +44264,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708668, 55.555946], - [37.708668, 55.556036], - [37.708758, 55.556036], - [37.708758, 55.555946], - [37.708668, 55.555946] + [37.708672, 55.555949], + [37.708672, 55.556039], + [37.708762, 55.556039], + [37.708762, 55.555949], + [37.708672, 55.555949] ] ] } @@ -44344,11 +44280,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708668, 55.556036], - [37.708668, 55.556126], - [37.708758, 55.556126], - [37.708758, 55.556036], - [37.708668, 55.556036] + [37.708672, 55.556039], + [37.708672, 55.556128], + [37.708762, 55.556128], + [37.708762, 55.556039], + [37.708672, 55.556039] ] ] } @@ -44360,11 +44296,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708758, 55.554239], - [37.708758, 55.554329], - [37.708847, 55.554329], - [37.708847, 55.554239], - [37.708758, 55.554239] + [37.708762, 55.55424], + [37.708762, 55.55433], + [37.708852, 55.55433], + [37.708852, 55.55424], + [37.708762, 55.55424] ] ] } @@ -44376,11 +44312,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708758, 55.554329], - [37.708758, 55.554419], - [37.708847, 55.554419], - [37.708847, 55.554329], - [37.708758, 55.554329] + [37.708762, 55.55433], + [37.708762, 55.55442], + [37.708852, 55.55442], + [37.708852, 55.55433], + [37.708762, 55.55433] ] ] } @@ -44392,11 +44328,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708758, 55.554419], - [37.708758, 55.554509], - [37.708847, 55.554509], - [37.708847, 55.554419], - [37.708758, 55.554419] + [37.708762, 55.55442], + [37.708762, 55.55451], + [37.708852, 55.55451], + [37.708852, 55.55442], + [37.708762, 55.55442] ] ] } @@ -44408,11 +44344,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708758, 55.554509], - [37.708758, 55.554599], - [37.708847, 55.554599], - [37.708847, 55.554509], - [37.708758, 55.554509] + [37.708762, 55.55451], + [37.708762, 55.5546], + [37.708852, 55.5546], + [37.708852, 55.55451], + [37.708762, 55.55451] ] ] } @@ -44424,11 +44360,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708758, 55.554599], - [37.708758, 55.554689], - [37.708847, 55.554689], - [37.708847, 55.554599], - [37.708758, 55.554599] + [37.708762, 55.5546], + [37.708762, 55.55469], + [37.708852, 55.55469], + [37.708852, 55.5546], + [37.708762, 55.5546] ] ] } @@ -44440,11 +44376,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708758, 55.554689], - [37.708758, 55.554778], - [37.708847, 55.554778], - [37.708847, 55.554689], - [37.708758, 55.554689] + [37.708762, 55.55469], + [37.708762, 55.55478], + [37.708852, 55.55478], + [37.708852, 55.55469], + [37.708762, 55.55469] ] ] } @@ -44456,11 +44392,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708758, 55.554778], - [37.708758, 55.554868], - [37.708847, 55.554868], - [37.708847, 55.554778], - [37.708758, 55.554778] + [37.708762, 55.55478], + [37.708762, 55.554869], + [37.708852, 55.554869], + [37.708852, 55.55478], + [37.708762, 55.55478] ] ] } @@ -44472,11 +44408,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708758, 55.554868], - [37.708758, 55.554958], - [37.708847, 55.554958], - [37.708847, 55.554868], - [37.708758, 55.554868] + [37.708762, 55.554869], + [37.708762, 55.554959], + [37.708852, 55.554959], + [37.708852, 55.554869], + [37.708762, 55.554869] ] ] } @@ -44488,11 +44424,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708758, 55.554958], - [37.708758, 55.555048], - [37.708847, 55.555048], - [37.708847, 55.554958], - [37.708758, 55.554958] + [37.708762, 55.554959], + [37.708762, 55.555049], + [37.708852, 55.555049], + [37.708852, 55.554959], + [37.708762, 55.554959] ] ] } @@ -44504,11 +44440,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708758, 55.555048], - [37.708758, 55.555138], - [37.708847, 55.555138], - [37.708847, 55.555048], - [37.708758, 55.555048] + [37.708762, 55.555049], + [37.708762, 55.555139], + [37.708852, 55.555139], + [37.708852, 55.555049], + [37.708762, 55.555049] ] ] } @@ -44520,11 +44456,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708758, 55.555138], - [37.708758, 55.555228], - [37.708847, 55.555228], - [37.708847, 55.555138], - [37.708758, 55.555138] + [37.708762, 55.555139], + [37.708762, 55.555229], + [37.708852, 55.555229], + [37.708852, 55.555139], + [37.708762, 55.555139] ] ] } @@ -44536,11 +44472,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708758, 55.555228], - [37.708758, 55.555317], - [37.708847, 55.555317], - [37.708847, 55.555228], - [37.708758, 55.555228] + [37.708762, 55.555229], + [37.708762, 55.555319], + [37.708852, 55.555319], + [37.708852, 55.555229], + [37.708762, 55.555229] ] ] } @@ -44552,11 +44488,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708758, 55.555317], - [37.708758, 55.555407], - [37.708847, 55.555407], - [37.708847, 55.555317], - [37.708758, 55.555317] + [37.708762, 55.555319], + [37.708762, 55.555409], + [37.708852, 55.555409], + [37.708852, 55.555319], + [37.708762, 55.555319] ] ] } @@ -44568,11 +44504,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708758, 55.555407], - [37.708758, 55.555497], - [37.708847, 55.555497], - [37.708847, 55.555407], - [37.708758, 55.555407] + [37.708762, 55.555409], + [37.708762, 55.555499], + [37.708852, 55.555499], + [37.708852, 55.555409], + [37.708762, 55.555409] ] ] } @@ -44584,11 +44520,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708758, 55.555497], - [37.708758, 55.555587], - [37.708847, 55.555587], - [37.708847, 55.555497], - [37.708758, 55.555497] + [37.708762, 55.555499], + [37.708762, 55.555589], + [37.708852, 55.555589], + [37.708852, 55.555499], + [37.708762, 55.555499] ] ] } @@ -44600,11 +44536,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708758, 55.555587], - [37.708758, 55.555677], - [37.708847, 55.555677], - [37.708847, 55.555587], - [37.708758, 55.555587] + [37.708762, 55.555589], + [37.708762, 55.555679], + [37.708852, 55.555679], + [37.708852, 55.555589], + [37.708762, 55.555589] ] ] } @@ -44616,11 +44552,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708758, 55.555677], - [37.708758, 55.555767], - [37.708847, 55.555767], - [37.708847, 55.555677], - [37.708758, 55.555677] + [37.708762, 55.555679], + [37.708762, 55.555769], + [37.708852, 55.555769], + [37.708852, 55.555679], + [37.708762, 55.555679] ] ] } @@ -44632,11 +44568,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708758, 55.555767], - [37.708758, 55.555856], - [37.708847, 55.555856], - [37.708847, 55.555767], - [37.708758, 55.555767] + [37.708762, 55.555769], + [37.708762, 55.555859], + [37.708852, 55.555859], + [37.708852, 55.555769], + [37.708762, 55.555769] ] ] } @@ -44648,11 +44584,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708758, 55.555856], - [37.708758, 55.555946], - [37.708847, 55.555946], - [37.708847, 55.555856], - [37.708758, 55.555856] + [37.708762, 55.555859], + [37.708762, 55.555949], + [37.708852, 55.555949], + [37.708852, 55.555859], + [37.708762, 55.555859] ] ] } @@ -44664,11 +44600,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708758, 55.555946], - [37.708758, 55.556036], - [37.708847, 55.556036], - [37.708847, 55.555946], - [37.708758, 55.555946] + [37.708762, 55.555949], + [37.708762, 55.556039], + [37.708852, 55.556039], + [37.708852, 55.555949], + [37.708762, 55.555949] ] ] } @@ -44680,11 +44616,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708758, 55.556036], - [37.708758, 55.556126], - [37.708847, 55.556126], - [37.708847, 55.556036], - [37.708758, 55.556036] + [37.708762, 55.556039], + [37.708762, 55.556128], + [37.708852, 55.556128], + [37.708852, 55.556039], + [37.708762, 55.556039] ] ] } @@ -44696,11 +44632,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708847, 55.554329], - [37.708847, 55.554419], - [37.708937, 55.554419], - [37.708937, 55.554329], - [37.708847, 55.554329] + [37.708852, 55.55433], + [37.708852, 55.55442], + [37.708942, 55.55442], + [37.708942, 55.55433], + [37.708852, 55.55433] ] ] } @@ -44712,11 +44648,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708847, 55.554419], - [37.708847, 55.554509], - [37.708937, 55.554509], - [37.708937, 55.554419], - [37.708847, 55.554419] + [37.708852, 55.55442], + [37.708852, 55.55451], + [37.708942, 55.55451], + [37.708942, 55.55442], + [37.708852, 55.55442] ] ] } @@ -44728,11 +44664,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708847, 55.554509], - [37.708847, 55.554599], - [37.708937, 55.554599], - [37.708937, 55.554509], - [37.708847, 55.554509] + [37.708852, 55.55451], + [37.708852, 55.5546], + [37.708942, 55.5546], + [37.708942, 55.55451], + [37.708852, 55.55451] ] ] } @@ -44744,11 +44680,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708847, 55.554599], - [37.708847, 55.554689], - [37.708937, 55.554689], - [37.708937, 55.554599], - [37.708847, 55.554599] + [37.708852, 55.5546], + [37.708852, 55.55469], + [37.708942, 55.55469], + [37.708942, 55.5546], + [37.708852, 55.5546] ] ] } @@ -44760,11 +44696,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708847, 55.554689], - [37.708847, 55.554778], - [37.708937, 55.554778], - [37.708937, 55.554689], - [37.708847, 55.554689] + [37.708852, 55.55469], + [37.708852, 55.55478], + [37.708942, 55.55478], + [37.708942, 55.55469], + [37.708852, 55.55469] ] ] } @@ -44776,11 +44712,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708847, 55.554778], - [37.708847, 55.554868], - [37.708937, 55.554868], - [37.708937, 55.554778], - [37.708847, 55.554778] + [37.708852, 55.55478], + [37.708852, 55.554869], + [37.708942, 55.554869], + [37.708942, 55.55478], + [37.708852, 55.55478] ] ] } @@ -44792,11 +44728,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708847, 55.554868], - [37.708847, 55.554958], - [37.708937, 55.554958], - [37.708937, 55.554868], - [37.708847, 55.554868] + [37.708852, 55.554869], + [37.708852, 55.554959], + [37.708942, 55.554959], + [37.708942, 55.554869], + [37.708852, 55.554869] ] ] } @@ -44808,11 +44744,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708847, 55.554958], - [37.708847, 55.555048], - [37.708937, 55.555048], - [37.708937, 55.554958], - [37.708847, 55.554958] + [37.708852, 55.554959], + [37.708852, 55.555049], + [37.708942, 55.555049], + [37.708942, 55.554959], + [37.708852, 55.554959] ] ] } @@ -44824,11 +44760,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708847, 55.555048], - [37.708847, 55.555138], - [37.708937, 55.555138], - [37.708937, 55.555048], - [37.708847, 55.555048] + [37.708852, 55.555049], + [37.708852, 55.555139], + [37.708942, 55.555139], + [37.708942, 55.555049], + [37.708852, 55.555049] ] ] } @@ -44840,11 +44776,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708847, 55.555138], - [37.708847, 55.555228], - [37.708937, 55.555228], - [37.708937, 55.555138], - [37.708847, 55.555138] + [37.708852, 55.555139], + [37.708852, 55.555229], + [37.708942, 55.555229], + [37.708942, 55.555139], + [37.708852, 55.555139] ] ] } @@ -44856,11 +44792,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708847, 55.555228], - [37.708847, 55.555317], - [37.708937, 55.555317], - [37.708937, 55.555228], - [37.708847, 55.555228] + [37.708852, 55.555229], + [37.708852, 55.555319], + [37.708942, 55.555319], + [37.708942, 55.555229], + [37.708852, 55.555229] ] ] } @@ -44872,11 +44808,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708847, 55.555317], - [37.708847, 55.555407], - [37.708937, 55.555407], - [37.708937, 55.555317], - [37.708847, 55.555317] + [37.708852, 55.555319], + [37.708852, 55.555409], + [37.708942, 55.555409], + [37.708942, 55.555319], + [37.708852, 55.555319] ] ] } @@ -44888,11 +44824,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708847, 55.555407], - [37.708847, 55.555497], - [37.708937, 55.555497], - [37.708937, 55.555407], - [37.708847, 55.555407] + [37.708852, 55.555409], + [37.708852, 55.555499], + [37.708942, 55.555499], + [37.708942, 55.555409], + [37.708852, 55.555409] ] ] } @@ -44904,11 +44840,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708847, 55.555497], - [37.708847, 55.555587], - [37.708937, 55.555587], - [37.708937, 55.555497], - [37.708847, 55.555497] + [37.708852, 55.555499], + [37.708852, 55.555589], + [37.708942, 55.555589], + [37.708942, 55.555499], + [37.708852, 55.555499] ] ] } @@ -44920,11 +44856,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708847, 55.555587], - [37.708847, 55.555677], - [37.708937, 55.555677], - [37.708937, 55.555587], - [37.708847, 55.555587] + [37.708852, 55.555589], + [37.708852, 55.555679], + [37.708942, 55.555679], + [37.708942, 55.555589], + [37.708852, 55.555589] ] ] } @@ -44936,11 +44872,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708847, 55.555677], - [37.708847, 55.555767], - [37.708937, 55.555767], - [37.708937, 55.555677], - [37.708847, 55.555677] + [37.708852, 55.555679], + [37.708852, 55.555769], + [37.708942, 55.555769], + [37.708942, 55.555679], + [37.708852, 55.555679] ] ] } @@ -44952,11 +44888,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708847, 55.555767], - [37.708847, 55.555856], - [37.708937, 55.555856], - [37.708937, 55.555767], - [37.708847, 55.555767] + [37.708852, 55.555769], + [37.708852, 55.555859], + [37.708942, 55.555859], + [37.708942, 55.555769], + [37.708852, 55.555769] ] ] } @@ -44968,11 +44904,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708847, 55.555856], - [37.708847, 55.555946], - [37.708937, 55.555946], - [37.708937, 55.555856], - [37.708847, 55.555856] + [37.708852, 55.555859], + [37.708852, 55.555949], + [37.708942, 55.555949], + [37.708942, 55.555859], + [37.708852, 55.555859] ] ] } @@ -44984,11 +44920,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708847, 55.555946], - [37.708847, 55.556036], - [37.708937, 55.556036], - [37.708937, 55.555946], - [37.708847, 55.555946] + [37.708852, 55.555949], + [37.708852, 55.556039], + [37.708942, 55.556039], + [37.708942, 55.555949], + [37.708852, 55.555949] ] ] } @@ -45000,11 +44936,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708847, 55.556036], - [37.708847, 55.556126], - [37.708937, 55.556126], - [37.708937, 55.556036], - [37.708847, 55.556036] + [37.708852, 55.556039], + [37.708852, 55.556128], + [37.708942, 55.556128], + [37.708942, 55.556039], + [37.708852, 55.556039] ] ] } @@ -45016,11 +44952,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708937, 55.554419], - [37.708937, 55.554509], - [37.709027, 55.554509], - [37.709027, 55.554419], - [37.708937, 55.554419] + [37.708942, 55.55442], + [37.708942, 55.55451], + [37.709032, 55.55451], + [37.709032, 55.55442], + [37.708942, 55.55442] ] ] } @@ -45032,11 +44968,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708937, 55.554509], - [37.708937, 55.554599], - [37.709027, 55.554599], - [37.709027, 55.554509], - [37.708937, 55.554509] + [37.708942, 55.55451], + [37.708942, 55.5546], + [37.709032, 55.5546], + [37.709032, 55.55451], + [37.708942, 55.55451] ] ] } @@ -45048,11 +44984,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708937, 55.554599], - [37.708937, 55.554689], - [37.709027, 55.554689], - [37.709027, 55.554599], - [37.708937, 55.554599] + [37.708942, 55.5546], + [37.708942, 55.55469], + [37.709032, 55.55469], + [37.709032, 55.5546], + [37.708942, 55.5546] ] ] } @@ -45064,11 +45000,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708937, 55.554689], - [37.708937, 55.554778], - [37.709027, 55.554778], - [37.709027, 55.554689], - [37.708937, 55.554689] + [37.708942, 55.55469], + [37.708942, 55.55478], + [37.709032, 55.55478], + [37.709032, 55.55469], + [37.708942, 55.55469] ] ] } @@ -45080,11 +45016,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708937, 55.554778], - [37.708937, 55.554868], - [37.709027, 55.554868], - [37.709027, 55.554778], - [37.708937, 55.554778] + [37.708942, 55.55478], + [37.708942, 55.554869], + [37.709032, 55.554869], + [37.709032, 55.55478], + [37.708942, 55.55478] ] ] } @@ -45096,11 +45032,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708937, 55.554868], - [37.708937, 55.554958], - [37.709027, 55.554958], - [37.709027, 55.554868], - [37.708937, 55.554868] + [37.708942, 55.554869], + [37.708942, 55.554959], + [37.709032, 55.554959], + [37.709032, 55.554869], + [37.708942, 55.554869] ] ] } @@ -45112,11 +45048,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708937, 55.554958], - [37.708937, 55.555048], - [37.709027, 55.555048], - [37.709027, 55.554958], - [37.708937, 55.554958] + [37.708942, 55.554959], + [37.708942, 55.555049], + [37.709032, 55.555049], + [37.709032, 55.554959], + [37.708942, 55.554959] ] ] } @@ -45128,11 +45064,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708937, 55.555048], - [37.708937, 55.555138], - [37.709027, 55.555138], - [37.709027, 55.555048], - [37.708937, 55.555048] + [37.708942, 55.555049], + [37.708942, 55.555139], + [37.709032, 55.555139], + [37.709032, 55.555049], + [37.708942, 55.555049] ] ] } @@ -45144,11 +45080,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708937, 55.555138], - [37.708937, 55.555228], - [37.709027, 55.555228], - [37.709027, 55.555138], - [37.708937, 55.555138] + [37.708942, 55.555139], + [37.708942, 55.555229], + [37.709032, 55.555229], + [37.709032, 55.555139], + [37.708942, 55.555139] ] ] } @@ -45160,11 +45096,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708937, 55.555228], - [37.708937, 55.555317], - [37.709027, 55.555317], - [37.709027, 55.555228], - [37.708937, 55.555228] + [37.708942, 55.555229], + [37.708942, 55.555319], + [37.709032, 55.555319], + [37.709032, 55.555229], + [37.708942, 55.555229] ] ] } @@ -45176,11 +45112,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708937, 55.555317], - [37.708937, 55.555407], - [37.709027, 55.555407], - [37.709027, 55.555317], - [37.708937, 55.555317] + [37.708942, 55.555319], + [37.708942, 55.555409], + [37.709032, 55.555409], + [37.709032, 55.555319], + [37.708942, 55.555319] ] ] } @@ -45192,11 +45128,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708937, 55.555407], - [37.708937, 55.555497], - [37.709027, 55.555497], - [37.709027, 55.555407], - [37.708937, 55.555407] + [37.708942, 55.555409], + [37.708942, 55.555499], + [37.709032, 55.555499], + [37.709032, 55.555409], + [37.708942, 55.555409] ] ] } @@ -45208,11 +45144,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708937, 55.555497], - [37.708937, 55.555587], - [37.709027, 55.555587], - [37.709027, 55.555497], - [37.708937, 55.555497] + [37.708942, 55.555499], + [37.708942, 55.555589], + [37.709032, 55.555589], + [37.709032, 55.555499], + [37.708942, 55.555499] ] ] } @@ -45224,11 +45160,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708937, 55.555587], - [37.708937, 55.555677], - [37.709027, 55.555677], - [37.709027, 55.555587], - [37.708937, 55.555587] + [37.708942, 55.555589], + [37.708942, 55.555679], + [37.709032, 55.555679], + [37.709032, 55.555589], + [37.708942, 55.555589] ] ] } @@ -45240,11 +45176,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708937, 55.555677], - [37.708937, 55.555767], - [37.709027, 55.555767], - [37.709027, 55.555677], - [37.708937, 55.555677] + [37.708942, 55.555679], + [37.708942, 55.555769], + [37.709032, 55.555769], + [37.709032, 55.555679], + [37.708942, 55.555679] ] ] } @@ -45256,11 +45192,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708937, 55.555767], - [37.708937, 55.555856], - [37.709027, 55.555856], - [37.709027, 55.555767], - [37.708937, 55.555767] + [37.708942, 55.555769], + [37.708942, 55.555859], + [37.709032, 55.555859], + [37.709032, 55.555769], + [37.708942, 55.555769] ] ] } @@ -45272,11 +45208,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708937, 55.555856], - [37.708937, 55.555946], - [37.709027, 55.555946], - [37.709027, 55.555856], - [37.708937, 55.555856] + [37.708942, 55.555859], + [37.708942, 55.555949], + [37.709032, 55.555949], + [37.709032, 55.555859], + [37.708942, 55.555859] ] ] } @@ -45288,11 +45224,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708937, 55.555946], - [37.708937, 55.556036], - [37.709027, 55.556036], - [37.709027, 55.555946], - [37.708937, 55.555946] + [37.708942, 55.555949], + [37.708942, 55.556039], + [37.709032, 55.556039], + [37.709032, 55.555949], + [37.708942, 55.555949] ] ] } @@ -45304,11 +45240,11 @@ "type": "Polygon", "coordinates": [ [ - [37.708937, 55.556036], - [37.708937, 55.556126], - [37.709027, 55.556126], - [37.709027, 55.556036], - [37.708937, 55.556036] + [37.708942, 55.556039], + [37.708942, 55.556128], + [37.709032, 55.556128], + [37.709032, 55.556039], + [37.708942, 55.556039] ] ] } @@ -45320,11 +45256,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709027, 55.554599], - [37.709027, 55.554689], - [37.709117, 55.554689], - [37.709117, 55.554599], - [37.709027, 55.554599] + [37.709032, 55.5546], + [37.709032, 55.55469], + [37.709122, 55.55469], + [37.709122, 55.5546], + [37.709032, 55.5546] ] ] } @@ -45336,11 +45272,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709027, 55.554689], - [37.709027, 55.554778], - [37.709117, 55.554778], - [37.709117, 55.554689], - [37.709027, 55.554689] + [37.709032, 55.55469], + [37.709032, 55.55478], + [37.709122, 55.55478], + [37.709122, 55.55469], + [37.709032, 55.55469] ] ] } @@ -45352,11 +45288,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709027, 55.554778], - [37.709027, 55.554868], - [37.709117, 55.554868], - [37.709117, 55.554778], - [37.709027, 55.554778] + [37.709032, 55.55478], + [37.709032, 55.554869], + [37.709122, 55.554869], + [37.709122, 55.55478], + [37.709032, 55.55478] ] ] } @@ -45368,11 +45304,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709027, 55.554868], - [37.709027, 55.554958], - [37.709117, 55.554958], - [37.709117, 55.554868], - [37.709027, 55.554868] + [37.709032, 55.554869], + [37.709032, 55.554959], + [37.709122, 55.554959], + [37.709122, 55.554869], + [37.709032, 55.554869] ] ] } @@ -45384,11 +45320,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709027, 55.554958], - [37.709027, 55.555048], - [37.709117, 55.555048], - [37.709117, 55.554958], - [37.709027, 55.554958] + [37.709032, 55.554959], + [37.709032, 55.555049], + [37.709122, 55.555049], + [37.709122, 55.554959], + [37.709032, 55.554959] ] ] } @@ -45400,11 +45336,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709027, 55.555048], - [37.709027, 55.555138], - [37.709117, 55.555138], - [37.709117, 55.555048], - [37.709027, 55.555048] + [37.709032, 55.555049], + [37.709032, 55.555139], + [37.709122, 55.555139], + [37.709122, 55.555049], + [37.709032, 55.555049] ] ] } @@ -45416,11 +45352,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709027, 55.555138], - [37.709027, 55.555228], - [37.709117, 55.555228], - [37.709117, 55.555138], - [37.709027, 55.555138] + [37.709032, 55.555139], + [37.709032, 55.555229], + [37.709122, 55.555229], + [37.709122, 55.555139], + [37.709032, 55.555139] ] ] } @@ -45432,11 +45368,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709027, 55.555228], - [37.709027, 55.555317], - [37.709117, 55.555317], - [37.709117, 55.555228], - [37.709027, 55.555228] + [37.709032, 55.555229], + [37.709032, 55.555319], + [37.709122, 55.555319], + [37.709122, 55.555229], + [37.709032, 55.555229] ] ] } @@ -45448,11 +45384,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709027, 55.555317], - [37.709027, 55.555407], - [37.709117, 55.555407], - [37.709117, 55.555317], - [37.709027, 55.555317] + [37.709032, 55.555319], + [37.709032, 55.555409], + [37.709122, 55.555409], + [37.709122, 55.555319], + [37.709032, 55.555319] ] ] } @@ -45464,11 +45400,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709027, 55.555407], - [37.709027, 55.555497], - [37.709117, 55.555497], - [37.709117, 55.555407], - [37.709027, 55.555407] + [37.709032, 55.555409], + [37.709032, 55.555499], + [37.709122, 55.555499], + [37.709122, 55.555409], + [37.709032, 55.555409] ] ] } @@ -45480,11 +45416,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709027, 55.555497], - [37.709027, 55.555587], - [37.709117, 55.555587], - [37.709117, 55.555497], - [37.709027, 55.555497] + [37.709032, 55.555499], + [37.709032, 55.555589], + [37.709122, 55.555589], + [37.709122, 55.555499], + [37.709032, 55.555499] ] ] } @@ -45496,11 +45432,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709027, 55.555587], - [37.709027, 55.555677], - [37.709117, 55.555677], - [37.709117, 55.555587], - [37.709027, 55.555587] + [37.709032, 55.555589], + [37.709032, 55.555679], + [37.709122, 55.555679], + [37.709122, 55.555589], + [37.709032, 55.555589] ] ] } @@ -45512,11 +45448,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709027, 55.555677], - [37.709027, 55.555767], - [37.709117, 55.555767], - [37.709117, 55.555677], - [37.709027, 55.555677] + [37.709032, 55.555679], + [37.709032, 55.555769], + [37.709122, 55.555769], + [37.709122, 55.555679], + [37.709032, 55.555679] ] ] } @@ -45528,11 +45464,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709027, 55.555767], - [37.709027, 55.555856], - [37.709117, 55.555856], - [37.709117, 55.555767], - [37.709027, 55.555767] + [37.709032, 55.555769], + [37.709032, 55.555859], + [37.709122, 55.555859], + [37.709122, 55.555769], + [37.709032, 55.555769] ] ] } @@ -45544,11 +45480,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709027, 55.555856], - [37.709027, 55.555946], - [37.709117, 55.555946], - [37.709117, 55.555856], - [37.709027, 55.555856] + [37.709032, 55.555859], + [37.709032, 55.555949], + [37.709122, 55.555949], + [37.709122, 55.555859], + [37.709032, 55.555859] ] ] } @@ -45560,11 +45496,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709027, 55.555946], - [37.709027, 55.556036], - [37.709117, 55.556036], - [37.709117, 55.555946], - [37.709027, 55.555946] + [37.709032, 55.555949], + [37.709032, 55.556039], + [37.709122, 55.556039], + [37.709122, 55.555949], + [37.709032, 55.555949] ] ] } @@ -45576,11 +45512,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709117, 55.554689], - [37.709117, 55.554778], - [37.709207, 55.554778], - [37.709207, 55.554689], - [37.709117, 55.554689] + [37.709122, 55.55469], + [37.709122, 55.55478], + [37.709212, 55.55478], + [37.709212, 55.55469], + [37.709122, 55.55469] ] ] } @@ -45592,11 +45528,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709117, 55.554778], - [37.709117, 55.554868], - [37.709207, 55.554868], - [37.709207, 55.554778], - [37.709117, 55.554778] + [37.709122, 55.55478], + [37.709122, 55.554869], + [37.709212, 55.554869], + [37.709212, 55.55478], + [37.709122, 55.55478] ] ] } @@ -45608,11 +45544,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709117, 55.554868], - [37.709117, 55.554958], - [37.709207, 55.554958], - [37.709207, 55.554868], - [37.709117, 55.554868] + [37.709122, 55.554869], + [37.709122, 55.554959], + [37.709212, 55.554959], + [37.709212, 55.554869], + [37.709122, 55.554869] ] ] } @@ -45624,11 +45560,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709117, 55.554958], - [37.709117, 55.555048], - [37.709207, 55.555048], - [37.709207, 55.554958], - [37.709117, 55.554958] + [37.709122, 55.554959], + [37.709122, 55.555049], + [37.709212, 55.555049], + [37.709212, 55.554959], + [37.709122, 55.554959] ] ] } @@ -45640,11 +45576,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709117, 55.555048], - [37.709117, 55.555138], - [37.709207, 55.555138], - [37.709207, 55.555048], - [37.709117, 55.555048] + [37.709122, 55.555049], + [37.709122, 55.555139], + [37.709212, 55.555139], + [37.709212, 55.555049], + [37.709122, 55.555049] ] ] } @@ -45656,11 +45592,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709117, 55.555138], - [37.709117, 55.555228], - [37.709207, 55.555228], - [37.709207, 55.555138], - [37.709117, 55.555138] + [37.709122, 55.555139], + [37.709122, 55.555229], + [37.709212, 55.555229], + [37.709212, 55.555139], + [37.709122, 55.555139] ] ] } @@ -45672,11 +45608,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709117, 55.555228], - [37.709117, 55.555317], - [37.709207, 55.555317], - [37.709207, 55.555228], - [37.709117, 55.555228] + [37.709122, 55.555229], + [37.709122, 55.555319], + [37.709212, 55.555319], + [37.709212, 55.555229], + [37.709122, 55.555229] ] ] } @@ -45688,11 +45624,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709117, 55.555317], - [37.709117, 55.555407], - [37.709207, 55.555407], - [37.709207, 55.555317], - [37.709117, 55.555317] + [37.709122, 55.555319], + [37.709122, 55.555409], + [37.709212, 55.555409], + [37.709212, 55.555319], + [37.709122, 55.555319] ] ] } @@ -45704,11 +45640,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709117, 55.555407], - [37.709117, 55.555497], - [37.709207, 55.555497], - [37.709207, 55.555407], - [37.709117, 55.555407] + [37.709122, 55.555409], + [37.709122, 55.555499], + [37.709212, 55.555499], + [37.709212, 55.555409], + [37.709122, 55.555409] ] ] } @@ -45720,11 +45656,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709117, 55.555497], - [37.709117, 55.555587], - [37.709207, 55.555587], - [37.709207, 55.555497], - [37.709117, 55.555497] + [37.709122, 55.555499], + [37.709122, 55.555589], + [37.709212, 55.555589], + [37.709212, 55.555499], + [37.709122, 55.555499] ] ] } @@ -45736,11 +45672,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709117, 55.555587], - [37.709117, 55.555677], - [37.709207, 55.555677], - [37.709207, 55.555587], - [37.709117, 55.555587] + [37.709122, 55.555589], + [37.709122, 55.555679], + [37.709212, 55.555679], + [37.709212, 55.555589], + [37.709122, 55.555589] ] ] } @@ -45752,11 +45688,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709117, 55.555677], - [37.709117, 55.555767], - [37.709207, 55.555767], - [37.709207, 55.555677], - [37.709117, 55.555677] + [37.709122, 55.555679], + [37.709122, 55.555769], + [37.709212, 55.555769], + [37.709212, 55.555679], + [37.709122, 55.555679] ] ] } @@ -45768,11 +45704,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709117, 55.555767], - [37.709117, 55.555856], - [37.709207, 55.555856], - [37.709207, 55.555767], - [37.709117, 55.555767] + [37.709122, 55.555769], + [37.709122, 55.555859], + [37.709212, 55.555859], + [37.709212, 55.555769], + [37.709122, 55.555769] ] ] } @@ -45784,11 +45720,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709117, 55.555856], - [37.709117, 55.555946], - [37.709207, 55.555946], - [37.709207, 55.555856], - [37.709117, 55.555856] + [37.709122, 55.555859], + [37.709122, 55.555949], + [37.709212, 55.555949], + [37.709212, 55.555859], + [37.709122, 55.555859] ] ] } @@ -45800,11 +45736,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709207, 55.554778], - [37.709207, 55.554868], - [37.709297, 55.554868], - [37.709297, 55.554778], - [37.709207, 55.554778] + [37.709212, 55.55478], + [37.709212, 55.554869], + [37.709302, 55.554869], + [37.709302, 55.55478], + [37.709212, 55.55478] ] ] } @@ -45816,11 +45752,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709207, 55.554868], - [37.709207, 55.554958], - [37.709297, 55.554958], - [37.709297, 55.554868], - [37.709207, 55.554868] + [37.709212, 55.554869], + [37.709212, 55.554959], + [37.709302, 55.554959], + [37.709302, 55.554869], + [37.709212, 55.554869] ] ] } @@ -45832,11 +45768,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709207, 55.554958], - [37.709207, 55.555048], - [37.709297, 55.555048], - [37.709297, 55.554958], - [37.709207, 55.554958] + [37.709212, 55.554959], + [37.709212, 55.555049], + [37.709302, 55.555049], + [37.709302, 55.554959], + [37.709212, 55.554959] ] ] } @@ -45848,11 +45784,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709207, 55.555048], - [37.709207, 55.555138], - [37.709297, 55.555138], - [37.709297, 55.555048], - [37.709207, 55.555048] + [37.709212, 55.555049], + [37.709212, 55.555139], + [37.709302, 55.555139], + [37.709302, 55.555049], + [37.709212, 55.555049] ] ] } @@ -45864,11 +45800,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709207, 55.555138], - [37.709207, 55.555228], - [37.709297, 55.555228], - [37.709297, 55.555138], - [37.709207, 55.555138] + [37.709212, 55.555139], + [37.709212, 55.555229], + [37.709302, 55.555229], + [37.709302, 55.555139], + [37.709212, 55.555139] ] ] } @@ -45880,11 +45816,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709207, 55.555228], - [37.709207, 55.555317], - [37.709297, 55.555317], - [37.709297, 55.555228], - [37.709207, 55.555228] + [37.709212, 55.555229], + [37.709212, 55.555319], + [37.709302, 55.555319], + [37.709302, 55.555229], + [37.709212, 55.555229] ] ] } @@ -45896,11 +45832,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709207, 55.555317], - [37.709207, 55.555407], - [37.709297, 55.555407], - [37.709297, 55.555317], - [37.709207, 55.555317] + [37.709212, 55.555319], + [37.709212, 55.555409], + [37.709302, 55.555409], + [37.709302, 55.555319], + [37.709212, 55.555319] ] ] } @@ -45912,11 +45848,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709207, 55.555407], - [37.709207, 55.555497], - [37.709297, 55.555497], - [37.709297, 55.555407], - [37.709207, 55.555407] + [37.709212, 55.555409], + [37.709212, 55.555499], + [37.709302, 55.555499], + [37.709302, 55.555409], + [37.709212, 55.555409] ] ] } @@ -45928,11 +45864,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709207, 55.555497], - [37.709207, 55.555587], - [37.709297, 55.555587], - [37.709297, 55.555497], - [37.709207, 55.555497] + [37.709212, 55.555499], + [37.709212, 55.555589], + [37.709302, 55.555589], + [37.709302, 55.555499], + [37.709212, 55.555499] ] ] } @@ -45944,11 +45880,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709207, 55.555587], - [37.709207, 55.555677], - [37.709297, 55.555677], - [37.709297, 55.555587], - [37.709207, 55.555587] + [37.709212, 55.555589], + [37.709212, 55.555679], + [37.709302, 55.555679], + [37.709302, 55.555589], + [37.709212, 55.555589] ] ] } @@ -45960,11 +45896,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709207, 55.555677], - [37.709207, 55.555767], - [37.709297, 55.555767], - [37.709297, 55.555677], - [37.709207, 55.555677] + [37.709212, 55.555679], + [37.709212, 55.555769], + [37.709302, 55.555769], + [37.709302, 55.555679], + [37.709212, 55.555679] ] ] } @@ -45976,11 +45912,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709207, 55.555767], - [37.709207, 55.555856], - [37.709297, 55.555856], - [37.709297, 55.555767], - [37.709207, 55.555767] + [37.709212, 55.555769], + [37.709212, 55.555859], + [37.709302, 55.555859], + [37.709302, 55.555769], + [37.709212, 55.555769] ] ] } @@ -45992,11 +45928,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709207, 55.555856], - [37.709207, 55.555946], - [37.709297, 55.555946], - [37.709297, 55.555856], - [37.709207, 55.555856] + [37.709212, 55.555859], + [37.709212, 55.555949], + [37.709302, 55.555949], + [37.709302, 55.555859], + [37.709212, 55.555859] ] ] } @@ -46008,11 +45944,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709297, 55.554868], - [37.709297, 55.554958], - [37.709386, 55.554958], - [37.709386, 55.554868], - [37.709297, 55.554868] + [37.709302, 55.554869], + [37.709302, 55.554959], + [37.709392, 55.554959], + [37.709392, 55.554869], + [37.709302, 55.554869] ] ] } @@ -46024,11 +45960,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709297, 55.554958], - [37.709297, 55.555048], - [37.709386, 55.555048], - [37.709386, 55.554958], - [37.709297, 55.554958] + [37.709302, 55.554959], + [37.709302, 55.555049], + [37.709392, 55.555049], + [37.709392, 55.554959], + [37.709302, 55.554959] ] ] } @@ -46040,11 +45976,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709297, 55.555048], - [37.709297, 55.555138], - [37.709386, 55.555138], - [37.709386, 55.555048], - [37.709297, 55.555048] + [37.709302, 55.555049], + [37.709302, 55.555139], + [37.709392, 55.555139], + [37.709392, 55.555049], + [37.709302, 55.555049] ] ] } @@ -46056,11 +45992,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709297, 55.555138], - [37.709297, 55.555228], - [37.709386, 55.555228], - [37.709386, 55.555138], - [37.709297, 55.555138] + [37.709302, 55.555139], + [37.709302, 55.555229], + [37.709392, 55.555229], + [37.709392, 55.555139], + [37.709302, 55.555139] ] ] } @@ -46072,11 +46008,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709297, 55.555228], - [37.709297, 55.555317], - [37.709386, 55.555317], - [37.709386, 55.555228], - [37.709297, 55.555228] + [37.709302, 55.555229], + [37.709302, 55.555319], + [37.709392, 55.555319], + [37.709392, 55.555229], + [37.709302, 55.555229] ] ] } @@ -46088,11 +46024,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709297, 55.555317], - [37.709297, 55.555407], - [37.709386, 55.555407], - [37.709386, 55.555317], - [37.709297, 55.555317] + [37.709302, 55.555319], + [37.709302, 55.555409], + [37.709392, 55.555409], + [37.709392, 55.555319], + [37.709302, 55.555319] ] ] } @@ -46104,11 +46040,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709297, 55.555407], - [37.709297, 55.555497], - [37.709386, 55.555497], - [37.709386, 55.555407], - [37.709297, 55.555407] + [37.709302, 55.555409], + [37.709302, 55.555499], + [37.709392, 55.555499], + [37.709392, 55.555409], + [37.709302, 55.555409] ] ] } @@ -46120,11 +46056,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709297, 55.555497], - [37.709297, 55.555587], - [37.709386, 55.555587], - [37.709386, 55.555497], - [37.709297, 55.555497] + [37.709302, 55.555499], + [37.709302, 55.555589], + [37.709392, 55.555589], + [37.709392, 55.555499], + [37.709302, 55.555499] ] ] } @@ -46136,11 +46072,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709297, 55.555587], - [37.709297, 55.555677], - [37.709386, 55.555677], - [37.709386, 55.555587], - [37.709297, 55.555587] + [37.709302, 55.555589], + [37.709302, 55.555679], + [37.709392, 55.555679], + [37.709392, 55.555589], + [37.709302, 55.555589] ] ] } @@ -46152,11 +46088,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709297, 55.555677], - [37.709297, 55.555767], - [37.709386, 55.555767], - [37.709386, 55.555677], - [37.709297, 55.555677] + [37.709302, 55.555679], + [37.709302, 55.555769], + [37.709392, 55.555769], + [37.709392, 55.555679], + [37.709302, 55.555679] ] ] } @@ -46168,11 +46104,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709386, 55.555048], - [37.709386, 55.555138], - [37.709476, 55.555138], - [37.709476, 55.555048], - [37.709386, 55.555048] + [37.709392, 55.555049], + [37.709392, 55.555139], + [37.709482, 55.555139], + [37.709482, 55.555049], + [37.709392, 55.555049] ] ] } @@ -46184,11 +46120,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709386, 55.555138], - [37.709386, 55.555228], - [37.709476, 55.555228], - [37.709476, 55.555138], - [37.709386, 55.555138] + [37.709392, 55.555139], + [37.709392, 55.555229], + [37.709482, 55.555229], + [37.709482, 55.555139], + [37.709392, 55.555139] ] ] } @@ -46200,11 +46136,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709386, 55.555228], - [37.709386, 55.555317], - [37.709476, 55.555317], - [37.709476, 55.555228], - [37.709386, 55.555228] + [37.709392, 55.555229], + [37.709392, 55.555319], + [37.709482, 55.555319], + [37.709482, 55.555229], + [37.709392, 55.555229] ] ] } @@ -46216,11 +46152,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709386, 55.555317], - [37.709386, 55.555407], - [37.709476, 55.555407], - [37.709476, 55.555317], - [37.709386, 55.555317] + [37.709392, 55.555319], + [37.709392, 55.555409], + [37.709482, 55.555409], + [37.709482, 55.555319], + [37.709392, 55.555319] ] ] } @@ -46232,11 +46168,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709386, 55.555407], - [37.709386, 55.555497], - [37.709476, 55.555497], - [37.709476, 55.555407], - [37.709386, 55.555407] + [37.709392, 55.555409], + [37.709392, 55.555499], + [37.709482, 55.555499], + [37.709482, 55.555409], + [37.709392, 55.555409] ] ] } @@ -46248,11 +46184,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709386, 55.555497], - [37.709386, 55.555587], - [37.709476, 55.555587], - [37.709476, 55.555497], - [37.709386, 55.555497] + [37.709392, 55.555499], + [37.709392, 55.555589], + [37.709482, 55.555589], + [37.709482, 55.555499], + [37.709392, 55.555499] ] ] } @@ -46264,11 +46200,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709386, 55.555587], - [37.709386, 55.555677], - [37.709476, 55.555677], - [37.709476, 55.555587], - [37.709386, 55.555587] + [37.709392, 55.555589], + [37.709392, 55.555679], + [37.709482, 55.555679], + [37.709482, 55.555589], + [37.709392, 55.555589] ] ] } @@ -46280,11 +46216,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709476, 55.555138], - [37.709476, 55.555228], - [37.709566, 55.555228], - [37.709566, 55.555138], - [37.709476, 55.555138] + [37.709482, 55.555139], + [37.709482, 55.555229], + [37.709572, 55.555229], + [37.709572, 55.555139], + [37.709482, 55.555139] ] ] } @@ -46296,11 +46232,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709476, 55.555228], - [37.709476, 55.555317], - [37.709566, 55.555317], - [37.709566, 55.555228], - [37.709476, 55.555228] + [37.709482, 55.555229], + [37.709482, 55.555319], + [37.709572, 55.555319], + [37.709572, 55.555229], + [37.709482, 55.555229] ] ] } @@ -46312,11 +46248,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709476, 55.555317], - [37.709476, 55.555407], - [37.709566, 55.555407], - [37.709566, 55.555317], - [37.709476, 55.555317] + [37.709482, 55.555319], + [37.709482, 55.555409], + [37.709572, 55.555409], + [37.709572, 55.555319], + [37.709482, 55.555319] ] ] } @@ -46328,11 +46264,11 @@ "type": "Polygon", "coordinates": [ [ - [37.709476, 55.555407], - [37.709476, 55.555497], - [37.709566, 55.555497], - [37.709566, 55.555407], - [37.709476, 55.555407] + [37.709482, 55.555409], + [37.709482, 55.555499], + [37.709572, 55.555499], + [37.709572, 55.555409], + [37.709482, 55.555409] ] ] } diff --git a/packages/turf-square-grid/test/out/london-20-miles.geojson b/packages/turf-square-grid/test/out/london-20-miles.geojson index 0adf5a3a4b..2f8e94f67f 100644 --- a/packages/turf-square-grid/test/out/london-20-miles.geojson +++ b/packages/turf-square-grid/test/out/london-20-miles.geojson @@ -8,11 +8,11 @@ "type": "Polygon", "coordinates": [ [ - [-0.524325, 51.358281], - [-0.524325, 51.647406], - [-0.2352, 51.647406], - [-0.2352, 51.358281], - [-0.524325, 51.358281] + [-0.524832, 51.358112], + [-0.524832, 51.647575], + [-0.235369, 51.647575], + [-0.235369, 51.358112], + [-0.524832, 51.358112] ] ] } @@ -24,11 +24,11 @@ "type": "Polygon", "coordinates": [ [ - [-0.2352, 51.358281], - [-0.2352, 51.647406], - [0.053925, 51.647406], - [0.053925, 51.358281], - [-0.2352, 51.358281] + [-0.235369, 51.358112], + [-0.235369, 51.647575], + [0.054094, 51.647575], + [0.054094, 51.358112], + [-0.235369, 51.358112] ] ] } @@ -40,11 +40,11 @@ "type": "Polygon", "coordinates": [ [ - [0.053925, 51.358281], - [0.053925, 51.647406], - [0.343051, 51.647406], - [0.343051, 51.358281], - [0.053925, 51.358281] + [0.054094, 51.358112], + [0.054094, 51.647575], + [0.343558, 51.647575], + [0.343558, 51.358112], + [0.054094, 51.358112] ] ] } diff --git a/packages/turf-square-grid/test/out/piedemont-mask.geojson b/packages/turf-square-grid/test/out/piedemont-mask.geojson index 01afbba776..dd9a72405a 100644 --- a/packages/turf-square-grid/test/out/piedemont-mask.geojson +++ b/packages/turf-square-grid/test/out/piedemont-mask.geojson @@ -8,11 +8,11 @@ "type": "Polygon", "coordinates": [ [ - [6.461783, 45.009928], - [6.461783, 45.190631], - [6.642486, 45.190631], - [6.642486, 45.009928], - [6.461783, 45.009928] + [6.460094, 45.009611], + [6.460094, 45.190526], + [6.641008, 45.190526], + [6.641008, 45.009611], + [6.460094, 45.009611] ] ] } @@ -24,11 +24,11 @@ "type": "Polygon", "coordinates": [ [ - [6.642486, 44.829225], - [6.642486, 45.009928], - [6.82319, 45.009928], - [6.82319, 44.829225], - [6.642486, 44.829225] + [6.641008, 44.828697], + [6.641008, 45.009611], + [6.821923, 45.009611], + [6.821923, 44.828697], + [6.641008, 44.828697] ] ] } @@ -40,11 +40,11 @@ "type": "Polygon", "coordinates": [ [ - [6.642486, 45.009928], - [6.642486, 45.190631], - [6.82319, 45.190631], - [6.82319, 45.009928], - [6.642486, 45.009928] + [6.641008, 45.009611], + [6.641008, 45.190526], + [6.821923, 45.190526], + [6.821923, 45.009611], + [6.641008, 45.009611] ] ] } @@ -56,11 +56,11 @@ "type": "Polygon", "coordinates": [ [ - [6.82319, 44.106411], - [6.82319, 44.287115], - [7.003893, 44.287115], - [7.003893, 44.106411], - [6.82319, 44.106411] + [6.821923, 44.105039], + [6.821923, 44.285953], + [7.002837, 44.285953], + [7.002837, 44.105039], + [6.821923, 44.105039] ] ] } @@ -72,11 +72,11 @@ "type": "Polygon", "coordinates": [ [ - [6.82319, 44.287115], - [6.82319, 44.467818], - [7.003893, 44.467818], - [7.003893, 44.287115], - [6.82319, 44.287115] + [6.821923, 44.285953], + [6.821923, 44.466868], + [7.002837, 44.466868], + [7.002837, 44.285953], + [6.821923, 44.285953] ] ] } @@ -88,11 +88,11 @@ "type": "Polygon", "coordinates": [ [ - [6.82319, 44.467818], - [6.82319, 44.648521], - [7.003893, 44.648521], - [7.003893, 44.467818], - [6.82319, 44.467818] + [6.821923, 44.466868], + [6.821923, 44.647782], + [7.002837, 44.647782], + [7.002837, 44.466868], + [6.821923, 44.466868] ] ] } @@ -104,11 +104,11 @@ "type": "Polygon", "coordinates": [ [ - [6.82319, 44.648521], - [6.82319, 44.829225], - [7.003893, 44.829225], - [7.003893, 44.648521], - [6.82319, 44.648521] + [6.821923, 44.647782], + [6.821923, 44.828697], + [7.002837, 44.828697], + [7.002837, 44.647782], + [6.821923, 44.647782] ] ] } @@ -120,11 +120,11 @@ "type": "Polygon", "coordinates": [ [ - [6.82319, 44.829225], - [6.82319, 45.009928], - [7.003893, 45.009928], - [7.003893, 44.829225], - [6.82319, 44.829225] + [6.821923, 44.828697], + [6.821923, 45.009611], + [7.002837, 45.009611], + [7.002837, 44.828697], + [6.821923, 44.828697] ] ] } @@ -136,11 +136,11 @@ "type": "Polygon", "coordinates": [ [ - [6.82319, 45.009928], - [6.82319, 45.190631], - [7.003893, 45.190631], - [7.003893, 45.009928], - [6.82319, 45.009928] + [6.821923, 45.009611], + [6.821923, 45.190526], + [7.002837, 45.190526], + [7.002837, 45.009611], + [6.821923, 45.009611] ] ] } @@ -152,11 +152,11 @@ "type": "Polygon", "coordinates": [ [ - [6.82319, 45.190631], - [6.82319, 45.371335], - [7.003893, 45.371335], - [7.003893, 45.190631], - [6.82319, 45.190631] + [6.821923, 45.190526], + [6.821923, 45.37144], + [7.002837, 45.37144], + [7.002837, 45.190526], + [6.821923, 45.190526] ] ] } @@ -168,11 +168,11 @@ "type": "Polygon", "coordinates": [ [ - [7.003893, 44.106411], - [7.003893, 44.287115], - [7.184596, 44.287115], - [7.184596, 44.106411], - [7.003893, 44.106411] + [7.002837, 44.105039], + [7.002837, 44.285953], + [7.183752, 44.285953], + [7.183752, 44.105039], + [7.002837, 44.105039] ] ] } @@ -184,11 +184,11 @@ "type": "Polygon", "coordinates": [ [ - [7.003893, 44.287115], - [7.003893, 44.467818], - [7.184596, 44.467818], - [7.184596, 44.287115], - [7.003893, 44.287115] + [7.002837, 44.285953], + [7.002837, 44.466868], + [7.183752, 44.466868], + [7.183752, 44.285953], + [7.002837, 44.285953] ] ] } @@ -200,11 +200,11 @@ "type": "Polygon", "coordinates": [ [ - [7.003893, 44.467818], - [7.003893, 44.648521], - [7.184596, 44.648521], - [7.184596, 44.467818], - [7.003893, 44.467818] + [7.002837, 44.466868], + [7.002837, 44.647782], + [7.183752, 44.647782], + [7.183752, 44.466868], + [7.002837, 44.466868] ] ] } @@ -216,11 +216,11 @@ "type": "Polygon", "coordinates": [ [ - [7.003893, 44.648521], - [7.003893, 44.829225], - [7.184596, 44.829225], - [7.184596, 44.648521], - [7.003893, 44.648521] + [7.002837, 44.647782], + [7.002837, 44.828697], + [7.183752, 44.828697], + [7.183752, 44.647782], + [7.002837, 44.647782] ] ] } @@ -232,11 +232,11 @@ "type": "Polygon", "coordinates": [ [ - [7.003893, 44.829225], - [7.003893, 45.009928], - [7.184596, 45.009928], - [7.184596, 44.829225], - [7.003893, 44.829225] + [7.002837, 44.828697], + [7.002837, 45.009611], + [7.183752, 45.009611], + [7.183752, 44.828697], + [7.002837, 44.828697] ] ] } @@ -248,11 +248,11 @@ "type": "Polygon", "coordinates": [ [ - [7.003893, 45.009928], - [7.003893, 45.190631], - [7.184596, 45.190631], - [7.184596, 45.009928], - [7.003893, 45.009928] + [7.002837, 45.009611], + [7.002837, 45.190526], + [7.183752, 45.190526], + [7.183752, 45.009611], + [7.002837, 45.009611] ] ] } @@ -264,11 +264,11 @@ "type": "Polygon", "coordinates": [ [ - [7.003893, 45.190631], - [7.003893, 45.371335], - [7.184596, 45.371335], - [7.184596, 45.190631], - [7.003893, 45.190631] + [7.002837, 45.190526], + [7.002837, 45.37144], + [7.183752, 45.37144], + [7.183752, 45.190526], + [7.002837, 45.190526] ] ] } @@ -280,11 +280,11 @@ "type": "Polygon", "coordinates": [ [ - [7.003893, 45.371335], - [7.003893, 45.552038], - [7.184596, 45.552038], - [7.184596, 45.371335], - [7.003893, 45.371335] + [7.002837, 45.37144], + [7.002837, 45.552355], + [7.183752, 45.552355], + [7.183752, 45.37144], + [7.002837, 45.37144] ] ] } @@ -296,11 +296,11 @@ "type": "Polygon", "coordinates": [ [ - [7.184596, 44.106411], - [7.184596, 44.287115], - [7.3653, 44.287115], - [7.3653, 44.106411], - [7.184596, 44.106411] + [7.183752, 44.105039], + [7.183752, 44.285953], + [7.364666, 44.285953], + [7.364666, 44.105039], + [7.183752, 44.105039] ] ] } @@ -312,11 +312,11 @@ "type": "Polygon", "coordinates": [ [ - [7.184596, 44.287115], - [7.184596, 44.467818], - [7.3653, 44.467818], - [7.3653, 44.287115], - [7.184596, 44.287115] + [7.183752, 44.285953], + [7.183752, 44.466868], + [7.364666, 44.466868], + [7.364666, 44.285953], + [7.183752, 44.285953] ] ] } @@ -328,11 +328,11 @@ "type": "Polygon", "coordinates": [ [ - [7.184596, 44.467818], - [7.184596, 44.648521], - [7.3653, 44.648521], - [7.3653, 44.467818], - [7.184596, 44.467818] + [7.183752, 44.466868], + [7.183752, 44.647782], + [7.364666, 44.647782], + [7.364666, 44.466868], + [7.183752, 44.466868] ] ] } @@ -344,11 +344,11 @@ "type": "Polygon", "coordinates": [ [ - [7.184596, 44.648521], - [7.184596, 44.829225], - [7.3653, 44.829225], - [7.3653, 44.648521], - [7.184596, 44.648521] + [7.183752, 44.647782], + [7.183752, 44.828697], + [7.364666, 44.828697], + [7.364666, 44.647782], + [7.183752, 44.647782] ] ] } @@ -360,11 +360,11 @@ "type": "Polygon", "coordinates": [ [ - [7.184596, 44.829225], - [7.184596, 45.009928], - [7.3653, 45.009928], - [7.3653, 44.829225], - [7.184596, 44.829225] + [7.183752, 44.828697], + [7.183752, 45.009611], + [7.364666, 45.009611], + [7.364666, 44.828697], + [7.183752, 44.828697] ] ] } @@ -376,11 +376,11 @@ "type": "Polygon", "coordinates": [ [ - [7.184596, 45.009928], - [7.184596, 45.190631], - [7.3653, 45.190631], - [7.3653, 45.009928], - [7.184596, 45.009928] + [7.183752, 45.009611], + [7.183752, 45.190526], + [7.364666, 45.190526], + [7.364666, 45.009611], + [7.183752, 45.009611] ] ] } @@ -392,11 +392,11 @@ "type": "Polygon", "coordinates": [ [ - [7.184596, 45.190631], - [7.184596, 45.371335], - [7.3653, 45.371335], - [7.3653, 45.190631], - [7.184596, 45.190631] + [7.183752, 45.190526], + [7.183752, 45.37144], + [7.364666, 45.37144], + [7.364666, 45.190526], + [7.183752, 45.190526] ] ] } @@ -408,11 +408,11 @@ "type": "Polygon", "coordinates": [ [ - [7.184596, 45.371335], - [7.184596, 45.552038], - [7.3653, 45.552038], - [7.3653, 45.371335], - [7.184596, 45.371335] + [7.183752, 45.37144], + [7.183752, 45.552355], + [7.364666, 45.552355], + [7.364666, 45.37144], + [7.183752, 45.37144] ] ] } @@ -424,11 +424,11 @@ "type": "Polygon", "coordinates": [ [ - [7.3653, 44.106411], - [7.3653, 44.287115], - [7.546003, 44.287115], - [7.546003, 44.106411], - [7.3653, 44.106411] + [7.364666, 44.105039], + [7.364666, 44.285953], + [7.545581, 44.285953], + [7.545581, 44.105039], + [7.364666, 44.105039] ] ] } @@ -440,11 +440,11 @@ "type": "Polygon", "coordinates": [ [ - [7.3653, 44.287115], - [7.3653, 44.467818], - [7.546003, 44.467818], - [7.546003, 44.287115], - [7.3653, 44.287115] + [7.364666, 44.285953], + [7.364666, 44.466868], + [7.545581, 44.466868], + [7.545581, 44.285953], + [7.364666, 44.285953] ] ] } @@ -456,11 +456,11 @@ "type": "Polygon", "coordinates": [ [ - [7.3653, 44.467818], - [7.3653, 44.648521], - [7.546003, 44.648521], - [7.546003, 44.467818], - [7.3653, 44.467818] + [7.364666, 44.466868], + [7.364666, 44.647782], + [7.545581, 44.647782], + [7.545581, 44.466868], + [7.364666, 44.466868] ] ] } @@ -472,11 +472,11 @@ "type": "Polygon", "coordinates": [ [ - [7.3653, 44.648521], - [7.3653, 44.829225], - [7.546003, 44.829225], - [7.546003, 44.648521], - [7.3653, 44.648521] + [7.364666, 44.647782], + [7.364666, 44.828697], + [7.545581, 44.828697], + [7.545581, 44.647782], + [7.364666, 44.647782] ] ] } @@ -488,11 +488,11 @@ "type": "Polygon", "coordinates": [ [ - [7.3653, 44.829225], - [7.3653, 45.009928], - [7.546003, 45.009928], - [7.546003, 44.829225], - [7.3653, 44.829225] + [7.364666, 44.828697], + [7.364666, 45.009611], + [7.545581, 45.009611], + [7.545581, 44.828697], + [7.364666, 44.828697] ] ] } @@ -504,11 +504,11 @@ "type": "Polygon", "coordinates": [ [ - [7.3653, 45.009928], - [7.3653, 45.190631], - [7.546003, 45.190631], - [7.546003, 45.009928], - [7.3653, 45.009928] + [7.364666, 45.009611], + [7.364666, 45.190526], + [7.545581, 45.190526], + [7.545581, 45.009611], + [7.364666, 45.009611] ] ] } @@ -520,11 +520,11 @@ "type": "Polygon", "coordinates": [ [ - [7.3653, 45.190631], - [7.3653, 45.371335], - [7.546003, 45.371335], - [7.546003, 45.190631], - [7.3653, 45.190631] + [7.364666, 45.190526], + [7.364666, 45.37144], + [7.545581, 45.37144], + [7.545581, 45.190526], + [7.364666, 45.190526] ] ] } @@ -536,11 +536,11 @@ "type": "Polygon", "coordinates": [ [ - [7.3653, 45.371335], - [7.3653, 45.552038], - [7.546003, 45.552038], - [7.546003, 45.371335], - [7.3653, 45.371335] + [7.364666, 45.37144], + [7.364666, 45.552355], + [7.545581, 45.552355], + [7.545581, 45.37144], + [7.364666, 45.37144] ] ] } @@ -552,11 +552,11 @@ "type": "Polygon", "coordinates": [ [ - [7.3653, 45.552038], - [7.3653, 45.732741], - [7.546003, 45.732741], - [7.546003, 45.552038], - [7.3653, 45.552038] + [7.364666, 45.552355], + [7.364666, 45.733269], + [7.545581, 45.733269], + [7.545581, 45.552355], + [7.364666, 45.552355] ] ] } @@ -568,11 +568,11 @@ "type": "Polygon", "coordinates": [ [ - [7.546003, 44.106411], - [7.546003, 44.287115], - [7.726706, 44.287115], - [7.726706, 44.106411], - [7.546003, 44.106411] + [7.545581, 44.105039], + [7.545581, 44.285953], + [7.726495, 44.285953], + [7.726495, 44.105039], + [7.545581, 44.105039] ] ] } @@ -584,11 +584,11 @@ "type": "Polygon", "coordinates": [ [ - [7.546003, 44.287115], - [7.546003, 44.467818], - [7.726706, 44.467818], - [7.726706, 44.287115], - [7.546003, 44.287115] + [7.545581, 44.285953], + [7.545581, 44.466868], + [7.726495, 44.466868], + [7.726495, 44.285953], + [7.545581, 44.285953] ] ] } @@ -600,11 +600,11 @@ "type": "Polygon", "coordinates": [ [ - [7.546003, 44.467818], - [7.546003, 44.648521], - [7.726706, 44.648521], - [7.726706, 44.467818], - [7.546003, 44.467818] + [7.545581, 44.466868], + [7.545581, 44.647782], + [7.726495, 44.647782], + [7.726495, 44.466868], + [7.545581, 44.466868] ] ] } @@ -616,11 +616,11 @@ "type": "Polygon", "coordinates": [ [ - [7.546003, 44.648521], - [7.546003, 44.829225], - [7.726706, 44.829225], - [7.726706, 44.648521], - [7.546003, 44.648521] + [7.545581, 44.647782], + [7.545581, 44.828697], + [7.726495, 44.828697], + [7.726495, 44.647782], + [7.545581, 44.647782] ] ] } @@ -632,11 +632,11 @@ "type": "Polygon", "coordinates": [ [ - [7.546003, 44.829225], - [7.546003, 45.009928], - [7.726706, 45.009928], - [7.726706, 44.829225], - [7.546003, 44.829225] + [7.545581, 44.828697], + [7.545581, 45.009611], + [7.726495, 45.009611], + [7.726495, 44.828697], + [7.545581, 44.828697] ] ] } @@ -648,11 +648,11 @@ "type": "Polygon", "coordinates": [ [ - [7.546003, 45.009928], - [7.546003, 45.190631], - [7.726706, 45.190631], - [7.726706, 45.009928], - [7.546003, 45.009928] + [7.545581, 45.009611], + [7.545581, 45.190526], + [7.726495, 45.190526], + [7.726495, 45.009611], + [7.545581, 45.009611] ] ] } @@ -664,11 +664,11 @@ "type": "Polygon", "coordinates": [ [ - [7.546003, 45.190631], - [7.546003, 45.371335], - [7.726706, 45.371335], - [7.726706, 45.190631], - [7.546003, 45.190631] + [7.545581, 45.190526], + [7.545581, 45.37144], + [7.726495, 45.37144], + [7.726495, 45.190526], + [7.545581, 45.190526] ] ] } @@ -680,11 +680,11 @@ "type": "Polygon", "coordinates": [ [ - [7.546003, 45.371335], - [7.546003, 45.552038], - [7.726706, 45.552038], - [7.726706, 45.371335], - [7.546003, 45.371335] + [7.545581, 45.37144], + [7.545581, 45.552355], + [7.726495, 45.552355], + [7.726495, 45.37144], + [7.545581, 45.37144] ] ] } @@ -696,11 +696,11 @@ "type": "Polygon", "coordinates": [ [ - [7.546003, 45.552038], - [7.546003, 45.732741], - [7.726706, 45.732741], - [7.726706, 45.552038], - [7.546003, 45.552038] + [7.545581, 45.552355], + [7.545581, 45.733269], + [7.726495, 45.733269], + [7.726495, 45.552355], + [7.545581, 45.552355] ] ] } @@ -712,11 +712,11 @@ "type": "Polygon", "coordinates": [ [ - [7.726706, 44.106411], - [7.726706, 44.287115], - [7.90741, 44.287115], - [7.90741, 44.106411], - [7.726706, 44.106411] + [7.726495, 44.105039], + [7.726495, 44.285953], + [7.90741, 44.285953], + [7.90741, 44.105039], + [7.726495, 44.105039] ] ] } @@ -728,11 +728,11 @@ "type": "Polygon", "coordinates": [ [ - [7.726706, 44.287115], - [7.726706, 44.467818], - [7.90741, 44.467818], - [7.90741, 44.287115], - [7.726706, 44.287115] + [7.726495, 44.285953], + [7.726495, 44.466868], + [7.90741, 44.466868], + [7.90741, 44.285953], + [7.726495, 44.285953] ] ] } @@ -744,11 +744,11 @@ "type": "Polygon", "coordinates": [ [ - [7.726706, 44.467818], - [7.726706, 44.648521], - [7.90741, 44.648521], - [7.90741, 44.467818], - [7.726706, 44.467818] + [7.726495, 44.466868], + [7.726495, 44.647782], + [7.90741, 44.647782], + [7.90741, 44.466868], + [7.726495, 44.466868] ] ] } @@ -760,11 +760,11 @@ "type": "Polygon", "coordinates": [ [ - [7.726706, 44.648521], - [7.726706, 44.829225], - [7.90741, 44.829225], - [7.90741, 44.648521], - [7.726706, 44.648521] + [7.726495, 44.647782], + [7.726495, 44.828697], + [7.90741, 44.828697], + [7.90741, 44.647782], + [7.726495, 44.647782] ] ] } @@ -776,11 +776,11 @@ "type": "Polygon", "coordinates": [ [ - [7.726706, 44.829225], - [7.726706, 45.009928], - [7.90741, 45.009928], - [7.90741, 44.829225], - [7.726706, 44.829225] + [7.726495, 44.828697], + [7.726495, 45.009611], + [7.90741, 45.009611], + [7.90741, 44.828697], + [7.726495, 44.828697] ] ] } @@ -792,11 +792,11 @@ "type": "Polygon", "coordinates": [ [ - [7.726706, 45.009928], - [7.726706, 45.190631], - [7.90741, 45.190631], - [7.90741, 45.009928], - [7.726706, 45.009928] + [7.726495, 45.009611], + [7.726495, 45.190526], + [7.90741, 45.190526], + [7.90741, 45.009611], + [7.726495, 45.009611] ] ] } @@ -808,11 +808,11 @@ "type": "Polygon", "coordinates": [ [ - [7.726706, 45.190631], - [7.726706, 45.371335], - [7.90741, 45.371335], - [7.90741, 45.190631], - [7.726706, 45.190631] + [7.726495, 45.190526], + [7.726495, 45.37144], + [7.90741, 45.37144], + [7.90741, 45.190526], + [7.726495, 45.190526] ] ] } @@ -824,11 +824,11 @@ "type": "Polygon", "coordinates": [ [ - [7.726706, 45.371335], - [7.726706, 45.552038], - [7.90741, 45.552038], - [7.90741, 45.371335], - [7.726706, 45.371335] + [7.726495, 45.37144], + [7.726495, 45.552355], + [7.90741, 45.552355], + [7.90741, 45.37144], + [7.726495, 45.37144] ] ] } @@ -840,11 +840,11 @@ "type": "Polygon", "coordinates": [ [ - [7.726706, 45.552038], - [7.726706, 45.732741], - [7.90741, 45.732741], - [7.90741, 45.552038], - [7.726706, 45.552038] + [7.726495, 45.552355], + [7.726495, 45.733269], + [7.90741, 45.733269], + [7.90741, 45.552355], + [7.726495, 45.552355] ] ] } @@ -856,11 +856,11 @@ "type": "Polygon", "coordinates": [ [ - [7.726706, 45.732741], - [7.726706, 45.913445], - [7.90741, 45.913445], - [7.90741, 45.732741], - [7.726706, 45.732741] + [7.726495, 45.733269], + [7.726495, 45.914184], + [7.90741, 45.914184], + [7.90741, 45.733269], + [7.726495, 45.733269] ] ] } @@ -872,11 +872,11 @@ "type": "Polygon", "coordinates": [ [ - [7.726706, 45.913445], - [7.726706, 46.094148], - [7.90741, 46.094148], - [7.90741, 45.913445], - [7.726706, 45.913445] + [7.726495, 45.914184], + [7.726495, 46.095098], + [7.90741, 46.095098], + [7.90741, 45.914184], + [7.726495, 45.914184] ] ] } @@ -888,11 +888,11 @@ "type": "Polygon", "coordinates": [ [ - [7.90741, 44.106411], - [7.90741, 44.287115], - [8.088113, 44.287115], - [8.088113, 44.106411], - [7.90741, 44.106411] + [7.90741, 44.105039], + [7.90741, 44.285953], + [8.088324, 44.285953], + [8.088324, 44.105039], + [7.90741, 44.105039] ] ] } @@ -904,11 +904,11 @@ "type": "Polygon", "coordinates": [ [ - [7.90741, 44.287115], - [7.90741, 44.467818], - [8.088113, 44.467818], - [8.088113, 44.287115], - [7.90741, 44.287115] + [7.90741, 44.285953], + [7.90741, 44.466868], + [8.088324, 44.466868], + [8.088324, 44.285953], + [7.90741, 44.285953] ] ] } @@ -920,11 +920,11 @@ "type": "Polygon", "coordinates": [ [ - [7.90741, 44.467818], - [7.90741, 44.648521], - [8.088113, 44.648521], - [8.088113, 44.467818], - [7.90741, 44.467818] + [7.90741, 44.466868], + [7.90741, 44.647782], + [8.088324, 44.647782], + [8.088324, 44.466868], + [7.90741, 44.466868] ] ] } @@ -936,11 +936,11 @@ "type": "Polygon", "coordinates": [ [ - [7.90741, 44.648521], - [7.90741, 44.829225], - [8.088113, 44.829225], - [8.088113, 44.648521], - [7.90741, 44.648521] + [7.90741, 44.647782], + [7.90741, 44.828697], + [8.088324, 44.828697], + [8.088324, 44.647782], + [7.90741, 44.647782] ] ] } @@ -952,11 +952,11 @@ "type": "Polygon", "coordinates": [ [ - [7.90741, 44.829225], - [7.90741, 45.009928], - [8.088113, 45.009928], - [8.088113, 44.829225], - [7.90741, 44.829225] + [7.90741, 44.828697], + [7.90741, 45.009611], + [8.088324, 45.009611], + [8.088324, 44.828697], + [7.90741, 44.828697] ] ] } @@ -968,11 +968,11 @@ "type": "Polygon", "coordinates": [ [ - [7.90741, 45.009928], - [7.90741, 45.190631], - [8.088113, 45.190631], - [8.088113, 45.009928], - [7.90741, 45.009928] + [7.90741, 45.009611], + [7.90741, 45.190526], + [8.088324, 45.190526], + [8.088324, 45.009611], + [7.90741, 45.009611] ] ] } @@ -984,11 +984,11 @@ "type": "Polygon", "coordinates": [ [ - [7.90741, 45.190631], - [7.90741, 45.371335], - [8.088113, 45.371335], - [8.088113, 45.190631], - [7.90741, 45.190631] + [7.90741, 45.190526], + [7.90741, 45.37144], + [8.088324, 45.37144], + [8.088324, 45.190526], + [7.90741, 45.190526] ] ] } @@ -1000,11 +1000,11 @@ "type": "Polygon", "coordinates": [ [ - [7.90741, 45.371335], - [7.90741, 45.552038], - [8.088113, 45.552038], - [8.088113, 45.371335], - [7.90741, 45.371335] + [7.90741, 45.37144], + [7.90741, 45.552355], + [8.088324, 45.552355], + [8.088324, 45.37144], + [7.90741, 45.37144] ] ] } @@ -1016,11 +1016,11 @@ "type": "Polygon", "coordinates": [ [ - [7.90741, 45.552038], - [7.90741, 45.732741], - [8.088113, 45.732741], - [8.088113, 45.552038], - [7.90741, 45.552038] + [7.90741, 45.552355], + [7.90741, 45.733269], + [8.088324, 45.733269], + [8.088324, 45.552355], + [7.90741, 45.552355] ] ] } @@ -1032,11 +1032,11 @@ "type": "Polygon", "coordinates": [ [ - [7.90741, 45.732741], - [7.90741, 45.913445], - [8.088113, 45.913445], - [8.088113, 45.732741], - [7.90741, 45.732741] + [7.90741, 45.733269], + [7.90741, 45.914184], + [8.088324, 45.914184], + [8.088324, 45.733269], + [7.90741, 45.733269] ] ] } @@ -1048,11 +1048,11 @@ "type": "Polygon", "coordinates": [ [ - [7.90741, 45.913445], - [7.90741, 46.094148], - [8.088113, 46.094148], - [8.088113, 45.913445], - [7.90741, 45.913445] + [7.90741, 45.914184], + [7.90741, 46.095098], + [8.088324, 46.095098], + [8.088324, 45.914184], + [7.90741, 45.914184] ] ] } @@ -1064,11 +1064,11 @@ "type": "Polygon", "coordinates": [ [ - [7.90741, 46.094148], - [7.90741, 46.274851], - [8.088113, 46.274851], - [8.088113, 46.094148], - [7.90741, 46.094148] + [7.90741, 46.095098], + [7.90741, 46.276013], + [8.088324, 46.276013], + [8.088324, 46.095098], + [7.90741, 46.095098] ] ] } @@ -1080,11 +1080,11 @@ "type": "Polygon", "coordinates": [ [ - [8.088113, 44.287115], - [8.088113, 44.467818], - [8.268816, 44.467818], - [8.268816, 44.287115], - [8.088113, 44.287115] + [8.088324, 44.285953], + [8.088324, 44.466868], + [8.269239, 44.466868], + [8.269239, 44.285953], + [8.088324, 44.285953] ] ] } @@ -1096,11 +1096,11 @@ "type": "Polygon", "coordinates": [ [ - [8.088113, 44.467818], - [8.088113, 44.648521], - [8.268816, 44.648521], - [8.268816, 44.467818], - [8.088113, 44.467818] + [8.088324, 44.466868], + [8.088324, 44.647782], + [8.269239, 44.647782], + [8.269239, 44.466868], + [8.088324, 44.466868] ] ] } @@ -1112,11 +1112,11 @@ "type": "Polygon", "coordinates": [ [ - [8.088113, 44.648521], - [8.088113, 44.829225], - [8.268816, 44.829225], - [8.268816, 44.648521], - [8.088113, 44.648521] + [8.088324, 44.647782], + [8.088324, 44.828697], + [8.269239, 44.828697], + [8.269239, 44.647782], + [8.088324, 44.647782] ] ] } @@ -1128,11 +1128,11 @@ "type": "Polygon", "coordinates": [ [ - [8.088113, 44.829225], - [8.088113, 45.009928], - [8.268816, 45.009928], - [8.268816, 44.829225], - [8.088113, 44.829225] + [8.088324, 44.828697], + [8.088324, 45.009611], + [8.269239, 45.009611], + [8.269239, 44.828697], + [8.088324, 44.828697] ] ] } @@ -1144,11 +1144,11 @@ "type": "Polygon", "coordinates": [ [ - [8.088113, 45.009928], - [8.088113, 45.190631], - [8.268816, 45.190631], - [8.268816, 45.009928], - [8.088113, 45.009928] + [8.088324, 45.009611], + [8.088324, 45.190526], + [8.269239, 45.190526], + [8.269239, 45.009611], + [8.088324, 45.009611] ] ] } @@ -1160,11 +1160,11 @@ "type": "Polygon", "coordinates": [ [ - [8.088113, 45.190631], - [8.088113, 45.371335], - [8.268816, 45.371335], - [8.268816, 45.190631], - [8.088113, 45.190631] + [8.088324, 45.190526], + [8.088324, 45.37144], + [8.269239, 45.37144], + [8.269239, 45.190526], + [8.088324, 45.190526] ] ] } @@ -1176,11 +1176,11 @@ "type": "Polygon", "coordinates": [ [ - [8.088113, 45.371335], - [8.088113, 45.552038], - [8.268816, 45.552038], - [8.268816, 45.371335], - [8.088113, 45.371335] + [8.088324, 45.37144], + [8.088324, 45.552355], + [8.269239, 45.552355], + [8.269239, 45.37144], + [8.088324, 45.37144] ] ] } @@ -1192,11 +1192,11 @@ "type": "Polygon", "coordinates": [ [ - [8.088113, 45.552038], - [8.088113, 45.732741], - [8.268816, 45.732741], - [8.268816, 45.552038], - [8.088113, 45.552038] + [8.088324, 45.552355], + [8.088324, 45.733269], + [8.269239, 45.733269], + [8.269239, 45.552355], + [8.088324, 45.552355] ] ] } @@ -1208,11 +1208,11 @@ "type": "Polygon", "coordinates": [ [ - [8.088113, 45.732741], - [8.088113, 45.913445], - [8.268816, 45.913445], - [8.268816, 45.732741], - [8.088113, 45.732741] + [8.088324, 45.733269], + [8.088324, 45.914184], + [8.269239, 45.914184], + [8.269239, 45.733269], + [8.088324, 45.733269] ] ] } @@ -1224,11 +1224,11 @@ "type": "Polygon", "coordinates": [ [ - [8.088113, 45.913445], - [8.088113, 46.094148], - [8.268816, 46.094148], - [8.268816, 45.913445], - [8.088113, 45.913445] + [8.088324, 45.914184], + [8.088324, 46.095098], + [8.269239, 46.095098], + [8.269239, 45.914184], + [8.088324, 45.914184] ] ] } @@ -1240,11 +1240,11 @@ "type": "Polygon", "coordinates": [ [ - [8.088113, 46.094148], - [8.088113, 46.274851], - [8.268816, 46.274851], - [8.268816, 46.094148], - [8.088113, 46.094148] + [8.088324, 46.095098], + [8.088324, 46.276013], + [8.269239, 46.276013], + [8.269239, 46.095098], + [8.088324, 46.095098] ] ] } @@ -1256,11 +1256,11 @@ "type": "Polygon", "coordinates": [ [ - [8.088113, 46.274851], - [8.088113, 46.455555], - [8.268816, 46.455555], - [8.268816, 46.274851], - [8.088113, 46.274851] + [8.088324, 46.276013], + [8.088324, 46.456927], + [8.269239, 46.456927], + [8.269239, 46.276013], + [8.088324, 46.276013] ] ] } @@ -1272,11 +1272,11 @@ "type": "Polygon", "coordinates": [ [ - [8.268816, 44.467818], - [8.268816, 44.648521], - [8.44952, 44.648521], - [8.44952, 44.467818], - [8.268816, 44.467818] + [8.269239, 44.466868], + [8.269239, 44.647782], + [8.450153, 44.647782], + [8.450153, 44.466868], + [8.269239, 44.466868] ] ] } @@ -1288,11 +1288,11 @@ "type": "Polygon", "coordinates": [ [ - [8.268816, 44.648521], - [8.268816, 44.829225], - [8.44952, 44.829225], - [8.44952, 44.648521], - [8.268816, 44.648521] + [8.269239, 44.647782], + [8.269239, 44.828697], + [8.450153, 44.828697], + [8.450153, 44.647782], + [8.269239, 44.647782] ] ] } @@ -1304,11 +1304,11 @@ "type": "Polygon", "coordinates": [ [ - [8.268816, 44.829225], - [8.268816, 45.009928], - [8.44952, 45.009928], - [8.44952, 44.829225], - [8.268816, 44.829225] + [8.269239, 44.828697], + [8.269239, 45.009611], + [8.450153, 45.009611], + [8.450153, 44.828697], + [8.269239, 44.828697] ] ] } @@ -1320,11 +1320,11 @@ "type": "Polygon", "coordinates": [ [ - [8.268816, 45.009928], - [8.268816, 45.190631], - [8.44952, 45.190631], - [8.44952, 45.009928], - [8.268816, 45.009928] + [8.269239, 45.009611], + [8.269239, 45.190526], + [8.450153, 45.190526], + [8.450153, 45.009611], + [8.269239, 45.009611] ] ] } @@ -1336,11 +1336,11 @@ "type": "Polygon", "coordinates": [ [ - [8.268816, 45.190631], - [8.268816, 45.371335], - [8.44952, 45.371335], - [8.44952, 45.190631], - [8.268816, 45.190631] + [8.269239, 45.190526], + [8.269239, 45.37144], + [8.450153, 45.37144], + [8.450153, 45.190526], + [8.269239, 45.190526] ] ] } @@ -1352,11 +1352,11 @@ "type": "Polygon", "coordinates": [ [ - [8.268816, 45.371335], - [8.268816, 45.552038], - [8.44952, 45.552038], - [8.44952, 45.371335], - [8.268816, 45.371335] + [8.269239, 45.37144], + [8.269239, 45.552355], + [8.450153, 45.552355], + [8.450153, 45.37144], + [8.269239, 45.37144] ] ] } @@ -1368,11 +1368,11 @@ "type": "Polygon", "coordinates": [ [ - [8.268816, 45.552038], - [8.268816, 45.732741], - [8.44952, 45.732741], - [8.44952, 45.552038], - [8.268816, 45.552038] + [8.269239, 45.552355], + [8.269239, 45.733269], + [8.450153, 45.733269], + [8.450153, 45.552355], + [8.269239, 45.552355] ] ] } @@ -1384,11 +1384,11 @@ "type": "Polygon", "coordinates": [ [ - [8.268816, 45.732741], - [8.268816, 45.913445], - [8.44952, 45.913445], - [8.44952, 45.732741], - [8.268816, 45.732741] + [8.269239, 45.733269], + [8.269239, 45.914184], + [8.450153, 45.914184], + [8.450153, 45.733269], + [8.269239, 45.733269] ] ] } @@ -1400,11 +1400,11 @@ "type": "Polygon", "coordinates": [ [ - [8.268816, 45.913445], - [8.268816, 46.094148], - [8.44952, 46.094148], - [8.44952, 45.913445], - [8.268816, 45.913445] + [8.269239, 45.914184], + [8.269239, 46.095098], + [8.450153, 46.095098], + [8.450153, 45.914184], + [8.269239, 45.914184] ] ] } @@ -1416,11 +1416,11 @@ "type": "Polygon", "coordinates": [ [ - [8.268816, 46.094148], - [8.268816, 46.274851], - [8.44952, 46.274851], - [8.44952, 46.094148], - [8.268816, 46.094148] + [8.269239, 46.095098], + [8.269239, 46.276013], + [8.450153, 46.276013], + [8.450153, 46.095098], + [8.269239, 46.095098] ] ] } @@ -1432,11 +1432,11 @@ "type": "Polygon", "coordinates": [ [ - [8.268816, 46.274851], - [8.268816, 46.455555], - [8.44952, 46.455555], - [8.44952, 46.274851], - [8.268816, 46.274851] + [8.269239, 46.276013], + [8.269239, 46.456927], + [8.450153, 46.456927], + [8.450153, 46.276013], + [8.269239, 46.276013] ] ] } @@ -1448,11 +1448,11 @@ "type": "Polygon", "coordinates": [ [ - [8.44952, 44.467818], - [8.44952, 44.648521], - [8.630223, 44.648521], - [8.630223, 44.467818], - [8.44952, 44.467818] + [8.450153, 44.466868], + [8.450153, 44.647782], + [8.631068, 44.647782], + [8.631068, 44.466868], + [8.450153, 44.466868] ] ] } @@ -1464,11 +1464,11 @@ "type": "Polygon", "coordinates": [ [ - [8.44952, 44.648521], - [8.44952, 44.829225], - [8.630223, 44.829225], - [8.630223, 44.648521], - [8.44952, 44.648521] + [8.450153, 44.647782], + [8.450153, 44.828697], + [8.631068, 44.828697], + [8.631068, 44.647782], + [8.450153, 44.647782] ] ] } @@ -1480,11 +1480,11 @@ "type": "Polygon", "coordinates": [ [ - [8.44952, 44.829225], - [8.44952, 45.009928], - [8.630223, 45.009928], - [8.630223, 44.829225], - [8.44952, 44.829225] + [8.450153, 44.828697], + [8.450153, 45.009611], + [8.631068, 45.009611], + [8.631068, 44.828697], + [8.450153, 44.828697] ] ] } @@ -1496,11 +1496,11 @@ "type": "Polygon", "coordinates": [ [ - [8.44952, 45.009928], - [8.44952, 45.190631], - [8.630223, 45.190631], - [8.630223, 45.009928], - [8.44952, 45.009928] + [8.450153, 45.009611], + [8.450153, 45.190526], + [8.631068, 45.190526], + [8.631068, 45.009611], + [8.450153, 45.009611] ] ] } @@ -1512,11 +1512,11 @@ "type": "Polygon", "coordinates": [ [ - [8.44952, 45.190631], - [8.44952, 45.371335], - [8.630223, 45.371335], - [8.630223, 45.190631], - [8.44952, 45.190631] + [8.450153, 45.190526], + [8.450153, 45.37144], + [8.631068, 45.37144], + [8.631068, 45.190526], + [8.450153, 45.190526] ] ] } @@ -1528,11 +1528,11 @@ "type": "Polygon", "coordinates": [ [ - [8.44952, 45.371335], - [8.44952, 45.552038], - [8.630223, 45.552038], - [8.630223, 45.371335], - [8.44952, 45.371335] + [8.450153, 45.37144], + [8.450153, 45.552355], + [8.631068, 45.552355], + [8.631068, 45.37144], + [8.450153, 45.37144] ] ] } @@ -1544,11 +1544,11 @@ "type": "Polygon", "coordinates": [ [ - [8.44952, 45.552038], - [8.44952, 45.732741], - [8.630223, 45.732741], - [8.630223, 45.552038], - [8.44952, 45.552038] + [8.450153, 45.552355], + [8.450153, 45.733269], + [8.631068, 45.733269], + [8.631068, 45.552355], + [8.450153, 45.552355] ] ] } @@ -1560,11 +1560,11 @@ "type": "Polygon", "coordinates": [ [ - [8.44952, 45.732741], - [8.44952, 45.913445], - [8.630223, 45.913445], - [8.630223, 45.732741], - [8.44952, 45.732741] + [8.450153, 45.733269], + [8.450153, 45.914184], + [8.631068, 45.914184], + [8.631068, 45.733269], + [8.450153, 45.733269] ] ] } @@ -1576,11 +1576,11 @@ "type": "Polygon", "coordinates": [ [ - [8.44952, 45.913445], - [8.44952, 46.094148], - [8.630223, 46.094148], - [8.630223, 45.913445], - [8.44952, 45.913445] + [8.450153, 45.914184], + [8.450153, 46.095098], + [8.631068, 46.095098], + [8.631068, 45.914184], + [8.450153, 45.914184] ] ] } @@ -1592,11 +1592,11 @@ "type": "Polygon", "coordinates": [ [ - [8.44952, 46.094148], - [8.44952, 46.274851], - [8.630223, 46.274851], - [8.630223, 46.094148], - [8.44952, 46.094148] + [8.450153, 46.095098], + [8.450153, 46.276013], + [8.631068, 46.276013], + [8.631068, 46.095098], + [8.450153, 46.095098] ] ] } @@ -1608,11 +1608,11 @@ "type": "Polygon", "coordinates": [ [ - [8.44952, 46.274851], - [8.44952, 46.455555], - [8.630223, 46.455555], - [8.630223, 46.274851], - [8.44952, 46.274851] + [8.450153, 46.276013], + [8.450153, 46.456927], + [8.631068, 46.456927], + [8.631068, 46.276013], + [8.450153, 46.276013] ] ] } @@ -1624,11 +1624,11 @@ "type": "Polygon", "coordinates": [ [ - [8.630223, 44.467818], - [8.630223, 44.648521], - [8.810926, 44.648521], - [8.810926, 44.467818], - [8.630223, 44.467818] + [8.631068, 44.466868], + [8.631068, 44.647782], + [8.811982, 44.647782], + [8.811982, 44.466868], + [8.631068, 44.466868] ] ] } @@ -1640,11 +1640,11 @@ "type": "Polygon", "coordinates": [ [ - [8.630223, 44.648521], - [8.630223, 44.829225], - [8.810926, 44.829225], - [8.810926, 44.648521], - [8.630223, 44.648521] + [8.631068, 44.647782], + [8.631068, 44.828697], + [8.811982, 44.828697], + [8.811982, 44.647782], + [8.631068, 44.647782] ] ] } @@ -1656,11 +1656,11 @@ "type": "Polygon", "coordinates": [ [ - [8.630223, 44.829225], - [8.630223, 45.009928], - [8.810926, 45.009928], - [8.810926, 44.829225], - [8.630223, 44.829225] + [8.631068, 44.828697], + [8.631068, 45.009611], + [8.811982, 45.009611], + [8.811982, 44.828697], + [8.631068, 44.828697] ] ] } @@ -1672,11 +1672,11 @@ "type": "Polygon", "coordinates": [ [ - [8.630223, 45.009928], - [8.630223, 45.190631], - [8.810926, 45.190631], - [8.810926, 45.009928], - [8.630223, 45.009928] + [8.631068, 45.009611], + [8.631068, 45.190526], + [8.811982, 45.190526], + [8.811982, 45.009611], + [8.631068, 45.009611] ] ] } @@ -1688,11 +1688,11 @@ "type": "Polygon", "coordinates": [ [ - [8.630223, 45.190631], - [8.630223, 45.371335], - [8.810926, 45.371335], - [8.810926, 45.190631], - [8.630223, 45.190631] + [8.631068, 45.190526], + [8.631068, 45.37144], + [8.811982, 45.37144], + [8.811982, 45.190526], + [8.631068, 45.190526] ] ] } @@ -1704,11 +1704,11 @@ "type": "Polygon", "coordinates": [ [ - [8.630223, 45.371335], - [8.630223, 45.552038], - [8.810926, 45.552038], - [8.810926, 45.371335], - [8.630223, 45.371335] + [8.631068, 45.37144], + [8.631068, 45.552355], + [8.811982, 45.552355], + [8.811982, 45.37144], + [8.631068, 45.37144] ] ] } @@ -1720,11 +1720,11 @@ "type": "Polygon", "coordinates": [ [ - [8.630223, 45.552038], - [8.630223, 45.732741], - [8.810926, 45.732741], - [8.810926, 45.552038], - [8.630223, 45.552038] + [8.631068, 45.552355], + [8.631068, 45.733269], + [8.811982, 45.733269], + [8.811982, 45.552355], + [8.631068, 45.552355] ] ] } @@ -1736,11 +1736,11 @@ "type": "Polygon", "coordinates": [ [ - [8.630223, 45.913445], - [8.630223, 46.094148], - [8.810926, 46.094148], - [8.810926, 45.913445], - [8.630223, 45.913445] + [8.631068, 45.914184], + [8.631068, 46.095098], + [8.811982, 46.095098], + [8.811982, 45.914184], + [8.631068, 45.914184] ] ] } @@ -1752,11 +1752,11 @@ "type": "Polygon", "coordinates": [ [ - [8.630223, 46.094148], - [8.630223, 46.274851], - [8.810926, 46.274851], - [8.810926, 46.094148], - [8.630223, 46.094148] + [8.631068, 46.095098], + [8.631068, 46.276013], + [8.811982, 46.276013], + [8.811982, 46.095098], + [8.631068, 46.095098] ] ] } @@ -1768,11 +1768,11 @@ "type": "Polygon", "coordinates": [ [ - [8.810926, 44.467818], - [8.810926, 44.648521], - [8.99163, 44.648521], - [8.99163, 44.467818], - [8.810926, 44.467818] + [8.811982, 44.466868], + [8.811982, 44.647782], + [8.992897, 44.647782], + [8.992897, 44.466868], + [8.811982, 44.466868] ] ] } @@ -1784,11 +1784,11 @@ "type": "Polygon", "coordinates": [ [ - [8.810926, 44.648521], - [8.810926, 44.829225], - [8.99163, 44.829225], - [8.99163, 44.648521], - [8.810926, 44.648521] + [8.811982, 44.647782], + [8.811982, 44.828697], + [8.992897, 44.828697], + [8.992897, 44.647782], + [8.811982, 44.647782] ] ] } @@ -1800,11 +1800,11 @@ "type": "Polygon", "coordinates": [ [ - [8.810926, 44.829225], - [8.810926, 45.009928], - [8.99163, 45.009928], - [8.99163, 44.829225], - [8.810926, 44.829225] + [8.811982, 44.828697], + [8.811982, 45.009611], + [8.992897, 45.009611], + [8.992897, 44.828697], + [8.811982, 44.828697] ] ] } @@ -1816,11 +1816,11 @@ "type": "Polygon", "coordinates": [ [ - [8.810926, 45.009928], - [8.810926, 45.190631], - [8.99163, 45.190631], - [8.99163, 45.009928], - [8.810926, 45.009928] + [8.811982, 45.009611], + [8.811982, 45.190526], + [8.992897, 45.190526], + [8.992897, 45.009611], + [8.811982, 45.009611] ] ] } @@ -1832,11 +1832,11 @@ "type": "Polygon", "coordinates": [ [ - [8.810926, 45.371335], - [8.810926, 45.552038], - [8.99163, 45.552038], - [8.99163, 45.371335], - [8.810926, 45.371335] + [8.811982, 45.37144], + [8.811982, 45.552355], + [8.992897, 45.552355], + [8.992897, 45.37144], + [8.811982, 45.37144] ] ] } @@ -1848,11 +1848,11 @@ "type": "Polygon", "coordinates": [ [ - [8.99163, 44.467818], - [8.99163, 44.648521], - [9.172333, 44.648521], - [9.172333, 44.467818], - [8.99163, 44.467818] + [8.992897, 44.466868], + [8.992897, 44.647782], + [9.173811, 44.647782], + [9.173811, 44.466868], + [8.992897, 44.466868] ] ] } @@ -1864,11 +1864,11 @@ "type": "Polygon", "coordinates": [ [ - [8.99163, 44.648521], - [8.99163, 44.829225], - [9.172333, 44.829225], - [9.172333, 44.648521], - [8.99163, 44.648521] + [8.992897, 44.647782], + [8.992897, 44.828697], + [9.173811, 44.828697], + [9.173811, 44.647782], + [8.992897, 44.647782] ] ] } @@ -1880,11 +1880,11 @@ "type": "Polygon", "coordinates": [ [ - [8.99163, 44.829225], - [8.99163, 45.009928], - [9.172333, 45.009928], - [9.172333, 44.829225], - [8.99163, 44.829225] + [8.992897, 44.828697], + [8.992897, 45.009611], + [9.173811, 45.009611], + [9.173811, 44.828697], + [8.992897, 44.828697] ] ] } @@ -1896,11 +1896,11 @@ "type": "Polygon", "coordinates": [ [ - [9.172333, 44.467818], - [9.172333, 44.648521], - [9.353036, 44.648521], - [9.353036, 44.467818], - [9.172333, 44.467818] + [9.173811, 44.466868], + [9.173811, 44.647782], + [9.354725, 44.647782], + [9.354725, 44.466868], + [9.173811, 44.466868] ] ] } @@ -1912,11 +1912,11 @@ "type": "Polygon", "coordinates": [ [ - [9.172333, 44.648521], - [9.172333, 44.829225], - [9.353036, 44.829225], - [9.353036, 44.648521], - [9.172333, 44.648521] + [9.173811, 44.647782], + [9.173811, 44.828697], + [9.354725, 44.828697], + [9.354725, 44.647782], + [9.173811, 44.647782] ] ] } diff --git a/packages/turf-square-grid/test/out/properties.geojson b/packages/turf-square-grid/test/out/properties.geojson index 50373241e4..c825540cf8 100644 --- a/packages/turf-square-grid/test/out/properties.geojson +++ b/packages/turf-square-grid/test/out/properties.geojson @@ -10,11 +10,11 @@ "type": "Polygon", "coordinates": [ [ - [2.13407, 41.397645], - [2.13407, 41.406628], - [2.143053, 41.406628], - [2.143053, 41.397645], - [2.13407, 41.397645] + [2.134018, 41.39763], + [2.134018, 41.406623], + [2.143011, 41.406623], + [2.143011, 41.39763], + [2.134018, 41.39763] ] ] } @@ -28,11 +28,11 @@ "type": "Polygon", "coordinates": [ [ - [2.13407, 41.406628], - [2.13407, 41.415611], - [2.143053, 41.415611], - [2.143053, 41.406628], - [2.13407, 41.406628] + [2.134018, 41.406623], + [2.134018, 41.415616], + [2.143011, 41.415616], + [2.143011, 41.406623], + [2.134018, 41.406623] ] ] } @@ -46,11 +46,11 @@ "type": "Polygon", "coordinates": [ [ - [2.143053, 41.388663], - [2.143053, 41.397645], - [2.152036, 41.397645], - [2.152036, 41.388663], - [2.143053, 41.388663] + [2.143011, 41.388636], + [2.143011, 41.39763], + [2.152004, 41.39763], + [2.152004, 41.388636], + [2.143011, 41.388636] ] ] } @@ -64,11 +64,11 @@ "type": "Polygon", "coordinates": [ [ - [2.143053, 41.397645], - [2.143053, 41.406628], - [2.152036, 41.406628], - [2.152036, 41.397645], - [2.143053, 41.397645] + [2.143011, 41.39763], + [2.143011, 41.406623], + [2.152004, 41.406623], + [2.152004, 41.39763], + [2.143011, 41.39763] ] ] } @@ -82,11 +82,11 @@ "type": "Polygon", "coordinates": [ [ - [2.143053, 41.406628], - [2.143053, 41.415611], - [2.152036, 41.415611], - [2.152036, 41.406628], - [2.143053, 41.406628] + [2.143011, 41.406623], + [2.143011, 41.415616], + [2.152004, 41.415616], + [2.152004, 41.406623], + [2.143011, 41.406623] ] ] } @@ -100,11 +100,11 @@ "type": "Polygon", "coordinates": [ [ - [2.152036, 41.388663], - [2.152036, 41.397645], - [2.161018, 41.397645], - [2.161018, 41.388663], - [2.152036, 41.388663] + [2.152004, 41.388636], + [2.152004, 41.39763], + [2.160997, 41.39763], + [2.160997, 41.388636], + [2.152004, 41.388636] ] ] } @@ -118,11 +118,11 @@ "type": "Polygon", "coordinates": [ [ - [2.152036, 41.397645], - [2.152036, 41.406628], - [2.161018, 41.406628], - [2.161018, 41.397645], - [2.152036, 41.397645] + [2.152004, 41.39763], + [2.152004, 41.406623], + [2.160997, 41.406623], + [2.160997, 41.39763], + [2.152004, 41.39763] ] ] } @@ -136,11 +136,11 @@ "type": "Polygon", "coordinates": [ [ - [2.152036, 41.406628], - [2.152036, 41.415611], - [2.161018, 41.415611], - [2.161018, 41.406628], - [2.152036, 41.406628] + [2.152004, 41.406623], + [2.152004, 41.415616], + [2.160997, 41.415616], + [2.160997, 41.406623], + [2.152004, 41.406623] ] ] } @@ -154,11 +154,11 @@ "type": "Polygon", "coordinates": [ [ - [2.161018, 41.37968], - [2.161018, 41.388663], - [2.170001, 41.388663], - [2.170001, 41.37968], - [2.161018, 41.37968] + [2.160997, 41.379643], + [2.160997, 41.388636], + [2.16999, 41.388636], + [2.16999, 41.379643], + [2.160997, 41.379643] ] ] } @@ -172,11 +172,11 @@ "type": "Polygon", "coordinates": [ [ - [2.161018, 41.388663], - [2.161018, 41.397645], - [2.170001, 41.397645], - [2.170001, 41.388663], - [2.161018, 41.388663] + [2.160997, 41.388636], + [2.160997, 41.39763], + [2.16999, 41.39763], + [2.16999, 41.388636], + [2.160997, 41.388636] ] ] } @@ -190,11 +190,11 @@ "type": "Polygon", "coordinates": [ [ - [2.161018, 41.397645], - [2.161018, 41.406628], - [2.170001, 41.406628], - [2.170001, 41.397645], - [2.161018, 41.397645] + [2.160997, 41.39763], + [2.160997, 41.406623], + [2.16999, 41.406623], + [2.16999, 41.39763], + [2.160997, 41.39763] ] ] } @@ -208,11 +208,11 @@ "type": "Polygon", "coordinates": [ [ - [2.161018, 41.406628], - [2.161018, 41.415611], - [2.170001, 41.415611], - [2.170001, 41.406628], - [2.161018, 41.406628] + [2.160997, 41.406623], + [2.160997, 41.415616], + [2.16999, 41.415616], + [2.16999, 41.406623], + [2.160997, 41.406623] ] ] } @@ -226,11 +226,11 @@ "type": "Polygon", "coordinates": [ [ - [2.161018, 41.415611], - [2.161018, 41.424593], - [2.170001, 41.424593], - [2.170001, 41.415611], - [2.161018, 41.415611] + [2.160997, 41.415616], + [2.160997, 41.424609], + [2.16999, 41.424609], + [2.16999, 41.415616], + [2.160997, 41.415616] ] ] } @@ -244,11 +244,11 @@ "type": "Polygon", "coordinates": [ [ - [2.161018, 41.424593], - [2.161018, 41.433576], - [2.170001, 41.433576], - [2.170001, 41.424593], - [2.161018, 41.424593] + [2.160997, 41.424609], + [2.160997, 41.433602], + [2.16999, 41.433602], + [2.16999, 41.424609], + [2.160997, 41.424609] ] ] } @@ -262,11 +262,11 @@ "type": "Polygon", "coordinates": [ [ - [2.161018, 41.433576], - [2.161018, 41.442559], - [2.170001, 41.442559], - [2.170001, 41.433576], - [2.161018, 41.433576] + [2.160997, 41.433602], + [2.160997, 41.442596], + [2.16999, 41.442596], + [2.16999, 41.433602], + [2.160997, 41.433602] ] ] } @@ -280,11 +280,11 @@ "type": "Polygon", "coordinates": [ [ - [2.170001, 41.37968], - [2.170001, 41.388663], - [2.178984, 41.388663], - [2.178984, 41.37968], - [2.170001, 41.37968] + [2.16999, 41.379643], + [2.16999, 41.388636], + [2.178984, 41.388636], + [2.178984, 41.379643], + [2.16999, 41.379643] ] ] } @@ -298,11 +298,11 @@ "type": "Polygon", "coordinates": [ [ - [2.170001, 41.388663], - [2.170001, 41.397645], - [2.178984, 41.397645], - [2.178984, 41.388663], - [2.170001, 41.388663] + [2.16999, 41.388636], + [2.16999, 41.39763], + [2.178984, 41.39763], + [2.178984, 41.388636], + [2.16999, 41.388636] ] ] } @@ -316,11 +316,11 @@ "type": "Polygon", "coordinates": [ [ - [2.170001, 41.397645], - [2.170001, 41.406628], - [2.178984, 41.406628], - [2.178984, 41.397645], - [2.170001, 41.397645] + [2.16999, 41.39763], + [2.16999, 41.406623], + [2.178984, 41.406623], + [2.178984, 41.39763], + [2.16999, 41.39763] ] ] } @@ -334,11 +334,11 @@ "type": "Polygon", "coordinates": [ [ - [2.170001, 41.406628], - [2.170001, 41.415611], - [2.178984, 41.415611], - [2.178984, 41.406628], - [2.170001, 41.406628] + [2.16999, 41.406623], + [2.16999, 41.415616], + [2.178984, 41.415616], + [2.178984, 41.406623], + [2.16999, 41.406623] ] ] } @@ -352,11 +352,11 @@ "type": "Polygon", "coordinates": [ [ - [2.170001, 41.415611], - [2.170001, 41.424593], - [2.178984, 41.424593], - [2.178984, 41.415611], - [2.170001, 41.415611] + [2.16999, 41.415616], + [2.16999, 41.424609], + [2.178984, 41.424609], + [2.178984, 41.415616], + [2.16999, 41.415616] ] ] } @@ -370,11 +370,11 @@ "type": "Polygon", "coordinates": [ [ - [2.170001, 41.424593], - [2.170001, 41.433576], - [2.178984, 41.433576], - [2.178984, 41.424593], - [2.170001, 41.424593] + [2.16999, 41.424609], + [2.16999, 41.433602], + [2.178984, 41.433602], + [2.178984, 41.424609], + [2.16999, 41.424609] ] ] } @@ -388,11 +388,11 @@ "type": "Polygon", "coordinates": [ [ - [2.170001, 41.433576], - [2.170001, 41.442559], - [2.178984, 41.442559], - [2.178984, 41.433576], - [2.170001, 41.433576] + [2.16999, 41.433602], + [2.16999, 41.442596], + [2.178984, 41.442596], + [2.178984, 41.433602], + [2.16999, 41.433602] ] ] } @@ -406,11 +406,11 @@ "type": "Polygon", "coordinates": [ [ - [2.178984, 41.37968], - [2.178984, 41.388663], - [2.187966, 41.388663], - [2.187966, 41.37968], - [2.178984, 41.37968] + [2.178984, 41.379643], + [2.178984, 41.388636], + [2.187977, 41.388636], + [2.187977, 41.379643], + [2.178984, 41.379643] ] ] } @@ -424,11 +424,11 @@ "type": "Polygon", "coordinates": [ [ - [2.178984, 41.388663], - [2.178984, 41.397645], - [2.187966, 41.397645], - [2.187966, 41.388663], - [2.178984, 41.388663] + [2.178984, 41.388636], + [2.178984, 41.39763], + [2.187977, 41.39763], + [2.187977, 41.388636], + [2.178984, 41.388636] ] ] } @@ -442,11 +442,11 @@ "type": "Polygon", "coordinates": [ [ - [2.178984, 41.397645], - [2.178984, 41.406628], - [2.187966, 41.406628], - [2.187966, 41.397645], - [2.178984, 41.397645] + [2.178984, 41.39763], + [2.178984, 41.406623], + [2.187977, 41.406623], + [2.187977, 41.39763], + [2.178984, 41.39763] ] ] } @@ -460,11 +460,11 @@ "type": "Polygon", "coordinates": [ [ - [2.178984, 41.406628], - [2.178984, 41.415611], - [2.187966, 41.415611], - [2.187966, 41.406628], - [2.178984, 41.406628] + [2.178984, 41.406623], + [2.178984, 41.415616], + [2.187977, 41.415616], + [2.187977, 41.406623], + [2.178984, 41.406623] ] ] } @@ -478,11 +478,11 @@ "type": "Polygon", "coordinates": [ [ - [2.178984, 41.415611], - [2.178984, 41.424593], - [2.187966, 41.424593], - [2.187966, 41.415611], - [2.178984, 41.415611] + [2.178984, 41.415616], + [2.178984, 41.424609], + [2.187977, 41.424609], + [2.187977, 41.415616], + [2.178984, 41.415616] ] ] } @@ -496,11 +496,11 @@ "type": "Polygon", "coordinates": [ [ - [2.178984, 41.424593], - [2.178984, 41.433576], - [2.187966, 41.433576], - [2.187966, 41.424593], - [2.178984, 41.424593] + [2.178984, 41.424609], + [2.178984, 41.433602], + [2.187977, 41.433602], + [2.187977, 41.424609], + [2.178984, 41.424609] ] ] } @@ -514,11 +514,11 @@ "type": "Polygon", "coordinates": [ [ - [2.178984, 41.433576], - [2.178984, 41.442559], - [2.187966, 41.442559], - [2.187966, 41.433576], - [2.178984, 41.433576] + [2.178984, 41.433602], + [2.178984, 41.442596], + [2.187977, 41.442596], + [2.187977, 41.433602], + [2.178984, 41.433602] ] ] } @@ -532,11 +532,11 @@ "type": "Polygon", "coordinates": [ [ - [2.187966, 41.37968], - [2.187966, 41.388663], - [2.196949, 41.388663], - [2.196949, 41.37968], - [2.187966, 41.37968] + [2.187977, 41.379643], + [2.187977, 41.388636], + [2.19697, 41.388636], + [2.19697, 41.379643], + [2.187977, 41.379643] ] ] } @@ -550,11 +550,11 @@ "type": "Polygon", "coordinates": [ [ - [2.187966, 41.388663], - [2.187966, 41.397645], - [2.196949, 41.397645], - [2.196949, 41.388663], - [2.187966, 41.388663] + [2.187977, 41.388636], + [2.187977, 41.39763], + [2.19697, 41.39763], + [2.19697, 41.388636], + [2.187977, 41.388636] ] ] } @@ -568,11 +568,11 @@ "type": "Polygon", "coordinates": [ [ - [2.187966, 41.397645], - [2.187966, 41.406628], - [2.196949, 41.406628], - [2.196949, 41.397645], - [2.187966, 41.397645] + [2.187977, 41.39763], + [2.187977, 41.406623], + [2.19697, 41.406623], + [2.19697, 41.39763], + [2.187977, 41.39763] ] ] } @@ -586,11 +586,11 @@ "type": "Polygon", "coordinates": [ [ - [2.187966, 41.406628], - [2.187966, 41.415611], - [2.196949, 41.415611], - [2.196949, 41.406628], - [2.187966, 41.406628] + [2.187977, 41.406623], + [2.187977, 41.415616], + [2.19697, 41.415616], + [2.19697, 41.406623], + [2.187977, 41.406623] ] ] } @@ -604,11 +604,11 @@ "type": "Polygon", "coordinates": [ [ - [2.187966, 41.415611], - [2.187966, 41.424593], - [2.196949, 41.424593], - [2.196949, 41.415611], - [2.187966, 41.415611] + [2.187977, 41.415616], + [2.187977, 41.424609], + [2.19697, 41.424609], + [2.19697, 41.415616], + [2.187977, 41.415616] ] ] } @@ -622,11 +622,11 @@ "type": "Polygon", "coordinates": [ [ - [2.187966, 41.424593], - [2.187966, 41.433576], - [2.196949, 41.433576], - [2.196949, 41.424593], - [2.187966, 41.424593] + [2.187977, 41.424609], + [2.187977, 41.433602], + [2.19697, 41.433602], + [2.19697, 41.424609], + [2.187977, 41.424609] ] ] } @@ -640,11 +640,11 @@ "type": "Polygon", "coordinates": [ [ - [2.187966, 41.433576], - [2.187966, 41.442559], - [2.196949, 41.442559], - [2.196949, 41.433576], - [2.187966, 41.433576] + [2.187977, 41.433602], + [2.187977, 41.442596], + [2.19697, 41.442596], + [2.19697, 41.433602], + [2.187977, 41.433602] ] ] } @@ -658,11 +658,11 @@ "type": "Polygon", "coordinates": [ [ - [2.196949, 41.388663], - [2.196949, 41.397645], - [2.205932, 41.397645], - [2.205932, 41.388663], - [2.196949, 41.388663] + [2.19697, 41.388636], + [2.19697, 41.39763], + [2.205963, 41.39763], + [2.205963, 41.388636], + [2.19697, 41.388636] ] ] } @@ -676,11 +676,11 @@ "type": "Polygon", "coordinates": [ [ - [2.196949, 41.397645], - [2.196949, 41.406628], - [2.205932, 41.406628], - [2.205932, 41.397645], - [2.196949, 41.397645] + [2.19697, 41.39763], + [2.19697, 41.406623], + [2.205963, 41.406623], + [2.205963, 41.39763], + [2.19697, 41.39763] ] ] } @@ -694,11 +694,11 @@ "type": "Polygon", "coordinates": [ [ - [2.196949, 41.406628], - [2.196949, 41.415611], - [2.205932, 41.415611], - [2.205932, 41.406628], - [2.196949, 41.406628] + [2.19697, 41.406623], + [2.19697, 41.415616], + [2.205963, 41.415616], + [2.205963, 41.406623], + [2.19697, 41.406623] ] ] } @@ -712,11 +712,11 @@ "type": "Polygon", "coordinates": [ [ - [2.196949, 41.415611], - [2.196949, 41.424593], - [2.205932, 41.424593], - [2.205932, 41.415611], - [2.196949, 41.415611] + [2.19697, 41.415616], + [2.19697, 41.424609], + [2.205963, 41.424609], + [2.205963, 41.415616], + [2.19697, 41.415616] ] ] } @@ -730,11 +730,11 @@ "type": "Polygon", "coordinates": [ [ - [2.196949, 41.424593], - [2.196949, 41.433576], - [2.205932, 41.433576], - [2.205932, 41.424593], - [2.196949, 41.424593] + [2.19697, 41.424609], + [2.19697, 41.433602], + [2.205963, 41.433602], + [2.205963, 41.424609], + [2.19697, 41.424609] ] ] } @@ -748,11 +748,11 @@ "type": "Polygon", "coordinates": [ [ - [2.205932, 41.397645], - [2.205932, 41.406628], - [2.214915, 41.406628], - [2.214915, 41.397645], - [2.205932, 41.397645] + [2.205963, 41.39763], + [2.205963, 41.406623], + [2.214957, 41.406623], + [2.214957, 41.39763], + [2.205963, 41.39763] ] ] } @@ -766,11 +766,11 @@ "type": "Polygon", "coordinates": [ [ - [2.205932, 41.406628], - [2.205932, 41.415611], - [2.214915, 41.415611], - [2.214915, 41.406628], - [2.205932, 41.406628] + [2.205963, 41.406623], + [2.205963, 41.415616], + [2.214957, 41.415616], + [2.214957, 41.406623], + [2.205963, 41.406623] ] ] } @@ -784,11 +784,11 @@ "type": "Polygon", "coordinates": [ [ - [2.205932, 41.415611], - [2.205932, 41.424593], - [2.214915, 41.424593], - [2.214915, 41.415611], - [2.205932, 41.415611] + [2.205963, 41.415616], + [2.205963, 41.424609], + [2.214957, 41.424609], + [2.214957, 41.415616], + [2.205963, 41.415616] ] ] } @@ -802,11 +802,11 @@ "type": "Polygon", "coordinates": [ [ - [2.205932, 41.424593], - [2.205932, 41.433576], - [2.214915, 41.433576], - [2.214915, 41.424593], - [2.205932, 41.424593] + [2.205963, 41.424609], + [2.205963, 41.433602], + [2.214957, 41.433602], + [2.214957, 41.424609], + [2.205963, 41.424609] ] ] } @@ -820,11 +820,11 @@ "type": "Polygon", "coordinates": [ [ - [2.214915, 41.406628], - [2.214915, 41.415611], - [2.223897, 41.415611], - [2.223897, 41.406628], - [2.214915, 41.406628] + [2.214957, 41.406623], + [2.214957, 41.415616], + [2.22395, 41.415616], + [2.22395, 41.406623], + [2.214957, 41.406623] ] ] } @@ -838,11 +838,11 @@ "type": "Polygon", "coordinates": [ [ - [2.214915, 41.415611], - [2.214915, 41.424593], - [2.223897, 41.424593], - [2.223897, 41.415611], - [2.214915, 41.415611] + [2.214957, 41.415616], + [2.214957, 41.424609], + [2.22395, 41.424609], + [2.22395, 41.415616], + [2.214957, 41.415616] ] ] } diff --git a/packages/turf-square-grid/test/out/resolute.geojson b/packages/turf-square-grid/test/out/resolute.geojson index 203b373584..21fc5321d9 100644 --- a/packages/turf-square-grid/test/out/resolute.geojson +++ b/packages/turf-square-grid/test/out/resolute.geojson @@ -8,11 +8,11 @@ "type": "Polygon", "coordinates": [ [ - [-95.858351, 74.504675], - [-95.858351, 74.685378], - [-95.677647, 74.685378], - [-95.677647, 74.504675], - [-95.858351, 74.504675] + [-95.859406, 74.504464], + [-95.859406, 74.685378], + [-95.678492, 74.685378], + [-95.678492, 74.504464], + [-95.859406, 74.504464] ] ] } @@ -24,11 +24,11 @@ "type": "Polygon", "coordinates": [ [ - [-95.858351, 74.685378], - [-95.858351, 74.866082], - [-95.677647, 74.866082], - [-95.677647, 74.685378], - [-95.858351, 74.685378] + [-95.859406, 74.685378], + [-95.859406, 74.866293], + [-95.678492, 74.866293], + [-95.678492, 74.685378], + [-95.859406, 74.685378] ] ] } @@ -40,11 +40,11 @@ "type": "Polygon", "coordinates": [ [ - [-95.677647, 74.504675], - [-95.677647, 74.685378], - [-95.496944, 74.685378], - [-95.496944, 74.504675], - [-95.677647, 74.504675] + [-95.678492, 74.504464], + [-95.678492, 74.685378], + [-95.497577, 74.685378], + [-95.497577, 74.504464], + [-95.678492, 74.504464] ] ] } @@ -56,11 +56,11 @@ "type": "Polygon", "coordinates": [ [ - [-95.677647, 74.685378], - [-95.677647, 74.866082], - [-95.496944, 74.866082], - [-95.496944, 74.685378], - [-95.677647, 74.685378] + [-95.678492, 74.685378], + [-95.678492, 74.866293], + [-95.497577, 74.866293], + [-95.497577, 74.685378], + [-95.678492, 74.685378] ] ] } @@ -72,11 +72,11 @@ "type": "Polygon", "coordinates": [ [ - [-95.496944, 74.504675], - [-95.496944, 74.685378], - [-95.316241, 74.685378], - [-95.316241, 74.504675], - [-95.496944, 74.504675] + [-95.497577, 74.504464], + [-95.497577, 74.685378], + [-95.316663, 74.685378], + [-95.316663, 74.504464], + [-95.497577, 74.504464] ] ] } @@ -88,11 +88,11 @@ "type": "Polygon", "coordinates": [ [ - [-95.496944, 74.685378], - [-95.496944, 74.866082], - [-95.316241, 74.866082], - [-95.316241, 74.685378], - [-95.496944, 74.685378] + [-95.497577, 74.685378], + [-95.497577, 74.866293], + [-95.316663, 74.866293], + [-95.316663, 74.685378], + [-95.497577, 74.685378] ] ] } @@ -104,11 +104,11 @@ "type": "Polygon", "coordinates": [ [ - [-95.316241, 74.504675], - [-95.316241, 74.685378], - [-95.135537, 74.685378], - [-95.135537, 74.504675], - [-95.316241, 74.504675] + [-95.316663, 74.504464], + [-95.316663, 74.685378], + [-95.135748, 74.685378], + [-95.135748, 74.504464], + [-95.316663, 74.504464] ] ] } @@ -120,11 +120,11 @@ "type": "Polygon", "coordinates": [ [ - [-95.316241, 74.685378], - [-95.316241, 74.866082], - [-95.135537, 74.866082], - [-95.135537, 74.685378], - [-95.316241, 74.685378] + [-95.316663, 74.685378], + [-95.316663, 74.866293], + [-95.135748, 74.866293], + [-95.135748, 74.685378], + [-95.316663, 74.685378] ] ] } @@ -136,11 +136,11 @@ "type": "Polygon", "coordinates": [ [ - [-95.135537, 74.504675], - [-95.135537, 74.685378], + [-95.135748, 74.504464], + [-95.135748, 74.685378], [-94.954834, 74.685378], - [-94.954834, 74.504675], - [-95.135537, 74.504675] + [-94.954834, 74.504464], + [-95.135748, 74.504464] ] ] } @@ -152,11 +152,11 @@ "type": "Polygon", "coordinates": [ [ - [-95.135537, 74.685378], - [-95.135537, 74.866082], - [-94.954834, 74.866082], + [-95.135748, 74.685378], + [-95.135748, 74.866293], + [-94.954834, 74.866293], [-94.954834, 74.685378], - [-95.135537, 74.685378] + [-95.135748, 74.685378] ] ] } @@ -168,11 +168,11 @@ "type": "Polygon", "coordinates": [ [ - [-94.954834, 74.504675], + [-94.954834, 74.504464], [-94.954834, 74.685378], - [-94.774131, 74.685378], - [-94.774131, 74.504675], - [-94.954834, 74.504675] + [-94.77392, 74.685378], + [-94.77392, 74.504464], + [-94.954834, 74.504464] ] ] } @@ -185,9 +185,9 @@ "coordinates": [ [ [-94.954834, 74.685378], - [-94.954834, 74.866082], - [-94.774131, 74.866082], - [-94.774131, 74.685378], + [-94.954834, 74.866293], + [-94.77392, 74.866293], + [-94.77392, 74.685378], [-94.954834, 74.685378] ] ] @@ -200,11 +200,11 @@ "type": "Polygon", "coordinates": [ [ - [-94.774131, 74.504675], - [-94.774131, 74.685378], - [-94.593427, 74.685378], - [-94.593427, 74.504675], - [-94.774131, 74.504675] + [-94.77392, 74.504464], + [-94.77392, 74.685378], + [-94.593005, 74.685378], + [-94.593005, 74.504464], + [-94.77392, 74.504464] ] ] } @@ -216,11 +216,11 @@ "type": "Polygon", "coordinates": [ [ - [-94.774131, 74.685378], - [-94.774131, 74.866082], - [-94.593427, 74.866082], - [-94.593427, 74.685378], - [-94.774131, 74.685378] + [-94.77392, 74.685378], + [-94.77392, 74.866293], + [-94.593005, 74.866293], + [-94.593005, 74.685378], + [-94.77392, 74.685378] ] ] } @@ -232,11 +232,11 @@ "type": "Polygon", "coordinates": [ [ - [-94.593427, 74.504675], - [-94.593427, 74.685378], - [-94.412724, 74.685378], - [-94.412724, 74.504675], - [-94.593427, 74.504675] + [-94.593005, 74.504464], + [-94.593005, 74.685378], + [-94.412091, 74.685378], + [-94.412091, 74.504464], + [-94.593005, 74.504464] ] ] } @@ -248,11 +248,11 @@ "type": "Polygon", "coordinates": [ [ - [-94.593427, 74.685378], - [-94.593427, 74.866082], - [-94.412724, 74.866082], - [-94.412724, 74.685378], - [-94.593427, 74.685378] + [-94.593005, 74.685378], + [-94.593005, 74.866293], + [-94.412091, 74.866293], + [-94.412091, 74.685378], + [-94.593005, 74.685378] ] ] } @@ -264,11 +264,11 @@ "type": "Polygon", "coordinates": [ [ - [-94.412724, 74.504675], - [-94.412724, 74.685378], - [-94.232021, 74.685378], - [-94.232021, 74.504675], - [-94.412724, 74.504675] + [-94.412091, 74.504464], + [-94.412091, 74.685378], + [-94.231176, 74.685378], + [-94.231176, 74.504464], + [-94.412091, 74.504464] ] ] } @@ -280,11 +280,11 @@ "type": "Polygon", "coordinates": [ [ - [-94.412724, 74.685378], - [-94.412724, 74.866082], - [-94.232021, 74.866082], - [-94.232021, 74.685378], - [-94.412724, 74.685378] + [-94.412091, 74.685378], + [-94.412091, 74.866293], + [-94.231176, 74.866293], + [-94.231176, 74.685378], + [-94.412091, 74.685378] ] ] } @@ -296,11 +296,11 @@ "type": "Polygon", "coordinates": [ [ - [-94.232021, 74.504675], - [-94.232021, 74.685378], - [-94.051317, 74.685378], - [-94.051317, 74.504675], - [-94.232021, 74.504675] + [-94.231176, 74.504464], + [-94.231176, 74.685378], + [-94.050262, 74.685378], + [-94.050262, 74.504464], + [-94.231176, 74.504464] ] ] } @@ -312,11 +312,11 @@ "type": "Polygon", "coordinates": [ [ - [-94.232021, 74.685378], - [-94.232021, 74.866082], - [-94.051317, 74.866082], - [-94.051317, 74.685378], - [-94.232021, 74.685378] + [-94.231176, 74.685378], + [-94.231176, 74.866293], + [-94.050262, 74.866293], + [-94.050262, 74.685378], + [-94.231176, 74.685378] ] ] }